pheval-exomiser 0.2.4__py3-none-any.whl → 0.2.6__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.
- pheval_exomiser/post_process/post_process_results_format.py +6 -1
- pheval_exomiser/prepare/tool_specific_configuration_options.py +13 -13
- {pheval_exomiser-0.2.4.dist-info → pheval_exomiser-0.2.6.dist-info}/METADATA +2 -1
- {pheval_exomiser-0.2.4.dist-info → pheval_exomiser-0.2.6.dist-info}/RECORD +6 -6
- {pheval_exomiser-0.2.4.dist-info → pheval_exomiser-0.2.6.dist-info}/WHEEL +1 -1
- {pheval_exomiser-0.2.4.dist-info → pheval_exomiser-0.2.6.dist-info}/entry_points.txt +0 -0
|
@@ -182,7 +182,12 @@ class PhEvalDiseaseResultFromExomiserJsonCreator:
|
|
|
182
182
|
)
|
|
183
183
|
except KeyError:
|
|
184
184
|
pass
|
|
185
|
-
return
|
|
185
|
+
return list(
|
|
186
|
+
{
|
|
187
|
+
(result.disease_identifier, result.score): result
|
|
188
|
+
for result in simplified_exomiser_result
|
|
189
|
+
}.values()
|
|
190
|
+
)
|
|
186
191
|
|
|
187
192
|
|
|
188
193
|
def create_standardised_results(
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
from pathlib import Path
|
|
2
|
-
from typing import List
|
|
2
|
+
from typing import List, Optional
|
|
3
3
|
|
|
4
4
|
from pydantic import BaseModel, Field
|
|
5
5
|
|
|
@@ -20,17 +20,17 @@ class ApplicationProperties(BaseModel):
|
|
|
20
20
|
cache_caffeine_spec (int): Cache limit
|
|
21
21
|
"""
|
|
22
22
|
|
|
23
|
-
remm_version: str = Field(None)
|
|
24
|
-
cadd_version: str = Field(None)
|
|
25
|
-
hg19_data_version: str = Field(None)
|
|
26
|
-
hg19_local_frequency_path: Path = Field(None)
|
|
27
|
-
hg19_whitelist_path: Path = Field(None)
|
|
28
|
-
hg38_data_version: str = Field(None)
|
|
29
|
-
hg38_local_frequency_path: Path = Field(None)
|
|
30
|
-
hg38_whitelist_path: Path = Field(None)
|
|
31
|
-
phenotype_data_version: str = Field(None)
|
|
32
|
-
cache_type: str = Field(None)
|
|
33
|
-
cache_caffeine_spec: int = Field(None)
|
|
23
|
+
remm_version: Optional[str] = Field(None)
|
|
24
|
+
cadd_version: Optional[str] = Field(None)
|
|
25
|
+
hg19_data_version: Optional[str] = Field(None)
|
|
26
|
+
hg19_local_frequency_path: Optional[Path] = Field(None)
|
|
27
|
+
hg19_whitelist_path: Optional[Path] = Field(None)
|
|
28
|
+
hg38_data_version: Optional[str] = Field(None)
|
|
29
|
+
hg38_local_frequency_path: Optional[Path] = Field(None)
|
|
30
|
+
hg38_whitelist_path: Optional[Path] = Field(None)
|
|
31
|
+
phenotype_data_version: Optional[str] = Field(None)
|
|
32
|
+
cache_type: Optional[str] = Field(None)
|
|
33
|
+
cache_caffeine_spec: Optional[int] = Field(None)
|
|
34
34
|
|
|
35
35
|
|
|
36
36
|
class PostProcessing(BaseModel):
|
|
@@ -64,5 +64,5 @@ class ExomiserConfigurations(BaseModel):
|
|
|
64
64
|
analysis_configuration_file: Path = Field(...)
|
|
65
65
|
max_jobs: int = Field(...)
|
|
66
66
|
application_properties: ApplicationProperties = Field(...)
|
|
67
|
-
output_formats: List[str] = Field(None)
|
|
67
|
+
output_formats: Optional[List[str]] = Field(None)
|
|
68
68
|
post_process: PostProcessing = Field(...)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pheval_exomiser
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.6
|
|
4
4
|
Summary:
|
|
5
5
|
Author: Yasemin Bridges
|
|
6
6
|
Author-email: y.bridges@qmul.ac.uk
|
|
@@ -10,6 +10,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
10
10
|
Classifier: Programming Language :: Python :: 3.10
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.11
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
13
14
|
Requires-Dist: click (>=8.1.3,<9.0.0)
|
|
14
15
|
Requires-Dist: docker (>=6.0.1,<7.0.0)
|
|
15
16
|
Requires-Dist: google (>=3.0.0,<4.0.0)
|
|
@@ -3,16 +3,16 @@ pheval_exomiser/cli.py,sha256=0SR1-L2sREEkFRfUPwYwkbSaBsz_L_Sxq1S4c9LQLJg,350
|
|
|
3
3
|
pheval_exomiser/constants.py,sha256=o_pLWF8kX74BqyTsAZa7twwSKzedLnpupCI90k_bMqY,517
|
|
4
4
|
pheval_exomiser/post_process/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
5
|
pheval_exomiser/post_process/post_process.py,sha256=ZLIGPeADGZn08jFc152QraiJnYSADlL35GOwxkCQDwA,901
|
|
6
|
-
pheval_exomiser/post_process/post_process_results_format.py,sha256=
|
|
6
|
+
pheval_exomiser/post_process/post_process_results_format.py,sha256=F1TpgLgeoNFFZTk7XaXLptCLOr6G3tdZC2cltXFtHx8,12261
|
|
7
7
|
pheval_exomiser/prepare/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
8
|
pheval_exomiser/prepare/create_batch_commands.py,sha256=tDUBtpfSmNGqHte-vrGnusYZzM59pOX1IAumqRDlnBE,17205
|
|
9
|
-
pheval_exomiser/prepare/tool_specific_configuration_options.py,sha256=
|
|
9
|
+
pheval_exomiser/prepare/tool_specific_configuration_options.py,sha256=4gedZ9iadRXK6tF9P-ju-dhj8-F2-fhrXVhfYIsAxFQ,2922
|
|
10
10
|
pheval_exomiser/prepare/write_application_properties.py,sha256=KmG7GvkQo8AhnhRyqohTFvqjfhEhbcs78UYYoigxJ3w,8933
|
|
11
11
|
pheval_exomiser/prepare/yaml_to_family_phenopacket.py,sha256=Hz77dHpVaRMV1fQWKmOCqCKJfmk_hdpZh_6o7hq9Sec,14452
|
|
12
12
|
pheval_exomiser/run/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
13
|
pheval_exomiser/run/run.py,sha256=bK_gL52zRl71Lxe-i-P6L4-dMstxFAG6SVNPO6G823o,7109
|
|
14
14
|
pheval_exomiser/runner.py,sha256=LaWhC0F9LoPvP0Ie1sG2GkC8EG-tWjBBY_tFYmx6dxA,2548
|
|
15
|
-
pheval_exomiser-0.2.
|
|
16
|
-
pheval_exomiser-0.2.
|
|
17
|
-
pheval_exomiser-0.2.
|
|
18
|
-
pheval_exomiser-0.2.
|
|
15
|
+
pheval_exomiser-0.2.6.dist-info/METADATA,sha256=sGthFcX63xsOR0YPiC-cWC4jowGaMm0pT81NHOCrpAo,7526
|
|
16
|
+
pheval_exomiser-0.2.6.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
17
|
+
pheval_exomiser-0.2.6.dist-info/entry_points.txt,sha256=lbZMu-x7ns8UrFveWSqEQ1UB5l33TbRMomqBUyGYIwI,131
|
|
18
|
+
pheval_exomiser-0.2.6.dist-info/RECORD,,
|
|
File without changes
|