-
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.
- Loading branch information
Showing
2 changed files
with
44 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
|
||
export CFLAGS="-I$PREFIX/include" | ||
export LDFLAGS="-L$PREFIX/lib" | ||
export CPATH=${PREFIX}/include | ||
|
||
|
||
make zobu="-L${PREFIX}/lib " | ||
|
||
mkdir -p $PREFIX/bin | ||
cp bgreat $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,33 @@ | ||
{% set version = "2" %} | ||
{% set md5 = "b95e4ca6525996e8143fffec98d2cfaa" %} | ||
|
||
|
||
package: | ||
name: bgreat | ||
version: '{{version}}' | ||
|
||
source: | ||
url: "https://github.com/Malfoy/BGREAT2/archive/master.zip" | ||
md5: '{{md5}}' | ||
build: | ||
number: 1 | ||
skip: true# [OSX] | ||
|
||
requirements: | ||
build: | ||
- {{ compiler('c') }} | ||
- {{ compiler('cxx') }} | ||
- zlib | ||
host: | ||
- zlib | ||
run: | ||
- zlib | ||
|
||
test: | ||
commands: | ||
- bgreat | ||
|
||
about: | ||
home: https://github.com/Malfoy/BGREAT2 | ||
license: AGPL-3.0 | ||
summary: BGREAT2 is a read mapping tool for NGS sequencing data that align reads on a de Bruijn graph. Preliminary version described at https://bmcbioinformatics.biomedcentral.com/articles/10.1186/s12859-016-1103-9 and used in Bcool a short read corrector (https://arxiv.org/abs/1711.03336) |