R/store.R

Defines functions store

Documented in store

store <-
function(experiment,outputEntireTable=T,path="./"){
  filename <- paste(path,experiment$Name,".txt",sep="")
  if (outputEntireTable==F){write.table(x=experiment$HMMtable,file=filename,quote=F,sep="\t",row.names=F)}
  else if (!is.null(experiment$genes)){write.table(experiment$genes,file=filename,quote=F,sep="\t",row.names=F)}
  cat("Results saved in file",filename,"\n")
  
}

Try the CNOGpro package in your browser

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

CNOGpro documentation built on May 2, 2019, 5:57 a.m.