Description Usage Arguments Value Remote Data Note Author(s) See Also Examples
bcbioSingleCell
is an S4 class that extends SingleCellExperiment
, and is
designed to store a bcbio single-cell RNA-seq analysis. This class contains
read counts saved as a sparse matrix (dgCMatrix
), sample metadata, and cell
quality control metrics.
1 2 3 4 |
uploadDir |
Path to final upload directory. This path is set when
running " |
organism |
Organism name. Use the full latin name (e.g.
"Homo sapiens"), since this will be input downstream to
AnnotationHub and ensembldb, unless |
sampleMetadataFile |
Sample barcode metadata file. Optional for runs with demultiplixed index barcodes (e.g. SureCell), but otherwise required for runs with multipliexed FASTQs containing multiple index barcodes (e.g. inDrop). |
interestingGroups |
Character vector of interesting groups. Must be
formatted in camel case and intersect with |
ensemblRelease |
Optional. Ensembl release version. If |
genomeBuild |
Optional. Ensembl genome build name (e.g. "GRCh38").
This will be passed to AnnotationHub for |
transgeneNames |
|
spikeNames |
|
gffFile |
Optional, not recommended. By default, we recommend leaving
this |
... |
Additional arguments, to be stashed in the |
bcbioSingleCell
.
When working in RStudio, we recommend connecting to the bcbio-nextgen run directory as a remote connection over sshfs.
bcbioSingleCell
extended SummarizedExperiment
prior to v0.1.0,
where we migrated to SingleCellExperiment
.
Michael Steinbaugh, Rory Kirchner
SingleCellExperiment::SingleCellExperiment()
.
.S4methods(class = "bcbioSingleCell")
.
Other S4 Object: coerce
,
extract
, show
,
updateObject
1 2 3 4 5 6 7 8 9 | uploadDir <- system.file("extdata/indrops", package = "bcbioSingleCell")
x <- bcbioSingleCell(
uploadDir = uploadDir,
organism = "Homo sapiens",
sampleMetadataFile = file.path(uploadDir, "metadata.csv"),
ensemblRelease = 87L
)
show(x)
validObject(x)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.