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

Update rna-seqc to 2.4.2 #51342

Merged
merged 7 commits into from
Oct 11, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions recipes/rna-seqc/build.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/bin/bash
set -eu -o pipefail

cd ./travis/build/broadinstitute/rnaseqc
export CFLAGS="${CFLAGS} -fcommon"

cd rnaseqc
bgruening marked this conversation as resolved.
Show resolved Hide resolved
pushd SeqLib/bwa
sed -i.bak '/^DFLAGS=/s/$/ $(LDFLAGS)/' Makefile
make CC="$CC" CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS"
Expand All @@ -29,4 +29,3 @@ make \

mkdir -p $PREFIX/bin
cp rnaseqc $PREFIX/bin

18 changes: 10 additions & 8 deletions recipes/rna-seqc/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
{% set version = "2.3.5" %}
{% set sha256sum = "44e81f01f2b661a7621f34e3b645f5727bc7143841f1df053723e23ba298d2c6" %}
{% set version = "2.4.2" %}
{% set sha256sum = "b214151408696430aead56921b255e2b09efe5f6087a68446deae399227a1303" %}

package:
name: rna-seqc
version: '{{ version }}'
name: "rna-seqc"
version: {{ version }}

source:
url: 'https://github.com/broadinstitute/rnaseqc/releases/download/v{{ version }}/rnaseqc.v{{ version }}.full_source.tar.gz'
sha256: '{{ sha256sum }}'
sha256: {{ sha256sum }}

build:
number: 6
number: 0
run_exports:
- {{ pin_subpackage("rna-seqc", max_pin="x") }}

requirements:
build:
Expand All @@ -34,9 +36,9 @@ test:
- 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: LICENSE # not distributed :-/
license_file: LICENSE
license: BSD 3-clause
license_family: BSD
summary: Fast, efficient RNA-Seq metrics for quality control and process optimization
Expand Down
Loading