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 STAR to 2.7.0d, add 2.6.1d, as it doesn't require rebuilding t… #13717

Merged
merged 1 commit into from
Feb 20, 2019
Merged
Show file tree
Hide file tree
Changes from all 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
10 changes: 10 additions & 0 deletions recipes/star/2.6.1d/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash
if [ "$(uname)" == "Darwin" ]; then
echo "Installing STAR for OSX."
mkdir -p $PREFIX/bin
cp bin/MacOSX_x86_64/* $PREFIX/bin
else
echo "Installing STAR for UNIX/Linux."
mkdir -p $PREFIX/bin
cp bin/Linux_x86_64_static/* $PREFIX/bin
fi
26 changes: 26 additions & 0 deletions recipes/star/2.6.1d/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{% set version = "2.6.1d" %}
{% set sha256 = "eba6a21426ba3b5fd752c68930116efae7b3776413e692e2e610f8363183aecc" %}

package:
name: star
version: {{ version }}

source:
url: https://github.com/alexdobin/STAR/archive/{{ version }}.tar.gz
sha256: {{ sha256 }}

build:
number: 0

test:
commands:
- STAR --version

about:
home: https://github.com/alexdobin/STAR
license: GPLv3
summary: An RNA-seq read aligner.

extra:
identifiers:
- biotools:star
4 changes: 2 additions & 2 deletions recipes/star/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set version = "2.7.0b" %}
{% set sha256 = "23f331c2f719d41d51d46a6ffd49b2784518073bfed587dde080e56b11d72e67" %}
{% set version = "2.7.0d" %}
{% set sha256 = "b3152b476161c7da324cf2cc1b55c35d3898b4ba0a57ec4cc699f48399b95799" %}

package:
name: star
Expand Down