Skip to content

Commit

Permalink
Support MiSeq V2 Micro
Browse files Browse the repository at this point in the history
  • Loading branch information
chuan-wang committed Oct 25, 2024
1 parent 5056d2f commit 8ccbb5c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 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

## 20241025.1

Support MiSeq V2 Micro

## 20241016.1

Remove index orientation checker
Expand Down
5 changes: 5 additions & 0 deletions scripts/illumina_run_parameter_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,11 @@ def lims_for_miseq(process, run_dir):
and runParameters["Setup"]["NumTilesPerSwath"] == "2"
):
process.udf["Run Type"] = "Version2Nano"
elif (
runParameters["Setup"]["SupportMultipleSurfacesInUI"] == "true"
and runParameters["Setup"]["NumTilesPerSwath"] == "4"
):
process.udf["Run Type"] = "Version2Micro"
else:
process.udf["Run Type"] = "null"
# Runs with single read return a dict object
Expand Down
3 changes: 3 additions & 0 deletions scripts/manage_demux_stats_thresholds.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ def __init__(self, instrument, chemistry, paired, read_length):
"Version3",
"Version2",
"Version2Nano",
"Version2Micro",
"SP",
"S1",
"S2",
Expand Down Expand Up @@ -131,6 +132,8 @@ def set_exp_lane_clust(self):
self.exp_lane_clust = 10e6
elif self.chemistry == "Version2Nano":
self.exp_lane_clust = 750000
elif self.chemistry == "Version2Micro":
self.exp_lane_clust = 3000000
else:
if self.read_length >= 76 and self.read_length <= 301:
self.exp_lane_clust = 18e6
Expand Down

0 comments on commit 8ccbb5c

Please sign in to comment.