diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2016-02-16 17:19:30 +0100 |
---|---|---|
committer | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2016-02-24 17:26:39 +0100 |
commit | fefedf98cb03971ec7b348c3b0468e1b77956f4a (patch) | |
tree | 6f33ed7fae48510357dc2291bcb1dfb475c31527 | |
parent | 486da4914397005b822e9329b1f511acfefb76cb (diff) | |
download | guix-fefedf98cb03971ec7b348c3b0468e1b77956f4a.tar guix-fefedf98cb03971ec7b348c3b0468e1b77956f4a.tar.gz |
gnu: Add r-org-ce-eg-db.
* gnu/packages/bioinformatics.scm (r-org-ce-eg-db): New variable.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index d007ae80d4..34590f1547 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -4283,6 +4283,32 @@ genomic intervals. In addition, it can use BAM or BigWig files as input.") annotations for the human genome.") (license license:artistic2.0))) +(define-public r-org-ce-eg-db + (package + (name "r-org-ce-eg-db") + (version "3.2.3") + (source (origin + (method url-fetch) + ;; We cannot use bioconductor-uri here because this tarball is + ;; located under "data/annotation/" instead of "bioc/". + (uri (string-append "http://www.bioconductor.org/packages/" + "release/data/annotation/src/contrib/" + "org.Ce.eg.db_" version ".tar.gz")) + (sha256 + (base32 + "1d0lx00ybq34yqs6mziaa0lrh77xm0ggsmi76g6k95f77gi7m1sw")))) + (properties + `((upstream-name . "org.Ce.eg.db"))) + (build-system r-build-system) + (propagated-inputs + `(("r-annotationdbi" ,r-annotationdbi))) + (home-page "http://www.bioconductor.org/packages/org.Ce.eg.db/") + (synopsis "Genome wide annotation for Worm") + (description + "This package provides mappings from Entrez gene identifiers to various +annotations for the genome of the model worm Caenorhabditis elegans.") + (license license:artistic2.0))) + (define-public r-qtl (package (name "r-qtl") |