Skip to content

Commit

Permalink
change constants for minimum lane volume (#526)
Browse files Browse the repository at this point in the history
### Changed 

- Constants for minimum volume per lane for flowcells 1.5, 10 and 25B with +1ul.
  • Loading branch information
idalindegaard authored Sep 13, 2024
1 parent 17687c2 commit 5cd695a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cg_lims/EPPs/udf/calculate/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class FlowCellSize(IntEnum):
class FlowCellLaneVolumes10B(FloatEnum):
"""The recommended volume of reagents per 10B flow cell lane. All values are in ul."""

POOL_VOLUME: float = 34
POOL_VOLUME: float = 35
PHIX_VOLUME: float = 1
NAOH_VOLUME: float = 8.5
BUFFER_VOLUME: float = 127.5
Expand All @@ -29,7 +29,7 @@ class FlowCellLaneVolumes10B(FloatEnum):
class FlowCellLaneVolumes15B(FloatEnum):
"""The recommended volume of reagents per 1.5B flow cell lane. All values are in ul."""

POOL_VOLUME: float = 34
POOL_VOLUME: float = 35
PHIX_VOLUME: float = 1
NAOH_VOLUME: float = 8.5
BUFFER_VOLUME: float = 127.5
Expand All @@ -38,7 +38,7 @@ class FlowCellLaneVolumes15B(FloatEnum):
class FlowCellLaneVolumes25B(FloatEnum):
"""The recommended volume of reagents per 25B flow cell lane. All values are in ul."""

POOL_VOLUME: float = 56
POOL_VOLUME: float = 57
PHIX_VOLUME: float = 1.6
NAOH_VOLUME: float = 14
BUFFER_VOLUME: float = 210
Expand Down

0 comments on commit 5cd695a

Please sign in to comment.