Skip to content

Commit

Permalink
Add pyhmmsearch (#51490)
Browse files Browse the repository at this point in the history
* Add `pyhmmsearch`

* Update meta.yaml
  • Loading branch information
apcamargo authored Oct 21, 2024
1 parent 0513338 commit 7d2ef0e
Showing 1 changed file with 46 additions and 0 deletions.
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"

0 comments on commit 7d2ef0e

Please sign in to comment.