Skip to content

Commit 6bf0971

Browse files
cimendescimendes
authored andcommitted
Fix bug reported in #137 - gfa files now stored under results/
1 parent 55593a4 commit 6bf0971

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flowcraft/generator/templates/spades.nf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ process spades_{{ pid }} {
2424

2525
tag { sample_id }
2626
publishDir 'results/assembly/spades_{{ pid }}/', pattern: '*_spades*.fasta', mode: 'copy'
27-
publishDir "reports/assembly/spades_{{ pid }}/$sample_id", pattern: "*.gfa", mode: "copy"
28-
publishDir "reports/assembly/spades_{{ pid }}/$sample_id", pattern: "*.fastg", mode: "copy"
27+
publishDir "results/assembly/spades_{{ pid }}/$sample_id", pattern: "*.gfa", mode: "copy"
28+
publishDir "results/assembly/spades_{{ pid }}/$sample_id", pattern: "*.fastg", mode: "copy"
2929

3030
input:
3131
set sample_id, file(fastq_pair), max_len from {{ input_channel }}.join(SIDE_max_len_{{ pid }})

0 commit comments

Comments
 (0)