Conformers analysis

Calculation of properties with Vega

Run Vega

Cluster analysis

Cluster analysis is carried out using Chimera software but before the analysis the mol2 output of Omega has to be converted in pdb format by OpenBabel.

Conversion of mol2 to pdb file

In the command window used to run omega use the following command

babel -imol2 mol_oe_sz.mol2 -opdb mol_oe.pdb

Cluster analysis

Launch Chimera.

From menus: Tools - MD/Ensemble Analysis - MD Movie

  1. Trajectory format: PDB
  2. PDB frames contained in single file
  3. Browse and select the pdf file
  4. Finally, click on "Set input location"
  5. Ok

Now the conformations are loaded as a trajectory.

From MD Movie Tool window Analysis - Cluster

  1. Cluster based on current selection, if any true
  2. All Ignore options have to be true and alkali for the last
  3. Ok
  4. Save the results in a text file mol_wat_cluster.txt

In the cluster file, conformations are clustered and the first frame represent the most representative conformation of the cluster in terms of geometry criteria. Using the output of Szybki the minimum energy conformer should be find and used for the next steps (Chimera does not calculate any energy values).

Python script to read Chimera cluster output and to write clusters in columns in order to merge with szybki output

file = open("MZ1_wat_cluster_final.csv","r")
fileout = open("MZ1_wat_cluster_final_col.csv","w")
i=0
j=0
for line in file:
    i=0
    fields=line.split(" ")
    indice=len(fields)-1
    for ind in range(indice):
        print (j, fields[i].rstrip())
        fileout.writelines([str(j) + " ; " + fields[i].rstrip()  + "\n"])
        i=i+1
       
    j=j+1


Home