Skip to content

Commit

Permalink
syntax error again
Browse files Browse the repository at this point in the history
  • Loading branch information
dpark01 committed Aug 20, 2024
1 parent 40fbbc4 commit cd14cce
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 @@ -616,7 +616,7 @@ task biosample_to_table {
print("biosample rows ({})".format(len(biosample_attributes)))
# write reformatted table
with open('~{base}.entities.tsv', wt) as outf:
with open('~{base}.entities.tsv', 'wt') as outf:
writer = csv.DictWriter(outf, delimiter='\t', fieldnames=["~{sanitized_id_col}"]+biosample_headers, quoting=csv.QUOTE_MINIMAL)
writer.writeheader()
for row in biosample_attributes:
Expand Down

0 comments on commit cd14cce

Please sign in to comment.