A lightweight package to parse and process molecular simulation files
Project description
MolTopolParser, abbreviated from Molecular Topology Parser, is a lightweight, open-source Python package designed for accessing, validating, and processing files or data from various molecular simulation and modeling software. It simplifies interfacing between different simulation software and is pivotal in building computational pipelines for molecular simulations.
Installation
Requirements
-
Python 3.6 or newer
-
pip package manager
Quick Start
To install MolTopolParser, run the following command:
pip install moltopolparser
Dependencies
MolTopolParser requires the following Python packages:
These dependencies are automatically installed during the MolTopolParser installation process.
Features
-
Modular Design: Structured around specific file formats from various simulation software, enhancing maintainability and scalability.
-
Pydantic Dataclasses: Ensures robust data validation and type checking across the package.
-
Parsing as Class Methods: Facilitates easy access to and manipulation of simulation files through well-defined class methods.
-
Exposed Modules and Dataclasses: Enables advanced users to extend functionality or integrate with other tools.
When To Use
MolTopolParser is designed for developers to manage hierarchical data structures commonly used in molecular simulations. It provides a robust foundation for building advanced simulation tools and pipelines.
Use Cases:
-
Accessing and manipulating simulation files beyond mere coordinate data.
-
Interfacing between different molecular simulation software.
-
Building and managing computational pipelines.
Not Suitable For:
-
Simple parsing of structural data.
-
Basic analysis of simulation outputs. (Consider using Biopython , MDAanalysis etc.)
Usage Examples
Parsing Gromacs Files
import moltopolparser as mtp
# Validate base data directly
atom_data = {
"id": 10, "atom_type": "C", "resnr": 100,
"residu": "UREA", "atom": "C1", "cgnr": 1, "charge": -0.683,
}
atom = mtp.gmx.MolTopAtom(**atom_data)
print(atom.charge)
# Parsing a single .gro file
gro_file = '../tests/data/gmx/two_water.gro'
gro = mtp.gmx.GroFile.parser(gro_file)
print(gro.box_size)
# Parsing and accessing a top file
top_file = '../tests/data/gmx/membrane-martini-charmmgui/system.top'
sys_top = mtp.gmx.Topology.parser(top_file)
print(sys_top.system)
sys_top.pull_forcefield()
print(sys_top.forcefield.atomtypes[0]) # Output: name='P5' at_num=None mass=72.0 charge=0.0 ptype='A' sigma=0.0 epsilon=0.0
sys_top.pull_molecule_topologies()
print(sys_top.molecule_topologies[0])
Contributing
We encourage contributions from the community! Whether you are fixing bugs, proposing new features, or improving the documentation, your help is welcome.
-
For Beginners Submit issue requests for bugs or feature suggestions.
-
For Developers Read the concepts.md and follow our Developer's Guidence to understand how to set up your environment and contribute code.
Versioning and Changelog
For details on the latest changes and version history, please refer to the full Change Log on GitHub.
License
MolTopolParser is released under the Apache License. See the LICENSE file for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file moltopolparser-0.0.1a3.tar.gz
.
File metadata
- Download URL: moltopolparser-0.0.1a3.tar.gz
- Upload date:
- Size: 20.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 29ea3247cc896b4d94b2fa0328f195d1ee6547e6f8bf2296b0822c3687e8b7e2 |
|
MD5 | d52024c95c39b3f0dd709f875a1c1f03 |
|
BLAKE2b-256 | a6282aa7c22bce6fe18bb9288f5e1b4c7233c8faccee949447cab60b4e1970d8 |
File details
Details for the file moltopolparser-0.0.1a3-py3-none-any.whl
.
File metadata
- Download URL: moltopolparser-0.0.1a3-py3-none-any.whl
- Upload date:
- Size: 16.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1d1e9b694b32da9df42006846e1de8a4de208dd89f090e7b8ffa1cde3885118 |
|
MD5 | fb27dcb78f391cd5b699ab9d00c2a78f |
|
BLAKE2b-256 | 6b0de9dc715af89887b89020a41152f1e2a4f9448b6e2e0aafbaca5a8e9f4e42 |