Skip to content

Commit

Permalink
Save gbc output data as tsv
Browse files Browse the repository at this point in the history
  • Loading branch information
percyfal committed Mar 23, 2022
1 parent 331dc8b commit fe76ec5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inst/bin/genecovr
Original file line number Diff line number Diff line change
Expand Up @@ -211,9 +211,9 @@ save_plot(p, outfile)
##--------------------
## Save gbc data
##--------------------
outfile <- file.path(outdir, "gbcdata.csv.gz")
outfile <- file.path(outdir, "gbcdata.tsv.gz")
message("saving ", outfile)
write.csv(x, file=gzfile(outfile), row.names=FALSE)
write.table(x, file=gzfile(outfile), row.names=FALSE, sep="\t")


##------------------------------
Expand Down

0 comments on commit fe76ec5

Please sign in to comment.