Description Format Details Author(s) See Also Examples
Subset of fluidigm data
subset of fluidigm data used in vignette package.
fluidigmData
and fluidigmColData
are portions of the fluidigm
data distributed in the package scRNAseq
package. We have subsetted to only the cells sequenced under high depth, and limited our selves to only two of the four gene estimates provided by scRNAseq
("tophat_counts" and "rsem_tpm").
Elizabeth Purdom epurdom@stat.berkeley.edu
1 2 3 4 5 6 7 8 9 10 | #code used to create objects:
## Not run:
library(scRNAseq)
if(packageVersion("scRNAseq")>="1.11.0") fluidigm <- ReprocessedFluidigmData() else data(fluidigm)
fluidSubset<- fluidigm[,colData(fluidigm)[,"Coverage_Type"]=="High"]
fluidigmData<-assays(fluidSubset)[c("tophat_counts","rsem_tpm")]
fluidigmColData<-as.data.frame(colData(fluidSubset))
usethis::use_data(fluidigmData, fluidigmColData, overwrite=FALSE)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.