Is there a kind of grep for GeneOntology? I would like to filter a tsv file containing a gene/protein identifier having a Go annotation that would be a children of a given GO term. For example:
cat myfile.txt |\
gogrep -f <path-to-my-go-db> \
-d <column delimiter> \
-c <column-index-for-identifier> \
-t <serched GO term e.g: GO:0003146> \
-s <identifier-type (uniprot...) > result.txt
Thanks
Pierre