View source: R/nameExtractor.R
sampleNameExtractor | R Documentation |
Extract a list of sample names from input list of datasets
sampleNameExtractor(dataset)
dataset |
A list of datasets containing sample names |
A vector of sample names
x = matrix(c(1 : 4), nrow = 2)
colnames(x) = c("sp1", "sp2")
y = matrix(c(1 : 4), nrow = 2)
colnames(y) = c("sp3", "sp4")
dataset = list(x, y)
sampleNameExtractor(dataset)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.