Description Usage Arguments Details Value Fields Examples
View source: R/ctgGEMset-class.R
The main class used by the cellTreeGenerator package to hold single cell gene expression data and generated tree results. ctgGEMset extends the SummarizedExperiment::SummarizedExperiment class.
1 |
exprsData |
expression data matrix for an experiment |
phenoData |
a data frame containing attributes of individual samples |
featureData |
a data frame containing attributes of features (genes) |
This class is initialized from a matrix of gene expression values and associated metadata. Methods that operate on ctgGEMset objects comprise the ctgGEM workflow.
a new ctgGEMset object
monocleInfoA character vector of parameters used by
generate_tree(treeType = "monocle") in the
cellTreeGenerator workflow
TSCANinfoA character vector of the row name of a single gene in
exprsData() to use for a single gene vs. pseudotime plot for
generate_tree(treeType = "TSCAN") in the
cellTreeGenerator workflow
sincellInfoA list containing named parameters used by
generate_tree(treeType = "sincell") in the
cellTreeGenerator workflow
treeListA list containing the simplified igraph representation of the trees generated by the ctgGEM workflow
originalTreesA list containing the trees generated by the ctgGEM workflow in their original formats for re-plotting
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # load HSMMSingleCell package
library(HSMMSingleCell)
# load the data
data(HSMM_expr_matrix)
data(HSMM_sample_sheet)
data(HSMM_gene_annotation)
# construct a ctgGEMset
dataSet <- ctgGEMset(exprsData = HSMM_expr_matrix,
phenoData = HSMM_sample_sheet,
featureData = HSMM_gene_annotation)
# load HSMMSingleCell package
library(HSMMSingleCell)
# load the data
data(HSMM_expr_matrix)
data(HSMM_sample_sheet)
data(HSMM_gene_annotation)
# construct a ctgGEMset
dataSet <- ctgGEMset(exprsData = HSMM_expr_matrix,
phenoData = HSMM_sample_sheet,
featureData = HSMM_gene_annotation)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.