Retreiving GOterms ID from the Term Description
1
0
Entering edit mode
2.0 years ago
gkunz ▴ 30

Hello,

I have a fairly simple question and beleive there is likely a tool out there.

I have a list of Go Terms for which I would like to retreive the associate list of GO IDs for.

Input : cell differentiation, multicellular organism development, cilium assembly

Output: GO:0030154, GO:00XXXXX, GO:00XXXXX

I toook a look but was not able to find a tool that accomplished this in a large batch format. If you know of a tool that can easily do these conversions that would be awesome.

Thanks

terms GO • 672 views
ADD COMMENT
0
Entering edit mode

probably go.db or biomart in R?

ADD REPLY
2
Entering edit mode
2.0 years ago
$ wget -q -O - http://purl.obolibrary.org/obo/go.obo |\
  grep -E "^(id|name)\: " | cut -d ' ' -f2- |\
  paste -d '|' - - |\
  grep -E '\|(cell differentiation|multicellular organism development|cilium assembly)$'


GO:0007275|multicellular organism development
GO:0030154|cell differentiation
GO:0060271|cilium assembly
ADD COMMENT
0
Entering edit mode

This works great!

Thanks for the help!

ADD REPLY

Login before adding your answer.

Traffic: 1574 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6