Skip to content

Commit

Permalink
Change check_own process to not include input files in output, use a …
Browse files Browse the repository at this point in the history
…fixed file name
  • Loading branch information
matthuska committed Nov 11, 2024
1 parent 7917391 commit f8ac26e
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 f8ac26e

Please sign in to comment.