diff options
-rw-r--r-- | gn3/computations/rqtl.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gn3/computations/rqtl.py b/gn3/computations/rqtl.py index 855a819..605e0e1 100644 --- a/gn3/computations/rqtl.py +++ b/gn3/computations/rqtl.py @@ -26,6 +26,9 @@ output filename generated from a hash of the genotype and phenotype files _hash += generate_hash_of_string( ",".join(rqtl_wrapper_bool_kwargs)) + # Temporarily substitute forward-slashes in hash with underscores + _hash = _hash.replace("/", "_") + _output_filename = f"{_hash}-output.json" return { "output_file": |