diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2015-10-14 20:21:43 +1000 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2015-10-14 20:02:25 +0300 |
commit | d9c44e9c6afe145ef274286c0ac47a8592f0790d (patch) | |
tree | a97f5ec62e126c197adfb644c5d2cbbdadc7aef7 /gnu | |
parent | 6159943851d32e0396f96a4b3fc5e31b500cc8a6 (diff) | |
download | patches-d9c44e9c6afe145ef274286c0ac47a8592f0790d.tar patches-d9c44e9c6afe145ef274286c0ac47a8592f0790d.tar.gz |
gnu: diamond: Restrict supported systems to x86_64-linux.
* gnu/packages/bioinformatics.scm (diamond) [supported-systems]: Restrict to
x86_64-linux.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 4b7f76b9c6..74a738ef38 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.")))) |