Skip to content

Commit

Permalink
Merge pull request #179 from naobservatory/harmon_fix_dev
Browse files Browse the repository at this point in the history
Fixing misused labels
  • Loading branch information
willbradshaw authored Feb 3, 2025
2 parents a97711a + 2c59027 commit fce94af
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 5 deletions.
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

0 comments on commit fce94af

Please sign in to comment.