mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-29 07:42:23 -05:00
gnu: Add sylamer.
* gnu/packages/bioinformatics.scm (sylamer): New variable.
This commit is contained in:
parent
95792a26c3
commit
b279e778ab
1 changed files with 41 additions and 0 deletions
|
@ -13674,6 +13674,47 @@ (define-public smithwaterman
|
||||||
;; The licensing terms are unclear: https://github.com/ekg/smithwaterman/issues/9.
|
;; The licensing terms are unclear: https://github.com/ekg/smithwaterman/issues/9.
|
||||||
(license (list license:gpl2 license:expat)))))
|
(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
|
(define-public multichoose
|
||||||
(package
|
(package
|
||||||
(name "multichoose")
|
(name "multichoose")
|
||||||
|
|
Loading…
Reference in a new issue