PyConSolv


NamePyConSolv JSON
Version 1.0.6.3.1 PyPI version JSON
download
home_pageNone
SummaryA package for conformer generation of transition-metal-containing complexes
upload_time2024-03-21 14:46:27
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseNone
keywords ambertools conformer explicit solvent generator mcpb orca parametrization pyconsolv simulation solvation transition metals
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![License](https://img.shields.io/badge/license-GPL3-blue)
[![Latest Version](https://img.shields.io/badge/release-v.1.0.6.3.1-red)](https://pypi.org/project/PyConSolv/1.0.6.2/)
[![DOI](https://img.shields.io/badge/DOI-10.1021%2Facs.jcim.3c00798-blue)](https://pubs.acs.org/doi/full/10.1021/acs.jcim.3c00798)

# Latest:
Please update version 1.0.2 to 1.0.3.1+ to fix a bug with generating parameters. Versions before 1.0.2 should not be affected.

Changelog from v 1.0.1:

- More counterions are parametrized and supported by default
- Box size can now be specified using the `-box` parameter
- Support for multiple non-covalently bound solutes
- Support for QM/MM calculations as criteria for the energy ranking of generated conformers
- Support for restrained simulations involving transition states (Currently only for AmberMD)
- Support for cartesian coordinate restraints for residues, suitable for GIST analysis using `-cart` for the residues and `-cartstr` for the restraint strength

# PyConSolv

A python based interface for generation of conformers of transition metal complexes in explicit solvent.
The interface bridges to the well known MCPB.py package available within ambertools. The input required 
consists of only a simple xyz file and all required steps for parametrization are performed automatically,
with minimal user intervention.

Publication:

[PyConSolv: A Python Package for Conformer Generation of (Metal-Containing) Systems in Explicit Solvent
R. A. Talmazan and M. Podewitz
Journal of Chemical Information and Modeling 2023, 63, 17, 5400–5407
DOI: 10.1021/acs.jcim.3c00798](https://pubs.acs.org/doi/full/10.1021/acs.jcim.3c00798)



## Features
Utilizes freely available software, with high performance

18 predefined solvents and 6 counterions (along with 40+ single atom ions), with the ability to use any solvent or counterion

Automated molecule splitting for transition metal parametrization

Utilizes ORCA 5.0 for quantum mechanical optimizations/frequency calculations

Utilizes MultiWfn for the generation of the RESP charges

Automated equilibration of simulation box

Automated clustering


## Requirements

Python >= 3.10

AmberTools >= 20

ORCA >= 5.0

MultiWfn >= 3.8

## Installation

The creation of a new virtual environment is highly recommended:

using conda:
```
conda create -c conda-forge --name PyConSolv python=3.10 rdkit numpy pandas parmed
conda activate PyConSolv
pip install PyConSolv
```

using pip:
```
python3 -m venv env
source env/bin/activate
pip install numpy pandas rdkit parmed PyConSolv
```

## Usage

### Console:
```
pyconsolv [-h] [-c [CHARGE]] [-m [METHOD]] [-b [BASIS]] [-d [DISPERSION]] [-s [SOLVENT]] [-p [CPU]] [-mult [MULTIPLICITY]] [-noopt] [-a [ANALYZE]] [-mask [MASK]] [-cluster [CLUSTER]] [-nosp] [-v] input
```

**positional arguments:**  
input file in XYZ format

**options that affect simulation setup:**  
 
  -c [CHARGE], --charge [CHARGE] charge of the system, default 0  
  -m [METHOD], --method [METHOD] ORCA optimization/frequency calculations method of choice, default PBE0  
  -b [BASIS], --basis [BASIS] basis set to be used for calculations, default def2-SVP  
  -d [DISPERSION], --dispersion [DISPERSION] dispersion corrections, default = D4  
  -s [SOLVENT], --solvent [SOLVENT] solvent to be used for MD simulations/ OM Calculations, default Water  
  -p [CPU], --cpu [CPU] number of cpu cores to be used for calculations, default 12  
  -mult [MULTIPLICITY], --multiplicity [MULTIPLICITY] multiplicity of the system, default 1   
  -noopt perform a single point calculation instead of a geometry optimization  
  -box specify box size for your system  
  -e, --engine         choice of simulation engine  
  -rst, --restraint perform a restrained simulation, useful for transition states  
  -cart, --cartesianrst [Mask] set up system for a simulation with cartesian restraints, uses the amber mask format. Use all for all solvent residues
  -cartstr, --cartesianrststr [Value] strength of cartesian restraints in kcal/mol

**options that affect analysis**:   
  -a , --analyze analyze a simulation  
  -mask [MASK], --mask [MASK] atomid mask for clustering  
  -cluster [CLUSTER], --cluster [CLUSTER] clustering method  
  -nosp skip single point calculations for clusters  
  -qmmm, --qmmm use a qmmm approach to determine cluster energy ranking


**general options:**
  -h, --help            show this help message and exit  
  -v, --version         show program's version number and exit  


see user manual for more details


### Jupyter Notebook

```
from PyConSolv import ConfGen

conf = ConfGen(path/to/input.xyz)

conf.run([options])
```




            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "PyConSolv",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "AmberTools, Conformer, Explicit Solvent, Generator, MCPB, ORCA, Parametrization, PyConSolv, Simulation, Solvation, Transition metals",
    "author": null,
    "author_email": "\"R. A. Talmazan\" <radu.talmazan@tuwien.ac.at>",
    "download_url": "https://files.pythonhosted.org/packages/04/2d/ebce42495a1ca6984eeeabdc9aef57fc64b7d9d059cf539ffbe3aaeef4eb/pyconsolv-1.0.6.3.1.tar.gz",
    "platform": null,
    "description": "![License](https://img.shields.io/badge/license-GPL3-blue)\n[![Latest Version](https://img.shields.io/badge/release-v.1.0.6.3.1-red)](https://pypi.org/project/PyConSolv/1.0.6.2/)\n[![DOI](https://img.shields.io/badge/DOI-10.1021%2Facs.jcim.3c00798-blue)](https://pubs.acs.org/doi/full/10.1021/acs.jcim.3c00798)\n\n# Latest:\nPlease update version 1.0.2 to 1.0.3.1+ to fix a bug with generating parameters. Versions before 1.0.2 should not be affected.\n\nChangelog from v 1.0.1:\n\n- More counterions are parametrized and supported by default\n- Box size can now be specified using the `-box` parameter\n- Support for multiple non-covalently bound solutes\n- Support for QM/MM calculations as criteria for the energy ranking of generated conformers\n- Support for restrained simulations involving transition states (Currently only for AmberMD)\n- Support for cartesian coordinate restraints for residues, suitable for GIST analysis using `-cart` for the residues and `-cartstr` for the restraint strength\n\n# PyConSolv\n\nA python based interface for generation of conformers of transition metal complexes in explicit solvent.\nThe interface bridges to the well known MCPB.py package available within ambertools. The input required \nconsists of only a simple xyz file and all required steps for parametrization are performed automatically,\nwith minimal user intervention.\n\nPublication:\n\n[PyConSolv: A Python Package for Conformer Generation of (Metal-Containing) Systems in Explicit Solvent\nR. A. Talmazan and M. Podewitz\nJournal of Chemical Information and Modeling 2023, 63, 17, 5400\u20135407\nDOI: 10.1021/acs.jcim.3c00798](https://pubs.acs.org/doi/full/10.1021/acs.jcim.3c00798)\n\n\n\n## Features\nUtilizes freely available software, with high performance\n\n18 predefined solvents and 6 counterions (along with 40+ single atom ions), with the ability to use any solvent or counterion\n\nAutomated molecule splitting for transition metal parametrization\n\nUtilizes ORCA 5.0 for quantum mechanical optimizations/frequency calculations\n\nUtilizes MultiWfn for the generation of the RESP charges\n\nAutomated equilibration of simulation box\n\nAutomated clustering\n\n\n## Requirements\n\nPython >= 3.10\n\nAmberTools >= 20\n\nORCA >= 5.0\n\nMultiWfn >= 3.8\n\n## Installation\n\nThe creation of a new virtual environment is highly recommended:\n\nusing conda:\n```\nconda create -c conda-forge --name PyConSolv python=3.10 rdkit numpy pandas parmed\nconda activate PyConSolv\npip install PyConSolv\n```\n\nusing pip:\n```\npython3 -m venv env\nsource env/bin/activate\npip install numpy pandas rdkit parmed PyConSolv\n```\n\n## Usage\n\n### Console:\n```\npyconsolv [-h] [-c [CHARGE]] [-m [METHOD]] [-b [BASIS]] [-d [DISPERSION]] [-s [SOLVENT]] [-p [CPU]] [-mult [MULTIPLICITY]] [-noopt] [-a [ANALYZE]] [-mask [MASK]] [-cluster [CLUSTER]] [-nosp] [-v] input\n```\n\n**positional arguments:**  \ninput file in XYZ format\n\n**options that affect simulation setup:**  \n \n  -c [CHARGE], --charge [CHARGE] charge of the system, default 0  \n  -m [METHOD], --method [METHOD] ORCA optimization/frequency calculations method of choice, default PBE0  \n  -b [BASIS], --basis [BASIS] basis set to be used for calculations, default def2-SVP  \n  -d [DISPERSION], --dispersion [DISPERSION] dispersion corrections, default = D4  \n  -s [SOLVENT], --solvent [SOLVENT] solvent to be used for MD simulations/ OM Calculations, default Water  \n  -p [CPU], --cpu [CPU] number of cpu cores to be used for calculations, default 12  \n  -mult [MULTIPLICITY], --multiplicity [MULTIPLICITY] multiplicity of the system, default 1   \n  -noopt perform a single point calculation instead of a geometry optimization  \n  -box specify box size for your system  \n  -e, --engine         choice of simulation engine  \n  -rst, --restraint perform a restrained simulation, useful for transition states  \n  -cart, --cartesianrst [Mask] set up system for a simulation with cartesian restraints, uses the amber mask format. Use all for all solvent residues\n  -cartstr, --cartesianrststr [Value] strength of cartesian restraints in kcal/mol\n\n**options that affect analysis**:   \n  -a , --analyze analyze a simulation  \n  -mask [MASK], --mask [MASK] atomid mask for clustering  \n  -cluster [CLUSTER], --cluster [CLUSTER] clustering method  \n  -nosp skip single point calculations for clusters  \n  -qmmm, --qmmm use a qmmm approach to determine cluster energy ranking\n\n\n**general options:**\n  -h, --help            show this help message and exit  \n  -v, --version         show program's version number and exit  \n\n\nsee user manual for more details\n\n\n### Jupyter Notebook\n\n```\nfrom PyConSolv import ConfGen\n\nconf = ConfGen(path/to/input.xyz)\n\nconf.run([options])\n```\n\n\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A package for conformer generation of transition-metal-containing complexes",
    "version": "1.0.6.3.1",
    "project_urls": {
        "Bug Tracker": "https://github.com/PodewitzLab/PyConSolv/issues",
        "Homepage": "https://github.com/PodewitzLab/PyConSolv"
    },
    "split_keywords": [
        "ambertools",
        " conformer",
        " explicit solvent",
        " generator",
        " mcpb",
        " orca",
        " parametrization",
        " pyconsolv",
        " simulation",
        " solvation",
        " transition metals"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef5b899c6d9f028865835fe53abc28295d6da2fd3f4259d15afcfd631efa42f8",
                "md5": "d613ff3fd852ad187ddca01bc9de2931",
                "sha256": "2b0d99ac2b1db5aef44e260ef98f17706eabd4b7f787627e7b0d8b62d27ea509"
            },
            "downloads": -1,
            "filename": "pyconsolv-1.0.6.3.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d613ff3fd852ad187ddca01bc9de2931",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 120581,
            "upload_time": "2024-03-21T14:46:07",
            "upload_time_iso_8601": "2024-03-21T14:46:07.016982Z",
            "url": "https://files.pythonhosted.org/packages/ef/5b/899c6d9f028865835fe53abc28295d6da2fd3f4259d15afcfd631efa42f8/pyconsolv-1.0.6.3.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "042debce42495a1ca6984eeeabdc9aef57fc64b7d9d059cf539ffbe3aaeef4eb",
                "md5": "0bd475066ffe708bfccd31c71b32c137",
                "sha256": "4db8d52a853fef3284b3330d43674290d48932dcf9481a915cfbe6c1817cd1c9"
            },
            "downloads": -1,
            "filename": "pyconsolv-1.0.6.3.1.tar.gz",
            "has_sig": false,
            "md5_digest": "0bd475066ffe708bfccd31c71b32c137",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 85319063,
            "upload_time": "2024-03-21T14:46:27",
            "upload_time_iso_8601": "2024-03-21T14:46:27.951858Z",
            "url": "https://files.pythonhosted.org/packages/04/2d/ebce42495a1ca6984eeeabdc9aef57fc64b7d9d059cf539ffbe3aaeef4eb/pyconsolv-1.0.6.3.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-21 14:46:27",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "PodewitzLab",
    "github_project": "PyConSolv",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "pyconsolv"
}
        
Elapsed time: 0.21666s