Skip to content

Commit

Permalink
fix sorting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ssjunnebo committed Oct 7, 2024
1 parent 0b030b1 commit f417788
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taca/analysis/analysis_element.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def _process(run):
manifest_to_split=run.lims_manifest
)
sub_demux_count = 0
for demux_manifest in demux_manifests.sort():
for demux_manifest in sorted(demux_manifests):
demux_dir = f"Demultiplexing_{sub_demux_count}"
os.mkdir(demux_dir)
run.start_demux(demux_manifest, demux_dir)
Expand Down

0 comments on commit f417788

Please sign in to comment.