-
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.
initial commit of version 1.3 of SPINGO
- Loading branch information
1 parent
9320fc0
commit 72c2251
Showing
3 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
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,17 @@ | ||
#!/bin/sh | ||
|
||
|
||
|
||
|
||
set -x -e | ||
|
||
export CC=${PREFIX}/bin/gcc | ||
export CXX=${PREFIX}/bin/g++ | ||
|
||
|
||
cd source | ||
make boost-fix=1 | ||
mkdir -p $PREFIX/bin | ||
cp spingo spindex $PREFIX/bin | ||
cp ../dist/*.py $PREFIX/bin | ||
chmod a+x $PREFIX/bin/*.py |
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,25 @@ | ||
about: | ||
home: https://github.com/GuyAllard/SPINGO | ||
license: '' | ||
summary: 'SPecies level IdentificatioN of metaGenOmic amplicons' | ||
build: | ||
number: 0 | ||
string: py{{CONDA_PY}}_boost{{CONDA_BOOST}} | ||
package: | ||
name: spingo | ||
version: 'v1.3' | ||
requirements: | ||
build: | ||
- gcc | ||
- libgcc >=3.4.15 | ||
- boost {{CONDA_BOOST}}* | ||
run: | ||
- libgcc >=3.4.15 | ||
- boost {{CONDA_BOOST}}* | ||
source: | ||
git_rev: v1.3 | ||
git_url: https://github.com/GuyAllard/SPINGO.git | ||
|
||
test: | ||
commands: | ||
- spingo --version |