Skip to content

Commit

Permalink
bugfix from upstream viral-pipelines (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpark01 authored Aug 19, 2021
1 parent 1009fe4 commit a352540
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions workflows/wf_sarscov2_nextstrain_modified.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ workflow sarscov2_nextstrain {
call nextstrain.refine_augur_tree {
input:
raw_tree = draft_augur_tree.aligned_tree,
msa_or_vcf = mafft.aligned_sequences,
msa_or_vcf = augur_mask_sites.masked_sequences,
metadata = derived_cols.derived_metadata,
clock_rate = clock_rate,
clock_std_dev = clock_std_dev
Expand All @@ -145,7 +145,7 @@ workflow sarscov2_nextstrain {
call nextstrain.ancestral_tree {
input:
tree = refine_augur_tree.tree_refined,
msa_or_vcf = mafft.aligned_sequences
msa_or_vcf = augur_mask_sites.masked_sequences
}
call nextstrain.translate_augur_tree {
input:
Expand Down Expand Up @@ -180,6 +180,7 @@ workflow sarscov2_nextstrain {
File combined_assemblies = filter_sequences_by_length.filtered_fasta
File multiple_alignment = mafft.aligned_sequences
File unmasked_snps = snp_sites.snps_vcf
File masked_alignment = augur_mask_sites.masked_sequences

File metadata_merged = derived_cols.derived_metadata
File keep_list = fasta_to_ids.ids_txt
Expand Down

0 comments on commit a352540

Please sign in to comment.