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

Update quantms-utils to 0.0.12 #51357

Merged
merged 25 commits into from
Oct 28, 2024
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
838e0c0
Update quantms-utils to 0.0.12
BiocondaBot Oct 13, 2024
a46e297
Update meta.yaml
ypriverol Oct 13, 2024
9c7e870
Update meta.yaml
ypriverol Oct 13, 2024
54a8430
dependency added
ypriverol Oct 14, 2024
7addd40
remove <4 from host
ypriverol Oct 14, 2024
d5c74e2
Merge branch 'master' into bump/quantms_utils
bgruening Oct 14, 2024
3504a86
Merge branch 'master' into bump/quantms_utils
ypriverol Oct 14, 2024
860ea70
Merge branch 'master' into bump/quantms_utils
ypriverol Oct 14, 2024
92a8141
Merge branch 'master' into bump/quantms_utils
ypriverol Oct 14, 2024
7745b23
add missing deps
mencian Oct 14, 2024
a492ef6
Merge branch 'master' into bump/quantms_utils
mencian Oct 14, 2024
6252b52
Merge branch 'master' into bump/quantms_utils
ypriverol Oct 15, 2024
6d21d6a
Merge branch 'master' into bump/quantms_utils
mencian Oct 15, 2024
a71d0f7
Merge branch 'master' into bump/quantms_utils
ypriverol Oct 16, 2024
ea435a9
Merge branch 'master' into bump/quantms_utils
ypriverol Oct 16, 2024
7357220
Merge branch 'master' into bump/quantms_utils
ypriverol Oct 16, 2024
ea36702
Merge branch 'master' into bump/quantms_utils
ypriverol Oct 16, 2024
2196e91
Merge branch 'master' into bump/quantms_utils
ypriverol Oct 17, 2024
e119c3a
Merge branch 'master' into bump/quantms_utils
ypriverol Oct 17, 2024
846b1c4
Merge branch 'master' into bump/quantms_utils
ypriverol Oct 18, 2024
07c50be
Merge branch 'master' into bump/quantms_utils
ypriverol Oct 19, 2024
bd457ce
Merge branch 'master' into bump/quantms_utils
bgruening Oct 24, 2024
da7217f
Merge branch 'master' into bump/quantms_utils
mencian Oct 25, 2024
f164df5
Merge branch 'master' into bump/quantms_utils
bgruening Oct 28, 2024
e678887
Merge branch 'master' into bump/quantms_utils
mencian Oct 28, 2024
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
25 changes: 15 additions & 10 deletions recipes/quantms-utils/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,32 +1,34 @@
{% set name = "quantms-utils" %}
{% set version = "0.0.11" %}
{% set version = "0.0.12" %}

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

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/quantms_utils-{{ version }}.tar.gz
sha256: f1205db7526f09d36606288782363b352546a100b4763c16d988d7cdb45bf26f
sha256: 99ecf7e68acad272749040b231701018aaa76c391ceb234eaefd6f6842c2a4e6

build:
entry_points:
- quantmsutilsc=quantmsutils.quantmsutilsc:main
noarch: python
run_exports:
- {{ pin_subpackage('quantms-utils', max_pin="x.x") }}
script: "{{ PYTHON }} -m pip install . --no-deps -vvv"
script: "{{ PYTHON }} -m pip install . --no-deps --no-build-isolation --no-cache-dir -vvv"
number: 0

requirements:
host:
- python >=3.8,<4.0
- python >=3.8
- pip
- poetry-core
- setuptools
run:
- python >=3.7.0,<4.0.0
- click >=7.0
- pydantic >=1.10,<2
- sdrf-pipelines >=0.0.29
- sdrf-pipelines >=0.0.31
- pyopenms >=2.9.1
- ms2rescore ==3.0.3
- psm-utils ==0.8.2
Expand All @@ -37,21 +39,24 @@ requirements:
- scipy ==1.13.1
- scikit-learn
- deeplcretrainer
- protobuf >=3.9.2
- pyarrow
- pygam

test:
imports:
- quantmsutils
commands:
- quantmsutilsc --help
requires:
- pip

about:
home: https://www.github.com/bigbio/quantms-utils
summary: Python package with scripts and helpers for the quantms workflow
home: "https://www.github.com/bigbio/quantms-utils"
summary: "Python package with scripts and helpers for the quantms workflow."
license: MIT
license_family: MIT
license_file: LICENSE
dev_url: https://www.github.com/bigbio/quantms-utils
dev_url: "https://www.github.com/bigbio/quantms-utils"
doc_url: "https://quantms.org/home"

extra:
recipe-maintainers:
Expand Down
Loading