Skip to content

Commit

Permalink
Tag tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
sminot committed Feb 5, 2024
1 parent d68dcb2 commit c18d491
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions modules/processes/align_reads.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
process join_read_pairs {
container "${params.container__gigmap}"
label 'io_limited'
tag "${sample_name}"

input:
tuple val(sample_name), path("inputs/")
Expand All @@ -19,6 +20,7 @@ cat inputs/* > "${sample_name}.${params.reads_suffix}"
process count_reads {
container "${params.container__pandas}"
label 'io_limited'
tag "${sample_name}"

input:
// Place all input files in an input/ folder, naming with a simple numeric index
Expand All @@ -40,6 +42,7 @@ gunzip -c input/input*.fastq.gz | awk 'NR % 4 == 1' | wc -l > ${sample_name}.num
process diamond {
container "${params.container__diamond}"
label 'mem_medium'
tag "${sample_name}"

input:
// Place all input files in an input/ folder, naming with a simple numeric index
Expand Down Expand Up @@ -76,6 +79,7 @@ process diamond_logs {
process filter_aln {
container "${params.container__pandas}"
label 'io_limited'
tag "${sample_name}"

input:
tuple val(sample_name), path(aln)
Expand All @@ -93,6 +97,7 @@ process famli {
container "${params.container__famli}"
label 'mem_medium'
publishDir "${params.output}/alignments/", mode: "copy", overwrite: true
tag "${sample_name}"

input:
tuple val(sample_name), file(input_aln)
Expand Down

0 comments on commit c18d491

Please sign in to comment.