Hi all,
I've got a question concerning the GO.db package, in particular about the annotation of GO identifiers to their parents. I read the pdf that describes the functions of GOMFPARENTS, GOCCPARENTS and GOBPPARENTS and was wondering if there is a little mistake: At the GOBPPARENTS description it says "This data set describes associations between GO molecular function (BP) terms and [...]". Shouldn't it be "This data set describes associations between GO biological process (BP) terms and [...]". The same mistake(?) is at the description of GOCCPARENTS.
Then, there is another question:
I looked up the node "GO:0016301" at the gene ontology consortium website. There is a graph that shows, that this node has two parents: node number "GO:0016772" and number "GO:0016310". Now, if I do in R:
library(GO.db) x<-as.list(GOMFPARENTS) xx<-as.list(GOCCPARENTS) xxx<-as.list(GOBPPARENTS) x['GO:0016301'] #$`GO:0016301` # is_a #"GO:0016772" xx['GO:0016301'] #$<NA> #NULL xxx['GO:0016301'] #$<NA> #NULL
I can't find the parent-node number "GO:0016310", which has -following AmiGO - a "part_of"- relation to the node "GO:0016301". And in the details of GO_BP/MF/CC_PARENTS it says, that "[t]he name associated with the, parent term will be either isa, hasa or partof". Hence, I thought the term "GO:0016310" should be in the data. I could imagine that it is a data base problem. Maybe GO.db isn't as up-to-date as AmiGO. Do you think this actually is the reason or is there another problem?
Thanks in advance,
1frcn
version # #platform x86_64-w64-mingw32 #arch x86_64 #os mingw32 #system x86_64, mingw32 #status #major 3 #minor 1.1 #year 2014 #month 07 #day 10 #svn rev 66115 #language R #version.string R version 3.1.1 (2014-07-10)
Hi Marc,
thank you for your answer. I'm really glad that it was just a typo in the documentation - this would have confused me a lot...
To the second part of my question: In my code above I actually looked up the "GO:0016310" term in all three PARENT data bases. So I was confused why it didn't appear at all and especially not in the GOBPPARENT data base. I'm sorry that my question was that imprecise...