-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
release v2.0.0 with biopython less than v1.85 directive
- Loading branch information
1 parent
21f2cbd
commit 0ce6ef3
Showing
4 changed files
with
29 additions
and
31 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
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
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 |
---|---|---|
@@ -1,49 +1,47 @@ | ||
{% set version = data.get('version') %} | ||
|
||
about: | ||
license: Apache 2 | ||
summary: ECtyper is a python program for serotyping E. coli genomes | ||
author: Chad Laing, Kyrylo Bessonov, Camille La Rose, Sam Sung | ||
home: https://github.com/phac-nml/ecoli_serotyping | ||
{% set name = "ectyper" %} | ||
{% set version = "2.0.0" %} | ||
|
||
package: | ||
name: ectyper | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/phac-nml/ecoli_serotyping/archive/v{{ version }}.tar.gz | ||
url: https://github.com/phac-nml/ecoli_serotyping/archive/{{ version }}.tar.gz | ||
sha256: bb363f61ca69d2118e855199d7f9046185bb054509cd0762083b4beec2b8c00e | ||
|
||
build: | ||
number: 1 | ||
script: python setup.py install | ||
noarch: python | ||
run_exports: | ||
- {{ pin_subpackage(name, max_pin="x") }} | ||
script: python -m pip install --no-deps --ignore-installed . | ||
|
||
requirements: | ||
build: | ||
host: | ||
- python >=3.5 | ||
|
||
- pip | ||
- setuptools | ||
run: | ||
- python >=3.5 | ||
- pytest >=3.5 | ||
- pandas 0.23.1.* | ||
- samtools 1.8.* | ||
- bowtie2 2.3.4.1.* | ||
- mash 2.0.* | ||
- bcftools 1.8.* | ||
- biopython 1.70.* | ||
- blast 2.7.1.* | ||
- seqtk 1.2.* | ||
- requests 2.22.* | ||
- pandas >=0.23.1.*,<3 | ||
- samtools >=1.8.* | ||
- bowtie2 >=2.3.* | ||
- mash >=2.0.* | ||
- bcftools >=1.8.* | ||
- biopython >=1.70.*,<1.85 | ||
- blast >=2.7.1.* | ||
- seqtk >=1.2.* | ||
- requests >=2.*.* | ||
test: | ||
import: | ||
- ectyper | ||
source_files: | ||
- test/ | ||
requires: | ||
- pytest | ||
commands: | ||
- "ectyper --help" | ||
- "pytest -s ectyper/test/test_ectyper_intergration.py" | ||
- "pytest -s ectyper/test/test_O_serotyping.py" | ||
|
||
|
||
|
||
about: | ||
license: Apache 2 | ||
summary: ECtyper is a python program for serotyping E. coli genomes | ||
author: Chad Laing, Kyrylo Bessonov, Camille La Rose, Sam Sung | ||
home: https://github.com/phac-nml/ecoli_serotyping |
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