if (!requireNamespace("BiocManager", quietly = TRUE)) install.packages("BiocManager") BiocManager::install("SingleCellMultiModal")
library(SingleCellMultiModal) library(MultiAssayExperiment)
G&T-seq is a combination of Picoplex amplified gDNA sequencing (genome) and SMARTSeq2 amplified cDNA sequencing (transcriptome) of the same cell. For more information, see @Macaulay2015.
The user can see the available dataset by using the default options
GTseq("mouse_embryo_8_cell", mode = "*", dry.run = TRUE)
Or by simply running:
GTseq()
To obtain the actual datasets:
gts <- GTseq(dry.run = FALSE) gts
Check available metadata for each of the 112 mouse embryo cells assayed by G&T-seq:
colData(gts)
Take a peek at the sampleMap
:
sampleMap(gts)
To access the integer copy numbers as detected from scDNA-seq:
head(assay(gts, "genomic"))[, 1:4]
To access raw read counts as quantified from scRNA-seq:
head(assay(gts, "transcriptomic"))[, 1:4]
For protocol information, see @Macaulay2016.
sessionInfo()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.