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

Add r-ngsplot package #9149

Merged
merged 4 commits into from
Jun 5, 2018
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
11 changes: 11 additions & 0 deletions recipes/r-ngsplot/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash
outdir=$PREFIX/share/$PKG_NAME-$PKG_VERSION-$PKG_BUILDNUM
mkdir -p $outdir
mkdir -p $PREFIX/bin
cp -R * $outdir
#Set up links for
for f in $outdir/*; do
ln -s $outdir/* $PREFIX/bin
fbname=$(basename "$f")
chmod 0755 ${PREFIX}/bin/$fbname
done
41 changes: 41 additions & 0 deletions recipes/r-ngsplot/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{% set version = "2.63" %}
package:
name: r-ngsplot
version: {{ version }}

source:
url: https://github.com/shenlab-sinai/ngsplot/archive/{{ version }}.tar.gz
md5: 811815e5f5ef7bdc1cb028ecd59fb2a7

build:
number: 0
skip: True
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whoops 😉

rpaths:
- lib/R/lib/
- lib/

requirements:

run:
- r-base
- r-catools
- r-domc
- bioconductor-rsamtools
- bioconductor-bsgenome
- bioconductor-shortread

test:
commands:
- ngsplotdb.py list | true
- ngs.plot.r 2>&1 | true
- replot.r 2>&1 | true
- plotCorrGram.r 2>&1 | true

about:
license: GPL-2.0
summary: 'Quick mining and visualization of NGS data by integrating genomic databases'
home: https://github.com/shenlab-sinai/ngsplot

extra:
identifiers:
- doi:10.1186/1471-2164-15-284