mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
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:
parent
b30127052e
commit
abaca151b2
1 changed files with 27 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue