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 fastq-dl to 3.0.0 #51506

Merged
merged 6 commits into from
Oct 21, 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
24 changes: 15 additions & 9 deletions recipes/fastq-dl/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,30 +1,32 @@
{% set version = "2.0.4" %}
{% set name = "fastq-dl" %}
{% set version = "3.0.0" %}
rpetit3 marked this conversation as resolved.
Show resolved Hide resolved

package:
name: fastq-dl
name: {{ name }}
version: {{ version }}

source:
url: https://pypi.io/packages/source/f/fastq_dl/fastq_dl-{{ version }}.tar.gz
sha256: 201a75f7e7b08d1eb56c625c98f92ad39e9e683e1921bb60a24a38a158a2daa8
sha256: de85e3fcc60c2f2fb9313336df9706add440b0f89963f28a46fa75e5ff041a0a

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

requirements:
host:
- python >=3.7
- poetry =1.3
- python >=3.9
- poetry-core
- pip

run:
- executor
- pigz
- python >=3.7
- python >=3.9
- pysradb >=1.4
- requests
- rich-click >=1.6.0
Expand All @@ -43,3 +45,7 @@ about:
license: MIT
license_file: LICENSE
summary: A tool to download FASTQs associated with Study, Experiment, or Run accessions.

extra:
recipe-maintainers:
- rpetit3