geneSymbol | R Documentation |
From the information in the .soft file, creates a data.frame with two columns. In the first one, the probeset names. In the second one, the name of the corresponding genes.
geneSymbol(GPL, directory = ".")
GPL |
The GPL ID. |
directory |
The path file where the .soft file is. By default is the current path file. |
A data.frame with two columns, in the first one, the probesets and in the second one, the corresponding gene to each probeset.
Juan David Henao <judhenaosa@unal.edu.co>
# Creating the table with probesets and genes/IDs gene_table <- geneSymbol(GPL = "GPL2025",directory = system.file("extdata",package = "coexnet")) # Cleaning the NA information gene_na <- na.omit(gene_table) # Cleaning gene/ID information empty final_table <- gene_na[gene_na$ID != "",] head(final_table)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.