Skip to content

Commit

Permalink
Fixed typo in zarr output file.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonn-smith committed Dec 18, 2024
1 parent 03c7c0e commit 28208dc
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -527,17 +527,23 @@ workflow SRJointCallGVCFsWithGenomicsDB {
Array[String] final_snpEff_genes = if defined(gcs_out_root_dir) then [select_first([FinalizeSnpEffGenes.gcs_dir])] else select_all(FunctionallyAnnotate.snpEff_genes)
}

# Resolve the final joint Zarr file if we have created one:
if (do_zarr_conversion) {
File final_joint_zarr = select_first([FinalizeZarr.gcs_path, ConvertToZarr.zarr])
}

output {
File joint_vcf_out = select_first([FinalizeVETSVCF.gcs_path, GatherRescoredVcfs.output_vcf])
File joint_vcf_out_tbi = select_first([FinalizeVETSTBI.gcs_path, GatherRescoredVcfs.output_vcf_index])

File joint_mt = select_first([FinalizeHailMatrixTable.gcs_path, CreateHailMatrixTable.mt_tar])
File joint_zarr = select_first([FinalizeZarr.gcs_path, ConvertToZarr.zarr])

Array[String] genomicsDB = select_first([final_genomicsdb_location, ImportGVCFsIntoGenomicsDB.output_genomicsdb])

File? joint_zarr = final_joint_zarr
Array[String]? snpEff_summary = final_snpeff_summary
Array[String]? snpEff_genes = final_snpEff_genes

}
}

Expand Down

0 comments on commit 28208dc

Please sign in to comment.