Chemical drawing with Python
Project description
applique
applique is a simple program that can write .xyz file from .mol files. It really is just a missing puzzle piece in the quantum chemistry world, as some molecular editors went corrupt. Now one can use common Quantum Chemistry software again. It mimics Avogadros behaviour.
Nothing special.
Okay by now it is an understatement. It is infact a molecular model suitable for generating simulations. It can also convert fileformats.
Installation
Simple as always
pip install applique
Usage
Cli
In your venv
applique --i in_file.mol --o out_file.xyz
Easy peasy
Programs
Within programs for example you load a molfile like this
from applique.molecule import Molecule as Mol
mol_file_benzene = "tests/molecules/benzene.mol"
benzene = Mol().from_mol(mol_file_benzene)
Then write the .xyz like this
from applique.writer import write_xyz
from applique.molecule import Molecule as Mol
mol_file_benzene = "tests/molecules/benzene.mol"
benzene = Mol().from_mol(mol_file_benzene)
file_name_benzene = "./tests/molecules/benzene.xyz"
coordinates = benzene.struct3D() #you can omit if you don't want to preoptimize the structure.
write_xyz(self.benzene, file_name_benzene)
Errors
This is wanted (don't want to impose bonds at this stage)
E RuntimeError: Pre-condition Violation
E getNumImplicitHs() called without preceding call to calcImplicitValence()
E Violation occurred on line 287 in file Code/GraphMol/Atom.cpp
E Failed Expression: d_implicitValence > -1
E RDKIT: 2024.03.5
E BOOST: 1_85
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file applique-0.1.12.tar.gz.
File metadata
- Download URL: applique-0.1.12.tar.gz
- Upload date:
- Size: 18.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b5b4483d77355f1f869f4e77b27b498fbb3a10b70acca7f98919fdb32d01383
|
|
| MD5 |
56aa10311a39626c376289d9dd02f512
|
|
| BLAKE2b-256 |
36ca9f74993fce24d016b3925dac32a549edb211074936f2bf1aa6908d88323e
|
File details
Details for the file applique-0.1.12-py3-none-any.whl.
File metadata
- Download URL: applique-0.1.12-py3-none-any.whl
- Upload date:
- Size: 17.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0834366a1b4eedac8a0290bfac873a19c423705849c66e9c0c04dfc07cf467f6
|
|
| MD5 |
50a039bb63097a6b86d0178b95973678
|
|
| BLAKE2b-256 |
86bdbb33c607fd98c2c37d83b4ccff41b15d221ed72659cc7b20575ce37a230f
|