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

fix amrfinderplus pinning in abritamr #46714

Merged
merged 1 commit into from Mar 24, 2024

Conversation

rpetit3
Copy link
Member

@rpetit3 rpetit3 commented Mar 23, 2024

abritamr packages a prebuilt database that is locked to a specific ncbi-amrfinderplus version. Added a note to review this every new release, and which file to review

Database directory: '/usr/local/lib/python3.12/site-packages/abritamr/db/amrfinderplus/data/2024-01-31.1'
Database version: 2024-01-31.1

ESC[1;31m*** ERROR ***ESC[0m
Database requires sofware version at least 3.12.1

HOSTNAME: ?
SHELL: ?
PWD: /home/robert_petit/pytest_workflow_a9fmmcy8/abritamr-test/work/43/5c9ff0c6ef49be3520c78e6dcff64c
PATH: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
Progam name:  amrfinder
Command line: amrfinder -n GCF_001682305.fna -o results/amrfinder.out --plus --threads 4 -d /usr/local/lib/python3.12/site-packages/abritamr/db/amrfinderplus/data/2024-01-31.1

Please read the guidelines for Bioconda recipes before opening a pull request (PR).

General instructions

  • If this PR adds or updates a recipe, use "Add" or "Update" appropriately as the first word in its title.
  • New recipes not directly relevant to the biological sciences need to be submitted to the conda-forge channel instead of Bioconda.
  • PRs require reviews prior to being merged. Once your PR is passing tests and ready to be merged, please issue the @BiocondaBot please add label command.
  • Please post questions on Gitter or ping @bioconda/core in a comment.

Instructions for avoiding API, ABI, and CLI breakage issues

Conda is able to record and lock (a.k.a. pin) dependency versions used at build time of other recipes.
This way, one can avoid that expectations of a downstream recipe with regards to API, ABI, or CLI are violated by later changes in the recipe.
If not already present in the meta.yaml, make sure to specify run_exports (see here for the rationale and comprehensive explanation).
Add a run_exports section like this:

build:
  run_exports:
    - ...

with ... being one of:

Case run_exports statement
semantic versioning {{ pin_subpackage("myrecipe", max_pin="x") }}
semantic versioning (0.x.x) {{ pin_subpackage("myrecipe", max_pin="x.x") }}
known breakage in minor versions {{ pin_subpackage("myrecipe", max_pin="x.x") }} (in such a case, please add a note that shortly mentions your evidence for that)
known breakage in patch versions {{ pin_subpackage("myrecipe", max_pin="x.x.x") }} (in such a case, please add a note that shortly mentions your evidence for that)
calendar versioning {{ pin_subpackage("myrecipe", max_pin=None) }}

while replacing "myrecipe" with either name if a name|lower variable is defined in your recipe or with the lowercase name of the package in quotes.

Bot commands for PR management

Please use the following BiocondaBot commands:

Everyone has access to the following BiocondaBot commands, which can be given in a comment:

@BiocondaBot please update Merge the master branch into a PR.
@BiocondaBot please add label Add the please review & merge label.
@BiocondaBot please fetch artifacts Post links to CI-built packages/containers.
You can use this to test packages locally.

Note that the @BiocondaBot please merge command is now depreciated. Please just squash and merge instead.

Also, the bot watches for comments from non-members that include @bioconda/<team> and will automatically re-post them to notify the addressed <team>.

@rpetit3
Copy link
Member Author

rpetit3 commented Mar 23, 2024

@BiocondaBot please fetch artifacts

@BiocondaBot
Copy link
Collaborator

Azure

Package(s) built on Azure are ready for inspection:

Arch Package Zip File
noarch abritamr-1.0.17-pyh5707d69_1.tar.bz2 LinuxArtifacts

You may also use conda to install these after downloading and extracting the appropriate zip file. From the LinuxArtifacts or OSXArtifacts directories:

conda install -c ./packages <package name>

Docker image(s) built (images for Azure are in the LinuxArtifacts zip file above):

Package Tag Install with docker
abritamr 1.0.17--pyh5707d69_1
showgzip -dc LinuxArtifacts/images/abritamr:1.0.17--pyh5707d69_1.tar.gz | docker load

@rpetit3
Copy link
Member Author

rpetit3 commented Mar 24, 2024

Working now

[INFO:03/24/2024 12:01:15 AM] The input file seems to be in the correct format. Thank you.
[INFO:03/24/2024 12:01:15 AM] Checking if file GCF_001682305.fna exists
[INFO:03/24/2024 12:01:15 AM] GCF_001682305.fna is present. abritamr can proceed.
[INFO:03/24/2024 12:01:15 AM] Checking for amrfinder DB: /usr/local/lib/python3.12/site-packages/abritamr/db/amrfinderplus/data/2024-01-31.1 and comparing it to 2024-01-31.1
[INFO:03/24/2024 12:01:15 AM] You seem to have the correct AMRfinder DB setup. Well done!
[INFO:03/24/2024 12:01:15 AM] All check complete now running AMRFinder
[INFO:03/24/2024 12:01:15 AM] You are running abritamr in assembly mode. Now executing : mkdir -p results && amrfinder -n GCF_001682305.fna -o results/amrfinder.out --plus  --threads 4 -d /usr/local/lib/python3.12/site-packages/abritamr/db/amrfinderplus/data/2024-01-31.1
[INFO:03/24/2024 12:02:46 AM] AMRfinder completed successfully. Will now move on to collation.
[INFO:03/24/2024 12:02:46 AM] This is a single sample run.
[INFO:03/24/2024 12:02:46 AM] Opened amrfinder output for results
[INFO:03/24/2024 12:02:46 AM] Saving files now.
[INFO:03/24/2024 12:02:46 AM] Saving results/summary_matches.txt
[INFO:03/24/2024 12:02:46 AM] Saving results/summary_partials.txt
[INFO:03/24/2024 12:02:46 AM] Saving results/summary_virulence.txt
[INFO:03/24/2024 12:02:46 AM] Saving combined file : results/abritamr.txt

@rpetit3
Copy link
Member Author

rpetit3 commented Mar 24, 2024

Thank you @thanhleviet !

@rpetit3 rpetit3 merged commit 98ef6b1 into bioconda:master Mar 24, 2024
6 checks passed
@rpetit3 rpetit3 deleted the rp3-fix-abritamr branch March 24, 2024 00:32
sunqian2116 added a commit to sunqian2116/bioconda-recipes that referenced this pull request Mar 29, 2024
* Add scsplit (bioconda#46438)

* changes to cellhashr

* yaml file for scsplit

* out cellhashr folder

* Lint fix

* fix lint

* fix lint

* corrections for lint

* fixes lowercase

* scsplit out

* scsplit back

* change to link

* fixes

* cutadapt: add linux-aarch64 build (bioconda#46424)

Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>

* bump revoluzer 0.1.6 (bioconda#46517)

* Update pyhmmer to 0.10.10 (bioconda#46518)

* Update compleasm to 0.2.6 (bioconda#46532)

* Update sevenbridges-python to 2.11.0 (bioconda#46531)

* Update rnachipintegrator to 3.0.0 (bioconda#46520)

* Update rnachipintegrator to 3.0.0

* rnachipintegrator: add missing 'run_exports' statements required by linter.

---------

Co-authored-by: Peter Briggs <peter.briggs@manchester.ac.uk>

* Update ena-webin-cli to 7.1.1 (bioconda#46530)

* Update sneep to 1.0 (bioconda#46528)

* Update physiofit to 3.3.5 (bioconda#46526)

* Update pcaone to 0.4.4 (bioconda#46521)

* fasttree: add linux-aarch64 build (bioconda#46436)

Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>

* fix busco patch (bioconda#46524)

* fix busco patch

* increment build number

* Update r-acidgenerics to 0.7.7 (bioconda#46536)

* Update r-acidplyr to 0.5.4 (bioconda#46538)

* Update checkqc to 4.0.1 (bioconda#46529)

* Update checkqc to 4.0.1

* add python to run deps as package is noarch:python

---------

Co-authored-by: mencian <joshua.zhuang@yahoo.com>

* Update trust4 to 1.0.14 (bioconda#46537)

* Fix entrypoint for psm-utils (bioconda#46533)

* update python-edlib: enable python-edlib build (bioconda#46513)

* muscle: add linux-aarch64 build (bioconda#46525)

* muscle: add linux-aarch64 build

Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>

* Bump muscle to 5.1.0

Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>

* Add support for Linux ARM64

rcedgar/muscle#73

Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>

---------

Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>

* hmmcopy: enable linux-aarch64 build (bioconda#46359)

Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>

* linux-aarch64 build for alcor (bioconda#46388)

* linux-aarch64 build for alcor

* linux-aarch64 build for alcor

* linux-aarch64 build for alcor

* linux-aarch64 build for alcor

* linux-aarch64 build for ac (bioconda#46362)

* linux-aarch64 build for ac

* linux-aarch64 build for ac

* Update treeswift to 1.1.40 (bioconda#46541)

* Update phykit to 1.19.0 (bioconda#46542)

* Update r-azimuth to 0.5.0 (bioconda#46495)

* Update r-azimuth to 0.5.0

* Update meta.yaml

* Update meta.yaml

* Update meta.yaml

* Update meta.yaml

* Update meta.yaml

* Update meta.yaml

---------

Co-authored-by: Christian Brueffer <christian@brueffer.io>
Co-authored-by: Joshua Zhuang <71105179+mencian@users.noreply.github.com>

* Update augur to 24.3.0 (bioconda#46534)

* Update psm-utils to 0.7.4 (bioconda#46535)

* Update psm-utils to 0.7.4

* reset build number

---------

Co-authored-by: Joshua Zhuang <71105179+mencian@users.noreply.github.com>
Co-authored-by: mencian <joshua.zhuang@yahoo.com>

* Update freyja to 1.5.0 (bioconda#46544)

* Update mgatk recipe (bioconda#46545)

* Update maegatk recipe (bioconda#46546)

* Update yacht to 1.2.2 (bioconda#46547)

* bowtie2: add linux-aarch64 build (bioconda#46423)

* bowtie2: add linux-aarch64 build

Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>

* bowtie2: [linux-aarch64] Git clone the third party dependencies

Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>

---------

Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>

* pyspoa: enable linux-aarch64 build (bioconda#46549)

* pyrodigal: enable linux-aarch64 build (bioconda#46553)

* pyrodigal: enable linux-aarch64 build

* bump build number

* Update phold to 0.1.3 (bioconda#46557)

* Update snakemake to 8.9.0 (bioconda#46565)

* pyhmmer: enable linux-aarch64 build (bioconda#46551)

* Update bioconda-utils to 2.12.0 (bioconda#46577)

* update fastp adding new platform (bioconda#46576)

* update stringtie adding new platform (bioconda#46569)

* update stringtie adding new platform

* add run_exports

* add zlib

* make linux-aarch64 build for age_metasv (bioconda#46563)

* linux-aarch64 build for age-metasv

* linux-aarch64 build for age-metasv

---------

Co-authored-by: HWsunqian0027 <sunny_sunqian@163.com>

* Add srahunter/meta.yaml (bioconda#46243)

* Changes to be committed:
	new file:   srahunter/meta.yaml

* Update meta.yaml

* Update meta.yaml

* Update meta.yaml

* Update meta.yaml

* update star adding new platform (bioconda#46555)

* update star adding new platform

* fix make flags

* Update assemblycomparator2 to 2.6.1 (bioconda#46566)

* Update boms to 1.1.0 (bioconda#46571)

* Update perl-minion to 10.29 (bioconda#46579)

* Add recipe hairsplitter (bioconda#46564)

* added hairsplitter

* correct linting

* corrected hairsplitter recipe

* Update diffacto to 1.0.7 (bioconda#46561)

* Update diffacto to 1.0.7

* add run_exports

---------

Co-authored-by: mencian <joshua.zhuang@yahoo.com>

* Update tracegroomer to 0.1.3 (bioconda#46583)

* Update genomad to 1.7.6 (bioconda#46589)

* Update genomad to 1.7.6

* edit run_exports

---------

Co-authored-by: mencian <joshua.zhuang@yahoo.com>

* pybigwig: enable linux-aarch64 build (bioconda#46588)

* pyfamsa: enable linux-aarch64 build (bioconda#46582)

* bx-python: enable linux-aarch64 build (bioconda#46584)

* parasail-python: enable linux-aarch64 build (bioconda#46585)

* pyabpoa: enable linux-aarch64 build (bioconda#46586)

* cyvcf2: enable linux-aarch64 build (bioconda#46591)

* Update fibertools-rs to 0.4.1 (bioconda#46593)

* Updated ToulligQC to v2.5.3 (bioconda#46574)

* Updated ToulligQC to v2.5.3 and dependencies

* Update matplotlib to matplotlib-base

* Changed python 3.11.0 to 3.10.0

* Remove pip

* Incorrect sha256

* Update pixelator to 0.16.2 (bioconda#46606)

* update preseq adding new platform (bioconda#46596)

* update preseq adding new platform

* skip for osx-arm64

* Revert "skip for osx-arm64"

This reverts commit 506b52a.

* linux-aarch64 build for bioawk (bioconda#46604)

Co-authored-by: HWsunqian0027 <sunny_sunqian@163.com>

* linux-aarch64 build for bedops (bioconda#46603)

Co-authored-by: HWsunqian0027 <sunny_sunqian@163.com>

* linux-aarch64 build for bedtk (bioconda#46602)

Co-authored-by: HWsunqian0027 <sunny_sunqian@163.com>

* linux-aarch64 build for bfc (bioconda#46601)

Co-authored-by: HWsunqian0027 <sunny_sunqian@163.com>

* linux-aarch64 build for bcalm (bioconda#46600)

Co-authored-by: HWsunqian0027 <sunny_sunqian@163.com>

* update fq adding new platform (bioconda#46599)

* update gffread adding new platform (bioconda#46595)

* linux-aarch64 build for aragorn (bioconda#46592)

Co-authored-by: HWsunqian0027 <sunny_sunqian@163.com>

* Update pathogen-profiler to 4.1.0 (bioconda#46612)

* Update pathogen-profiler to 4.1.0

* update deps and shasum

---------

Co-authored-by: Jody Phelan <jody.phelan@lshtm.ac.uk>

* update bedgraphtobigwig with additional platform (bioconda#46516)

* add additional platform

* increase build number

* add patch

* fix typo

---------

Co-authored-by: Pablo <pablo.aledo@gmail.com>

* Update pymlst to 2.1.6 (bioconda#46615)

* Update hmftools-orange to 3.3.1 (bioconda#46614)

* Update skyline2isocor to 1.0.0 (bioconda#46608)

* Update pybiolib to 1.1.1881 (bioconda#46616)

* linux-aarch64 build for addrg (bioconda#46609)

* linux-aarch64 build for addrg
* Set max_pin to x.x
* Add zlib developer dependency

---------

Co-authored-by: HWsunqian0027 <sunny_sunqian@163.com>

* Add linux-aarch64 build for seqkit (bioconda#46620)

* Add SigProfilerPlotting recipe (bioconda#46607)

* Add SigProfilerPlotting recipe

* update test command

* Update meta.yaml

---------

Co-authored-by: Robert A. Petit III <robbie.petit@gmail.com>

* Update: Musgy - Fix issue with sed on macos m1 (bioconda#46625)

* Update meta.yaml

attempt to fix sed issue on macos m1

* Update meta.yaml

added run_exports for linting check

* add linux-aarch64-aligncov

* add linux-aarch64-aligncov

* Update tb-profiler to 6.1.0 (bioconda#46622)

* Update mosdepth to 0.3.7 (bioconda#46627)

Co-authored-by: Matthias De Smet <11850640+matthdsm@users.noreply.github.com>

* Update mitos to 2.1.8 (bioconda#46639)

* bump baredsc to test build (bioconda#46613)

* bump baredsc to test build

* unbump baredsc

* add space to rebuild

* Add SigProfilerMatrixGenerator recipe (bioconda#46605)

* recipe added

* run_exports added

* Recipe update

* test commands update

* Update prokbert to 0.0.44 (bioconda#45794)

* Update prokbert to 0.0.41

* Update prokbert to 0.0.43

* Update prokbert to 0.0.44

---------

Co-authored-by: Joshua Zhuang <71105179+mencian@users.noreply.github.com>

* Update ampcombi to 0.2.2 (bioconda#46641)

* Update hmftools-mark-dups to 1.1.3 (bioconda#46628)

* Update treetime to 0.11.3 (bioconda#46647)

* Update ppanggolin to 2.0.5 (bioconda#46648)

* Update ebi-eva-common-pyutils to 0.6.4 (bioconda#46645)

* ltr_harvest_parallel: Removed ver for genometools-genometools (bioconda#46623)

* Removed ver for genometools-genometools

* Incremented build number

* Removed ver constraint for ltr_finder (bioconda#46624)

* Add splitcode recipe (bioconda#46543)

* Add splitcode recipe

* Add splitcode recipe: set build number 0

* Update recipes/splitcode/meta.yaml

Co-authored-by: Ryan Dale <ryan.dale@nih.gov>

---------

Co-authored-by: Ryan Dale <ryan.dale@nih.gov>

* Update agc to 3.1 (bioconda#46540)

* Update meta.yaml

* Update meta.yaml

* Update meta.yaml

* Update meta.yaml

* Update meta.yaml

* Update meta.yaml

* Update meta.yaml

* Update meta.yaml

* Update meta.yaml

* Update meta.yaml

* Update meta.yaml

* Update recipes/agc/meta.yaml

Co-authored-by: Ryan Dale <ryan.dale@nih.gov>

---------

Co-authored-by: Joshua Zhuang <71105179+mencian@users.noreply.github.com>
Co-authored-by: Ryan Dale <ryan.dale@nih.gov>

* Update agat to 1.3.2 (bioconda#46652)

* Update anchorwave to 1.2.3 (bioconda#46631)

Co-authored-by: Joshua Zhuang <71105179+mencian@users.noreply.github.com>

* Update itsxpress to 2.0.2 (bioconda#46654)

* Update snakemake-interface-executor-plugins to 9.0.1 (bioconda#46651)

* bimp mitos (bioconda#46638)

* Update meta.yaml (bioconda#46619)

* Update ms2deepscore to 2.0.0 (bioconda#46637)

* Update ms2deepscore to 2.0.0

* update dependencies

---------

Co-authored-by: Joshua Zhuang <71105179+mencian@users.noreply.github.com>
Co-authored-by: mencian <joshua.zhuang@yahoo.com>

* Update callingcardstools to 1.5.2 (bioconda#46657)

* Update fibertools-rs to 0.4.2 (bioconda#46660)

* update tb-profiler dependencies (bioconda#46649)

* update dependencies

* update build number

* Update TREE-QMC to 3.0.0 (bioconda#46656)

* tqmc

* build.sh fixed

* "folder_and_package_name_must_match" fixed

* missing_run_exports fixed

* g++ not found fix

* build error fixed

* build error fix

* build.sh fix

* osx compilation fix

* made the name and version number consistent

* minor

* tree-qmc 3.0.0 updates

* tree-qmc 3.0.0 updates

* build.sh fixed

* build.sh fixed

* build.sh fixed

* build.sh

* build.sh

* debug

* build

* Update sourmash to 4.8.7 (bioconda#46655)

Co-authored-by: Joshua Zhuang <71105179+mencian@users.noreply.github.com>

* linux-aarch64 build for 3seq (bioconda#46610)

* linux-aarch64 build for 3seq

* updated pin_subpackage

---------

Co-authored-by: HWsunqian0027 <sunny_sunqian@163.com>
Co-authored-by: Thanh Lee <thanh.le-viet@quadram.ac.uk>

* linux-aarch64 build for abundancebin (bioconda#46633)

Co-authored-by: HWsunqian0027 <sunny_sunqian@163.com>

* update ucsc-bedclip adding new platform (bioconda#46626)

* update ucsc-bedclip adding new platform

* add patch

* fix compilation for arm

* remove from blacklist

* try another way to specify compiler version

* edit pin_subpackage

---------

Co-authored-by: Joshua Zhuang <71105179+mencian@users.noreply.github.com>

* Update ntsynt build (bioconda#46659)

* Update ntlink build (bioconda#46663)

* Pinning btllib version for now due to possible bug in the most recent release

* Update r-liger to 2.0.0 (bioconda#46621)

* Update r-liger to 2.0.0

* add missing deps

* oops, bioconductor- not r-

---------

Co-authored-by: mencian <joshua.zhuang@yahoo.com>

* Update oakvar to 2.9.92 (bioconda#46668)

* Update comet-ms from v2023.01.0 to v2023.01.2 (bioconda#46567)

* Update meta.yaml

* Update build number and run_exports

* add -lrt to makefile due to chrono error

* add escapes in build.sh

* Update build.sh

* Update build.sh

* Update recipes/comet-ms/build.sh

Co-authored-by: Julianus Pfeuffer <julianus.pfeuffer@pfizer.com>

* Update build.sh

* Update meta.yaml

* Update meta.yaml

* Update meta.yaml

* Update meta.yaml

* Create conda_build_config.yaml to control glibc version during test

* Update meta.yaml

* Update meta.yaml

* Update meta.yaml

* Delete recipes/comet-ms/conda_build_config.yaml

* Update meta.yaml

* ad gcc to build (which implicitely adds libgcc during host and runtime)

* static with glibc 2.17

---------

Co-authored-by: Julianus Pfeuffer <julianus.pfeuffer@pfizer.com>

* Update snakemake-interface-executor-plugins to 9.0.2 (bioconda#46684)

* Update sequali to 0.5.1 (bioconda#46694)

* Update ntm-profiler to 0.4.0 (bioconda#46667)

* Update ntm-profiler to 0.4.0

* Update pathogen profiler pinning

* update deps

---------

Co-authored-by: Robert A. Petit III <robbie.petit@gmail.com>
Co-authored-by: Jody Phelan <jody.phelan@lshtm.ac.uk>

* Updated ToulligQc to v2.5.4 (bioconda#46689)

* linux-aarch64 build for mappy (bioconda#46674)

Co-authored-by: yejianbang <yjb_kunpeng@163.com>

* inux-aarch64 build for altair-mf (bioconda#46673)

* linux-aarch64 build for altair-mf

* Update meta.yaml

---------

Co-authored-by: yejianbang <yjb_kunpeng@163.com>
Co-authored-by: yejianbang <145335562+yejianbang@users.noreply.github.com>

* Update pbstarphase to 0.8.2 (bioconda#46699)

* Update snakemake-executor-plugin-lsf to 0.2.3 (bioconda#46693)

* Update bactopia-py to 1.0.9 (bioconda#46704)

* Update phables to 1.3.2 (bioconda#46676)

* Update zol to 1.3.20 (bioconda#46709)

* moved arborator v1.0.0 (bioconda#46650)

arborator v1.0.0

moved arborator to the right folder

* Update wfmash to 0.13.0 (bioconda#46710)

* Add recipe for REViewer (bioconda#46514)

* Update meta.yaml (bioconda#46711)

* update rgi pinning for pyrodigal (bioconda#46669)

* update rgi pinning for pyrodigal

* bump build number

* fix issue with sistr container (bioconda#46712)

* fix issue with sistr container

* fix typo

* adjust python pinning in gubbins (bioconda#46713)

* fix amrfinderplus pinning in abritamr (bioconda#46714)

* locidex v0.1.1 recipe (bioconda#46715)

* locidex v0.0.1 recipe

* locidex v0.0.1 recipe

* locidex v0.1.1 recipe

* locidex v0.1.1 recipe

* Add new package for genotyping reads (bioconda#46587)

* Add new package for genotyping reads

* Changed python version to 3.8

* Updated python version

* Updated dependencies

* Updated biopython version

* Removed build.sh

* Update meta.yaml

* Updated meta.yaml

* Updated meta.yaml

* Updated meta.yaml

* Updated meta.yaml

* Updated meta.yaml

* Updated meta.yaml

* Updated meta.yaml

* Updated meta.yaml

* Update meta.yaml

* Minor changes

* Minor change

* Version update

* Update neat to 4.1.1 (bioconda#46708)

* Update neat to 4.1

* Update neat to 4.1.1

* Update massdash to 0.0.9 (bioconda#46707)

* Update pbfusion to 0.4.1 (bioconda#46705)

* Update hifihla to 0.3.0 (bioconda#46702)

* Update snakemake to 8.10.0 (bioconda#46691)

* Update snakemake to 8.10.0

* Update meta.yaml

---------

Co-authored-by: Johannes Köster <johannes.koester@tu-dortmund.de>

* Update chewbbaca to 3.3.4 (bioconda#46698)

* Update fiji-simple_omero_client to 5.18.0 (bioconda#46700)

* Update dxpy to 0.372.0 (bioconda#46692)

* Update dimet to 0.2.4 (bioconda#46685)

* Update viroconstrictor to 1.4.1 (bioconda#46682)

* update taxor to version 0.1.3 (bioconda#46678)

Co-authored-by: Jens-Uwe Ulrich <jens-uwe.ulrich@hpi.de>

* Update hictk to v0.0.11 (bioconda#46703)

* Bump hictk to v0.0.11

* Compiler segfaults are so much fun...

* WIP

* WIP

* WIP

* WIP

* Bugfix

* Update URL and checksum

* Update dragonflye to 1.2.0 (bioconda#46721)

* Update dragonflye to 1.2.0

* Update depends

---------

Co-authored-by: Robert A. Petit III <robbie.petit@gmail.com>

* Update bactopia-assembler to 1.0.4 (bioconda#46720)

* Update bactopia-assembler to 1.0.4

* Update depends

---------

Co-authored-by: Robert A. Petit III <robbie.petit@gmail.com>

* Update pangu to 0.2.5 (bioconda#46701)

* Update bactopia to 3.0.1 (bioconda#46724)

* Update bactopia to 3.0.1

* Update depends

---------

Co-authored-by: Robert A. Petit III <robbie.petit@gmail.com>

* Update tb-profiler to 6.2.0 (bioconda#46732)

* add linux-aarch64-alignoth (bioconda#46646)

* add linux-aarch64-aligncov

* add linux-aarch64-aligncov

* alignoth

* alignoth2

* alignoth2

* alignoth2

---------

Co-authored-by: yejianbang <yjb_kunpeng@163.com>

* Update DRAM version (bioconda#46723)

* Update dram version

* Add github issue link

* Add run_exports

* Fix patches location

* Fix patch

---------

Co-authored-by: Natasha Pavlovikj <npavlovikj2@unl.edu>

* Update resfinder to 4.5.0 (bioconda#46681)

* Update rmats to 4.3.0 (bioconda#46695)

* Update pybiolib to 1.1.1909 (bioconda#46688)

* Update pybiolib to 1.1.1890

* Update pybiolib to 1.1.1892

* Update pybiolib to 1.1.1896

* Update pybiolib to 1.1.1909

* Update gnparser to 1.9.1 (bioconda#46683)

* Update cazy_webscraper to 2.3.0.3 (bioconda#46725)

* Update influx-si-data-manager to 1.0.1 (bioconda#46737)

* Add lemur v1.0.0 (bioconda#46666)

* Add lemur v1.0.0

* Add run_exports

* Add eva-sub-cli recipe (bioconda#45929)

* add eva-sub-cli recipe

* fix indentation

* add unzip

* quiet unzip

* add preserve_egg_dir

* add node to run requirements

* update meta with new conda dependencies

* trigger pipeline

* bamtools: add linux-aarch64 build (bioconda#46734)

Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>

* Update TREE-QMC to 3.0.1 (bioconda#46738)

* tqmc

* build.sh fixed

* "folder_and_package_name_must_match" fixed

* missing_run_exports fixed

* g++ not found fix

* build error fixed

* build error fix

* build.sh fix

* osx compilation fix

* made the name and version number consistent

* minor

* tree-qmc 3.0.0 updates

* tree-qmc 3.0.0 updates

* build.sh fixed

* build.sh fixed

* build.sh fixed

* build.sh

* build.sh

* debug

* build

* v3.0.1

* seqtk: add linux-aarch64 build (bioconda#46730)

Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>

* Update dajin2 to 0.4.2 (bioconda#46722)

* update dimet for Ben (bioconda#46739)

* Update bioconda-utils to 2.13.0 (bioconda#46740)

* Update bioconda-utils to 2.13.0

* update requirements to match bioconda-utils repo

---------

Co-authored-by: aliciaaevans <alicia.evans@nih.gov>

* Update influx-si-data-manager to 1.0.2 (bioconda#46741)

* Update vcfdist to 2.5.1 (bioconda#46743)

* linux-aarch64 build for alignstats (bioconda#46635)

* linux-aarch64 build for alignstats

* linux-aarch64 build for alignstats

* Update meta.yaml

---------

Co-authored-by: yejianbang <yjb_kunpeng@163.com>
Co-authored-by: yejianbang <145335562+yejianbang@users.noreply.github.com>

* update umi_tools adding new platform (bioconda#46598)

* updated pyrodigal >=3.0 due to new feature for locidex (bioconda#46742)

* Update condiga to 0.2.2 (bioconda#46675)

* Update condiga to 0.2.2

* add run_exports

---------

Co-authored-by: mencian <joshua.zhuang@yahoo.com>

* Update anvio-minimal to 8 (bioconda#43417)

* Update anvio-minimal to 8

* Update anvio-minimal to 8

* add run_exports

* edit dependencies

* Update anvio-minimal to 8

* Update anvio-minimal to 8

* Update anvio-minimal to 8

* add multiprocess

* add rich-argparse

---------

Co-authored-by: joshuazhuang7 <joshua.zhuang@yahoo.com>
Co-authored-by: Thanh Lee <thanh.le-viet@quadram.ac.uk>
Co-authored-by: Joshua Zhuang <71105179+mencian@users.noreply.github.com>

* Update hapog to 1.3.8 (bioconda#46680)

* Update hapog to 1.3.8

* add zlib

---------

Co-authored-by: mencian <joshua.zhuang@yahoo.com>

* Update magus-msa to 0.2.0 (bioconda#46726)

* Update magus-msa to 0.2.0

* edit tests

* edit tests

---------

Co-authored-by: mencian <joshua.zhuang@yahoo.com>

* Update treeqmc to 3.0.1 (bioconda#46696)

* Update treeqmc to 3.0.1

* Update treeqmc to 3.0.3

* update meta.yaml

* add recipe to blacklist

---------

Co-authored-by: Joshua Zhuang <71105179+mencian@users.noreply.github.com>
Co-authored-by: mencian <joshua.zhuang@yahoo.com>
Co-authored-by: Robert A. Petit III <robbie.petit@gmail.com>

* update ucsc-bedclip (bioconda#46686)

* remove specific cpu flag

* bump build number

---------

Co-authored-by: mencian <joshua.zhuang@yahoo.com>

* add treeqmc to blacklist (bioconda#46746)

* Update gmap to 2024.03.15 (bioconda#46745)

* Update gmap to 2024.03.15

* edit build.sh

* revert to skipping OSX & enable aarch64 build

* revert to linux only

* Update arcs to 1.2.7 (bioconda#46749)

* Update scib recipe (bioconda#46748)

* Update phold to 0.1.4 (bioconda#46751)

* Update pangu to 0.2.6 (bioconda#46752)

* Harpy 0.8.0 + recipe change (bioconda#46658)

* update build recipe

* specify current version

* raxml: add linux-aarch64 build (bioconda#46469)

* raxml: add linux-aarch64 build

Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>

* Disable the tests which are x86_64/AVX specific

Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>

* try build selector

* try build selector

---------

Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>
Co-authored-by: Joshua Zhuang <71105179+mencian@users.noreply.github.com>

* wfa2-lib: enable linux-aarch64 build (bioconda#46753)

* wfa2-lib: enable linux-aarch64 build

* edit build.sh

* edit build.sh

* edit build.sh

* edit build.sh

* edit build.sh

* tabixpp: enable linux-aarch64 build (bioconda#46754)

* tabixpp: enable linux-aarch64 build

* try without patch

* try without patch 2

* linux-aarch64 build for adapterremoval

* fix

* linux-aarch64 build for dbg2olc

---------

Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>
Co-authored-by: Mylène Mariana Gonzales André <103585173+mari-ga@users.noreply.github.com>
Co-authored-by: Martin Grigorov <martin-g@users.noreply.github.com>
Co-authored-by: M Bernt <m.bernt@ufz.de>
Co-authored-by: Bioconda Bot <47040946+BiocondaBot@users.noreply.github.com>
Co-authored-by: Peter Briggs <peter.briggs@manchester.ac.uk>
Co-authored-by: Matthew Berkeley <42berkeley@cua.edu>
Co-authored-by: mencian <joshua.zhuang@yahoo.com>
Co-authored-by: Ralf Gabriels <ralfg@hotmail.be>
Co-authored-by: guozhicong <juiceonion@foxmail.com>
Co-authored-by: sunqian2002 <50086972+huazhong28@users.noreply.github.com>
Co-authored-by: Christian Brueffer <christian@brueffer.io>
Co-authored-by: Joshua Zhuang <71105179+mencian@users.noreply.github.com>
Co-authored-by: pabloaledo <112545720+pabloaledo@users.noreply.github.com>
Co-authored-by: sunqian2116 <163837843+sunqian2116@users.noreply.github.com>
Co-authored-by: Enrico <75318813+GitEnricoNeko@users.noreply.github.com>
Co-authored-by: RolandFaure <64131971+RolandFaure@users.noreply.github.com>
Co-authored-by: Salomé Brunon <91611978+Salome-Brunon@users.noreply.github.com>
Co-authored-by: Johan Dahlberg <johan@uppsala-bioinformatics.se>
Co-authored-by: Jody Phelan <jody.phelan@lshtm.ac.uk>
Co-authored-by: Pablo <pablo.aledo@gmail.com>
Co-authored-by: Cornelius Roemer <cornelius.roemer@gmail.com>
Co-authored-by: Paweł <38688203+pawelqs@users.noreply.github.com>
Co-authored-by: Robert A. Petit III <robbie.petit@gmail.com>
Co-authored-by: Ammar Aziz <spidermine63@gmail.com>
Co-authored-by: yejianbang <yjb_kunpeng@163.com>
Co-authored-by: tamuanand <tamuanand@users.noreply.github.com>
Co-authored-by: Matthias De Smet <11850640+matthdsm@users.noreply.github.com>
Co-authored-by: Alicia A. Evans <108547992+aliciaaevans@users.noreply.github.com>
Co-authored-by: Usman Rashid <usman@smme.edu.pk>
Co-authored-by: Delaney Sullivan <delaneyk.sullivan@gmail.com>
Co-authored-by: Ryan Dale <ryan.dale@nih.gov>
Co-authored-by: Agnieszka Danek <agnieszkadanek@users.noreply.github.com>
Co-authored-by: Mike Tisza <michael.tisza@gmail.com>
Co-authored-by: Bob <55469084+yhhan19@users.noreply.github.com>
Co-authored-by: Thanh Lee <thanh.le-viet@quadram.ac.uk>
Co-authored-by: Lauren Coombe <lauren.e.coombe@gmail.com>
Co-authored-by: Jonas Scheid <43858870+jonasscheid@users.noreply.github.com>
Co-authored-by: Julianus Pfeuffer <julianus.pfeuffer@pfizer.com>
Co-authored-by: yejianbang <145335562+yejianbang@users.noreply.github.com>
Co-authored-by: Kirill Bessonov <kbessonov@gmail.com>
Co-authored-by: Michael Knudsen <micknudsen@gmail.com>
Co-authored-by: Jens Luebeck <jluebeck@ucsd.edu>
Co-authored-by: AntonS-bio <47866509+AntonS-bio@users.noreply.github.com>
Co-authored-by: Johannes Köster <johannes.koester@tu-dortmund.de>
Co-authored-by: Jens-Uwe Ulrich <46562264+JensUweUlrich@users.noreply.github.com>
Co-authored-by: Jens-Uwe Ulrich <jens-uwe.ulrich@hpi.de>
Co-authored-by: Roberto Rossini <71787608+robomics@users.noreply.github.com>
Co-authored-by: Natasha Pavlovikj <natasha.pavlovikj@yahoo.com>
Co-authored-by: Natasha Pavlovikj <npavlovikj2@unl.edu>
Co-authored-by: Bryce Kille <brycekille@gmail.com>
Co-authored-by: April Shen <ashen@ebi.ac.uk>
Co-authored-by: Björn Grüning <bjoern@gruenings.eu>
Co-authored-by: aliciaaevans <alicia.evans@nih.gov>
Co-authored-by: Pavel V. Dimens <19176506+pdimens@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants