Mercurial > repos > labis-app > galaxy_proteomics
view write_util.R @ 0:ba070efb6f78 draft
planemo upload commit 13e72e84c523bda22bda792bbebf4720d28542d5-dirty
author | labis-app |
---|---|
date | Tue, 03 Jul 2018 17:34:13 -0400 |
parents | |
children |
line wrap: on
line source
writeout <- function (filename, table) { output_handler <- file(filename, "w") write.table(table, file=output_handler, sep="\t", row.names=FALSE); close(output_handler) }