-
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.
- Loading branch information
1 parent
96aee39
commit d124d00
Showing
2 changed files
with
49 additions
and
0 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,9 @@ | ||
#!/bin/bash | ||
|
||
OUTDIR=$PREFIX/share/$PKG_NAME-$PKG_VERSION-$PKG_BUILDNUM | ||
mkdir -p $OUTDIR | ||
mkdir -p $PREFIX/bin | ||
chmod a+x *.py | ||
cp -rp * "$OUTDIR/" | ||
cd $PREFIX/bin | ||
ln -s "../${OUTDIR#$PREFIX}"/*.py . |
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,40 @@ | ||
{% set name = "rnaQUAST" %} | ||
{% set version = "1.5.1" %} | ||
{% set sha256 = "f603f847bce0346292d2d74c756d32f69c6bffad282d5fff36479d3a901d1f1e" %} | ||
|
||
package: | ||
name: {{ name | lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: http://cab.spbu.ru/files/{{ name | lower }}/release{{ version }}/{{ name }}-{{ version }}.tar.gz | ||
sha256: {{ sha256 }} | ||
|
||
build: | ||
number: 0 | ||
skip: True # [osx] | ||
|
||
requirements: | ||
run: | ||
- blast | ||
- blat | ||
- busco >=2 | ||
- emboss | ||
- gmap | ||
- python <3 | ||
- gffutils | ||
- joblib | ||
- matplotlib | ||
- ucsc-pslsort | ||
- star | ||
- tophat | ||
- samtools | ||
|
||
test: | ||
commands: | ||
- rnaQUAST.py --test | ||
|
||
about: | ||
summary: rnaQUAST is a tool for evaluating RNA-Seq assemblies using reference genome and gene database. In addition, rnaQUAST is also capable of estimating gene database coverage by raw reads and de novo quality assessment using third-party software. | ||
home: http://cab.spbu.ru/software/rnaquast/ | ||
license: GPLv2 |