From 3a31c36a3ce1b0d8fb2c57d1cfb9547252ae7524 Mon Sep 17 00:00:00 2001 From: Bioconda Bot <47040946+BiocondaBot@users.noreply.github.com> Date: Wed, 26 Jun 2024 16:32:17 -0400 Subject: [PATCH] Update meteor to 2.0.13 (#48639) * Update meteor to 2.0.12 * Update meteor to 2.0.13 * unpin bcftools * edit tests --------- Co-authored-by: mencian --- recipes/meteor/meta.yaml | 35 ++++++++++++++--------------------- 1 file changed, 14 insertions(+), 21 deletions(-) diff --git a/recipes/meteor/meta.yaml b/recipes/meteor/meta.yaml index 0490c8b54121b..bf7a4e1309557 100644 --- a/recipes/meteor/meta.yaml +++ b/recipes/meteor/meta.yaml @@ -1,26 +1,29 @@ {% set name = "meteor" %} -{% set version = "2.0.11" %} +{% set version = "2.0.13" %} +{% set sha256 = "bb7b8a9342dda2ee59689d235d13ca61f22990f43956e8fd927288a1a0858bec" %} package: name: {{ name }} version: {{ version }} - source: - url: https://github.com/metagenopolis/meteor/archive/{{ version }}.tar.gz - sha256: 2e6119f2a3b19227ef6a9ed990dbbfebd2d47144cf032d0d410f015541e7b1fe + url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/meteor-{{ version }}.tar.gz + sha256: {{ sha256 }} build: noarch: python number: 0 - script: {{ PYTHON }} -m pip install . --no-deps -vv + script: {{ PYTHON }} -m pip install . --no-deps --no-build-isolation --no-cache-dir -vvv + entry_points: + - meteor = meteor.meteor:main run_exports: - - {{ pin_subpackage('meteor', max_pin="x.x") }} + - {{ pin_subpackage('meteor', max_pin="x") }} requirements: host: - python >=3.10 - - poetry + - pip + - poetry-core run: - python >=3.10 - bowtie2 >=2.3.5 @@ -31,24 +34,13 @@ requirements: - packaging - cogent3 - biom-format - - bcftools >=0.1.19 + - bcftools - raxml-ng >=1.0.1 - bedtools >=2.18.0 + test: commands: - - meteor -h - - bowtie2 -h - - bedtools -h - - raxml-ng -h - - bcftools -h - imports: - - pysam - - pandas - - pyarrow - - ete3 - - packaging - - biom - - cogent3 + - "meteor -h" about: home: https://github.com/metagenopolis/meteor @@ -58,3 +50,4 @@ about: description: | Meteor relies on genes catalogue to perform specie level taxonomic assignments, functional and strain diffusion analysis. license_family: GPL3 + dev_url: https://github.com/metagenopolis/meteor