Skip to content

Commit

Permalink
add new constants.py file for the 'set udf' epps
Browse files Browse the repository at this point in the history
  • Loading branch information
Karl-Svard committed Nov 15, 2023
1 parent 9e9d834 commit e6483ea
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions cg_lims/EPPs/udf/set/constants.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from cg_lims.enums import IntEnum


class DefaultReadLength(IntEnum):
"""Default read length most usually used by each flow cell type."""

FLOW_CELL_10B: int = 151
FLOW_CELL_25B: int = 151
FLOW_CELL_15B: int = 51


class DefaultIndexLength(IntEnum):
"""Default index length most usually used by each flow cell type."""

FLOW_CELL_10B: int = 10
FLOW_CELL_25B: int = 10
FLOW_CELL_15B: int = 8

0 comments on commit e6483ea

Please sign in to comment.