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

Sspupdate #11614

Merged
merged 3 commits into from
Oct 26, 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
16 changes: 16 additions & 0 deletions recipes/seq-seq-pan/1.0.0/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/bin/bash

mkdir -p $PREFIX/bin
mkdir -p $PREFIX/opt/seq-seq-pan/


sed -i "s|\${BASH_SOURCE%/\*}|$PREFIX/opt/seq-seq-pan|g" seq-seq-pan
sed -i "s|\${BASH_SOURCE%/\*}|$PREFIX/opt/seq-seq-pan|g" seq-seq-pan-consensus
sed -i "s|\${BASH_SOURCE%/\*}|$PREFIX/opt/seq-seq-pan|g" seq-seq-pan-wga
sed -i "s|\${BASH_SOURCE%/\*}|$PREFIX/opt/seq-seq-pan|g" seq-seq-pan-genomedescription

cp -r * $PREFIX/opt/seq-seq-pan/
ln -s $PREFIX/opt/seq-seq-pan/seq-seq-pan $PREFIX/bin
ln -s $PREFIX/opt/seq-seq-pan/seq-seq-pan-consensus $PREFIX/bin
ln -s $PREFIX/opt/seq-seq-pan/seq-seq-pan-wga $PREFIX/bin
ln -s $PREFIX/opt/seq-seq-pan/seq-seq-pan-genomedescription $PREFIX/bin
36 changes: 36 additions & 0 deletions recipes/seq-seq-pan/1.0.0/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{% set version = "1.0.0" %}

package:
name: seq-seq-pan
version: {{ version }}

source:
url: https://gitlab.com/chrjan/seq-seq-pan/repository/v{{ version }}/archive.tar.gz
md5: 7a0c00d8de984f7129c7bcbe4fa26892

build:
number: 2
skip: True # [osx or py27]

requirements:
run:
- python
- biopython ==1.69
- blat ==35
- snakemake ==4.3
- openjdk
- argparse
- progressivemauve ==snapshot-2015-02-13

test:
commands:
- seq-seq-pan -h > /dev/null
- seq-seq-pan-wga --no-hooks --config workdir=$PREFIX/opt/seq-seq-pan/example/minimal genomefile=genome_list.txt outfilename=ssp_example -n > /dev/null
- java -jar $PREFIX/opt/seq-seq-pan/java/XMFAConsensus/XMFAconsensus_majorityvote.jar -h > /dev/null
- seq-seq-pan-consensus -h > /dev/null
- seq-seq-pan-genomedescription -h >/dev/null

about:
home: https://gitlab.com/chrjan/seq-seq-pan
license: FreeBSDLicense
summary: seq-seq-pan is a workflow for the SEQuential alignment of SEQuences to build a PAN-genome data structure and a whole-genome-alignment.
6 changes: 3 additions & 3 deletions recipes/seq-seq-pan/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{% set version = "1.0.0" %}
{% set version = "1.0.1" %}

package:
name: seq-seq-pan
version: {{ version }}

source:
url: https://gitlab.com/chrjan/seq-seq-pan/repository/v{{ version }}/archive.tar.gz
md5: 7a0c00d8de984f7129c7bcbe4fa26892
md5: e053bc23c84493c29926aafafd77c966

build:
number: 2
Expand All @@ -20,7 +20,7 @@ requirements:
- snakemake ==4.3
- openjdk
- argparse
- progressivemauve ==snapshot-2015-02-13
- mauvealigner ==1.2.0

test:
commands:
Expand Down