Skip to content

Commit

Permalink
fix python
Browse files Browse the repository at this point in the history
  • Loading branch information
dpark01 committed Feb 3, 2025
1 parent 8fc9b18 commit 0208be8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipes/WDL/tasks/tasks_ncbi.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -1297,7 +1297,7 @@ task genbank_special_taxa {
with open("table2asn_allowed.boolean", "wt") as outf:
outf.write("false" if prohibited else "true")
with open("genbank_submission_mechanism.str", "wt") as outf:
if any(node in set(11320, 11520, 11552) for node in this_and_ancestors):
if any(node in set((11320, 11520, 11552)) for node in this_and_ancestors):
outf.write("Influenza")
elif any(node == 2697049 for node in this_and_ancestors):
outf.write("SARS-CoV-2")
Expand Down

0 comments on commit 0208be8

Please sign in to comment.