Description Usage Arguments Value Note Author(s) See Also Examples
Function to read-in the gene expression file and assign gene probe names as the rownames.
1 | input_file(input)
|
input |
String indicating the name of the text file containing the gene expression matrix to be read in. This matrix file should have the gene probes in the first column of the matrix. The gene probes will be assigned as the rownames of the matrix. |
Returns an object containing the gene expression matrix with the gene probe names as the rownames.
This function works best when using gene expression datasets from Gene Expression Omnibus.
Nathan Lawlor
1 2 3 4 5 6 | # Load in a test file
data_file <- system.file("extdata", "GSE2034.normalized.expression.txt",
package="multiClust")
data <- input_file(input=data_file)
# View matrix with gene probes assigned as rownames
data[1:4, 1:4]
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.