Skip to main content

No project description provided

Project description

Pathogen Decision Engine Package

The Decision Engine Package is a Python package for building and using decision engines based on rule sets defined in CSV files. Its main purpose is to implement the decision mechanism described in the SOVAD [^1] paper to classify the pathogenicity of a mutation given a well-known set of predictors.

Twin project using GoRules' zen-engine : sovad-gorules

Installation

You can install the package via pip:

pip install pathogen-decision-engine

or building the module locally

pip install -e .

Usage

Command-Line Interface (CLI)

The package provides a command-line interface (CLI) for performing inference using the decision engine.

To use the CLI, you can provide either the path of a rule table path made as a CSV file. The engine expect a rule table file made of a table of shape N x M+1 where N is the number of rules, M is the number of predictors and +1 is referring to the classification label for each rule. Each cell can be empty or filled with a symbol (>, >=, ==, <, <=) and a value, indicating a numeric constraint for a certain predictor regarding a certain rule. Example:

decision_engine_cli --rule_table_path data/sovad_rules_table.csv --input_sample '{"PA":1, "PVS":0, "PS":1, "PM":2, "PP":1, "BA":1, "BS":0, "BP":0}'

You can pass a rule table in the form of dict expressed as a string Example:

decision_engine_cli --rule_table_dict "{'PA':{'0':1,'1':0},'PVS':{'0':0,'1':1},'PS':{'0':0,'1':'>=1'},'PM':{'0':0,'1':0},'PP':{'0':0,'1':0},'BA':{'0':0,'1':0},'BS':{'0':0,'1':0},'BP':{'0':0,'1':0},'Output':{'0':'Pathogenic','1':'Pathogenic','2':'Pathogenic'}}" --input_dict '{"PA":1, "PVS":0, "PS":1, "PM":2, "PP":1, "BA":1, "BS":0, "BP":0}'

Python API

You can also use the package programmatically in your Python code. Here's an example of how to use the DecisionEngine class:

from pathogen_decision_engine import PathogenDecisionEngine

df = None ### ... create a df dataframe as you wish

# Create a DecisionEngine object
decision_engine = PathogenDecisionEngine(df)

# Define input dictionary
input_sample = {"PA":1, "PVS":0, "PS":1, "PM":2, "PP":1, "BA":1, "BS":0, "BP":0}
# Or you can define your input as list of sovad predictors, then the engine will take care of the counting:
input_sample = ["PA2", "PS1", "PP4", "PM3" ] # in this case you can omit the predictors with 0 count

# Perform inference
result = decision_engine.infer(input_sample)
print(result)

References

[^1] [Koeppel, Florence et al.] “Standardisation of pathogenicity classification for somatic alterations in solid tumours and haematologic malignancies.” [European journal of cancer (Oxford, England : 1990) vol. 159 (2021): 1-15].

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pathogen_decision_engine-1.3.1.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

pathogen_decision_engine-1.3.1-py3-none-any.whl (6.6 kB view details)

Uploaded Python 3

File details

Details for the file pathogen_decision_engine-1.3.1.tar.gz.

File metadata

File hashes

Hashes for pathogen_decision_engine-1.3.1.tar.gz
Algorithm Hash digest
SHA256 a3ac0bd63c756e167d6ced51961ef0ae8c9dbcf7abc9c1ee9953b0f976473d3b
MD5 8c2e1919d66cbe04042a7f44b3fae8db
BLAKE2b-256 6fe2e750c5af47045fa8e1682a211eec11528b4512410685182ff66c2a107b9e

See more details on using hashes here.

File details

Details for the file pathogen_decision_engine-1.3.1-py3-none-any.whl.

File metadata

File hashes

Hashes for pathogen_decision_engine-1.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b1c198ae6defb1c0c9e0d59d0792ed696efd07ab3c53c0a440ca3677a3e3d810
MD5 f32dde779b2a6a174a2b3a26c853036a
BLAKE2b-256 1852cf305a932e2e00fe2b25dc6d3e63d2c1e5054c7948ac163085f5b398977e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page