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
This commit is contained in:
Ricardo Wurmus 2023-11-03 19:08:19 +01:00
parent b30127052e
commit abaca151b2
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -164,9 +164,35 @@ (define-public r-mpo-db
(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