Description Usage Arguments Value Author(s) References See Also Examples
Reads .CSV files only. The function processes differentially expressed RNA data that has been analyzed for Gene Ontology enrichment. Function reads in data, processes out data with unidentified genes, and trims data columns needed for GO matching. Function is compatible with the the .CSV-converted output file format from Trinotate:Transcriptome Functional Annotation and Analysis suite.
1 | readTrinOutput(path)
|
path |
User provided path to .CSV Trinotate-formated file |
Returns a data frame with the columns of the following headers : gene_id, transcript_id, gene_ontology_blast, gene_ontology_pfam
Rows without a gene_id are filtered out
Output is the argument for GOtermSep Function
Sarai Stuart
https://trinotate.github.io/
1 2 3 4 5 6 7 8 9 | #Path to test file
path <- system.file("extdata",
"New_GO_test_file.csv",
package = "GOsorting")
test.csv <- read.csv(path)
#Insert "path" argument into function
test <- readTrinOutput(test.csv)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.