Skip to content

Commit 1fd7812

Browse files
Merge branch 'master' into add-managed-variant-scout-export
2 parents da60e3f + f81dc3b commit 1fd7812

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 54.1.2
2+
current_version = 54.1.3
33
commit = True
44
tag = True
55
tag_name = v{new_version}

cg/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
__title__ = "cg"
2-
__version__ = "54.1.2"
2+
__version__ = "54.1.3"

cg/constants/constants.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class CaseActions(StrEnum):
4040

4141
@classmethod
4242
def actions(cls) -> list[str]:
43-
return list(cls)
43+
return list(map(lambda action: action.value, cls))
4444

4545

4646
CONTAINER_OPTIONS = ("Tube", "96 well plate", "No container")
@@ -71,7 +71,7 @@ class FlowCellStatus(StrEnum):
7171

7272
@classmethod
7373
def statuses(cls) -> list[str]:
74-
return list(cls)
74+
return list(map(lambda status: status.value, cls))
7575

7676

7777
class AnalysisType(StrEnum):

cg/constants/gene_panel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class GenePanelMasterList(StrEnum):
4545
@classmethod
4646
def get_panel_names(cls, panels=None) -> list[str]:
4747
"""Return requested panel names from the Master list, or all panels if none are specified."""
48-
return list(panels) if panels else list(cls)
48+
return list(panels) if panels else list(map(lambda panel: panel.value, cls))
4949

5050
@staticmethod
5151
def collaborators() -> set[str]:

cg/constants/housekeeper_tags.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class AlignmentFileTag(StrEnum):
1818

1919
@classmethod
2020
def file_tags(cls) -> list[str]:
21-
return list(cls)
21+
return list(map(lambda tag: tag.value, cls))
2222

2323

2424
class ArchiveTag(StrEnum):

cg/meta/workflow/fluffy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class FluffySampleSheetHeaders(StrEnum):
4040

4141
@classmethod
4242
def headers(cls) -> list[str]:
43-
return list(cls)
43+
return list(map(lambda header: header.value, cls))
4444

4545

4646
class FluffySample(BaseModel):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "cg"
7-
version = "54.1.2"
7+
version = "54.1.3"
88
description = "Clinical Genomics command center"
99
authors = ["Clinical Genomics <[email protected]>"]
1010
readme = "README.md"

0 commit comments

Comments
 (0)