diff options
| author | Alexander_Kabui | 2025-01-06 09:36:46 +0300 |
|---|---|---|
| committer | Alexander_Kabui | 2025-01-06 09:36:46 +0300 |
| commit | 95f7d112a4e4ec99aa3641876186bc7a906dad2e (patch) | |
| tree | 841ad2dfb5da74ca7a585a9775159588f47e0536 | |
| parent | f9f752152e9e00dbfb756d8a08c10e1892685104 (diff) | |
| download | genenetwork3-95f7d112a4e4ec99aa3641876186bc7a906dad2e.tar.gz | |
feat: Add print statements for start and end of qtl script run.
| -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") |
