guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/04: gnu: Add samtools-1.14.


From: guix-commits
Subject: 04/04: gnu: Add samtools-1.14.
Date: Tue, 16 Jan 2024 13:37:20 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 9a9f05f1f2427028f70d3f1ab864959b18029f1b
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Jan 16 19:35:37 2024 +0100

    gnu: Add samtools-1.14.
    
    * gnu/packages/bioinformatics.scm (samtools-1.14): New variable.
    
    Change-Id: I0bd35b3865d7a417f55f1f768f7eb0c78a795e0f
---
 gnu/packages/bioinformatics.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index b4b848c0c0..e7ae52176d 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -8520,6 +8520,26 @@ variant calling (in conjunction with bcftools), and a 
simple alignment
 viewer.")
     (license license:expat)))
 
+(define-public samtools-1.14
+  (package/inherit samtools
+    (version "1.14")
+    (source
+     (origin
+       (method url-fetch)
+       (uri
+        (string-append "mirror://sourceforge/samtools/samtools/"
+                       version "/samtools-" version ".tar.bz2"))
+       (sha256
+        (base32
+         "0x3xdda78ac5vx66b3jdsv9sfhyz4npl4znl1zbaf3lbm6xdlhck"))
+       (modules '((guix build utils)))
+       (snippet '(begin
+                   ;; Delete bundled htslib.
+                   (delete-file-recursively "htslib-1.14")))))
+    (native-inputs (list pkg-config))
+    (inputs
+     (list htslib-1.14 ncurses perl python zlib))))
+
 (define-public samtools-1.12
   (package/inherit samtools
     (version "1.12")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]