diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-08-09 12:03:14 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-08-09 12:15:26 +0200 |
commit | 7cd98e868ed00898cff5ac3749194b2b42fc02bb (patch) | |
tree | 37ad9b599803a7f773f26f02d6233045942e3324 /gnu/packages/bioinformatics.scm | |
parent | db18d87ac37ac063ea7ee58cfaa4eceb82818a3c (diff) | |
download | patches-7cd98e868ed00898cff5ac3749194b2b42fc02bb.tar patches-7cd98e868ed00898cff5ac3749194b2b42fc02bb.tar.gz |
gnu: freebayes: Move bamtools to inputs.
* gnu/packages/bioinformatics.scm (freebayes)[native-inputs]: Move bamtools
from here...
[inputs]: ...to here.
Diffstat (limited to 'gnu/packages/bioinformatics.scm')
-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 f6a3b8422b..3f1e6b3188 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -15119,8 +15119,9 @@ manipulations on VCF files.") (base32 "1sbzwmcbn78ybymjnhwk7qc5r912azy5vqz2y7y81616yc3ba2a2")))) (build-system gnu-build-system) (inputs - `(("zlib" ,zlib) - ("htslib" ,htslib))) + `(("bamtools" ,bamtools) + ("htslib" ,htslib) + ("zlib" ,zlib))) (native-inputs `(("bc" ,bc) ; Needed for running tests. ("samtools" ,samtools) ; Needed for running tests. @@ -15128,7 +15129,6 @@ manipulations on VCF files.") ("perl" ,perl) ; Needed for running tests. ("procps" ,procps) ; Needed for running tests. ("python" ,python-2) ; Needed for running tests. - ("bamtools" ,bamtools) ("vcflib-src" ,(package-source vcflib)) ;; These are submodules for the vcflib version used in freebayes. ;; This package builds against the .o files so we need to extract the source. |