Skip to content

Commit

Permalink
Initial addition. Works (bioconda#51764)
Browse files Browse the repository at this point in the history
  • Loading branch information
ramirobarrantes authored Oct 29, 2024
1 parent f83e9c7 commit 0156829
Showing 1 changed file with 51 additions and 0 deletions.
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

0 comments on commit 0156829

Please sign in to comment.