diff options
Diffstat (limited to 'gn')
-rw-r--r-- | gn/packages/genenetwork.scm | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gn/packages/genenetwork.scm b/gn/packages/genenetwork.scm index 20e91be..af0fea3 100644 --- a/gn/packages/genenetwork.scm +++ b/gn/packages/genenetwork.scm @@ -356,13 +356,21 @@ (version (string-append (git-version "3.11" revision commit))) (arguments (list + #:tests? #f #:phases #~(modify-phases %standard-phases (add-before 'build 'update-paths (lambda _ (substitute* "gn3/api/rqtl.py" (("scripts/rqtl_wrapper.R)") - (string-append #$output "/scripts/rqtl_wrapper.R")))))))) + (string-append #$output "/scripts/rqtl_wrapper.R"))))) + (add-before 'install 'install-scripts + (lambda _ + (begin + (mkdir (string-append #$output "scripts")) + (install-file "scripts/rqtl_wrapper.R" + (string-append #$output "/scripts")))))))) + (source (git-checkout (url "https://github.com/genenetwork/genenetwork3") |