[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add sylamer.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add sylamer. |
Date: |
Tue, 31 May 2022 18:17:39 -0400 |
This is an automated email from the git hooks/post-receive script.
rekado pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new b279e778ab gnu: Add sylamer.
b279e778ab is described below
commit b279e778ab510e7a789205fe11107daac85147f4
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Wed Jun 1 00:14:30 2022 +0200
gnu: Add sylamer.
* gnu/packages/bioinformatics.scm (sylamer): New variable.
---
gnu/packages/bioinformatics.scm | 41 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 679b5af4a2..7059be7d24 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -13674,6 +13674,47 @@ some of the details of opening and jumping in
tabix-indexed files.")
;; The licensing terms are unclear:
https://github.com/ekg/smithwaterman/issues/9.
(license (list license:gpl2 license:expat)))))
+(define-public sylamer
+ (package
+ (name "sylamer")
+ (version "18-131")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/micans/sylamer/")
+ (commit "aa75c3584797c0c15f860addb645f7bc1dd7627d")))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1ddiwlrdghhb4574rvfw0brjp9gs5l6nfsy82h0m4mvz1dr3gkj5"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list
+ #:tests? #f ; no test target
+ #:make-flags
+ #~(list (string-append "GSLPREFIX=" #$(this-package-input "gsl")))
+ #:phases
+ '(modify-phases %standard-phases
+ (replace 'configure
+ (lambda* (#:key outputs #:allow-other-keys)
+ (substitute* "Makefile"
+ (("cp sylamer \\$\\(HOME\\)/local/bin")
+ (string-append "install -D -t " (assoc-ref outputs "out")
+ "/bin sylamer")))
+ (install-file "Makefile" "src")
+ (chdir "src"))))))
+ (inputs (list gsl zlib))
+ (home-page "https://www.ebi.ac.uk/research/enright/software/sylamer")
+ (synopsis "Asses microRNA binding and siRNA off-target effects")
+ (description "Sylamer is a system for finding significantly over or
+under-represented words in sequences according to a sorted gene list.
+Typically it is used to find significant enrichment or depletion of microRNA
+or siRNA seed sequences from microarray expression data. Sylamer is extremely
+fast and can be applied to genome-wide datasets with ease. Results are
+plotted in terms of a significance landscape plot. These plots show
+significance profiles for each word studied across the sorted genelist.")
+ (license license:gpl3+)))
+
(define-public multichoose
(package
(name "multichoose")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add sylamer.,
guix-commits <=