Skip to content

Commit

Permalink
Adding minnow (dscRNA-seq read level simulator) (#13550)
Browse files Browse the repository at this point in the history
* change include path

* * added the build files for minnow

* resolved the errors for zlib

* Adding the md5 sum

* Added the build number

*     MAC OS patch added

* removed redundent packages

* removing flags

* removing flags

* md5 sum changed

* md5 sum changed
  • Loading branch information
hiraksarkar authored and dpryan79 committed Feb 8, 2019
1 parent d6501fa commit f9a40d0
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 0 deletions.
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

0 comments on commit f9a40d0

Please sign in to comment.