Skip to content

Commit ff86ba2

Browse files
authored
Merge pull request #358 from broadinstitute/dp-nextstrain
bugfix for sarscov2_nextstrain
2 parents beb2eca + 83ca00e commit ff86ba2

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

pipes/WDL/tasks/tasks_nextstrain.wdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1588,7 +1588,7 @@ task export_auspice_json {
15881588
}
15891589
runtime {
15901590
docker: docker
1591-
memory: "7 GB"
1591+
memory: "13 GB"
15921592
cpu : 2
15931593
disks: "local-disk 100 HDD"
15941594
dx_instance_type: "mem1_ssd1_v2_x2"

pipes/WDL/workflows/sarscov2_nextstrain.wdl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ workflow sarscov2_nextstrain {
124124
call nextstrain.refine_augur_tree {
125125
input:
126126
raw_tree = draft_augur_tree.aligned_tree,
127-
msa_or_vcf = subsample.subsampled_msa,
127+
msa_or_vcf = augur_mask_sites.masked_sequences,
128128
metadata = derived_cols.derived_metadata,
129129
root = tree_root_seq_id
130130
}
@@ -153,7 +153,7 @@ workflow sarscov2_nextstrain {
153153
call nextstrain.ancestral_tree {
154154
input:
155155
tree = refine_augur_tree.tree_refined,
156-
msa_or_vcf = subsample.subsampled_msa
156+
msa_or_vcf = augur_mask_sites.masked_sequences
157157
}
158158
159159
call nextstrain.translate_augur_tree {
@@ -196,6 +196,7 @@ workflow sarscov2_nextstrain {
196196
File metadata_merged = derived_cols.derived_metadata
197197
File keep_list = fasta_to_ids.ids_txt
198198
File subsampled_sequences = subsample.subsampled_msa
199+
File masked_alignment = augur_mask_sites.masked_sequences
199200
Int sequences_kept = subsample.sequences_out
200201
Map[String, Int] counts_by_group = subsample.counts_by_group
201202

pipes/WDL/workflows/sarscov2_nextstrain_aligned_input.wdl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ workflow sarscov2_nextstrain_aligned_input {
111111
call nextstrain.refine_augur_tree {
112112
input:
113113
raw_tree = draft_augur_tree.aligned_tree,
114-
msa_or_vcf = subsample.subsampled_msa,
114+
msa_or_vcf = augur_mask_sites.masked_sequences,
115115
metadata = derived_cols.derived_metadata,
116116
root = tree_root_seq_id
117117
}
@@ -140,7 +140,7 @@ workflow sarscov2_nextstrain_aligned_input {
140140
call nextstrain.ancestral_tree {
141141
input:
142142
tree = refine_augur_tree.tree_refined,
143-
msa_or_vcf = subsample.subsampled_msa
143+
msa_or_vcf = augur_mask_sites.masked_sequences
144144
}
145145
146146
call nextstrain.translate_augur_tree {
@@ -181,6 +181,7 @@ workflow sarscov2_nextstrain_aligned_input {
181181
File metadata_merged = derived_cols.derived_metadata
182182
File keep_list = fasta_to_ids.ids_txt
183183
File subsampled_sequences = subsample.subsampled_msa
184+
File masked_alignment = augur_mask_sites.masked_sequences
184185
Int sequences_kept = subsample.sequences_out
185186
Map[String, Int] counts_by_group = subsample.counts_by_group
186187

0 commit comments

Comments
 (0)