Description Usage Arguments Value Examples
Find out if the gene is in the object
1 | Get_Genes(Object, genes)
|
Object |
seurat.obj/matrix (row)/data.frame (row)/character |
genes |
the gene you interested |
the genes in the object
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Not run:
input.file <- system.file('extdata','pbmc_1k.RDS',package = 'LIANLABDATA')
pbmc_1k <- readRDS(input.file)
genes = c('CD8A','CD3','CD4')
Get_Genes(pbmc_small,genes)
input.file <- system.file('extdata','DEG.csv',package = 'LIANLABDATA')
markers <- read.csv(input.file,header = T, row.names = 1)
Get_Genes(markers,genes)
all_genes = c('CD8A','CD3','CD8A1')
Get_Genes(all_genes,genes)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.