Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding minnow (dscRNA-seq read level simulator) #13550

Merged
merged 11 commits into from
Feb 8, 2019
Merged
20 changes: 20 additions & 0 deletions recipes/minnow/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/bin/bash

export CFLAGS="-I$PREFIX/include"
#export LDFLAGS="-L$PREFIX/lib"

export CPATH=${PREFIX}/include


mkdir -p $PREFIX/bin
mkdir -p $PREFIX/lib

mkdir -p build
cd build
cmake ..
make
cp src/minnow $PREFIX/bin/
cp src/fixfasta $PREFIX/bin/

cp src/libfixfastalib.a $PREFIX/lib/
cp src/libminnowlib.a $PREFIX/lib/
40 changes: 40 additions & 0 deletions recipes/minnow/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{% set version="master" %}

build:
number: 0

about:
home: https://github.com/COMBINE-lab/minnow
license: GPLv3
summary: A principled framework for rapid simulation of dscRNA-seq data at the read level

package:
name: minnow
version: {{ version }}

source:
url: https://github.com/COMBINE-lab/minnow/archive/{{ version }}.tar.gz
# work on develop until everything compiles cleanly
#url: https://github.com/COMBINE-lab/salmon/archive/develop.tar.gz
md5: 055ebfaa5ce660df327a28c15ca22f4f
#patches: salmon_cmake.patch

requirements:
build:
- autoconf
- cmake
- {{ compiler('cxx') }}
- {{ compiler('c') }}
host:
- icu
- zlib
- bzip2
- unzip
run:
- zlib
- bzip2

test:
commands:
- minnow --help