view xlsx2tab.R @ 6:aa529f924b86 draft

Uploaded
author ylebras
date Tue, 04 Dec 2018 20:15:41 -0500
parents 97c4e2e4f07e
children 25b2fb62d16a
line wrap: on
line source

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

args = commandArgs(trailingOnly=TRUE)

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

}