Difference between revisions of "Team:Queens Canada/Linker Software"

Line 22: Line 22:
 
figcaption {
 
figcaption {
 
margin-top: 10px;
 
margin-top: 10px;
}
 
p.bigger {
 
font-size: 24px;
 
 
}
 
}
 
</style>
 
</style>
Line 42: Line 39:
 
 
 
<h5>File Description</h5>
 
<h5>File Description</h5>
<p><em>Main File</em><br></p>
+
<h6>Main File</h6>
 
<p>The main file interfaces with PyMOL allowing for user inputs to be used in the linker software.
 
<p>The main file interfaces with PyMOL allowing for user inputs to be used in the linker software.
 
In addition, this file processes the inputs and manages all the function calls that coordinate the creation of the linkers.</p>
 
In addition, this file processes the inputs and manages all the function calls that coordinate the creation of the linkers.</p>
Line 50: Line 47:
 
</figure>
 
</figure>
 
 
<br><p><em>Ellipsoid Fit</em><br></p>
+
<h6>Ellipsoid Fit</h6>
 
<p>The ellipsoid fit module finds the tightest fitting ellipsoid to a set of points that represent the
 
<p>The ellipsoid fit module finds the tightest fitting ellipsoid to a set of points that represent the
 
atoms that compose the molecule. This is done using an algorithm that is based on the Khachiyan Algorithm. This module returns the  
 
atoms that compose the molecule. This is done using an algorithm that is based on the Khachiyan Algorithm. This module returns the  
Line 60: Line 57:
 
</figure>
 
</figure>
 
 
<br><p class="bigger"><em>Ellipsoid Points</em><br></p>
+
<h6>Ellipsoid Points</h6>
 
<p>The Ellipsoid Points algorithm generates a grid of points that are contained in an ellipsoid with a
 
<p>The Ellipsoid Points algorithm generates a grid of points that are contained in an ellipsoid with a
 
given spacing. To increase the efficiency of the algorithm the points from one of the eight quadrants are generated and the corresponding  
 
given spacing. To increase the efficiency of the algorithm the points from one of the eight quadrants are generated and the corresponding  
Line 71: Line 68:
 
</figure>
 
</figure>
 
 
<br><p><em>Dijkstra R3</em><br></p>
+
<h6>Dijkstra R3</h6>
 
<p>This module implements an extended version of Dijkstra’s algorithm that allows for the shortest path through a  
 
<p>This module implements an extended version of Dijkstra’s algorithm that allows for the shortest path through a  
 
set of points in R3. The algorithm implements a heuristic approach using the Euclidean distance of the current point to the end of the  
 
set of points in R3. The algorithm implements a heuristic approach using the Euclidean distance of the current point to the end of the  

Revision as of 18:23, 5 September 2018

Linker Software Summary

Summary

The software being developed is designed to connect two selected points on the molecule by finding the shortest path that connects them without interfering with the rest of the molecule. This is done by first finding the shortest path at a specified resolution using an extended version of Dijkstra’s Algorithm. After the shortest path has been found linkers are designed to suit the path found. The method used to generate the linkers has yet to been determined. This software will be usable through the PyMOL software to account for visual representation and interaction with the molecule of choice.

File Description
Main File

The main file interfaces with PyMOL allowing for user inputs to be used in the linker software. In addition, this file processes the inputs and manages all the function calls that coordinate the creation of the linkers.

pymol
An image of the PyMOL model of the molecule used for initial testing and demonstration.
Ellipsoid Fit

The ellipsoid fit module finds the tightest fitting ellipsoid to a set of points that represent the atoms that compose the molecule. This is done using an algorithm that is based on the Khachiyan Algorithm. This module returns the center, radii and rotation of the ellipsoid that encloses the points and allows for the plotting of the ellipsoid as a mesh graph.

bestfit
The best fitting ellipsoid to the set of points. The set of points that represent the atoms comprising the molecule are shown above as black dots while the best fitting ellipsoid is represented as a blue mesh grid.
Ellipsoid Points

The Ellipsoid Points algorithm generates a grid of points that are contained in an ellipsoid with a given spacing. To increase the efficiency of the algorithm the points from one of the eight quadrants are generated and the corresponding points from the other seven quadrants are calculated by including all the possible combinations of positive and negative values. Another function in this module sets up a set of points for Dijkstra’s Algorithm by checking to see if the point is an obstacle, setting the points to unvisited, setting the distance to be infinite and the previous node to be an empty list.

redpoints
The red points in this image represent the point grid that is developed for later use in the path finding algorithm.
Dijkstra R3

This module implements an extended version of Dijkstra’s algorithm that allows for the shortest path through a set of points in R3. The algorithm implements a heuristic approach using the Euclidean distance of the current point to the end of the proposed linker site.