make_genelist: Creating list of all genes in the data set.

Description Usage Arguments Value Examples

View source: R/make_genelist.R

Description

The function extracts the list of all genes in the data set

Usage

1
make_genelist(gene_data_interacting)

Arguments

gene_data_interacting

2-column matrix, each row a pair indicating a relationship or interaction

Value

list array of data labels

Examples

1
2
3
4
5
gene.list <- paste('gene', 1:100, sep='')
data <- matrix(0,nrow=100, ncol=2)
data[,1] <- sample(gene.list, 50, replace=TRUE)
data[,2] <- sample(gene.list, 50, replace=TRUE)
genes <- make_genelist(data)

EGAD documentation built on Nov. 8, 2020, 8:31 p.m.