-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update NovaSeq X sequencing volumes (#419)(patch)
### Added - New Enum module - New constants module for the udf/calculate EPPs - New constant classes for flow cells and their properties ### Changed - Updated the recommended volumes of reagents for preparing new NovaSeq X runs
- Loading branch information
1 parent
0afd1ce
commit 6d3c535
Showing
7 changed files
with
53 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
from cg_lims.enums import IntEnum, FloatEnum, StrEnum | ||
|
||
|
||
class FlowCellTypes(StrEnum): | ||
"""Flow cell types available from Illumina""" | ||
|
||
FLOW_CELL_10B: str = "10B" | ||
|
||
|
||
class FlowCellSize(IntEnum): | ||
"""The total number of lanes for a flow cell type.""" | ||
|
||
FLOW_CELL_10B: int = 8 | ||
|
||
|
||
class FlowCellLaneVolumes10B(FloatEnum): | ||
"""The recommended volume of reagents per flow cell lane. All values are in ul.""" | ||
|
||
POOL_VOLUME: float = 34 | ||
PHIX_VOLUME: float = 1 | ||
NAOH_VOLUME: float = 8.5 | ||
BUFFER_VOLUME: float = 127.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
from enum import Enum | ||
|
||
|
||
class StrEnum(str, Enum): | ||
def __str__(self) -> str: | ||
return str.__str__(self) | ||
|
||
|
||
class IntEnum(int, Enum): | ||
def __int__(self) -> int: | ||
return int.__int__(self) | ||
|
||
|
||
class FloatEnum(float, Enum): | ||
def __int__(self) -> float: | ||
return float.__int__(self) |