Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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

## 20251104.1

Update EPP for generating ONT samplesheets so that periods in the kitname are replaced by dashes.

## 20251023.1

Update EPP for that manages and imports demux stats to LIMS by correcting the path to the metadata on Preproc.
Expand Down
2 changes: 1 addition & 1 deletion scripts/generate_minknow_samplesheet.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def generate_MinKNOW_samplesheet(process):

errors = []

lims_kit = process.udf["ONT prep kit"]
lims_kit = process.udf["ONT prep kit"].replace(".", "-")

ont_libraries = [art for art in process.all_outputs() if art.type == "Analyte"]
ont_libraries.sort(key=lambda art: art.id)
Expand Down