[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#43400] [PATCH 05/12] gnu: r-scran: Move to (gnu packages bioconduct
From: |
zimoun |
Subject: |
[bug#43400] [PATCH 05/12] gnu: r-scran: Move to (gnu packages bioconductor). |
Date: |
Mon, 14 Sep 2020 18:07:40 +0200 |
* gnu/packages/bioinformatics.scm (r-scran): Move from here...
* gnu/packages/bioconductor.scm (r-scran): ...to here.
---
gnu/packages/bioconductor.scm | 43 +++++++++++++++++++++++++++++++++
gnu/packages/bioinformatics.scm | 43 ---------------------------------
2 files changed, 43 insertions(+), 43 deletions(-)
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm
index e81e9cd726..77de0e2275 100644
--- a/gnu/packages/bioconductor.scm
+++ b/gnu/packages/bioconductor.scm
@@ -8336,6 +8336,49 @@ routines.")
objects from the @code{graph} package.")
(license license:epl1.0)))
+(define-public r-scran
+ (package
+ (name "r-scran")
+ (version "1.16.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (bioconductor-uri "scran" version))
+ (sha256
+ (base32
+ "1gm4ys4aq8h1pn45k1rxk384wjyf55izivw8kgxbrflj6j4xvvsv"))))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-beachmat" ,r-beachmat)
+ ("r-bh" ,r-bh)
+ ("r-biocgenerics" ,r-biocgenerics)
+ ("r-biocneighbors" ,r-biocneighbors)
+ ("r-biocparallel" ,r-biocparallel)
+ ("r-biocsingular" ,r-biocsingular)
+ ("r-delayedarray" ,r-delayedarray)
+ ("r-delayedmatrixstats" ,r-delayedmatrixstats)
+ ("r-dqrng" ,r-dqrng)
+ ("r-edger" ,r-edger)
+ ("r-igraph" ,r-igraph)
+ ("r-iranges" ,r-iranges)
+ ("r-limma" ,r-limma)
+ ("r-matrix" ,r-matrix)
+ ("r-rcpp" ,r-rcpp)
+ ("r-s4vectors" ,r-s4vectors)
+ ("r-scater" ,r-scater)
+ ("r-singlecellexperiment" ,r-singlecellexperiment)
+ ("r-statmod" ,r-statmod)
+ ("r-summarizedexperiment" ,r-summarizedexperiment)))
+ (native-inputs
+ `(("r-knitr" ,r-knitr)))
+ (home-page "https://bioconductor.org/packages/scran")
+ (synopsis "Methods for single-cell RNA-Seq data analysis")
+ (description "This package implements a variety of low-level analyses of
+single-cell RNA-seq data. Methods are provided for normalization of
+cell-specific biases, assignment of cell cycle phase, and detection of highly
+variable and significantly correlated genes.")
+ (license license:gpl3)))
+
(define-public r-delayedmatrixstats
(package
(name "r-delayedmatrixstats")
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index ccdc693e08..dcafbb2d21 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -10857,49 +10857,6 @@ various analyses of single-cell RNA-seq gene
expression data, with a focus on
quality control.")
(license license:gpl2+)))
-(define-public r-scran
- (package
- (name "r-scran")
- (version "1.16.0")
- (source
- (origin
- (method url-fetch)
- (uri (bioconductor-uri "scran" version))
- (sha256
- (base32
- "1gm4ys4aq8h1pn45k1rxk384wjyf55izivw8kgxbrflj6j4xvvsv"))))
- (build-system r-build-system)
- (propagated-inputs
- `(("r-beachmat" ,r-beachmat)
- ("r-bh" ,r-bh)
- ("r-biocgenerics" ,r-biocgenerics)
- ("r-biocneighbors" ,r-biocneighbors)
- ("r-biocparallel" ,r-biocparallel)
- ("r-biocsingular" ,r-biocsingular)
- ("r-delayedarray" ,r-delayedarray)
- ("r-delayedmatrixstats" ,r-delayedmatrixstats)
- ("r-dqrng" ,r-dqrng)
- ("r-edger" ,r-edger)
- ("r-igraph" ,r-igraph)
- ("r-iranges" ,r-iranges)
- ("r-limma" ,r-limma)
- ("r-matrix" ,r-matrix)
- ("r-rcpp" ,r-rcpp)
- ("r-s4vectors" ,r-s4vectors)
- ("r-scater" ,r-scater)
- ("r-singlecellexperiment" ,r-singlecellexperiment)
- ("r-statmod" ,r-statmod)
- ("r-summarizedexperiment" ,r-summarizedexperiment)))
- (native-inputs
- `(("r-knitr" ,r-knitr)))
- (home-page "https://bioconductor.org/packages/scran")
- (synopsis "Methods for single-cell RNA-Seq data analysis")
- (description "This package implements a variety of low-level analyses of
-single-cell RNA-seq data. Methods are provided for normalization of
-cell-specific biases, assignment of cell cycle phase, and detection of highly
-variable and significantly correlated genes.")
- (license license:gpl3)))
-
(define-public r-dropbead
(let ((commit "d746c6f3b32110428ea56d6a0001ce52a251c247")
(revision "2"))
--
2.28.0
- [bug#43400] [PATCH 00/12] Move some BioConductor to (gnu packages bioconductor), zimoun, 2020/09/14
- [bug#43400] [PATCH 01/12] gnu: r-fourcseq: Move to (gnu packages bioconductor)., zimoun, 2020/09/14
- [bug#43400] [PATCH 02/12] gnu: r-preprocesscore: Move to (gnu packages bioconductor)., zimoun, 2020/09/14
- [bug#43400] [PATCH 03/12] gnu: r-rgraphviz: Move to (gnu packages bioconductor)., zimoun, 2020/09/14
- [bug#43400] [PATCH 04/12] gnu: r-delayedmatrixstats: Move to (gnu packages bioconductor)., zimoun, 2020/09/14
- [bug#43400] [PATCH 08/12] gnu: r-beachmat: Move to (gnu packages bioconductor)., zimoun, 2020/09/14
- [bug#43400] [PATCH 11/12] gnu: r-hitc: Move to (gnu packages bioconductor)., zimoun, 2020/09/14
- [bug#43400] [PATCH 06/12] gnu: r-scater: Move to (gnu packages bioconductor)., zimoun, 2020/09/14
- [bug#43400] [PATCH 05/12] gnu: r-scran: Move to (gnu packages bioconductor).,
zimoun <=
- [bug#43400] [PATCH 07/12] gnu: r-singlecellexperiment: Move to (gnu packages bioconductor)., zimoun, 2020/09/14
- [bug#43400] [PATCH 10/12] gnu: r-hdf5array: Move to (gnu packages bioconductor)., zimoun, 2020/09/14
- [bug#43400] [PATCH 09/12] gnu: r-rhdf5lib: Move to (gnu packages bioconductor)., zimoun, 2020/09/14
- [bug#43400] [PATCH 12/12] gnu: r-fithic: Move to (gnu packages bioconductor)., zimoun, 2020/09/14
- bug#43400: [PATCH 00/12] Move some BioConductor to (gnu packages bioconductor), Ricardo Wurmus, 2020/09/14