Skip to content

Commit

Permalink
Merge branch 'master' into metrics-deliver
Browse files Browse the repository at this point in the history
  • Loading branch information
sofstam authored Dec 11, 2023
2 parents cea02ce + e5c4f09 commit ff195f8
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 54.2.0
current_version = 54.2.1
commit = True
tag = True
tag_name = v{new_version}
Expand Down
2 changes: 1 addition & 1 deletion cg/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__title__ = "cg"
__version__ = "54.2.0"
__version__ = "54.2.1"
3 changes: 3 additions & 0 deletions cg/meta/workflow/mip.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,3 +329,6 @@ def get_pipeline_version(self, case_id: str) -> str:
)
sample_info: MipBaseSampleInfo = MipBaseSampleInfo(**sample_info_raw)
return sample_info.mip_version

def write_managed_variants(self, case_id: str, content: list[str]) -> None:
self._write_managed_variants(out_dir=Path(self.root, case_id), content=content)
3 changes: 0 additions & 3 deletions cg/meta/workflow/mip_dna.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,3 @@ def get_gene_panel(self, case_id: str) -> list[str]:
def get_managed_variants(self) -> list[str]:
"""Create and return the managed variants."""
return self._get_managed_variants(genome_build=GENOME_BUILD_37)

def write_managed_variants(self, case_id: str, content: list[str]) -> None:
self._write_managed_variants(out_dir=Path(self.root, case_id), content=content)
4 changes: 4 additions & 0 deletions cg/meta/workflow/mip_rna.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,7 @@ def config_sample(self, link_obj, panel_bed: str | None = None) -> dict[str, str
def get_gene_panel(self, case_id: str) -> list[str]:
"""Create and return the aggregated gene panel file."""
return self._get_gene_panel(case_id=case_id, genome_build=GENOME_BUILD_38)

def get_managed_variants(self) -> list[str]:
"""Create and return the managed variants."""
return self._get_managed_variants(genome_build=GENOME_BUILD_38)
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "cg"
version = "54.2.0"
version = "54.2.1"
description = "Clinical Genomics command center"
authors = ["Clinical Genomics <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit ff195f8

Please sign in to comment.