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

Fixing misused labels #179

Merged
merged 3 commits into from
Feb 3, 2025
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
- Added new intermediate outputs, including unfiltered viral hits and interleaved FASTQ from EXTRACT_VIRAL_READS
- Viral hits TSV moved from `virus_hits_db.tsv.gz` to `virus_hits_filtered.tsv.gz`
- Numerous changes to column names in viral hits TSV, mainly to improve clarity
- Updated mislabeled processes

# v2.7.0.2
- Updated `pipeline-version.txt`
Expand Down
4 changes: 4 additions & 0 deletions configs/containers.config
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,8 @@ process {
// - conda-forge::file=5.46
// - conda-forge::gzip=1.13
}
withLabel: python {
container = "community.wave.seqera.io/library/python:3.13.1--d00663700fcc8bcf"

}
}
2 changes: 1 addition & 1 deletion modules/local/filterTsv/main.nf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Filter a gzipped TSV to keep the first line for each combination of values in the specified columns
process FILTER_TSV {
label "core_utils"
label "coreutils"
label "single"
input:
tuple val(sample), path(tsv)
Expand Down
2 changes: 1 addition & 1 deletion modules/local/headTsv/main.nf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Add a header line to an unheaded TSV file
process HEAD_TSV {
label "core_utils"
label "python"
label "single"
input:
tuple val(sample), path(tsv)
Expand Down
2 changes: 1 addition & 1 deletion modules/local/reheadTsv/main.nf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Rename fields in a TSV header
process REHEAD_TSV {
label "core_utils"
label "python"
label "single"
input:
tuple val(sample), path(tsv)
Expand Down
2 changes: 1 addition & 1 deletion modules/local/sortFile/main.nf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Sort a gzipped file by a user-specified key string
// TODO: Expand to handle plaintext files
process SORT_FILE {
label "core_utils"
label "coreutils"
label "single"
input:
tuple val(sample), path(file)
Expand Down
2 changes: 1 addition & 1 deletion modules/local/sortTsv/main.nf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Sort a gzipped TSV by a specified column header
// TODO: Expand to handle plaintext TSVs
process SORT_TSV {
label "core_utils"
label "coreutils"
label "single"
input:
tuple val(sample), path(tsv)
Expand Down