Skip to main content

PyMolinfo provides comprehensive molecular information and analysis.

Project description

PyMolinfo

Downloads PyPI Python Version License

PyMolInfo (previously molinfo) is a Python package designed for advanced molecular analysis by converting molecular structures into graph representations. This package enables researchers and chemists to load various molecular file formats, transform them into graphs, and extract valuable information through graph-based methods.

Features

  • File Format Support: Load molecular data from multiple file formats, including SDF and JSON (soon).

  • Graph Conversion: Transform molecular structures into graph representations for detailed analysis.

  • Functional Group Identification: Detect and analyze functional groups within the molecular graph.

  • Distance Measurement: Compute distances between atoms and bonds in the molecular graph.

  • Bond Angle Calculation: Measure angles between bonds using graph-based methods.

Getting Started:

To use PyMolinfo, simply install the package and import it into your Python script. Refer to the example code snippets above for a quick start.

Binder

Test this package by launching our example notebooks on Binder:

| Description | Launch Binder |

| --- | --- |

| Load a sdf file | Launch Binder |

| Visualize a compound | Launch Binder |

| Check and count functional groups | Launch Binder|

| Create custom functional groups | Launch Binder|

Google Colab

You can use the following code to run PyMolinfo in Google Colab:

| Version | Google Colab |

| --- | --- |

| 1.6.0 | Open In Colab |

| < 1.6.0 | Open In Colab |

Installation

Install molinfo with pip

  pip install PyMolinfo

Documentation

Import package as:

import pyMolinfo as mi

# check version

print(mi.__version__)

Examples

  • Create a graph
# sdf file

sdf_file_name_1 = 'test\Structure2D_COMPOUND_CID_261.sdf'

sdf_file = os.path.join(os.getcwd(), sdf_file_name_1)

# create graph

res = mi.create_graph(sdf_file)

print(type(res))

print(res)
  • Display a graph:
# visualize compound by sdf file

mi.g3d(sdf_file)
  • Check the availability of functional groups:
# check functional groups

res, comp1 = mi.check_functional_group(sdf_file, res_format='dataframe')

print(res)
  • Calculate angle/distance between atoms
# distance matrix

res_distance = comp1.distance_matrix(dataframe=True)

print(res_distance)



# distance between two atoms

distance = comp1.distance_atoms(['O1', 'C2'])

print(distance)



# angle between atoms

angle = comp1.angle_atoms(['O1', 'C2', 'H3'])

print(angle)



# dihedral angle

dihedral = comp1.d_angle_atoms(['H6', 'O1', 'C2', 'H3'])

print(dihedral)
  • Create custom functional groups:

[atom1-element][atom1-number][bond-type][atom2-element][atom2-number]

| Bond Types | Format |

|:----------|:----------|

| single bond CC | C1-C2 |

| double bond CC | C1=C2 |

| triple bond CC | C1#C2 |

How to create a custom functional group?

| Name | Symbol | Format |

|:-----------|:------------:|-------------:|

| cyanide-1 | CCN | ["N1#C2"] |

| custom_fg | NCH | ["N1-C2", "C2-H3"] |

| NC=O | NC=O | ["N1-C2", "C2=O3"] |

And coded as:

# C1-C2#N3

custom_functional_group = [

    {'cyanide': ["C1-C2", "C2#N3"]},

]



# define different custom functional groups as:

# N#C

# NCH

# NCO

custom_functional_group = [

    {'N#C': ["N1#C2"]},

    {'custom_fg': ["N1-C2", "C2-H3"]},

    {'NC=O': ["N1-C2", "C2=O3"]},

]



# create custom graph

custom_g = mi.create_custom_functional_groups(custom_functional_group)



# visualize custom graph

# custom_g.d("cyanide")



# find custom functional groups in a compound

res = mi.check_functional_group(

    sdf_file, functional_groups=[custom_g])

print(res)

FAQ

For any question, contact me on LinkedIn

Authors

@sinagilassi

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

pymolinfo-1.8.0.tar.gz (44.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

PyMolinfo-1.8.0-py3-none-any.whl (47.3 kB view details)

Uploaded Python 3

File details

Details for the file pymolinfo-1.8.0.tar.gz.

File metadata

  • Download URL: pymolinfo-1.8.0.tar.gz
  • Upload date:
  • Size: 44.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.8

File hashes

Hashes for pymolinfo-1.8.0.tar.gz
Algorithm Hash digest
SHA256 1b41a1514560a867b06db51aa24155b25802cb4c493c194b91174548984ecb74
MD5 84855417f6b3107036f8d17a74dc3661
BLAKE2b-256 0fa22a7a9fe3bf91317a35abcab944b4b0ee63b12c6e165f6bc776c05e52d617

See more details on using hashes here.

File details

Details for the file PyMolinfo-1.8.0-py3-none-any.whl.

File metadata

  • Download URL: PyMolinfo-1.8.0-py3-none-any.whl
  • Upload date:
  • Size: 47.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.8

File hashes

Hashes for PyMolinfo-1.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 05181d78cd2cda5764a4acee99cdfdee6aee3791488f592b374303764911bada
MD5 ac67a86e9a6ac53c3fb24377d69b7b28
BLAKE2b-256 cfe117bc9bcf14ee33d37c93109a74995cba22bce0b2db782d8094c6d1d8791a

See more details on using hashes here.

Supported by

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