~ruther/guix-local

abaca151b2aaf1c6e8d05afed9e14daa9259c66c — Ricardo Wurmus 2 years ago b301270
gnu: r-mpo-db: Include HPO sqlite database.

* gnu/packages/bioconductor.scm (r-mpo-db)[arguments]: Bypass fetching of the
database from the internet when in build environment.
[native-inputs]: Add MPO.sqlite.

Change-Id: Ic7228322b89ce78a85a9bd5ffbd985ccd906d268
1 files changed, 27 insertions(+), 1 deletions(-)

M gnu/packages/bioconductor.scm
M gnu/packages/bioconductor.scm => gnu/packages/bioconductor.scm +27 -1
@@ 164,9 164,35 @@ It retrieves this data from the Genome Aggregation Database
        (base32 "0x1rcikg189akbd71yh0p02482km9hry6i69s2srdf5mlgqficvl"))))
    (properties `((upstream-name . "MPO.db")))
    (build-system r-build-system)
    (arguments
     (list
      #:phases
      #~(modify-phases %standard-phases
          (add-after 'unpack 'avoid-internet-access
            (lambda* (#:key inputs #:allow-other-keys)
              (let* ((cache (string-append #$output "/share/MPO.db/cache"))
                     (file (string-append cache "/118299")))
                (mkdir-p cache)
                (copy-file #$(this-package-native-input "MPO.sqlite") file)
                (substitute* "R/zzz.R"
                  (("ah <- suppressMessages\\(AnnotationHub\\(\\)\\)" m)
                   (string-append
                    "if (Sys.getenv(\"NIX_BUILD_TOP\") == \"\") { " m " };"))
                  (("dbfile <- ah.*" m)
                   (string-append
                    "if (Sys.getenv(\"NIX_BUILD_TOP\") != \"\") { dbfile <- \""
                    file "\";} else { " m " }\n")))))))))
    (propagated-inputs
     (list r-annotationdbi r-annotationhub r-biocfilecache r-dbi))
    (native-inputs (list r-knitr))
    (native-inputs
     `(("r-knitr" ,r-knitr)
       ("MPO.sqlite"
        ,(origin
           (method url-fetch)
           (uri "https://annotationhub.bioconductor.org/fetch/118299")
           (file-name "MPO.sqlite")
           (sha256
            (base32 "12rf5dpnjrpw55bgnbn68dni2g0p87nvs9c7mamqk0ayafs61zl0"))))))
    (home-page "https://github.com/YuLab-SMU/MPO.db")
    (synopsis "set of annotation maps describing the Mouse Phenotype Ontology")
    (description