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
}

Try the ClusterJudge package in your browser

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

ClusterJudge documentation built on March 11, 2021, 2 a.m.