Skip to content

Commit

Permalink
add a recipe for FastqPuri (#13679)
Browse files Browse the repository at this point in the history
* add a recipe for FastqPuri
Changes to be committed:
	new file:   recipes/fastqpuri/build.sh
	new file:   recipes/fastqpuri/meta.yaml

* fix issues in fastqpuri recipe
Changes to be committed:
	modified:   build.sh
	modified:   meta.yaml
  • Loading branch information
clottaz authored Feb 19, 2019
1 parent 50da774 commit 8458d40
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
7 changes: 7 additions & 0 deletions recipes/fastqpuri/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

Rscript -e 'install.packages(c("rmarkdown", "pheatmap"), repos="https://stat.ethz.ch/CRAN")'
cmake -H. -Bbuild -DCMAKE_INSTALL_PREFIX=${PREFIX} -DCMAKE_C_COMPILER=${CC}
cd build
make
make install
41 changes: 41 additions & 0 deletions recipes/fastqpuri/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
package:
name: fastqpuri
version: 1.0.5

source:
url: https://github.com/jengelmann/FastqPuri/archive/v1.0.5.tar.gz
sha256: 33fedf39e6322428ff384a5815809f3721efe3fd93798807fdca8fbc50bd62c7

build:
number: 3

requirements:
build:
- cmake
- make
- {{ compiler('c') }}
host:
- r-base
- pandoc
- zlib
- bzip2
run:
- r-base
- pandoc
- zlib
- bzip2

about:
home: https://github.com/jengelmann/FastqPuri
summary: fastq quality assessment and filtering tool
license: GPL3.0
license_file: LICENSE.txt

test:
commands:
- Qreport -h
- Sreport -h
- trimFilter -h
- trimFilterPE -h
- makeTree -h
- makeBloom -h

0 comments on commit 8458d40

Please sign in to comment.