From e6483ea7aaedce8f856794c903bdd792d0f70f2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karl=20Sv=C3=A4rd?= Date: Wed, 15 Nov 2023 10:11:41 +0100 Subject: [PATCH] add new constants.py file for the 'set udf' epps --- cg_lims/EPPs/udf/set/constants.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 cg_lims/EPPs/udf/set/constants.py diff --git a/cg_lims/EPPs/udf/set/constants.py b/cg_lims/EPPs/udf/set/constants.py new file mode 100644 index 00000000..54e91179 --- /dev/null +++ b/cg_lims/EPPs/udf/set/constants.py @@ -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