Skip to content

Commit

Permalink
integration to bioconda (#12456)
Browse files Browse the repository at this point in the history
  • Loading branch information
Malfoy authored and bgruening committed Dec 12, 2018
1 parent 4327cf4 commit 83b460d
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
14 changes: 14 additions & 0 deletions recipes/bwise/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash

cd src;
make;


mkdir -p $PREFIX/bin;
cp src/path_counter Bwise_path_counter;
cp src/path_to_kmer Bwise_path_to_kmer;
cp src/maximal_sr Bwise_maximal_sr;
cp src/K2000/K2000.py Bwise_K2000.py;
cp src/K2000/K2000_msr_to_gfa.py Bwise_K2000_msr_to_gfa.py;
cp src/K2000/K2000_gfa_to_fasta.py Bwise_K2000_gfa_to_fasta.py;
cp src/Bwise_conda $PREFIX/bin/bwise;
35 changes: 35 additions & 0 deletions recipes/bwise/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{% set version = "1.0.0" %}


package:
name: bwise
version: '{{version}}'

source:
url: "https://github.com/Malfoy/BWISE/archive/1.0.0.tar.gz"
sha256: daca421f91e9b3a4c272b46665df2e681d0068bb53fde86f41f04a2637f4f91d

build:
number: 0
skip: true # [osx]
skip: True # [py27]

requirements:
build:
- {{ compiler('c') }}
- {{ compiler('cxx') }}

run:
- python
- bgreat
- bcalm
- btrim

test:
commands:
- bwise

about:
home: https://github.com/Malfoy/BWISE
license: AGPL-3.0
summary: BWISE is a de Bruijn assembly Workflow using Integral information of Short paired-End reads

0 comments on commit 83b460d

Please sign in to comment.