cg 83.15.0__py3-none-any.whl → 83.15.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- cg/__init__.py +1 -1
- cg/cli/sequencing_qc/sequencing_qc.py +4 -1
- cg/services/sequencing_qc_service/sequencing_qc_service.py +11 -2
- {cg-83.15.0.dist-info → cg-83.15.1.dist-info}/METADATA +1 -1
- {cg-83.15.0.dist-info → cg-83.15.1.dist-info}/RECORD +7 -7
- {cg-83.15.0.dist-info → cg-83.15.1.dist-info}/WHEEL +0 -0
- {cg-83.15.0.dist-info → cg-83.15.1.dist-info}/entry_points.txt +0 -0
cg/__init__.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
__title__ = "cg"
|
|
2
|
-
__version__ = "83.15.
|
|
2
|
+
__version__ = "83.15.1"
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import logging
|
|
2
|
+
|
|
2
3
|
import rich_click as click
|
|
3
4
|
|
|
4
5
|
from cg.models.cg_config import CGConfig
|
|
@@ -11,4 +12,6 @@ LOG = logging.getLogger(__name__)
|
|
|
11
12
|
@click.pass_obj
|
|
12
13
|
def sequencing_qc(context: CGConfig):
|
|
13
14
|
service: SequencingQCService = context.sequencing_qc_service
|
|
14
|
-
service.run_sequencing_qc()
|
|
15
|
+
succeeded: bool = service.run_sequencing_qc()
|
|
16
|
+
if not succeeded:
|
|
17
|
+
raise click.Abort
|
|
@@ -18,9 +18,15 @@ class SequencingQCService:
|
|
|
18
18
|
def __init__(self, store: Store):
|
|
19
19
|
self.store = store
|
|
20
20
|
|
|
21
|
-
def run_sequencing_qc(self) ->
|
|
22
|
-
"""
|
|
21
|
+
def run_sequencing_qc(self) -> bool:
|
|
22
|
+
"""
|
|
23
|
+
Run QC for samples in pending or failed cases and store the aggregated score on each case.
|
|
24
|
+
Return True if all checks could run succesfully
|
|
25
|
+
Return False if at least one of the checks raised an exception
|
|
26
|
+
"""
|
|
23
27
|
cases: list[Case] = self.store.get_cases_for_sequencing_qc()
|
|
28
|
+
all_checks_ran_succesfully: bool = True
|
|
29
|
+
|
|
24
30
|
for case in cases:
|
|
25
31
|
LOG.debug(f"Performing sequencing QC for case: {case.internal_id}")
|
|
26
32
|
try:
|
|
@@ -30,6 +36,9 @@ class SequencingQCService:
|
|
|
30
36
|
LOG.info(f"Sequencing QC status for case {case.internal_id}: {qc_status}")
|
|
31
37
|
except Exception as e:
|
|
32
38
|
LOG.error(f"Error found during sequencing QC of case: {case.internal_id}: {e}")
|
|
39
|
+
all_checks_ran_succesfully = False
|
|
40
|
+
|
|
41
|
+
return all_checks_ran_succesfully
|
|
33
42
|
|
|
34
43
|
@staticmethod
|
|
35
44
|
def case_pass_sequencing_qc(case: Case) -> bool:
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
cg/__init__.py,sha256=
|
|
1
|
+
cg/__init__.py,sha256=8ACeYoaEs1BYFgYUmNeRwB0QUDpYryqJO79lU4ZH59A,41
|
|
2
2
|
cg/apps/__init__.py,sha256=pYf0vxo4iYQqURzFRYzqpOCdV8Cm9MWx0GHvJOz0EMg,315
|
|
3
3
|
cg/apps/coverage/__init__.py,sha256=dJtsmNf8tODE2-VEomMIoYA7ugLYZAk_upsfOQCZeF8,27
|
|
4
4
|
cg/apps/coverage/api.py,sha256=e_ozC3QeNKoEfpjjMaL-XjeBLtz-JySWccrtw0E9mLM,2940
|
|
@@ -104,7 +104,7 @@ cg/cli/get.py,sha256=sqKX2tDWnCE6zTwcMBCOb796Bc9rvu1AYLkONQ3Sq0w,8852
|
|
|
104
104
|
cg/cli/post_process/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
105
105
|
cg/cli/post_process/post_process.py,sha256=f6bCOsNLIHYHJdbKBVcjRO684MS258CptsmAVknoYI0,2367
|
|
106
106
|
cg/cli/post_process/utils.py,sha256=XrzBhVDybFa4sBGDz5Dbwah0YrYD1IS_j3WzPjWjUfs,3193
|
|
107
|
-
cg/cli/sequencing_qc/sequencing_qc.py,sha256=
|
|
107
|
+
cg/cli/sequencing_qc/sequencing_qc.py,sha256=anMscRw9Ulp3t2tQuLNuPE1HDtWTISgh_4yJourvAyA,494
|
|
108
108
|
cg/cli/set/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
109
109
|
cg/cli/set/base.py,sha256=gqdDpKS32rM29sQxPyK6fLf0Of6G1Un7htkAxZHkvKo,10453
|
|
110
110
|
cg/cli/set/case.py,sha256=5QFZdnp7XdyaPFl6KDtM31TkX5XFjgOtRjQM2umb3Qk,4613
|
|
@@ -855,7 +855,7 @@ cg/services/sample_run_metrics_service/utils.py,sha256=BwICxptnhGg8oBghCLhzHaMNu
|
|
|
855
855
|
cg/services/sequencing_qc_service/__init__.py,sha256=OaL9dyyI6B8uRjopTIoD1zcX_H-SbGj46ZM-V-aoq6w,88
|
|
856
856
|
cg/services/sequencing_qc_service/quality_checks/checks.py,sha256=qdcHRwZD7uxrOmacyiAG4-EN6nG5z-r4rLxcReU5kSI,2593
|
|
857
857
|
cg/services/sequencing_qc_service/quality_checks/utils.py,sha256=2WN7S4kYsN_9iYPx7d4coAYcWHeueQWrPP2pJ8ztMMc,8969
|
|
858
|
-
cg/services/sequencing_qc_service/sequencing_qc_service.py,sha256=
|
|
858
|
+
cg/services/sequencing_qc_service/sequencing_qc_service.py,sha256=QQHShCiq-OAobzHnTKQ1buQVyDIqGbVEPyPM4WEV9B0,2257
|
|
859
859
|
cg/services/sequencing_qc_service/utils.py,sha256=5WHJltBICfRODEzFVPFTdCbGNaMKCaVeOswHgIOGgFc,199
|
|
860
860
|
cg/services/slurm_service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
861
861
|
cg/services/slurm_service/slurm_cli_service.py,sha256=t-XZoAOPgL-eufwK0A6H8WJvGtfWnlIYxnvKZJIX5-Y,702
|
|
@@ -923,7 +923,7 @@ cg/utils/flask/enum.py,sha256=xwNVtFPkSzoloJctLHu7obRyxcng1GJrhkeYkqwf9tw,1052
|
|
|
923
923
|
cg/utils/mapping.py,sha256=oZpZW2kgsbtAP2FZ7RtRPELiEE1zZk_nAGisHGtCOUo,491
|
|
924
924
|
cg/utils/time.py,sha256=_VOglhrFEZ5cwHK1U1g36SdwzB7UvV-Nvlt4ymuZUho,1501
|
|
925
925
|
cg/utils/utils.py,sha256=RciI_UhWcnG_pMZrmQZ1ZYb-O1N0DweTYMmhE0SIRgQ,1410
|
|
926
|
-
cg-83.15.
|
|
927
|
-
cg-83.15.
|
|
928
|
-
cg-83.15.
|
|
929
|
-
cg-83.15.
|
|
926
|
+
cg-83.15.1.dist-info/METADATA,sha256=tIIqVq7JGccOTUpRusR2vHoN8WBQJWunoqbXS4IWrZQ,4940
|
|
927
|
+
cg-83.15.1.dist-info/WHEEL,sha256=3ny-bZhpXrU6vSQ1UPG34FoxZBp3lVcvK0LkgUz6VLk,88
|
|
928
|
+
cg-83.15.1.dist-info/entry_points.txt,sha256=q5f47YQQGltzK_xnIq1mDopRXXEItr85Xe1BCtG-Wts,39
|
|
929
|
+
cg-83.15.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|