-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding minnow (dscRNA-seq read level simulator) (#13550)
* 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
1 parent
d6501fa
commit f9a40d0
Showing
2 changed files
with
60 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,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/ |
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,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 | ||
|