comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:ba070efb6f78
1 writeout <- function (filename, table) {
2 output_handler <- file(filename, "w")
3 write.table(table, file=output_handler, sep="\t", row.names=FALSE);
4 close(output_handler)
5 }