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

Pathogist #13145

Merged
merged 14 commits into from
Jan 29, 2019
4 changes: 4 additions & 0 deletions recipes/pathogist/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash

cp $RECIPE_DIR/setup.py ./
$PYTHON setup.py install --single-version-externally-managed --record=record.txt
40 changes: 40 additions & 0 deletions recipes/pathogist/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{% set version = "0.2.3" %}
package:
name: pathogist
version: {{ version }}

source:
url: https://github.com/WGS-TB/PathOGiST/archive/v{{ version }}.tar.gz
sha256: 787bee8709e9831bbf60fccd832a5cb489d012d7c864fc82f8e577da5f870645

build:
number: 0
noarch: python

requirements:
host:
- python 3.5
run:
- python 3.5
- numpy >=1.15.1
- scipy >=1.1.0
- pandas >=0.23.4
- scikit-learn >=0.19.1
- pyyaml >=3.13
- pulp >=1.6.8
- networkx
- matplotlib
- coincbc >=2.9.9
- mentalist
- prince
- snippy ==3.2

test:
commands:
- PATHOGIST -h

about:
home: https://github.com/WGS-TB/PathOGiST
summary: Calibrated multi-criterion genomic analysis for public health microbiology
license: GPL-3.0
license_file: LICENSE
9 changes: 9 additions & 0 deletions recipes/pathogist/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from setuptools import setup

setup(
name='pathogist',
version='0.2.2',
description='A pipeline for the multi-criterion genomic analysis of bacterial pathogens',
url='https://github.com/WGS-TB/PathOGiST',
packages=['pathogist'],
scripts=['PATHOGIST'])