diff options
author | Mark H Weaver <[email protected]> | 2015-10-17 19:08:53 -0400 |
---|---|---|
committer | Mark H Weaver <[email protected]> | 2015-10-17 19:08:53 -0400 |
commit | ccb522324bd99cc379ada4a1da5b8bcfd7d12c5b (patch) | |
tree | bd73bf8f8dabc046c12c53295b18daad49379887 /gnu/packages/bioinformatics.scm | |
parent | 5fba12ecd3146e17d826167b6b9ffdfcbe2a49c9 (diff) | |
parent | 9e2592a3466c72dbfb64494e1316ce8af1554647 (diff) |
Merge branch 'master' into dbus-update
Diffstat (limited to 'gnu/packages/bioinformatics.scm')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 4b7f76b9c6..51e3df6d81 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -970,6 +970,9 @@ translated DNA query sequences against a protein reference database (BLASTP and BLASTX alignment mode). The speedup over BLAST is up to 20,000 on short reads at a typical sensitivity of 90-99% relative to BLAST depending on the data and settings.") + ;; diamond fails to build on other platforms + ;; https://github.com/bbuchfink/diamond/issues/18 + (supported-systems '("x86_64-linux")) (license (license:non-copyleft "file://src/COPYING" "See src/COPYING in the distribution.")))) @@ -2179,6 +2182,10 @@ viewer.") (lambda _ (chdir "ngs-sdk") #t) %standard-phases)))) (native-inputs `(("perl" ,perl))) + ;; According to the test + ;; unless ($MARCH =~ /x86_64/i || $MARCH =~ /i?86/i) + ;; in ngs-sdk/setup/konfigure.perl + (supported-systems '("i686-linux" "x86_64-linux")) (home-page "https://github.com/ncbi/ngs") (synopsis "API for accessing Next Generation Sequencing data") (description |