Description Usage Arguments Value Examples
Allows users to perform more fundamental measures of clonotype analysis using the meta data from the seurat or SCE object. For Seurat objects the active identity is automatically added as "cluster". Reamining grouping parameters or SCE or Seurat objects must appear in the meta data.
1 | expression2List(sc, group)
|
sc |
object after combineExpression(). |
group |
The column header to group the new list by |
list derived from the meta data of single-cell object with elements divided by the group parameter
1 2 3 4 5 6 7 8 9 10 11 | #Getting the combined contigs
combined <- combineTCR(contig_list, rep(c("PX", "PY", "PZ"), each=2),
rep(c("P", "T"), 3), cells ="T-AB")
#Getting a sample of a Seurat object
screp_example <- get(data("screp_example"))
sce <- suppressMessages(Seurat::UpdateSeuratObject(screp_example))
sce <- Seurat::as.SingleCellExperiment(sce)
#Using expression2List
newList <- expression2List(sce, group = "seurat_clusters")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.