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

Changed resource usage for prefetchchecker #17

Merged
merged 4 commits into from
Apr 19, 2024
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ jobs:
matrix:
NXF_VER:
- "23.04.0"
- "latest-everything"
- "23.10.1"
#- "latest-everything"
steps:
- name: Check out pipeline code
uses: actions/checkout@v3
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.1.1] - 2024-04-19

### Added

### Changed

- Switched the resource label for **prefetchchecker** from `process_low` to `process_single`.
- Switched GitHub continuous integration to test against at most Nextflow `23.10.1` (due to differences in outputs with later Nextflow pre-releases).

## [1.1.0] - 2024-04-10

### Added
Expand Down
2 changes: 1 addition & 1 deletion modules/local/prefetchchecker/main.nf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
process PREFETCH_CHECKER {
tag "prefetch_checker"
label 'process_low'
label 'process_single'

input:
val failures // list of failures
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ manifest {
description = """IRIDA Next pipeline for fetching data from NCBI"""
mainScript = 'main.nf'
nextflowVersion = '!>=23.04.0'
version = '1.1.0'
version = '1.1.1'
doi = ''
defaultBranch = 'main'
}
Expand Down
Loading