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 tbtamr #43048

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
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
55 changes: 55 additions & 0 deletions recipes/tbtamr/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{% set name = "tbtamr" %}
{% set version = "0.0.4" %}
{% set sha256 = "72db1eb835574f02b0d7768e6b04e310bd2229d0f684100004b20a133eecd882" %}

package:
name: "{{ name }}"
version: "{{ version }}"

source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: "{{ sha256 }}"

build:
noarch: python
number: 0
entry_points:
- tbtamr=tbtamr.tbtamr:main
run_exports:
- {{ pin_subpackage('tbtamr', max_pin="x.x.x") }}
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv "

requirements:
host:
- python >=3.8
- pip
run:
- python >=3.8
- psutil
- pandas
- csvtk
- bwa
- samtools =1.12
- snpeff =5.0
- samclip
- freebayes
- bcftools
- bedtools
- delly

test:
imports:
- tbtamr
commands:
- tbtamr --help

about:
home: "https://github.com/MDU-PHL/tbtamr"
license: GPL-3.0-or-later
license_file: LICENSE
license_family: "GPL3"
summary: "A tool implementing TB-Profiler for reporting of genomic DST for M. tuberculosis in a CPHL."

extra:
recipe-maintainers:
- kristyhoran
Loading