[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
35/36: gnu: Add seqPattern.
From: |
Ricardo Wurmus |
Subject: |
35/36: gnu: Add seqPattern. |
Date: |
Thu, 07 Jan 2016 16:19:17 +0000 |
rekado pushed a commit to branch master
in repository guix.
commit 03ea5a357ecc8d821078cbbcfb038ee6eeb46898
Author: Ricardo Wurmus <address@hidden>
Date: Wed Dec 23 17:34:45 2015 +0100
gnu: Add seqPattern.
* gnu/packages/bioinformatics.scm (r-seqpattern): New variable.
---
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 9224abd..f574bde 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -3886,6 +3886,32 @@ genome data packages and support for efficient SNP
representation.")
microarray data, using nearest neighbor averaging.")
(license license:gpl2+)))
+(define-public r-seqpattern
+ (package
+ (name "r-seqpattern")
+ (version "1.2.0")
+ (source (origin
+ (method url-fetch)
+ (uri (bioconductor-uri "seqPattern" version))
+ (sha256
+ (base32
+ "0p9zj6bic7sa0hb2bjm988kkk5n9r1kvlbqkzvy702f642n0j53i"))))
+ (properties
+ `((upstream-name . "seqPattern")))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-biostrings" ,r-biostrings)
+ ("r-genomicranges" ,r-genomicranges)
+ ("r-iranges" ,r-iranges)
+ ("r-plotrix" ,r-plotrix)))
+ (home-page "http://bioconductor.org/packages/seqPattern")
+ (synopsis "Visualising oligonucleotide patterns and motif occurrences")
+ (description
+ "This package provides tools to visualize oligonucleotide patterns and
+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-qtl
(package
(name "r-qtl")
- 19/36: gnu: Add GenomicFeatures., (continued)
- 19/36: gnu: Add GenomicFeatures., Ricardo Wurmus, 2016/01/07
- 22/36: gnu: Add DT., Ricardo Wurmus, 2016/01/07
- 30/36: gnu: Add topGO., Ricardo Wurmus, 2016/01/07
- 25/36: gnu: Add R.oo., Ricardo Wurmus, 2016/01/07
- 34/36: gnu: Add impute., Ricardo Wurmus, 2016/01/07
- 31/36: gnu: Add viridis., Ricardo Wurmus, 2016/01/07
- 32/36: gnu: Add plotly., Ricardo Wurmus, 2016/01/07
- 36/36: gnu: Add genomation., Ricardo Wurmus, 2016/01/07
- 24/36: gnu: Add R.methodsS3., Ricardo Wurmus, 2016/01/07
- 29/36: gnu: Add matrixStats., Ricardo Wurmus, 2016/01/07
- 35/36: gnu: Add seqPattern.,
Ricardo Wurmus <=