Skip to content

Commit

Permalink
Make dict handling more clear
Browse files Browse the repository at this point in the history
  • Loading branch information
bridgetknight committed Feb 14, 2025
1 parent 0b2b4f5 commit ea4180d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions wdl/pipelines/TechAgnostic/Utility/MalariaReportsWorkflow.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -131,12 +131,14 @@ workflow GenerateMalariaReports {
}

Map[String, String] ref_map = read_map(ref_map_file)
String fasta = ref_map["fasta"]
String fai = ref_map["fai"]

call Snapshot.DrugResIGV as GenerateSnapshots {
input:
sample_name = sample_name,
fasta_path = ref_map["fasta"],
fasta_index_path = ref_map["fai"],
fasta_path = fasta,
fasta_index_path = fai,
regions_bed = regions_bed,
aligned_bam = aligned_bam,
aligned_bai = aligned_bai
Expand Down

0 comments on commit ea4180d

Please sign in to comment.