-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update spades to 3.13.0 * spades: removed dipspades; added 3.12.0 recipe in subdir * bumped build number for 3.11.1 due to CI failure
- Loading branch information
Showing
4 changed files
with
66 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
|
||
set -e -o pipefail | ||
|
||
outdir=$PREFIX/share/$PKG_NAME-$PKG_VERSION-$PKG_BUILDNUM | ||
mkdir -p $outdir | ||
mkdir -p $PREFIX/bin | ||
|
||
cp -r bin $outdir | ||
cp -r share $outdir | ||
|
||
ln -s $outdir/bin/* $PREFIX/bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{% set version = "3.12.0" %} | ||
|
||
package: | ||
name: spades | ||
version: {{ version }} | ||
|
||
source: | ||
# We currently cannot build SPAdes from source, because it requires g++ 5.3.1 or later, | ||
# which bioconda does not yet support. Therefore, we fetch the statically compiled binaries. | ||
url: https://github.com/ablab/spades/releases/download/v{{ version }}/SPAdes-{{ version }}-Darwin.tar.gz # [osx] | ||
sha256: e2a4f589c190767310545300386c7e2841ebdfe3775850cd52879ef01d376575 # [osx] | ||
url: https://github.com/ablab/spades/releases/download/v{{ version }}/SPAdes-{{ version }}-Linux.tar.gz # [linux] | ||
sha256: 5e8988b0cfd8b5a84b718e1e5af21524c7b1369bcba337dfebeed9c22a4f7141 # [linux] | ||
|
||
build: | ||
number: 1 | ||
|
||
requirements: | ||
run: | ||
- python | ||
|
||
test: | ||
commands: | ||
- spades.py --version | ||
- rnaspades.py --version | ||
- truspades.py --version | ||
- dipspades.py --version | ||
- metaspades.py --version | ||
- plasmidspades.py --version | ||
- spades.py --test && rm -rf spades_test | ||
- spades-kmercount -h | ||
|
||
about: | ||
home: http://cab.spbu.ru/software/spades/ | ||
license: GPLv2 | ||
license_family: GPL | ||
license_file: share/spades/LICENSE | ||
summary: | | ||
SPAdes (St. Petersburg genome assembler) is intended for both standard isolates and single-cell MDA bacteria assemblies. | ||
dev_url: https://github.com/ablab/spades | ||
doc_url: http://cab.spbu.ru/files/release{{version}}/manual.html | ||
extra: | ||
recipe-maintainers: | ||
- druvus | ||
- notestaff | ||
identifiers: | ||
- biotools:Spades | ||
- doi:10.1089/cmb.2012.0021 | ||
- doi:10.1101/gr.213959.116 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters