data/taxLists.R

.annBuilderParseTaxLists <- function() {
	dataFile <- "taxLists.txt"
  cols <- c("integer","character")
	taxName <- read.table(dataFile, header=TRUE, sep="\t", colClasses=cols)
	taxLists <- as.list(taxName$taxName)
	names(taxLists) <- taxName$taxID
	taxLists 
}
taxLists <- .annBuilderParseTaxLists()
rm(.annBuilderParseTaxLists)

Try the PAnnBuilder package in your browser

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

PAnnBuilder documentation built on May 2, 2018, 4:07 a.m.