Mercurial > repos > ylebras > xls2tabular
view xlsx2tab.R @ 15:80cce9439f6e draft
Uploaded
author | ylebras |
---|---|
date | Wed, 05 Dec 2018 15:50:15 -0500 |
parents | 6faa8b922ac4 |
children | ca89facf5125 |
line wrap: on
line source
#!/usr/bin/env Rscript #Read Xlsx sheets - return tabular library(readxl) args = commandArgs(trailingOnly=TRUE) #nfile.copy(args[1],newname, overwrite=TRUE) #sheet<-read_excel(newname,sheet=args[2]) sheet<-read_excel(args[1],sheet=args[2]) write.table(sheet,"out.tabular",sep="\t",row.names=FALSE) }