Skip to content

Commit

Permalink
Update anglerfish to 0.6.1 (bioconda#45830)
Browse files Browse the repository at this point in the history
* Update anglerfish to 0.6.1

* add requirements.txt

* copy requirements.txt to SRC_DIR

---------

Co-authored-by: Brandon Seah <[email protected]>
Co-authored-by: mencian <[email protected]>
  • Loading branch information
3 people authored Feb 19, 2024
1 parent 7099834 commit 59dfe5d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
10 changes: 6 additions & 4 deletions recipes/anglerfish/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{% set name = "anglerfish" %}
{% set version = "0.6.0" %}
{% set version = "0.6.1" %}

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

source:
url: "https://pypi.io/packages/source/b/bio-{{ name }}/bio-{{ name }}-{{ version }}.tar.gz"
sha256: b67a0c77680f85ebdf88622382bb271655e807c60dc3bdcd01997d336e6574fa
sha256: 91a62cbbc388009bd503df0d3f64441c0e86ab377da46f721f5fcf82b9cce331

build:
number: 0
noarch: python
script: "{{ PYTHON }} -m pip install . --no-deps --no-build-isolation -vvv"
script: "cp ${RECIPE_DIR}/requirements.txt ${SRC_DIR} && {{ PYTHON }} -m pip install . --no-deps --no-build-isolation -vvv"
entry_points:
- anglerfish=anglerfish.anglerfish:anglerfish
run_exports:
Expand All @@ -24,11 +24,13 @@ requirements:
- python >=3.7
run:
- biopython
- click
- minimap2
- numpy
- pandas
- python >=3.7
- python-levenshtein
- pyyaml
- minimap2

test:
imports:
Expand Down
6 changes: 6 additions & 0 deletions recipes/anglerfish/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
biopython==1.83
click==8.1.7
levenshtein==0.23.0
numpy==1.26.3
pandas==2.1.4
pyyaml==6.0.1

0 comments on commit 59dfe5d

Please sign in to comment.