[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
32/54: gnu: r-ensembldb: Move to (gnu packages bioconductor).
From: |
guix-commits |
Subject: |
32/54: gnu: r-ensembldb: Move to (gnu packages bioconductor). |
Date: |
Mon, 31 May 2021 10:03:14 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit 88cf24febb43768c780d55cd496034d227096550
Author: zimoun <zimon.toutoune@gmail.com>
AuthorDate: Fri May 21 22:26:04 2021 +0200
gnu: r-ensembldb: Move to (gnu packages bioconductor).
* gnu/packages/bioinformatics.scm (r-ensembldb): Move from here...
* gnu/packages/bioconductor.scm (r-ensembldb): ...to here.
---
gnu/packages/bioconductor.scm | 45 +++++++++++++++++++++++++++++++++++++++++
gnu/packages/bioinformatics.scm | 45 -----------------------------------------
2 files changed, 45 insertions(+), 45 deletions(-)
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm
index 56e7186..eb0bcb2 100644
--- a/gnu/packages/bioconductor.scm
+++ b/gnu/packages/bioconductor.scm
@@ -2603,6 +2603,51 @@ other types of genomic data that produce counts,
including ChIP-seq, SAGE and
CAGE.")
(license license:gpl2+)))
+(define-public r-ensembldb
+ (package
+ (name "r-ensembldb")
+ (version "2.14.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (bioconductor-uri "ensembldb" version))
+ (sha256
+ (base32
+ "1hxwfh19qafpdhzprvw4nr8ks3gz7f0y8gyfhk8yqmmvvnvgqv40"))))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-annotationdbi" ,r-annotationdbi)
+ ("r-annotationfilter" ,r-annotationfilter)
+ ("r-biobase" ,r-biobase)
+ ("r-biocgenerics" ,r-biocgenerics)
+ ("r-biostrings" ,r-biostrings)
+ ("r-curl" ,r-curl)
+ ("r-dbi" ,r-dbi)
+ ("r-genomeinfodb" ,r-genomeinfodb)
+ ("r-genomicfeatures" ,r-genomicfeatures)
+ ("r-genomicranges" ,r-genomicranges)
+ ("r-iranges" ,r-iranges)
+ ("r-protgenerics" ,r-protgenerics)
+ ("r-rsamtools" ,r-rsamtools)
+ ("r-rsqlite" ,r-rsqlite)
+ ("r-rtracklayer" ,r-rtracklayer)
+ ("r-s4vectors" ,r-s4vectors)))
+ (native-inputs
+ `(("r-knitr" ,r-knitr)))
+ (home-page "https://github.com/jotsetung/ensembldb")
+ (synopsis "Utilities to create and use Ensembl-based annotation databases")
+ (description
+ "The package provides functions to create and use transcript-centric
+annotation databases/packages. The annotation for the databases are directly
+fetched from Ensembl using their Perl API. The functionality and data is
+similar to that of the TxDb packages from the @code{GenomicFeatures} package,
+but, in addition to retrieve all gene/transcript models and annotations from
+the database, the @code{ensembldb} package also provides a filter framework
+allowing to retrieve annotations for specific entries like genes encoded on a
+chromosome region or transcript models of lincRNA genes.")
+ ;; No version specified
+ (license license:lgpl3+)))
+
(define-public r-fastseg
(package
(name "r-fastseg")
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index b17ca0f..4be6152 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -9108,51 +9108,6 @@ proteowizard library for mzML and mzIdentML. The netCDF
reading code has
previously been used in XCMS.")
(license license:artistic2.0)))
-(define-public r-ensembldb
- (package
- (name "r-ensembldb")
- (version "2.14.1")
- (source
- (origin
- (method url-fetch)
- (uri (bioconductor-uri "ensembldb" version))
- (sha256
- (base32
- "1hxwfh19qafpdhzprvw4nr8ks3gz7f0y8gyfhk8yqmmvvnvgqv40"))))
- (build-system r-build-system)
- (propagated-inputs
- `(("r-annotationdbi" ,r-annotationdbi)
- ("r-annotationfilter" ,r-annotationfilter)
- ("r-biobase" ,r-biobase)
- ("r-biocgenerics" ,r-biocgenerics)
- ("r-biostrings" ,r-biostrings)
- ("r-curl" ,r-curl)
- ("r-dbi" ,r-dbi)
- ("r-genomeinfodb" ,r-genomeinfodb)
- ("r-genomicfeatures" ,r-genomicfeatures)
- ("r-genomicranges" ,r-genomicranges)
- ("r-iranges" ,r-iranges)
- ("r-protgenerics" ,r-protgenerics)
- ("r-rsamtools" ,r-rsamtools)
- ("r-rsqlite" ,r-rsqlite)
- ("r-rtracklayer" ,r-rtracklayer)
- ("r-s4vectors" ,r-s4vectors)))
- (native-inputs
- `(("r-knitr" ,r-knitr)))
- (home-page "https://github.com/jotsetung/ensembldb")
- (synopsis "Utilities to create and use Ensembl-based annotation databases")
- (description
- "The package provides functions to create and use transcript-centric
-annotation databases/packages. The annotation for the databases are directly
-fetched from Ensembl using their Perl API. The functionality and data is
-similar to that of the TxDb packages from the @code{GenomicFeatures} package,
-but, in addition to retrieve all gene/transcript models and annotations from
-the database, the @code{ensembldb} package also provides a filter framework
-allowing to retrieve annotations for specific entries like genes encoded on a
-chromosome region or transcript models of lincRNA genes.")
- ;; No version specified
- (license license:lgpl3+)))
-
(define-public r-dropbead
(let ((commit "d746c6f3b32110428ea56d6a0001ce52a251c247")
(revision "2"))
- 12/54: gnu: r-genomation: Move to (gnu packages bioconductor)., (continued)
- 12/54: gnu: r-genomation: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 10/54: gnu: r-seqpattern: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 15/54: gnu: r-mzid: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 18/54: gnu: r-edaseq: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 17/54: gnu: r-deseq: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 29/54: gnu: r-affyio: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 21/54: gnu: r-fastseg: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 25/54: gnu: r-complexheatmap: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 20/54: gnu: r-annotationhub: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 22/54: gnu: r-affy: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 32/54: gnu: r-ensembldb: Move to (gnu packages bioconductor).,
guix-commits <=
- 33/54: gnu: r-mzr: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 34/54: gnu: r-protgenerics: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 43/54: gnu: r-tximport: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 28/54: gnu: r-organismdbi: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 42/54: gnu: r-mutationalpatterns: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 46/54: gnu: r-rhdf5: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 48/54: gnu: r-copyhelper: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 51/54: gnu: r-phantompeakqualtools: Let-bind commit, set revision to 1., guix-commits, 2021/05/31
- 24/54: gnu: r-gage: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 26/54: gnu: r-genomicfiles: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31