Developing a PhEval Plugin
Description
Plugin development allows PhEval to be extensible, as we have designed it. The plugin goal is to be flexible through custom runner implementations. This plugin development enhances the PhEval functionality. You can build one quickly using this step-by-step process.
All custom Runners implementations must implement all PhevalRunner methods
Bases: ABC
PhEvalRunner Class
Source code in src/pheval/runners/runner.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
|
Step-by-Step Plugin Development Process
The plugin structure is derived from a cookiecutter template, cookiecutter, and it uses MkDocs, tox and poetry as core dependencies. This allows PhEval extensibility to be standardised in terms of documentation and dependency management.
1. Cookiecutter scaffold
First, install the cruft package. Cruft enables keeping projects up-to-date with future updates made to this original template.
Install the latest release of cruft from pip
pip install cruft
NOTE: You may encounter an error with the naming of the project layout if using an older release of cruft. To avoid this, make sure you have installed the latest release version.
Next, create a project using the cookiecutter template.
cruft create https://github.com/monarch-initiative/pheval-runner-template
2. Further setup
Install poetry if you haven't already.
pip install poetry
Install dependencies
poetry install
Run tox to see if the setup works
poetry run tox
3. Implement PhEval Custom Runner
In the project structure generated by Cookiecutter, you'll find runner.py
located in the src
directory. This is where you'll define the methods required to develop the plugin. Specifically, you'll implement the prepare, run, and post-process methods, which are essential for executing the pheval run command.
"""Runner."""
from dataclasses import dataclass
from pathlib import Path
from pheval.runners.runner import PhEvalRunner
@dataclass
class CustomRunner(PhEvalRunner):
"""Runner class implementation."""
input_dir: Path
testdata_dir: Path
tmp_dir: Path
output_dir: Path
config_file: Path
version: str
def prepare(self):
"""Prepare."""
print("preparing")
def run(self):
"""Run."""
print("running")
def post_process(self):
"""Post Process."""
print("post processing")
The Cookiecutter will automatically populate the plugins section in the pyproject.toml
file. If you decide to modify the path of runner.py
or rename its class, be sure to update the corresponding entries in this section accordingly:
[tool.poetry.plugins."pheval.plugins"]
customrunner = "pheval_plugin_example.runner:CustomRunner"
Please Note that the path here and naming of the class is case-sensitive.
4. Implementing PhEval helper methods
Streamlining the creation of your custom PhEval runner can be facilitated by leveraging PhEval's versatile helper methods, where applicable.
Within PhEval, numerous public methods have been designed to assist in your runner methods. The utilisation of these helper methods is optional, yet they are crafted to enhance the overall implementation process.
Utility methods
The PhenopacketUtil
class is designed to aid in the collection of specific data from a Phenopacket.
Class for retrieving data from a Phenopacket or Family object
Source code in src/pheval/utils/phenopacket_utils.py
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 |
|
PhenopacketUtil
proves particularly beneficial in scenarios where the tool for which you're crafting a runner implementation does not directly accept Phenopackets as inputs. Instead, it might require elements—such as HPO IDs— via the command-line interface (CLI). In this context, leveraging PhenopacketUtil within the runner's preparation phase enables the extraction of observed phenotypic features from the Phenopacket input, facilitating seamless processing.
An example of how this could be implemented is outlined here:
from pheval.utils.phenopacket_utils import phenopacket_reader
from pheval.utils.phenopacket_utils import PhenopacketUtil
phenopacket = phenopacket_reader("/path/to/phenopacket.json")
phenopacket_util = PhenopacketUtil(phenopacket)
# To return a list of all observed phenotypes for a phenopacket
observed_phenotypes = phenopacket_util.observed_phenotypic_features()
# To extract just the HPO ID as a list
observed_phenotypes_hpo_ids = [
observed_phenotype.type.id for observed_phenotype in observed_phenotypes
]
Additional tool-specific configurations
For the pheval run
command to execute successfully, a config.yaml
should be found within the input directory supplied on the CLI.
tool:
tool_version:
variant_analysis:
gene_analysis:
disease_analysis:
tool_specific_configuration_options:
The tool_specific_configuration_options
is an optional field that can be populated with any variables specific to your runner implementation that is required for the running of your tool.
All other fields are required to be filled in. The variant_analysis
, gene_analysis
, and disease_analysis
are set as booleans and are for specifying what type of analysis/prioritisation the tool outputs.
To populate the tool_specific_configurations_options
with customised data, we suggest using the pydantic
package as it can easily parse the data from the yaml structure.
e.g.,
Define a BaseModel
class with the fields that will populate the tool_specific_configuration_options
from pydantic import BaseModel, Field
class CustomisedConfigurations(BaseModel):
"""
Class for defining the customised configurations in tool_specific_configurations field,
within the input_dir config.yaml
Args:
environment (str): Environment to run
"""
environment: str = Field(...)
Within your runner parse the field into an object.
from dataclasses import dataclass
from pheval.runners.runner import PhEvalRunner
from pathlib import Path
@dataclass
class CustomPhevalRunner(PhEvalRunner):
"""CustomPhevalRunner Class."""
input_dir: Path
testdata_dir: Path
tmp_dir: Path
output_dir: Path
config_file: Path
version: str
def prepare(self):
"""prepare method."""
print("preparing")
config = CustomisedConfigurations.parse_obj(
self.input_dir_config.tool_specific_configuration_options
)
environment = config.environment
def run(self):
"""run method."""
print("running with custom pheval runner")
def post_process(self):
"""post_process method."""
print("post processing")
Post-processing methods
PhEval currently supports the benchmarking of gene, variant, and disease prioritisation results.
To benchmark these result types, PhEval parquet result files need to be generated.
PhEval can deal with the ranking and generation of these files to the correct location. However, the runner implementation must handle the extraction of essential data from the tool-specific raw results. This involves transforming them into a polars dataframe with the required columns for the benchmark type.
The columns representing essential information extracted from tool-specific output for gene, variant, and disease prioritisation are defined as follows:
Bases: Enum
Enum for different result schema formats. Attributes: GENE_RESULT_SCHEMA (pl.Schema): Schema for gene-based results. VARIANT_RESULT_SCHEMA (pl.Schema): Schema for variant-based results. DISEASE_RESULT_SCHEMA (pl.Schema): Schema for disease-based results.
Source code in src/pheval/post_processing/validate_result_format.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
|
GENE_RESULT_SCHEMA = pl.Schema({'gene_symbol': pl.String, 'gene_identifier': pl.String, 'score': pl.Float64, 'grouping_id': pl.Utf8})
class-attribute
instance-attribute
VARIANT_RESULT_SCHEMA = pl.Schema({'chrom': pl.String, 'start': pl.Int64, 'end': pl.Int64, 'ref': pl.String, 'alt': pl.String, 'score': pl.Float64, 'grouping_id': pl.Utf8})
class-attribute
instance-attribute
DISEASE_RESULT_SCHEMA = pl.Schema({'disease_identifier': pl.String, 'score': pl.Float64, 'grouping_id': pl.Utf8})
class-attribute
instance-attribute
The grouping_id
column is optional and is designed to handle cases where entities should be jointly ranked without being penalised.
For example, in the ranking of compound heterozygous variant which occurs when two or more variants, inherited together,
contribute to a phenotype. For this purpose, variants that are part of the same compound heterozygous group
(e.g., within the same gene) should be assigned the same grouping_id
.
This ensures they are ranked as a single entity, preserving their combined significance.
Variants that are not part of any compound heterozygous group should each have a unique grouping_id
.
This approach prevents any unintended overlap in ranking and ensures that each group or individual variant is accurately represented.
The use of the grouping_id
would also be suitable for the ranking and prioritisation of polygenic diseases.
Depending on whether you need to generate gene, variant, and or disease results depends on the final method called to generate the results from the polars dataframe. The methods are outlined below:
⚠️ Breaking Change (v0.5.0):
The helper methodgenerate_pheval_result
has been replaced with three separate methods for each result type:
-generate_gene_result
-generate_variant_result
-generate_disease_result
Update your runner implementation to call the appropriate method based on the type of result your tool produces.
Generate PhEval gene results to a compressed Parquet output. Args: results (pl.DataFrame): The gene results. sort_order (SortOrder): The sort order to use. output_dir (Path): Path to the output directory result_path (Path): Path to the tool-specific result file. phenopacket_dir (Path): Path to the Phenopacket directory
Source code in src/pheval/post_processing/post_processing.py
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 |
|
Generate PhEval variant results to a compressed Parquet output. Args: results (pl.DataFrame): The variant results. sort_order (SortOrder): The sort order to use. output_dir (Path): Path to the output directory result_path (Path): Path to the tool-specific result file. phenopacket_dir (Path): Path to the Phenopacket directory
Source code in src/pheval/post_processing/post_processing.py
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 |
|
Generate PhEval disease results to a compressed Parquet output. Args: results (pl.DataFrame): The disease results. sort_order (SortOrder): The sort order to use. output_dir (Path): Path to the output directory result_path (Path): Path to the tool-specific result file. phenopacket_dir (Path): Path to the Phenopacket directory
Source code in src/pheval/post_processing/post_processing.py
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 |
|
An example of how the method can be called is outlined here:
from pheval.post_processing.post_processing import generate_gene_result, SortOrder
generate_gene_result(
results=pheval_gene_result, # this is the polars dataframe containing extracted PhEval result requirements
sort_order=SortOrder.DESCENDING, # or can be ASCENDING - this determines in which order the scores will be ranked
output_dir=output_directory, # this can be accessed from the runner instance e.g., self.output_dir
result_path=result_path # this is the path to the tool-specific raw results file
phenopacket_dir=phenopacket_dir # this is the path to the directory containing the phenopackets
)
Adding metadata to the results.yml
By default, PhEval will write a results.yml
to the output directory supplied on the CLI.
The results.yml
contains basic metadata regarding the run configuration, however, there is also the option to add customised run metadata to the results.yml
in the tool_specific_configuration_options
field.
To achieve this, you'll need to create a construct_meta_data()
method within your runner implementation. This method is responsible for appending customised metadata to the metadata object in the form of a defined dataclass. It should return the entire metadata object once the addition is completed.
e.g.,
Defined customised metadata dataclass:
from dataclasses import dataclass
@dataclass
class CustomisedMetaData:
customised_field: str
Example of implementation in the runner.
from dataclasses import dataclass
from pheval.runners.runner import PhEvalRunner
from pathlib import Path
@dataclass
class CustomPhevalRunner(PhEvalRunner):
"""CustomPhevalRunner Class."""
input_dir: Path
testdata_dir: Path
tmp_dir: Path
output_dir: Path
config_file: Path
version: str
def prepare(self):
"""prepare method."""
print("preparing")
def run(self):
"""run method."""
print("running with custom pheval runner")
def post_process(self):
"""post_process method."""
print("post processing")
def construct_meta_data(self):
"""Add metadata."""
self.meta_data.tool_specific_configuration_options = CustomisedMetaData(customised_field="customised_value")
return self.meta_data
6. Test it.
To update your custom pheval runner implementation, you must first install the package
poetry install
Now you have to be able to run PhEval passing your custom runner as parameter. e.g.,
pheval run -i ./input_dir -t ./test_data_dir -r 'customphevalrunner' -o output_dir
The -r
parameter stands for your plugin runner class name, and it must be entirely lowercase.
Output:
preparing
running
post processing