R/get.rhea.all.R

Defines functions get.rhea.all

Documented in get.rhea.all

get.rhea.all <-
function() {
	
	url = "ftp://ftp.ebi.ac.uk/pub/databases/rhea/biopax//rhea-biopax_full.owl.gz"
	tmpdest = tempfile(pattern = "rhea")
	download.file(url, destfile = tmpdest)
	owl = readLines(tmpdest)
  
	result = .parse.rhea(owl)
  	return(result)
}

Try the RbioRXN package in your browser

Any scripts or data that you put into this service are public.

RbioRXN documentation built on May 29, 2017, 10:56 a.m.