pheval 0.4.0__py3-none-any.whl → 0.4.2__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.
Potentially problematic release.
This version of pheval might be problematic. Click here for more details.
- pheval/analyse/generate_summary_outputs.py +1 -1
- pheval/prepare/prepare_corpus.py +5 -0
- pheval/utils/phenopacket_utils.py +13 -0
- {pheval-0.4.0.dist-info → pheval-0.4.2.dist-info}/METADATA +2 -1
- {pheval-0.4.0.dist-info → pheval-0.4.2.dist-info}/RECORD +8 -8
- {pheval-0.4.0.dist-info → pheval-0.4.2.dist-info}/WHEEL +1 -1
- {pheval-0.4.0.dist-info → pheval-0.4.2.dist-info}/LICENSE +0 -0
- {pheval-0.4.0.dist-info → pheval-0.4.2.dist-info}/entry_points.txt +0 -0
|
@@ -39,7 +39,7 @@ def create_comparison_table(
|
|
|
39
39
|
table_name (str): Name of the table to extract ranks from
|
|
40
40
|
"""
|
|
41
41
|
connector.drop_table(comparison_table_name)
|
|
42
|
-
excluded_columns = (
|
|
42
|
+
excluded_columns = tuple(drop_columns + ["identifier"]) if drop_columns else ("identifier",)
|
|
43
43
|
connector.conn.execute(
|
|
44
44
|
f'CREATE TABLE "{comparison_table_name}" AS SELECT * '
|
|
45
45
|
f"EXCLUDE {excluded_columns} FROM {table_name}"
|
pheval/prepare/prepare_corpus.py
CHANGED
|
@@ -57,6 +57,11 @@ def prepare_corpus(
|
|
|
57
57
|
f"Removed {phenopacket_path.name} from the corpus due to missing variant fields."
|
|
58
58
|
)
|
|
59
59
|
continue
|
|
60
|
+
elif phenopacket_util.check_variant_alleles():
|
|
61
|
+
info_log.warning(
|
|
62
|
+
f"Removed {phenopacket_path.name} from the corpus due to identical "
|
|
63
|
+
"reference and alternate allele fields."
|
|
64
|
+
)
|
|
60
65
|
if gene_analysis:
|
|
61
66
|
if phenopacket_util.check_incomplete_gene_record():
|
|
62
67
|
info_log.warning(
|
|
@@ -503,6 +503,19 @@ class PhenopacketUtil:
|
|
|
503
503
|
return True
|
|
504
504
|
return False
|
|
505
505
|
|
|
506
|
+
def check_variant_alleles(self) -> bool:
|
|
507
|
+
"""
|
|
508
|
+
Check if any variant record in the phenopacket has identical reference and alternate alleles.
|
|
509
|
+
|
|
510
|
+
Returns:
|
|
511
|
+
bool: True if the reference and alternate alleles are identical, False otherwise.
|
|
512
|
+
"""
|
|
513
|
+
variants = self.diagnosed_variants()
|
|
514
|
+
for variant in variants:
|
|
515
|
+
if variant.ref == variant.alt:
|
|
516
|
+
return True
|
|
517
|
+
return False
|
|
518
|
+
|
|
506
519
|
def check_incomplete_gene_record(self) -> bool:
|
|
507
520
|
"""
|
|
508
521
|
Check if any gene record in the phenopacket has incomplete information.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pheval
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.2
|
|
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: class-resolver (>=0.4.2)
|
|
14
15
|
Requires-Dist: click (>=8.1.3)
|
|
15
16
|
Requires-Dist: deprecation (>=2.1.0)
|
|
@@ -9,7 +9,7 @@ pheval/analyse/binary_classification_stats.py,sha256=E35YjvGM-zFnuEt8M3pgN03vBab
|
|
|
9
9
|
pheval/analyse/disease_prioritisation_analysis.py,sha256=1Ut4u6p9mDGbGBoXrVxTuUgv_nrqxzBhq5N9jbGWRWs,5725
|
|
10
10
|
pheval/analyse/gene_prioritisation_analysis.py,sha256=_7r16BC0S2H9rOY016mLLUg6PcxaCQOh5FQcNKFTy-4,5582
|
|
11
11
|
pheval/analyse/generate_plots.py,sha256=rMSdgawGYYc7BAAolqz73TAnanKtrxCC48bI6WQq6xc,21455
|
|
12
|
-
pheval/analyse/generate_summary_outputs.py,sha256=
|
|
12
|
+
pheval/analyse/generate_summary_outputs.py,sha256=nKqwbpA-9bbL5mCySiuyV_AUDIokmCg3vD8_JAsg1ls,4157
|
|
13
13
|
pheval/analyse/parse_benchmark_summary.py,sha256=vyAOIdIWF4rZjGTPFE69ajhEC9AkkN3QBVqSe_uYZsg,2946
|
|
14
14
|
pheval/analyse/parse_corpus.py,sha256=N88enptR4qG6cmqXU_TKg8DMmCeFog37eeK5nFEMQOQ,8678
|
|
15
15
|
pheval/analyse/prioritisation_result_types.py,sha256=qJoB6O-lFYmzAMcTQeDJZQNLJ6hleoKDYATTkhvFF98,1228
|
|
@@ -29,7 +29,7 @@ pheval/prepare/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
29
29
|
pheval/prepare/create_noisy_phenopackets.py,sha256=ydhA4mpqKTDc4hBu8YfvNW2nMubHK3dbO-cv0lA4JFQ,11504
|
|
30
30
|
pheval/prepare/create_spiked_vcf.py,sha256=90A-Mi8QKhvN036vtFEVWAHgzHO37itiLYrqYlG4LiA,23953
|
|
31
31
|
pheval/prepare/custom_exceptions.py,sha256=_G3_95dPtHIs1SviYBV1j7cYc-hxlhuw8hhnYdzByYY,1719
|
|
32
|
-
pheval/prepare/prepare_corpus.py,sha256=
|
|
32
|
+
pheval/prepare/prepare_corpus.py,sha256=mwI3FJJ6GGSbmbvz4enrVP86MBoHSssMIRebkapmu5Y,4484
|
|
33
33
|
pheval/prepare/update_phenopacket.py,sha256=21fzUPbwKN6Ey5TSh9PFzjT2x86U19RAE6WmkjG8u28,4770
|
|
34
34
|
pheval/resources/alternate_ouputs/CADA_results.txt,sha256=Rinn2TtfwFNsx0aEWegKJOkjKnBm-Mf54gdaT3bWP0k,547
|
|
35
35
|
pheval/resources/alternate_ouputs/DeepPVP_results.txt,sha256=MF9MZJYa4r4PEvFzALpi-lNGLxjENOnq_YgrgFMn-oQ,1508
|
|
@@ -47,11 +47,11 @@ pheval/utils/docs_gen.py,sha256=6FGtHicBC0rZKi0tdL3Epsg8d4osE44I9f1Ga0j4JLA,3193
|
|
|
47
47
|
pheval/utils/docs_gen.sh,sha256=LyKLKjaZuf4UJ962CWfM-XqkxtvM8O2N9wHZS5mcb9A,477
|
|
48
48
|
pheval/utils/exomiser.py,sha256=m2u0PH2z9lFPaB3LVkZCmPmH5e55q1NoTzNl46zRRP8,683
|
|
49
49
|
pheval/utils/file_utils.py,sha256=m21cz-qjDYqnI8ClUv3J9fKizex98a-9bSEerQ75i_c,3576
|
|
50
|
-
pheval/utils/phenopacket_utils.py,sha256=
|
|
50
|
+
pheval/utils/phenopacket_utils.py,sha256=6xQ8WCLdR1VhiU3nCDzaqEVKjGvDWrzvPA50_6ZAHXM,27310
|
|
51
51
|
pheval/utils/semsim_utils.py,sha256=s7ZCR2VfPYnOh7ApX6rv66eGoVSm9QJaVYOWBEhlXpo,6151
|
|
52
52
|
pheval/utils/utils.py,sha256=9V6vCT8l1g4O2-ZATYqsVyd7AYZdWGd-Ksy7_oIC3eE,2343
|
|
53
|
-
pheval-0.4.
|
|
54
|
-
pheval-0.4.
|
|
55
|
-
pheval-0.4.
|
|
56
|
-
pheval-0.4.
|
|
57
|
-
pheval-0.4.
|
|
53
|
+
pheval-0.4.2.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
54
|
+
pheval-0.4.2.dist-info/METADATA,sha256=thGGkAFHrqcTeinQ4gSBiPg-RihcKED9fFUK0_Rph4g,6469
|
|
55
|
+
pheval-0.4.2.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
56
|
+
pheval-0.4.2.dist-info/entry_points.txt,sha256=o9gSwDkvT4-lqKy4mlsftd1nzP9WUOXQCfnbqycURd0,81
|
|
57
|
+
pheval-0.4.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|