Skip to content

Commit

Permalink
fix: switch file publish mode to copy for AWS compatibility
Browse files Browse the repository at this point in the history
In the future we'd like to implement #21
  • Loading branch information
kelly-sovacool committed Aug 22, 2023
1 parent 4574db3 commit 2eadd8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/champagne/workflow/modules/local/qc.nf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

process FASTQC {
tag { sample_id }
publishDir "$params.outdir/$sample_id/qc/", mode: 'symlink'
publishDir "$params.outdir/$sample_id/qc/", mode: 'copy'

input:
tuple val(sample_id), path(fastq)
Expand Down
2 changes: 1 addition & 1 deletion src/champagne/workflow/modules/local/trim.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// https://github.com/nf-core/ampliseq/blob/dev/subworkflows/local/cutadapt_workflow.nf
process TRIM_SE {
tag { sample_id }
publishDir "$params.outdir/$sample_id", mode: 'symlink'
publishDir "$params.outdir/$sample_id", mode: 'copy'

input:
tuple val(sample_id), path(fastq)
Expand Down

0 comments on commit 2eadd8e

Please sign in to comment.