view xlsx2tab.R @ 17:cb2493afd265 draft

Uploaded
author ylebras
date Wed, 05 Dec 2018 16:02:11 -0500
parents ca89facf5125
children
line wrap: on
line source

#!/usr/bin/env Rscript
#Read xls sheets - return tabular
library(readxl)

args = commandArgs(trailingOnly=TRUE)

sheet<-read_excel(args[1],sheet=args[2])
write.table(sheet,"out.tabular",sep="\t",row.names=FALSE)