Skip to content
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
42 changes: 42 additions & 0 deletions recipes/cdst/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{% set name = "cdst" %}
{% set version = "0.2.1" %}

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

source:
url: https://pypi.io/packages/source/c/cdst-genome/cdst-genome-{{ version }}.tar.gz
sha256: 5e6cd3827a54336679eba86be259de17ae9dfbba671e54ff60e9c257eb62271

build:
noarch: python
number: 0
script: {{ PYTHON }} -m pip install . -vv
run_exports:
- {{ pin_subpackage(name, max_pin="x.x") }}

requirements:
host:
- python >=3.9
- pip
run:
- python >=3.9
- biopython >=1.85
- pandas >=2.2
- networkx >=3.3
- scipy >=1.13

test:
commands:
- cdst --help

about:
home: https://github.com/l1-mh/CDST
license: GPL-3.0-only
license_file: LICENSE
summary: "CoDing Sequence Typer (CDST): MD5 hash-based genome typing and clustering."

extra:
recipe-maintainers:
- l1-mh
Loading