view xlsx2tab/xls2tab.R @ 31:eaaaa5d9aa4e draft

Uploaded
author ylebras
date Thu, 06 Dec 2018 12:52:35 -0500
parents
children
line wrap: on
line source

#!/usr/bin/env Rscript
#Read xls/xlsx 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)