Skip to content

Commit

Permalink
Merge pull request #61 from rki-mf1/Krannich479-patch-ngs-bamname
Browse files Browse the repository at this point in the history
Fix bam name in hap.nf NGS wf
  • Loading branch information
Krannich479 authored Jun 24, 2024
2 parents 36e7b5c + 838ca2e commit 948d451
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/mason/simulator/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ process MASON_SIMULATOR {

output:
path "simulated_hap${sample}.NGSWGS.{R1,R2}.fastq", emit: fastqs
path "simulated_hap${sample}.bam", emit: bam
path "simulated_hap${sample}.NGSWGS.bam", emit: bam

// Job script
script:
Expand All @@ -31,7 +31,7 @@ process MASON_SIMULATOR {
-iv ${vcf} \
-o simulated_hap${sample}.NGSWGS.R1.fastq \
-or simulated_hap${sample}.NGSWGS.R2.fastq \
-oa simulated_hap${sample}.bam \
-oa simulated_hap${sample}.NGSWGS.bam \
--seed ${unique_seed} \
--num-threads ${task.cpus} \
--num-fragments ${params.nb_frag} \
Expand Down

0 comments on commit 948d451

Please sign in to comment.