geneNameExtractor: Gene Name Extractor

View source: R/nameExtractor.R

geneNameExtractorR Documentation

Gene Name Extractor

Description

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)


CHuanSite/SJD documentation built on Nov. 29, 2024, 5:52 a.m.