Skip to content

Commit

Permalink
bgreat addition
Browse files Browse the repository at this point in the history
  • Loading branch information
Malfoy committed Nov 27, 2018
1 parent 456c2a0 commit d8ddd20
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
11 changes: 11 additions & 0 deletions recipes/bgreat2/build.sh
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
33 changes: 33 additions & 0 deletions recipes/bgreat2/meta.yaml
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)

0 comments on commit d8ddd20

Please sign in to comment.