Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add a3partitioner v0.1.0 #53633

Merged
merged 6 commits into from
Feb 3, 2025
Merged
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
47 changes: 47 additions & 0 deletions recipes/a3partitioner/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{% set name = "a3partitioner" %}
{% set version = "0.1.0" %}

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

source:
url: https://github.com/DaanJansen94/a3partitioner/archive/v{{ version }}.tar.gz
sha256: a4ecc45ade6e7901f2abb1d15071d62daedba943f1d9466643f5e6fa7b0f6098

build:
number: 0
noarch: python
entry_points:
- A3Partitioner=a3partitioner.cli:main
script: "{{ PYTHON }} -m pip install . --no-deps --no-build-isolation -vvv"
run_exports:
- {{ pin_subpackage(name, max_pin='x.x') }}

requirements:
host:
- python >=3.6,<4.0
- pip
- setuptools
- wheel
run:
- python >=3.6,<4.0
- biopython >=1.80

test:
imports:
- a3partitioner
commands:
- A3Partitioner --help

about:
home: https://github.com/DaanJansen94/a3partitioner
license: MIT
license_family: MIT
license_file: LICENSE
summary: A bioinformatics tool for creating APOBEC3 and non-APOBEC3 partitions
doc_url: https://github.com/DaanJansen94/a3partitioner/blob/main/README.md

extra:
recipe-maintainers:
- DaanJansen94
Loading