Skip to content

Commit

Permalink
typos tools
Browse files Browse the repository at this point in the history
  • Loading branch information
sridhar0605 committed Jan 25, 2024
1 parent 9e1503c commit cae2a9b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions definitions/subworkflows/cram_to_bam_and_index.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import "../tools/cram_to_bam.wdl" as cb
import "../tools/index_bam.wdl" as i

workflow cramTobamAndIndex{
input{
input {
File cram
File cram_index
File reference
Expand All @@ -18,7 +18,7 @@ workflow cramTobamAndIndex{
cram_index=cram_index,
reference=reference,
reference_fai=reference_fai,
reference_dict=reference_dict,
reference_dict=reference_dict
}

call i.index_bam {
Expand All @@ -30,6 +30,5 @@ workflow cramTobamAndIndex{
File indexed_bam = index_bam.indexed_bam
File indexed_bam_bai = index_bam.indexed_bam_bai
File indexed_bai = index_bam.indexed_bai

}
}

0 comments on commit cae2a9b

Please sign in to comment.