diff --git a/aio.html b/aio.html index 35e727a..132445f 100644 --- a/aio.html +++ b/aio.html @@ -435,8 +435,8 @@

Rinstall.packages("ggplot2")

In our case, however, we want to install Bioconductor packages. These -packages are located in a separate repository (see comments below) so we -first install the BiocManager +packages are located in a separate repository hosted by Bioconductor, so +we first install the BiocManager package to easily connect to the Bioconductor servers.

R @@ -894,7 +894,7 @@

Overview

Questions

  • How do I examine the quality of single-cell data?
  • -
  • What data visualizations should I use during quality-control in a +
  • What data visualizations should I use during quality control in a single-cell analysis?
  • How do I prepare single-cell data for analysis?
@@ -941,7 +941,7 @@

R
 library(MouseGastrulationData)
-sce <- WTChimeraData(samples=5, type="raw")
+sce <- WTChimeraData(samples = 5, type = "raw")
 sce <- sce[[1]]
 sce

@@ -1003,6 +1003,23 @@

R +
+
+ +
+
+

Callout

+
+

Depending on your data source, identifying and discarding empty +droplets may not be necessary. Some academic institutions have research +cores dedicated to single cell work that perform the sample preparation +and sequencing. Many of these cores will also perform empty droplet +filtering and other initial QC steps. If the sequencing outputs were +provided to you by someone else, make sure to communicate with them +about what pre-processing steps have been performed, if any.

+
+
+
@@ -1019,7 +1036,7 @@

Challenge

-
+

R @@ -1099,7 +1116,7 @@

OUTPUT