Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
kedhammar committed Dec 11, 2024
1 parent a6d38c3 commit 263e7aa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 4 additions & 0 deletions VERSIONLOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Scilifelab_epps Version Log

## 20241211.1

No longer reserve PromethION column 3 for Clinical Genomics.

## 20241114.1

Bugfix Bravo CSV for qPCR. Needed better logic for isolating physical output artifacts.
Expand Down
4 changes: 1 addition & 3 deletions scripts/ont_suggest_ports.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,7 @@ def main(lims, args):

# Sort ports (a sort of port sort, if you will)
ports_list = list(ports.items())
ports_list.sort(
key=lambda x: x[1] + 1000 if x[0][0] == "3" else x[1]
) # Sort by port usage, but send column 3 to the end since it's reserved for Clinical Genomics
ports_list.sort(key=lambda x: x[1])

# Collect which ports are already specified in UDFs
ports_used = []
Expand Down

0 comments on commit 263e7aa

Please sign in to comment.