doGo | R Documentation |
Decides whether to do a gene ontologies analysis.
doGo(param, seqAnno)
hasGoAnnotation(seqAnno)
param |
a list of parameters to extract the logical |
seqAnno |
the sequence annotation. |
TRUE
or FALSE
.
Rehrauer, Hubert Schmid, Peter
## Not run:
## FALSE
param = list()
param[['refBuild']] = 'Apis_Mellifera/HGSC/build4.5/Annotation/Release_4.5-2017-08-15'
param[['refFeatureFile']] = 'genes.gtf'
param = ezParam(param)
seqAnno <- ezFeatureAnnotation(param, dataFeatureType="gene")
hasGoAnnotation(seqAnno)
doGo(param, seqAnno)
## TRUE
param = list()
param[['refBuild']] = 'Homo_sapiens/Ensembl/GRCh38.p10/Annotation/Release_89-2017-05-31'
param[['refFeatureFile']] = 'genes.gtf'
param = ezParam(param)
seqAnno <- ezFeatureAnnotation(param, dataFeatureType="gene")
hasGoAnnotation(seqAnno)
doGo(param, seqAnno)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.