Skip to content

Commit

Permalink
Update STAR to 2.7.0d, add 2.6.1d, as it doesn't require rebuilding t…
Browse files Browse the repository at this point in the history
…he index (#13717)
  • Loading branch information
dpryan79 authored Feb 20, 2019
1 parent 0e2b185 commit 5c000bf
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 2 deletions.
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

0 comments on commit 5c000bf

Please sign in to comment.