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 recipe for steamboat #51612

Merged
merged 5 commits into from
Oct 24, 2024
Merged
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
49 changes: 49 additions & 0 deletions recipes/steamboat/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{% set name = "steamboat" %}
{% set version = "1.0.0" %}

package:
name: {{ name|lower }}
version: {{ version }}

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

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

requirements:
host:
- python >=3.9
- pip
- poetry-core
run:
- biopython
- executor
- pigz
- python >=3.9
- pyyaml
- rich-click >=1.6.0
rpetit3 marked this conversation as resolved.
Show resolved Hide resolved

test:
imports:
- steamboat
commands:
- pip check
- gisaid-batch --help
requires:
- pip

about:
home: https://github.com/rpetit3/steamboat-py
summary: A collection of tools/scripts for microbial bioinformatics
license: MIT
license_file: LICENSE

extra:
recipe-maintainers:
- rpetit3