Skip to content

Commit

Permalink
clean up recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
mencian committed Oct 11, 2024
1 parent f017fab commit e9716b7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
6 changes: 4 additions & 2 deletions recipes/rna-seqc/build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
#!/bin/bash
set -eu -o pipefail

export CFLAGS="${CFLAGS} -fcommon"
export LDFLAGS="${LDFLAGS} -L${PREFIX}/lib"
export CFLAGS="${CFLAGS} -O3 -fcommon"

cd rnaseqc
pushd SeqLib/bwa
Expand All @@ -19,7 +20,7 @@ popd

make \
CC="$CXX" \
CPPFLAGS="-I$PREFIX/include -fcommon" \
CPPFLAGS="${CPPFLAGS} -O3 -I$PREFIX/include -fcommon" \
SeqLib/lib/libseqlib.a

make \
Expand All @@ -28,4 +29,5 @@ make \
LIBRARY_PATHS="-L$PREFIX/lib -Wl,-rpath $PREFIX/lib"

mkdir -p $PREFIX/bin
chmod 0755 rnaseqc
cp rnaseqc $PREFIX/bin
16 changes: 10 additions & 6 deletions recipes/rna-seqc/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,23 @@ requirements:
- zlib
run:
- curl
- bzip2
- boost-cpp
- xz
- zlib

test:
commands:
- rnaseqc --version

about:
home: https://github.com/broadinstitute/rnaseqc
home: "https://github.com/broadinstitute/rnaseqc"
license_url: https://raw.githubusercontent.com/broadinstitute/rnaseqc/master/LICENSE
license_file: rnaseqc/LICENSE
license: BSD 3-clause
license: "BSD-3-Clause"
license_family: BSD
summary: Fast, efficient RNA-Seq metrics for quality control and process optimization
summary: "Fast, efficient RNA-Seq metrics for quality control and process optimization."
dev_url: "https://github.com/broadinstitute/rnaseqc"
doc_url: "https://github.com/getzlab/rnaseqc/blob/v{{ version }}/README.md"

extra:
identifiers:
- biotools:rna-seqc
- doi:10.1093/bioinformatics/btab135

0 comments on commit e9716b7

Please sign in to comment.