Dear List
I have a very basic question on Rbiopaxparser.
Is it possible to extract from a biopax pathway imported with Rbiopaxparser
a subnetwork of all the interactions of a protein?
I'm able to select all the instances with the name of a protein of
interest. Then I try with getNeighborood function without any success...
Any advice it could be very helpful (including advices on other R tools
that can be more useful for my purpose)
thank you
Guido
Here is my code
library(rBiopaxParser)
#read a biopax file downloaded from NCI (url:
http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=betacatenin_deg_pathway&pathway_name=Degradation%20of%20beta%20catenin&source=NCI-Nature%20curated&what=graphic&jpg=on&ppage=1
biopax<-readBiopax("betacatenin_deg_pathway.owl")
pw_1 = selectInstances(biopax, class="protein", name="WNT3A")
b<-getNeighborhood(biopax,pw_1$id[1])