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 pyhmmsearch #51490

Merged
merged 3 commits into from
Oct 21, 2024
Merged
Changes from 2 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
46 changes: 46 additions & 0 deletions recipes/pyhmmsearch/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{% set name = "pyhmmsearch" %}
{% set version = "2024.10.20" %}

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

source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/pyhmmsearch-{{ version }}.tar.gz
sha256: fc654467ab29758e43638ea61e2ec6ddc0332f377bd7ce0e334099a0103dfbf9

build:
script: {{ PYTHON }} -m pip install . -vvv --no-deps --no-build-isolation --no-cache-dir
number: 0
noarch: python
entry_points:
- pyhmmsearch=pyhmmsearch.pyhmmsearch:main
- reformat_pyhmmsearch=pyhmmsearch.reformat_pyhmmsearch:main
- serialize_hmm_models=pyhmmsearch.serialize_hmm_models:main
run_exports:
- {{ pin_subpackage("pyhmmsearch", max_pin=None) }}

requirements:
host:
- python
- pip
run:
- python
- pyhmmer >=0.10.12
- pandas >=2
- tqdm >=4

test:
commands:
- pyhmmsearch --help
- reformat_pyhmmsearch --help
- serialize_hmm_models --help

about:
home: "https://github.com/new-atlantis-labs/pyhmmsearch-stable"
summary: "Fast implementation of HMMSEARCH optimized for high-memory systems using PyHmmer."
license: MIT
license_family: MIT
license_file: LICENSE
dev_url: "https://github.com/new-atlantis-labs/pyhmmsearch-stable"
doc_url: "https://github.com/new-atlantis-labs/pyhmmsearch-stable/blob/main/README.md"