pheval-exomiser 0.4.1__tar.gz → 0.4.3__tar.gz
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-0.4.1 → pheval_exomiser-0.4.3}/PKG-INFO +2 -2
- {pheval_exomiser-0.4.1 → pheval_exomiser-0.4.3}/README.md +1 -1
- {pheval_exomiser-0.4.1 → pheval_exomiser-0.4.3}/pyproject.toml +1 -1
- {pheval_exomiser-0.4.1 → pheval_exomiser-0.4.3}/src/pheval_exomiser/post_process/post_process_results_format.py +1 -1
- {pheval_exomiser-0.4.1 → pheval_exomiser-0.4.3}/src/pheval_exomiser/__init__.py +0 -0
- {pheval_exomiser-0.4.1 → pheval_exomiser-0.4.3}/src/pheval_exomiser/cli.py +0 -0
- {pheval_exomiser-0.4.1 → pheval_exomiser-0.4.3}/src/pheval_exomiser/constants.py +0 -0
- {pheval_exomiser-0.4.1 → pheval_exomiser-0.4.3}/src/pheval_exomiser/post_process/__init__.py +0 -0
- {pheval_exomiser-0.4.1 → pheval_exomiser-0.4.3}/src/pheval_exomiser/post_process/post_process.py +0 -0
- {pheval_exomiser-0.4.1 → pheval_exomiser-0.4.3}/src/pheval_exomiser/prepare/__init__.py +0 -0
- {pheval_exomiser-0.4.1 → pheval_exomiser-0.4.3}/src/pheval_exomiser/prepare/create_batch_commands.py +0 -0
- {pheval_exomiser-0.4.1 → pheval_exomiser-0.4.3}/src/pheval_exomiser/prepare/tool_specific_configuration_options.py +0 -0
- {pheval_exomiser-0.4.1 → pheval_exomiser-0.4.3}/src/pheval_exomiser/prepare/write_application_properties.py +0 -0
- {pheval_exomiser-0.4.1 → pheval_exomiser-0.4.3}/src/pheval_exomiser/run/__init__.py +0 -0
- {pheval_exomiser-0.4.1 → pheval_exomiser-0.4.3}/src/pheval_exomiser/run/run.py +0 -0
- {pheval_exomiser-0.4.1 → pheval_exomiser-0.4.3}/src/pheval_exomiser/runner.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pheval_exomiser
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.3
|
|
4
4
|
Summary:
|
|
5
5
|
Author: Yasemin Bridges
|
|
6
6
|
Author-email: y.bridges@qmul.ac.uk
|
|
@@ -24,7 +24,7 @@ Description-Content-Type: text/markdown
|
|
|
24
24
|
|
|
25
25
|
# Exomiser Runner for PhEval
|
|
26
26
|
|
|
27
|
-
This is the Exomiser plugin for PhEval. With this plugin, you can leverage the variant prioritisation tool, Exomiser, to run the PhEval pipeline seamlessly.
|
|
27
|
+
This is the Exomiser plugin for PhEval. With this plugin, you can leverage the variant prioritisation tool, Exomiser, to run the PhEval pipeline seamlessly. Instructions for setting up the appropriate directory layout, including the input directory and test data directory for a single PhEval run, can be found here.
|
|
28
28
|
|
|
29
29
|
## Installation
|
|
30
30
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Exomiser Runner for PhEval
|
|
2
2
|
|
|
3
|
-
This is the Exomiser plugin for PhEval. With this plugin, you can leverage the variant prioritisation tool, Exomiser, to run the PhEval pipeline seamlessly.
|
|
3
|
+
This is the Exomiser plugin for PhEval. With this plugin, you can leverage the variant prioritisation tool, Exomiser, to run the PhEval pipeline seamlessly. Instructions for setting up the appropriate directory layout, including the input directory and test data directory for a single PhEval run, can be found here.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -235,7 +235,7 @@ def create_standardised_results(
|
|
|
235
235
|
else files_with_suffix(result_dir, ".json")
|
|
236
236
|
)
|
|
237
237
|
for exomiser_result_path in result_files:
|
|
238
|
-
exomiser_result = read_result(exomiser_result_path)
|
|
238
|
+
exomiser_result = read_result(exomiser_result_path, infer_schema_length=None)
|
|
239
239
|
if gene_analysis:
|
|
240
240
|
gene_results = (
|
|
241
241
|
extract_gene_results_from_parquet(exomiser_result, score_name)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pheval_exomiser-0.4.1 → pheval_exomiser-0.4.3}/src/pheval_exomiser/post_process/__init__.py
RENAMED
|
File without changes
|
{pheval_exomiser-0.4.1 → pheval_exomiser-0.4.3}/src/pheval_exomiser/post_process/post_process.py
RENAMED
|
File without changes
|
|
File without changes
|
{pheval_exomiser-0.4.1 → pheval_exomiser-0.4.3}/src/pheval_exomiser/prepare/create_batch_commands.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|