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

Update genotyphi to 2.1 #51040

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion recipes/genotyphi/build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

mkdir -p $PREFIX/bin
cp genotyphi.py $PREFIX/bin/genotyphi.py
cp mappingbased/genotyphi.py $PREFIX/bin/genotyphi.py
ln $PREFIX/bin/genotyphi.py $PREFIX/bin/genotyphi
chmod +x $PREFIX/bin/genotyphi.py $PREFIX/bin/genotyphi

Expand Down
12 changes: 7 additions & 5 deletions recipes/genotyphi/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% set name="genotyphi" %}
{% set version = "2.0" %}
{% set sha256 = "ad1144fd94de00a3ece6abff08ae0d457760292747b87ddf3b64b2e5c83314ce" %}
{% set version = "2.1" %}
{% set sha256 = "bbb44b440b5fcfd792f633d7428e077a25b15a390d96af99748b178c8fa8c5b0" %}

package:
name: {{ name }}
Expand All @@ -12,15 +12,15 @@ source:

build:
noarch: python
number: 1
number: 0
run_exports:
- {{ pin_subpackage(name|lower, max_pin='x') }}

requirements:
host:
- wget
run:
- python <3
- python
- samtools >=1.1
- bcftools >=1.1
- pandas
Expand All @@ -33,6 +33,8 @@ test:

about:
home: https://github.com/typhoidgenomics/genotyphi
license: GPL3
license: GPL-3.0-or-later
license_family: GPL3
license_file: LICENSE
summary: Assign genotypes to Salmonella Typhi genomes based on VCF files (mapped to Typhi CT18 reference genome)
dev_url: https://github.com/typhoidgenomics/genotyphi
Loading