Skip to content

Commit

Permalink
Save the GFA file too
Browse files Browse the repository at this point in the history
  • Loading branch information
kvg committed Oct 15, 2024
1 parent 82e6d60 commit c2404d6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion wdl/HidiveCorrect.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -143,11 +143,12 @@ task Correct {
command <<<
set -euxo pipefail

hidive correct -m ~{model} ~{short_read_fasta} ~{long_read_fasta} > ~{prefix}.fa
hidive correct -m ~{model} -g {prefix}.gfa ~{long_read_fasta} ~{short_read_fasta} > ~{prefix}.fa
>>>

output {
File fasta = "~{prefix}.fa"
File gfa = "~{prefix}.gfa"
}

runtime {
Expand Down

0 comments on commit c2404d6

Please sign in to comment.