R/download_Yeast_Go_terms.R

Defines functions download_Yeast_Go_terms

Documented in download_Yeast_Go_terms

download_Yeast_Go_terms <-
function(url.GO.terms='http://downloads.yeastgenome.org/curation/literature/go_terms.tab'){
  #### input
  #### output 
  	
  GO.terms <- read.delim(url(url.GO.terms) 
                      ,header=FALSE,check.names=FALSE, stringsAsFactors=FALSE)
  colnames(GO.terms) <- c('GOID' ,'GO_Term', 'GO_Aspect', 'GO_Term_Definition')
  GO.terms
}
pasculescu/ClusterJudge documentation built on May 29, 2019, 4:52 p.m.