Skip to content

Commit

Permalink
add rnaQUAST recipe (#11470)
Browse files Browse the repository at this point in the history
  • Loading branch information
pbordron authored and karel-brinda committed Oct 31, 2018
1 parent 96aee39 commit d124d00
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
9 changes: 9 additions & 0 deletions recipes/rnaquast/build.sh
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 .
40 changes: 40 additions & 0 deletions recipes/rnaquast/meta.yaml
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

0 comments on commit d124d00

Please sign in to comment.