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 coptr #51764

Merged
merged 1 commit into from
Oct 29, 2024
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
51 changes: 51 additions & 0 deletions recipes/coptr/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{% set name = "coptr" %}
{% set version = "1.1.4" %}

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

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

build:
entry_points:
- coptr = coptr.cli:cli
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0
run_exports:
- {{ pin_subpackage("coptr", max_pin="x.x") }}

requirements:
host:
- python >=3.6
- setuptools >=40.6.0
- wheel
- pip
run:
- python >=3.6
- numpy >=1.19.1
- pysam >=0.16.0.1
- scipy >=1.5.2
- matplotlib-base >=3.3.2

test:
imports:
- coptr
commands:
- pip check
- coptr --help
requires:
- pip

about:
home: https://github.com/tyjo/coptr
summary: Accurate and robust inference of microbial growth dynamics from metagenomic sequencing reads.
license: GPL-3.0
license_file: COPYING

extra:
recipe-maintainers:
- ramirobarrantes
Loading