diff options
author | Pjotr Prins | 2024-04-03 04:47:55 -0500 |
---|---|---|
committer | Pjotr Prins | 2024-04-03 04:47:55 -0500 |
commit | 75ff5fe367f6de7d1bb7ad4c3fb29ed97d32bd10 (patch) | |
tree | 72074480941607de21486b0adae761fe80e3ddfe | |
parent | 5871a33c424510c9fad10a240d355dfb31b027e7 (diff) | |
download | guix-bioinformatics-75ff5fe367f6de7d1bb7ad4c3fb29ed97d32bd10.tar.gz |
genenetwork3-stable: patch path to R script - missing bracket
-rw-r--r-- | gn/packages/genenetwork.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gn/packages/genenetwork.scm b/gn/packages/genenetwork.scm index a0c8a57..20e91be 100644 --- a/gn/packages/genenetwork.scm +++ b/gn/packages/genenetwork.scm @@ -353,7 +353,7 @@ (package (inherit genenetwork3) (name "genenetwork3-stable") - (version (string-append "stable-" (git-version "3.11" revision commit))) + (version (string-append (git-version "3.11" revision commit))) (arguments (list #:phases @@ -361,7 +361,7 @@ (add-before 'build 'update-paths (lambda _ (substitute* "gn3/api/rqtl.py" - (("scripts/rqtl_wrapper.R)" + (("scripts/rqtl_wrapper.R)") (string-append #$output "/scripts/rqtl_wrapper.R")))))))) (source (git-checkout |