Skip to content

Commit

Permalink
Merge pull request #113 from rki-mf1/107-duplicated-entries-in-interm…
Browse files Browse the repository at this point in the history
…ediate-bam-file

Change check_own process to not include input files in output
  • Loading branch information
hoelzer authored Nov 12, 2024
2 parents 7917391 + f8ac26e commit 6ca6988
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/prepare_contamination.nf
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@ process check_own {
path fasta

output:
path '*.gz', includeInputs: true
path 'checked.fa.gz'

script:
"""
seqkit seq ${fasta} -o ${fasta}.gz
seqkit seq ${fasta} -o checked.fa.gz
"""
stub:
"""
touch ${fasta}.gz
touch checked.fa.gz
"""
}

Expand Down

0 comments on commit 6ca6988

Please sign in to comment.