diff options
| -rw-r--r-- | scripts/rqtl_wrapper.R | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/rqtl_wrapper.R b/scripts/rqtl_wrapper.R index dd19281..0b39a6a 100644 --- a/scripts/rqtl_wrapper.R +++ b/scripts/rqtl_wrapper.R @@ -4,6 +4,9 @@ library(stringi) library(stringr) + +cat("Running the qtl script.\n") + tmp_dir = Sys.getenv("TMPDIR") if (!dir.exists(tmp_dir)) { tmp_dir = "/tmp" @@ -357,4 +360,4 @@ if (!is.null(opt$pairscan)) { write.csv(qtl_results, out_file) } - +cat("End of script. Now working on processing the results.\n") |
