diff options
author | Roel Janssen <roel@gnu.org> | 2021-04-16 11:52:16 +0200 |
---|---|---|
committer | Roel Janssen <roel@gnu.org> | 2021-04-29 12:14:06 +0200 |
commit | 7540f6915c0ea04412ffdc8d70acd7b063251e74 (patch) | |
tree | af54d985c2ffa635b139ef5e8cf996fbee722b89 /gnu | |
parent | 558d11c3a85e932312de016d978d558bf2876f5b (diff) | |
download | guix-7540f6915c0ea04412ffdc8d70acd7b063251e74.tar guix-7540f6915c0ea04412ffdc8d70acd7b063251e74.tar.gz |
gnu: Update bedtools to 2.30.0.
* gnu/packages/bioinformatics.scm (bedtools): Update to 2.30.0,
[inputs]: Use latest samtools.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index bc67b27d6c..83ebfc2d8f 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -455,7 +455,7 @@ computational cluster.") (define-public bedtools (package (name "bedtools") - (version "2.29.2") + (version "2.30.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/arq5x/bedtools2/releases/" @@ -463,7 +463,7 @@ computational cluster.") "bedtools-" version ".tar.gz")) (sha256 (base32 - "0m3hk6548846w83a9s5drsczvy67n2azx41kj71n03klb2gbzwg3")))) + "1f2hh79l7dn147c2xyfgf5wfjvlqfw32kjfnnh2n1qy6rpzx2fik")))) (build-system gnu-build-system) (arguments '(#:test-target "test" @@ -475,7 +475,7 @@ computational cluster.") (native-inputs `(("python" ,python-wrapper))) (inputs - `(("samtools" ,samtools-1.9) + `(("samtools" ,samtools) ("zlib" ,zlib))) (home-page "https://github.com/arq5x/bedtools2") (synopsis "Tools for genome analysis and arithmetic") |