Hi
What are the standalone tools available for conversion of 2D molecules to 3D molecules for the large number of 2D molecules?
Thank you.
Open Babel...
Pipeline pilot by Accelrys (Currently BIOVIA) can do that. But it is not open source.
You can also use MarvinSpace from ChemAxon, which is also free. I've used it to convert 2D SDF libraries to 3D.
Thank you all for your answers
I would recommend rdkit to this task, it also has implementations of UFF and MMFF94 for geometry optimization.
You can use de Open Babel with this command: babel -isdf molecule.sdf -opdb molecule.pdb --gen3D
I'm assuming that you have a SDF file with a 2D molecule (if this molecule is in another format, you can change the code)
When you use --gen3D the Open Babel calculate the 3D coordinates.
Using RDKit, this code can help you:
import os, sys, glob
import os.path
import shutil
from rdkit import *
from rdkit import Chem
from rdkit.Chem import AllChem
from shutil import copyfile
for filename in glob.glob(os.path.join("", "*.sdf")):
try:
f = open(filename, 'r')
print(filename)
m = Chem.ForwardSDMolSupplier(f)
for mol in m:
mol2=Chem.AddHs(mol)
AllChem.EmbedMolecule(mol2)
x = AllChem.EmbedMolecule(mol2)
if(x
hello everyone how can i convert my 3D sdf file into 2sdf file?
You can try Schrodinger, Biovia Discovery Studio, BioSolveit.
Hi Everyone, I am working on machine learning and artificial intelligence for quite a few years. Over the years, I developed/trained so many black box models. Overall, the models seem to work...
11 December 2018 1,180 6 View
Me and a group of first year undergrads from my college are working on building a horn-antenna for radio astronomy similar to this...
16 April 2018 8,040 3 View
Can anybody tell me, how to get the charge density values/plots for metal and semiconductor interface in SILVACO ATLAS??
27 February 2018 430 2 View
11 May 2017 7,409 7 View
25 March 2015 2,931 4 View
anyone working in low frequency mode identification using machine learning approaches?
01 January 1970 7,572 2 View
How to calculate the RMSD values for a MD simulation using MOE?
07 August 2021 0 0 View
When I tried to energy minimization my system, I got fatal error as below. Fatal error: Atomtype opls_116 not found Although I've already added this line: ; include water #include "oplsaa.ff/spc.itp" to [molecultype] directive in my topology.
16 June 2021 0 0 View
What this unit identifies for the ion exchange capacity ca. 0.92 meq. g-1. I am a newcomer in the membrane area. I just started. I highly appreciate your help
08 May 2021 0 0 View
effect of double bond on the flexibility of polymers
07 April 2021 0 0 View
I am writing to request some information for making polymer color flakes. I would appreciate the help.
17 March 2021 0 0 View