forked from liu-congcong/MetaDecoder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmeta.yaml
57 lines (49 loc) · 1.39 KB
/
meta.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{% set name = "metadecoder" %}
{% set version = "1.1.1rc5" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/jolespin/metadecoder-nal/releases/download/{{ version }}/metadecoder-{{ version }}.tar.gz
build:
noarch: python
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps -vv"
entry_points:
- metadecoder = metadecoder.cli:main # Add this if you have a command-line interface
requirements:
host:
- python >=3.8,<3.12
- pip
- setuptools
- wheel
run:
- python >=3.8,<3.12
- numpy >=1.20
- scipy >=1.7
- scikit-learn >=0.24
- threadpoolctl >=3.0
- pyrodigal
- pyhmmsearch
# Optional GPU support
# - cupy-cuda11x # Uncomment and adjust CUDA version as needed
test:
imports:
- metadecoder
# Add any specific test commands if applicable
# commands:
# - metadecoder --help
about:
home: https://github.com/new-atlantis-labs/metadecoder-nal
license: MIT
license_family: MIT
license_file: LICENSE
summary: "MetaDecoder: An algorithm for clustering metagenomic sequences"
description: |
MetaDecoder is a novel method for clustering metagenomic contigs,
integrated with Pyrodigal and PyHMMSearch for enhanced functionality.
Supports GPU acceleration with CuPy.
dev_url: https://github.com/jolespin/metadecoder-nal
extra:
recipe-maintainers:
- jolespin