aboutsummaryrefslogtreecommitdiff
path: root/gn
diff options
context:
space:
mode:
authorpjotrp2020-05-13 18:27:12 -0500
committerpjotrp2020-05-13 18:27:12 -0500
commitfb1f4869eb99f84834cf414f98f58515cca05e9e (patch)
treef6e5fd96bfe5d61f2c386f9ff2ccbbc8b0e2952f /gn
parent42238b67c3a76d280b4665ed8307a60b74eb2d60 (diff)
downloadguix-bioinformatics-fb1f4869eb99f84834cf414f98f58515cca05e9e.tar.gz
gn: Add clustalw.
Diffstat (limited to 'gn')
-rw-r--r--gn/packages/bioinformatics.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/gn/packages/bioinformatics.scm b/gn/packages/bioinformatics.scm
index 0678444..055e2e6 100644
--- a/gn/packages/bioinformatics.scm
+++ b/gn/packages/bioinformatics.scm
@@ -1192,6 +1192,33 @@ runApp(launch.browser=0, port=4206)~%\n"
"")
(license #f))))
+(define-public clustalw
+ (package
+ (name "clustalw")
+ (version "2.1")
+ (source (origin
+ (method url-fetch)
+ (uri "http://www.clustal.org/download/current/clustalw-2.1.tar.gz")
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "11llyj08liq0bg6vqan8728qjrbam3xhna2wd6g8rzdbhydhalp0"))))
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after
+ 'install 'post-install
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out")))
+ (rename-file (string-append out "/bin/clustalw2")
+ (string-append out "/bin/clustalw"))
+ ))))))
+ (build-system gnu-build-system)
+ (home-page "http://www.clustal.org/")
+ (synopsis "")
+ (description
+ "")
+ (license #f)))
+
(define-public bh20-seq-resource
(let ((commit "bbca5ac9b2538e410efe3e09651f87e5573145de")
(revision "2"))