[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/02: gnu: Add r-spp.
From: |
guix-commits |
Subject: |
01/02: gnu: Add r-spp. |
Date: |
Wed, 26 May 2021 03:35:04 -0400 (EDT) |
roelj pushed a commit to branch master
in repository guix.
commit b1fee8a00318f4cf2cb3f854edc70f5c000ab71f
Author: Roel Janssen <roel@gnu.org>
AuthorDate: Wed May 26 09:29:01 2021 +0200
gnu: Add r-spp.
* gnu/packages/bioinformatics.scm (r-spp): New variable.
---
gnu/packages/bioinformatics.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 9c77d66..bcc9f5b 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -8108,6 +8108,30 @@ sequence motif occurrences across a large set of
sequences centred at a common
reference point and sorted by a user defined feature.")
(license license:gpl3+)))
+(define-public r-spp
+ (package
+ (name "r-spp")
+ (version "1.16.0")
+ (source (origin
+ (method url-fetch)
+ (uri (cran-uri "spp" version))
+ (sha256
+ (base32
+ "08zxxgyp0h6733b08jmml7k4rhfd3mi5dda3jrzid0s184y0z29w"))))
+ (build-system r-build-system)
+ (inputs
+ `(("zlib" ,zlib)))
+ (propagated-inputs
+ `(("r-bh" ,r-bh)
+ ("r-catools" ,r-catools)
+ ("r-rcpp" ,r-rcpp)
+ ("r-rsamtools" ,r-rsamtools)))
+ (home-page "https://cran.r-project.org/web/packages/spp/")
+ (synopsis "ChIP-Seq processing pipeline")
+ (description "This package provides tools for analysis of ChIP-seq and
+other functional sequencing data.")
+ (license license:gpl2)))
+
(define-public r-genomation
(package
(name "r-genomation")