Extract gene names from the input dataset
Usage
geneNameExtractor(dataset)
Arguments
- dataset
A list of data sets to be analyzed
Value
a vector of strings of gene name
Examples
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)
#> [1] "row1" "row2"