diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2016-05-17 21:45:49 +1000 |
---|---|---|
committer | Ben Woodcroft <donttrustben@gmail.com> | 2016-05-17 21:45:49 +1000 |
commit | 849485f5a05badf502e28c673e546b4660c4ca46 (patch) | |
tree | 37e8398a6269b43a8a21a638415d2b4df94e3460 | |
parent | daaeed765aebae138b4af1d3861eace0368fe2a6 (diff) | |
download | patches-849485f5a05badf502e28c673e546b4660c4ca46.tar patches-849485f5a05badf502e28c673e546b4660c4ca46.tar.gz |
gnu: sortmerna: Update to 2.1b.
* gnu/packages/bioinformatics.scm (sortmerna): Update to 2.1b.
[inputs]: New field.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 7aa1853256..60cf6b7007 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -3549,7 +3549,7 @@ of these reads to align data quickly through a hash-based indexing scheme.") (define-public sortmerna (package (name "sortmerna") - (version "2.1") + (version "2.1b") (source (origin (method url-fetch) @@ -3559,7 +3559,7 @@ of these reads to align data quickly through a hash-based indexing scheme.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "1mc5cf1c7xh0h7xb11vh7gqgzx0qvrfa606cb8ixlfg3f2av58s4")))) + "1ghaghvd82af9j5adavxh77g7hm247d1r69m3fbi6f1jdivj5ldk")))) (build-system gnu-build-system) (outputs '("out" ;for binaries "db")) ;for sequence databases @@ -3579,6 +3579,8 @@ of these reads to align data quickly through a hash-based indexing scheme.") (install-file file share)) (find-files "rRNA_databases" ".*fasta")) #t)))))) + (inputs + `(("zlib" ,zlib))) (home-page "http://bioinfo.lifl.fr/RNA/sortmerna") (synopsis "Biological sequence analysis tool for NGS reads") (description |