View source: R/nameExtractor.R
geneNameExtractor | R Documentation |
Extract gene names from the input dataset
geneNameExtractor(dataset)
dataset |
A list of data sets to be analyzed |
a vector of strings of gene name
x = matrix(c(1 : 4), nrow = 2)
rownames(x) = c("row1", "row2")
y = matrix(c(1 : 4), nrow = 2)
rownames(y) = c("row1", "row2")
dataset = list(x, y)
geneNameExtractor(dataset)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.