diff options
author | Efraim Flashner | 2019-11-21 02:42:04 -0600 |
---|---|---|
committer | Efraim Flashner | 2019-11-21 02:42:04 -0600 |
commit | 4ea5e4137c8ca5c325eacc9f8b092f3bd7eef015 (patch) | |
tree | da7f1e82175d5d73ee3a09081a24e06ff8fe0d97 /gn/packages/bioinformatics.scm | |
parent | c260b894919bb86900009749b4a77edabca6b6af (diff) | |
download | guix-bioinformatics-4ea5e4137c8ca5c325eacc9f8b092f3bd7eef015.tar.gz |
gn: rn6-assembly-error-app: Use pngs from static location.
* gn/packages/bioinformatics.scm (rn6-assembly-error-app): Search for
pngs in gn-rshiny'S $HOME rather than in /gnu/store.
Diffstat (limited to 'gn/packages/bioinformatics.scm')
-rw-r--r-- | gn/packages/bioinformatics.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gn/packages/bioinformatics.scm b/gn/packages/bioinformatics.scm index 23d1524..d8f4803 100644 --- a/gn/packages/bioinformatics.scm +++ b/gn/packages/bioinformatics.scm @@ -751,7 +751,10 @@ different datasets. (source (assoc-ref %build-inputs "source"))) (copy-recursively source targetdir) (substitute* (string-append targetdir "/server.r") - (("./pngs") (string-append targetdir "/pngs")) + ;; This version is ideal for deploying with the included PNGs. + ;; But we want all of them, so we use a local copy in gn-rshiny's $HOME. + ;;(("./pngs") (string-append targetdir "/pngs")) + (("./pngs") "/home/gn-rshiny/hchen/rn6app/pngs") (("convert") convert)) (mkdir-p (string-append out "/bin")) (call-with-output-file app |