Package 'LipinskiFilters'

Title: Computes and Visualize Lipinski's Parameters
Description: This computes Lipinski Rule of Five parameters and offers visualization for drug discovery. It analyzes molecular properties like molecular weight, hydrogen bond donors, acceptors, and ALogP, providing histograms and pass/fail status plots for efficient compound evaluation, aiding in drug development.
Authors: Oche Ambrose George [aut, cre]
Maintainer: Oche Ambrose George <[email protected]>
License: MIT + file LICENSE
Version: 1.0.1
Built: 2024-11-07 06:18:14 UTC
Source: CRAN

Help Index


Assess drug-likeness

Description

This function assesses the drug-likeness of molecules based on calculated molecular properties.

Usage

assess_drug_likeness(properties_df)

Arguments

properties_df

Data frame with molecular properties.

Value

Data frame with an additional column indicating whether each molecule is drug-like or not.


Compute molecular properties

Description

This function computes molecular properties based on input molecules.

Usage

compute_properties(mols)

Arguments

mols

Molecules data.

Value

Data frame with calculated properties including Molecular Weight (MW), number of Hydrogen Bond Donors (nHBDon), number of Hydrogen Bond Acceptors (nHBAcc), Topological Polar Surface Area (TPSA), and ALogP.


Create Lipinski plots

Description

This function creates plots illustrating the distribution of molecular properties and the pass/fail status of Lipinski's Rule of Five.

Usage

create_lipinski_plots(properties_df)

Arguments

properties_df

Data frame with molecular properties and pass/fail status.

Value

A grid of plots showing distributions and pass/fail status.


Molecules read into R in sdf format

Description

This object contains molecules read into R using the 'load.molecules' function


Predict oral bioavailability

Description

This function predicts the oral bioavailability of molecules based on calculated molecular properties.

Usage

predict_oral_bioavailability(properties_df)

Arguments

properties_df

Data frame with molecular properties.

Value

Data frame with an additional column indicating whether each molecule has high or low oral bioavailability.


Test Lipinski's Rule of Five

Description

This function tests Lipinski's Rule of Five based on calculated molecular properties.

Usage

test_lipinski_rule(properties_df)

Arguments

properties_df

Data frame with molecular properties.

Value

A vector indicating whether each molecule passes or fails Lipinski's Rule of Five.