| cisTopic | R Documentation |
The cisTopic object contains the initial data and the rest of the objects (e.g. models, distributions), created during the cisTopic workflow. cisTopic is ideally suited for single cell epigenomics experiments.
Each cisTopic object contains several objects, which are listed below:
count.matrixMatrix with the number of counts per region (rows) in each cell (columns). When dealing with single cell methylation data, we use beta values instead of counts.
binary.count.matrixMatrix with regions as rows and cells as columns, where 1 represents an accessible region and 0 a non-accessible region. By default, a region is considered accessible if there is at least one count within the region.
is.accCounts threshold to determine if a region is accessible (0 by default)
modelsList with all the LDA models trained. Each model is represented as an object of the class cisTopicModel. This slot will only be functional when the number of topics and the size of the data set allows it.
log.likData frame containing the log likelihood of the models built.
selected.modelList with the information regards the model selected. The unnormalized cell assignments throughtout the sampling iterations are
stored in cisTopicObject@selected.model$document_expects; while the corresponding unnormalized region assignments are stored in cisTopicObject@selected.model$topics.
drDimensionality reduction outputs, which can be applied on 'cell' or 'region'. Within each slot ('cell' or 'regions'), there are sub-slots named by technique: 'Umap', 'tSNE', 'DiffussionMap', 'PCA', 'Biplot'.
calc.paramsNamed list to store all calculation-related parameter choices.
cell.namesVector with the names of all the single cells (column names of the counts/accessibility matrix).
cell.dataData frame that contains the meta-information about each cell, starting with number of counts detected in the defined regions (nCounts), and accessible
regions (nAcc); more information is added using AddCellMetadata.
region.namesVector with the position coordinates of all the regions (row names of the counts/accessibility matrix).
region.rangesGRanges object with the regions coordinates.
region.dataData frame that contains the meta-information about each region, starting with the region coordinates ('seqnames', 'start', 'end') and width (width), number of
counts mapped to that region accross the data set (nCounts), number of cells in which the region is accessible (nCells); more information is added using AddRegionMetadata
binarized.cisTopicsList containing the regions that are considered as part of a cisTopic.
signaturesList containing regions belonging to given region signatures.
binarized.regions.to.RctList containing the RcisTarget regions that map to the top regions in each of the cisTopics.
binarized.RcisTargetList containing objects of the class RcisTarget produced by running RcisTarget in the top binarized regions for each cisTopic.
binarized.rGREATList with rGREAT results when using the top binarized regions.
cistromes.ctxList with cistromes based on ctx regions.
cistromes.regionsList with cistromes based on data regions.
cistromes.genesList with cistromes based on data regions converted to genes.
project.nameVector with the name of the project (for record keeping).
otherList to store any kind of related data (e.g. region lists).
versionVersion of package used in object creation.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.