-
Notifications
You must be signed in to change notification settings - Fork 1
/
usr.py
136 lines (120 loc) · 6.3 KB
/
usr.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
import numpy as np
from scipy.spatial import distance
from scipy.stats import skew
import os
cwd = os.getcwd()
def get_molecule_coordinates(molecule):
"""
Get the coordinates of a molecule
"""
molecule_coordinates = []
for atom in molecule.GetAtoms():
position = molecule.GetConformer().GetAtomPosition(atom.GetIdx())
molecule_coordinates.append([position.x, position.y, position.z])
return np.array(molecule_coordinates)
def get_geometrical_center(coordinates):
"""
Get the geometrical center of a molecule
"""
return np.mean(coordinates, axis=0)
def find_closest_atom(coordinates, geometrical_center,print_atom_number=False):
"""
Find the closest atom to the geometrical center of a molecule.
"""
distances = np.linalg.norm(coordinates - geometrical_center, axis=1)
min_distance = np.min(distances)
# get the indices of the atoms with the minimum distance
closest_atoms_indices = np.where(distances == min_distance)[0]
# get the coordinates of the closest atom
closest_atom_coordinates = coordinates[closest_atoms_indices[0]]
if print_atom_number:
print(f"Closest atom number: {closest_atoms_indices[0]+1} ")
return closest_atom_coordinates
def find_furthest_atom(coordinates, geometrical_center,print_atom_number=False):
"""
Find the furthest atom to the geometrical center of a molecule.
"""
distances = np.linalg.norm(coordinates - geometrical_center, axis=1)
max_distance = np.max(distances)
# get the indices of the atoms with the maximum distance
furthest_atoms_indices = np.where(distances == max_distance)[0]
# get the coordinates of the furthest atoms
furthest_atom_coordinates = coordinates[furthest_atoms_indices[0]]
if print_atom_number:
print(f"Furthest atom number: {furthest_atoms_indices[0]+1}")
return furthest_atom_coordinates
def find_furthest_atom_from_furthest_atom(coordinates, furthest_atoms_coordinates,print_atom_number=False):
"""
Find the furthest atom from the furthest atom of a molecule.
"""
distances = np.linalg.norm(coordinates - furthest_atoms_coordinates, axis=1)
max_distance = np.max(distances)
# get the indices of the atom with the maximum distance
furthest_atom_indices = np.where(distances == max_distance)[0]
# get the coordinates of the furthest atom
furthest_atom_coordinates = coordinates[furthest_atom_indices[0]]
if print_atom_number:
print(f"Furthest atom number: {furthest_atom_indices[0]+1}")
return furthest_atom_coordinates
def compute_distances(molecule_coordinates, reference_points):
"""
Computes the Euclidean distance of each point from each reference point
"""
distances = np.empty((molecule_coordinates.shape[0], len(reference_points)))
for i, point in enumerate(molecule_coordinates):
for j, ref_point in enumerate(reference_points):
distances[i, j] = distance.euclidean(point, ref_point)
return distances
def compute_statistics(distances):
means = np.mean(distances, axis=0)
std_devs = np.std(distances, axis=0)
skewness = np.cbrt(skew(distances, axis=0))
# check if skewness is nan
skewness[np.isnan(skewness)] = 0
statistics_matrix = np.vstack((means, std_devs, skewness)).T
# add all rows to a list
statistics_list = [element for row in statistics_matrix for element in row]
return statistics_list
def calculate_partial_score(moments1: list, moments2:list):
partial_score = 0
for i in range(len(moments1)):
partial_score += abs(moments1[i] - moments2[i])
return partial_score / len(moments1)
def get_similarity_measure(partial_score):
return 1/(1 + partial_score)
def compute_similarity(molecule1, molecule2,print_atom_number=False):
# get the coordinates of the molecules
molecule1_coordinates = get_molecule_coordinates(molecule1)
molecule2_coordinates = get_molecule_coordinates(molecule2)
# get the geometrical center of the molecules
molecule1_geometrical_center = get_geometrical_center(molecule1_coordinates)
molecule2_geometrical_center = get_geometrical_center(molecule2_coordinates)
# find the closest atom to the geometrical center of the molecules
molecule1_closest_atom = find_closest_atom(molecule1_coordinates, molecule1_geometrical_center,print_atom_number)
molecule2_closest_atom = find_closest_atom(molecule2_coordinates, molecule2_geometrical_center,print_atom_number)
# find the furthest atom to the geometrical center of the molecules
molecule1_furthest_atom = find_furthest_atom(molecule1_coordinates, molecule1_geometrical_center,print_atom_number)
molecule2_furthest_atom = find_furthest_atom(molecule2_coordinates, molecule2_geometrical_center,print_atom_number)
# find the furthest atom from the furthest atom of the molecules
molecule1_furthest_atom_from_furthest_atom = find_furthest_atom_from_furthest_atom(molecule1_coordinates, molecule1_furthest_atom,print_atom_number)
molecule2_furthest_atom_from_furthest_atom = find_furthest_atom_from_furthest_atom(molecule2_coordinates, molecule2_furthest_atom,print_atom_number)
# generate reference points in two lists
molecule1_reference_points = [molecule1_geometrical_center,
molecule1_closest_atom,
molecule1_furthest_atom,
molecule1_furthest_atom_from_furthest_atom]
molecule2_reference_points = [molecule2_geometrical_center,
molecule2_closest_atom,
molecule2_furthest_atom,
molecule2_furthest_atom_from_furthest_atom]
# compute the distances of each point from each reference point
molecule1_distances = compute_distances(molecule1_coordinates, molecule1_reference_points)
molecule2_distances = compute_distances(molecule2_coordinates, molecule2_reference_points)
# compute the statistics of the distances
molecule1_statistics = compute_statistics(molecule1_distances)
molecule2_statistics = compute_statistics(molecule2_distances)
# compute the partial score
partial_score = calculate_partial_score(molecule1_statistics, molecule2_statistics)
# compute the similarity measure
similarity = get_similarity_measure(partial_score)
return similarity