Description Usage Arguments Value Examples
Create annotation object from .obo and .gaf files
1 | prepare_annotaion(onto_path, annot_path)
|
onto_path |
- full path to .obo file |
annot_path |
- full path to .gaf file |
- list object contains annotation data ready for functional annnotation procedure, ontology relation data, GO terms full names, GO terms namespaces and metadata for annotation
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | onto_path <- system.file("extdata", "goslim_plant.obo", package = "fsgor")
annot_path <- system.file("extdata", "gene_association.tair", package = "fsgor")
annot <- prepare_annotation(onto_path, annot_path)
# extract annotation calculated considering GO term ancestry
annot$annot_data
# GO term ontology relations
annot$relation_data
# GO terms real names
annot$real_names
# GO terms namespaces
annot$namespaces
# annotation metadata
annot$annot_metadata
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.