unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* bug#26963: Add r-edaseq.
@ 2017-05-17 14:39 Ricardo Wurmus
  2017-05-17 14:52 ` bug#26963: [PATCH 1/3] gnu: Add r-aroma-light Ricardo Wurmus
  0 siblings, 1 reply; 5+ messages in thread
From: Ricardo Wurmus @ 2017-05-17 14:39 UTC (permalink / raw)
  To: 26963

The following three patches add bioinfo tools for R.

-- 
Ricardo

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#26963: [PATCH 1/3] gnu: Add r-aroma-light.
  2017-05-17 14:39 bug#26963: Add r-edaseq Ricardo Wurmus
@ 2017-05-17 14:52 ` Ricardo Wurmus
  2017-05-17 14:52   ` bug#26963: [PATCH 2/3] gnu: Add r-deseq Ricardo Wurmus
                     ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Ricardo Wurmus @ 2017-05-17 14:52 UTC (permalink / raw)
  To: 26963; +Cc: Ricardo Wurmus

* gnu/packages/bioinformatics.scm (r-aroma-light): New variable.
---
 gnu/packages/bioinformatics.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 9f5d8141d..cf3da3dac 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -8956,6 +8956,33 @@ algorithms; density clustering, hierarchical clustering, k-means, and the
 discovery of differentially expressed genes and markers.")
       (license license:gpl3))))
 
+(define-public r-aroma-light
+  (package
+    (name "r-aroma-light")
+    (version "3.6.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (bioconductor-uri "aroma.light" version))
+       (sha256
+        (base32
+         "10snykmmx36qaymyf5s1n1km8hsscyzpykcpf0mzsrcv8ml9rp8a"))))
+    (properties `((upstream-name . "aroma.light")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-matrixstats" ,r-matrixstats)
+       ("r-r-methodss3" ,r-r-methodss3)
+       ("r-r-oo" ,r-r-oo)
+       ("r-r-utils" ,r-r-utils)))
+    (home-page "https://github.com/HenrikBengtsson/aroma.light")
+    (synopsis "Methods for normalization and visualization of microarray data")
+    (description
+     "This package provides methods for microarray analysis that take basic
+data types such as matrices and lists of vectors.  These methods can be used
+standalone, be utilized in other packages, or be wrapped up in higher-level
+classes.")
+    (license license:gpl2+)))
+
 (define htslib-for-sambamba
   (let ((commit "2f3c3ea7b301f9b45737a793c0b2dcf0240e5ee5"))
     (package
-- 
2.12.2

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* bug#26963: [PATCH 2/3] gnu: Add r-deseq.
  2017-05-17 14:52 ` bug#26963: [PATCH 1/3] gnu: Add r-aroma-light Ricardo Wurmus
@ 2017-05-17 14:52   ` Ricardo Wurmus
  2017-05-17 14:52   ` bug#26963: [PATCH 3/3] gnu: Add r-edaseq Ricardo Wurmus
  2017-05-30 21:06   ` bug#26963: [PATCH 1/3] gnu: Add r-aroma-light Ricardo Wurmus
  2 siblings, 0 replies; 5+ messages in thread
From: Ricardo Wurmus @ 2017-05-17 14:52 UTC (permalink / raw)
  To: 26963; +Cc: Ricardo Wurmus

* gnu/packages/bioinformatics.scm (r-deseq): New variable.
---
 gnu/packages/bioinformatics.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index cf3da3dac..4c37435ad 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -8983,6 +8983,37 @@ standalone, be utilized in other packages, or be wrapped up in higher-level
 classes.")
     (license license:gpl2+)))
 
+(define-public r-deseq
+  (package
+    (name "r-deseq")
+    (version "1.28.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (bioconductor-uri "DESeq" version))
+       (sha256
+        (base32
+         "0j3dgcxd64m9qknmlcbdzvg4xhp981xd6nbwsvnqjfn6yypslgyw"))))
+    (properties `((upstream-name . "DESeq")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-biobase" ,r-biobase)
+       ("r-biocgenerics" ,r-biocgenerics)
+       ("r-genefilter" ,r-genefilter)
+       ("r-geneplotter" ,r-geneplotter)
+       ("r-lattice" ,r-lattice)
+       ("r-locfit" ,r-locfit)
+       ("r-mass" ,r-mass)
+       ("r-rcolorbrewer" ,r-rcolorbrewer)))
+    (home-page "http://www-huber.embl.de/users/anders/DESeq")
+    (synopsis "Differential gene expression analysis")
+    (description
+     "This package provides tools for estimating variance-mean dependence in
+count data from high-throughput genetic sequencing assays and for testing for
+differential expression based on a model using the negative binomial
+distribution.")
+    (license license:gpl3+)))
+
 (define htslib-for-sambamba
   (let ((commit "2f3c3ea7b301f9b45737a793c0b2dcf0240e5ee5"))
     (package
-- 
2.12.2

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* bug#26963: [PATCH 3/3] gnu: Add r-edaseq.
  2017-05-17 14:52 ` bug#26963: [PATCH 1/3] gnu: Add r-aroma-light Ricardo Wurmus
  2017-05-17 14:52   ` bug#26963: [PATCH 2/3] gnu: Add r-deseq Ricardo Wurmus
@ 2017-05-17 14:52   ` Ricardo Wurmus
  2017-05-30 21:06   ` bug#26963: [PATCH 1/3] gnu: Add r-aroma-light Ricardo Wurmus
  2 siblings, 0 replies; 5+ messages in thread
From: Ricardo Wurmus @ 2017-05-17 14:52 UTC (permalink / raw)
  To: 26963; +Cc: Ricardo Wurmus

* gnu/packages/bioinformatics.scm (r-edaseq): New variable.
---
 gnu/packages/bioinformatics.scm | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 4c37435ad..35f1e77f3 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -9014,6 +9014,44 @@ differential expression based on a model using the negative binomial
 distribution.")
     (license license:gpl3+)))
 
+(define-public r-edaseq
+  (package
+    (name "r-edaseq")
+    (version "2.10.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (bioconductor-uri "EDASeq" version))
+       (sha256
+        (base32
+         "0f25dfc8hdii9fjm3bf89vy9jkxv23sa62fkcga5b4gkipwrvm9a"))))
+    (properties `((upstream-name . "EDASeq")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-annotationdbi" ,r-annotationdbi)
+       ("r-aroma-light" ,r-aroma-light)
+       ("r-biobase" ,r-biobase)
+       ("r-biocgenerics" ,r-biocgenerics)
+       ("r-biomart" ,r-biomart)
+       ("r-biostrings" ,r-biostrings)
+       ("r-deseq" ,r-deseq)
+       ("r-genomicfeatures" ,r-genomicfeatures)
+       ("r-genomicranges" ,r-genomicranges)
+       ("r-iranges" ,r-iranges)
+       ("r-rsamtools" ,r-rsamtools)
+       ("r-shortread" ,r-shortread)))
+    (home-page "https://github.com/drisso/EDASeq")
+    (synopsis "Exploratory data analysis and normalization for RNA-Seq")
+    (description
+     "This package provides support for numerical and graphical summaries of
+RNA-Seq genomic read data.  Provided within-lane normalization procedures to
+adjust for GC-content effect (or other gene-level effects) on read counts:
+loess robust local regression, global-scaling, and full-quantile
+normalization.  Between-lane normalization procedures to adjust for
+distributional differences between lanes (e.g., sequencing depth):
+global-scaling and full-quantile normalization.")
+    (license license:artistic2.0)))
+
 (define htslib-for-sambamba
   (let ((commit "2f3c3ea7b301f9b45737a793c0b2dcf0240e5ee5"))
     (package
-- 
2.12.2

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* bug#26963: [PATCH 1/3] gnu: Add r-aroma-light.
  2017-05-17 14:52 ` bug#26963: [PATCH 1/3] gnu: Add r-aroma-light Ricardo Wurmus
  2017-05-17 14:52   ` bug#26963: [PATCH 2/3] gnu: Add r-deseq Ricardo Wurmus
  2017-05-17 14:52   ` bug#26963: [PATCH 3/3] gnu: Add r-edaseq Ricardo Wurmus
@ 2017-05-30 21:06   ` Ricardo Wurmus
  2 siblings, 0 replies; 5+ messages in thread
From: Ricardo Wurmus @ 2017-05-30 21:06 UTC (permalink / raw)
  To: 26963-done

Pushed with commit 296b3c631c2e8cf42f5a0920cd11c424daec9ea4.

-- 
Ricardo
  
  GPG: BCA6 89B6 3655 3801 C3C6  2150 197A 5888 235F ACAC
  https://elephly.net

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-05-30 21:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-17 14:39 bug#26963: Add r-edaseq Ricardo Wurmus
2017-05-17 14:52 ` bug#26963: [PATCH 1/3] gnu: Add r-aroma-light Ricardo Wurmus
2017-05-17 14:52   ` bug#26963: [PATCH 2/3] gnu: Add r-deseq Ricardo Wurmus
2017-05-17 14:52   ` bug#26963: [PATCH 3/3] gnu: Add r-edaseq Ricardo Wurmus
2017-05-30 21:06   ` bug#26963: [PATCH 1/3] gnu: Add r-aroma-light Ricardo Wurmus

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).