-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update STAR to 2.7.0d, add 2.6.1d, as it doesn't require rebuilding t…
…he index (#13717)
- Loading branch information
Showing
3 changed files
with
38 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters