Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change constants for minimum lane volume #526

Merged
merged 1 commit into from
Sep 13, 2024
Merged
Changes from all commits
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
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
Loading