Skip to content

Commit

Permalink
fix: add missing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
elleira committed May 13, 2024
1 parent a611de2 commit 9286065
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflow/scripts/sample_order_multiqc.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
sample_order = [list(x) for x in set(tuple(x) for x in sample_order_duplicates)]
sample_order.sort(key=lambda x: int(x[1]))

with open(snakemake.output.replacement_dna "w+") as replacement_dna, \
open(snakemake.output.replacement_rna "w+") as replacement_dna, \
with open(snakemake.output.replacement_dna, "w+") as replacement_dna, \
open(snakemake.output.replacement_rna, "w+") as replacement_dna, \
open(snakemake.output.order_dna, "w+") as order_tsv_dna, \
open(snakemake.output.order_rna, "w+") as order_tsv_rna, \
open(snakemake.output.dnanumber, "w+") as dna_table, \
Expand Down

0 comments on commit 9286065

Please sign in to comment.