Skip to content

Commit

Permalink
Ensure iqtree_model_used is a non-nullable String in augur_tree task …
Browse files Browse the repository at this point in the history
…and workflow
  • Loading branch information
Michal-Babins committed Nov 12, 2024
1 parent a9a4e65 commit 064d677
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tasks/phylogenetic_inference/augur/task_augur_tree.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ task augur_tree {
output {
File aligned_tree = "~{build_name}_~{method}.nwk"
String augur_version = read_string("VERSION")
String? iqtree_model_used = read_string("FINAL_MODEL.txt")
String iqtree_model_used = read_string("FINAL_MODEL.txt")
}
runtime {
docker: docker
Expand Down
2 changes: 1 addition & 1 deletion workflows/phylogenetics/wf_augur.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ workflow augur {
File? auspice_input_json = augur_export.auspice_json
File? time_tree = augur_refine.refined_tree
File distance_tree = augur_tree.aligned_tree
String? iqtree_model_used = augur_tree.iqtree_model_used
String iqtree_model_used = augur_tree.iqtree_model_used
File aligned_fastas = select_first([augur_align.aligned_fasta, alignment_fasta])
File combined_assemblies = filter_sequences_by_length.filtered_fasta
File? metadata_merged = tsv_join.out_tsv
Expand Down

0 comments on commit 064d677

Please sign in to comment.