diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-11-03 15:48:17 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-11-03 22:49:11 +0100 |
commit | bcf0ecd1ecf2f1aa47c606a784bc4b411d3798ff (patch) | |
tree | 754695038a949a7868a3059724112b569447478f /gnu/packages/bioconductor.scm | |
parent | 6304d3cce64a7e6294fd1ccc833c8db2a5d3f541 (diff) |
gnu: Add r-hpo-db.
* gnu/packages/bioconductor.scm (r-hpo-db): New variable.
Change-Id: I4de4bde150f5ff5634e83a6e2e715cddd30db9b2
Diffstat (limited to 'gnu/packages/bioconductor.scm')
-rw-r--r-- | gnu/packages/bioconductor.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 21938a2e5f..74dd7febfe 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -68,6 +68,33 @@ ;;; Annotations +(define-public r-hpo-db + (package + (name "r-hpo-db") + (version "0.99.2") + (source + (origin + (method url-fetch) + (uri (bioconductor-uri "HPO.db" version + 'annotation)) + (sha256 + (base32 "1brzrnafvyh76h8a663gk5lprhixxpi9xi65vwgxwf7jh6yw0was")))) + (properties `((upstream-name . "HPO.db"))) + (build-system r-build-system) + (propagated-inputs + (list r-annotationdbi r-annotationhub r-biocfilecache r-dbi)) + (native-inputs (list r-knitr)) + (home-page "https://bioconductor.org/packages/HPO.db") + (synopsis + "Annotation maps describing the entire Human Phenotype Ontology") + (description + "Human Phenotype Ontology (HPO) was developed to create a consistent +description of gene products with disease perspectives, and is essential for +supporting functional genomics in disease context. Accurate disease +descriptions can discover new relationships between genes and disease, and new +functions for previous uncharacteried genes and alleles.") + (license license:artistic2.0))) + (define-public r-mafh5-gnomad-v3-1-2-grch38 (package (name "r-mafh5-gnomad-v3-1-2-grch38") |