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

 
(3 intermediate revisions by 2 users not shown)
Line 6: Line 6:
 
<style>
 
<style>
 
body {
 
body {
background-color: white;
+
    background-color: white;
font-family: Helvetica, sans-serif;
+
    font-family: Helvetica, sans-serif;
margin-top: 20px;
+
    margin-top: 20px;
max-width: 1200px;
+
    position: relative;
position: relative;
+
    margin-left: auto;
margin-left: auto;
+
    margin-right: auto;
margin-right: auto;
+
 
}
 
}
 
figure {
 
figure {
font-style: italic;
+
    font-style: italic;
font-size: smaller;
+
    font-size: smaller;
text-indent: 0;
+
    text-indent: 0;
margin-top: 10px;
+
    margin-top: 10px;
 
}
 
}
 
figcaption {
 
figcaption {
margin-top: 10px;
+
    margin-top: 10px;
 
}
 
}
 
</style>
 
</style>
Line 27: Line 26:
 
<body>
 
<body>
  
<div>
+
<div style="width:70%;margin-left:15%">
<h2>Linker Software Summary</h2>
+
    <h2>Linker Software Summary</h2>
  
<h5>Summary</h5>
+
    <h5>Summary</h5>
<p>The software being developed is designed to connect two selected points on the molecule by finding the  
+
    <p style="font-size:18pt">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  
+
    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.  
+
    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  
+
    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  
+
    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.</p>
+
    to account for visual representation and interaction with the molecule of choice.</p>
+
   
<h5>File Description</h5>
+
    <h5>File Description</h5>
<h6>Main File</h6>
+
    <h6>Main File</h6>
<p>The main file interfaces with PyMOL allowing for user inputs to be used in the linker software.
+
    <p style="font-size:18pt">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>
<figure>
+
    <figure>
<img src="https://static.igem.org/mediawiki/2018/6/67/T--Queens_Canada--PyMOL.jpg" alt='pymol'/>
+
        <img src="https://static.igem.org/mediawiki/2018/6/67/T--Queens_Canada--PyMOL.jpg" alt='pymol'/>
<figcaption>An image of the PyMOL model of the molecule used for initial testing and demonstration.</figcaption>
+
        <figcaption>An image of the PyMOL model of the molecule used for initial testing and demonstration.</figcaption>
</figure>
+
    </figure>
+
   
<h6>Ellipsoid Fit</h6>
+
    <h6>Ellipsoid Fit</h6>
<p>The ellipsoid fit module finds the tightest fitting ellipsoid to a set of points that represent the
+
    <p style="font-size:18pt">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  
center, radii and rotation of the ellipsoid that encloses the points and allows for the plotting of the ellipsoid as a mesh graph.</p>
+
    center, radii and rotation of the ellipsoid that encloses the points and allows for the plotting of the ellipsoid as a mesh graph.</p>
<figure>
+
    <figure>
<img src="https://static.igem.org/mediawiki/2018/7/72/T--Queens_Canada--BestFitEllipsoid.jpg" alt='bestfit'/>
+
        <img src="https://static.igem.org/mediawiki/2018/7/72/T--Queens_Canada--BestFitEllipsoid.jpg" alt='bestfit'/>
<figcaption>The best fitting ellipsoid to the set of points. The set of points that represent the atoms comprising  
+
        <figcaption>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.</figcaption>
+
        the molecule are shown above as black dots while the best fitting ellipsoid is represented as a blue mesh grid.</figcaption>
</figure>
+
    </figure>
+
   
<h6>Ellipsoid Points</h6>
+
    <h6>Ellipsoid Points</h6>
<p>The Ellipsoid Points algorithm generates a grid of points that are contained in an ellipsoid with a
+
    <p style="font-size:18pt">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  
points from the other seven quadrants are calculated by including all the possible combinations of positive and negative values. Another
+
    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  
+
    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.</p>
+
    to unvisited, setting the distance to be infinite and the previous node to be an empty list.</p>
<figure>
+
    <figure>
<img src="https://static.igem.org/mediawiki/2018/b/bd/T--Queens_Canada--RedPointsEllipsoid.jpg" alt='redpoints'/>
+
        <img src="https://static.igem.org/mediawiki/2018/b/bd/T--Queens_Canada--RedPointsEllipsoid.jpg" alt='redpoints'/>
<figcaption>The red points in this image represent the point grid that is developed for later use in the path finding algorithm.</figcaption>
+
        <figcaption>The red points in this image represent the point grid that is developed for later use in the path finding algorithm.</figcaption>
</figure>
+
    </figure>
+
   
<h6>Dijkstra R3</h6>
+
    <h6>Dijkstra R3</h6>
<p>This module implements an extended version of Dijkstra’s algorithm that allows for the shortest path through a  
+
    <p style="font-size:18pt">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  
proposed linker site.</p>
+
    proposed linker site.</p>
+
   
 
</div>
 
</div>
  
<!-- INFORMATION TO BE RELOCATED
+
<footer style="background-color: #212121;height:90px ">
<div>
+
            <div class="container">
<h2>Eric's Latex files (to insert)</h2>
+
                <div class="row">
<p>We determined that the linkers between the GR-LBD and the inteins halves would need to be flexible as
+
                    <div class="col-md-4">
there is no direct path connecting the termini and they would require the flexibility to meet each other
+
                        <ul class="list-inline quicklinks">
and produces a trans-splicing event. To determine which linker would be ideal we ran simulations of
+
                            <li><a href="https://igem.org/Main_Page" style="color:white; font-size:16pt">iGEM Headquarters</a>
Root-mean-square deviation of atomic positions to determine optimal linker length and composition.
+
                            </li>
Firstly, we chose various linker designs inspired from previous work [a,b], then the entropy equations
+
                        </ul>
were run on the Queen’s University Computer Cluster for seven days by Dr. Campbell.
+
                    </div>
<ol type="a">
+
                    <div class="col-md-4">
<li><a href="http://parts.igem.org/Protein_domains/Linker">http://parts.igem.org/Protein_domains/Linker</a></li>
+
                        <ul class="list-inline social-buttons" style="margin-left:20%">
<li><a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3726540/">https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3726540/</a></li>
+
                            <li><a href="https://twitter.com/iGEMQueens"style="    display: block;
</ol>
+
    background-color: #fff;
</p>
+
    height: 40px;
<p>Another aspect of our project we sought to model was which pacifier design would allow for optimal detection of the luminescence signal.
+
    width: 40px;
Eric modelled this through a MATLAB simulation of the “Narrow escape problem”....
+
    border-radius: 100%;
</p>
+
    font-size: 20px;
<p>Lastly, the analysis was modeled by…
+
    line-height: 40px;
</p>
+
    color: #000;
+
    outline: 0;
<h5>Molecular Dynamics</h5>
+
    -webkit-transition: all .3s;
<p>To model our target system and to get a more realistic view on how the linkers would perform, the constructs were modelled on PyMOL with some
+
    -moz-transition: all .3s;
of the initial linker designs. These models were then sent to the cluster computers here at Queen’s University to undergo a molecular dynamics
+
    transition: all .3;"><i class="fa fa-twitter"style="color:black; font-family:FontAwesome;margin-left:10.75px;"></i></a>
simulation. Dynamic modelling of molecular constructs allows for the molecule to simulate how it would vibrate in space.
+
                            </li>
</p>
+
                            <li><a href="https://www.facebook.com/iGEMQueens/?fref=ts"style="    display: block;
<figure>
+
    background-color: #fff;
<img src="https://static.igem.org/mediawiki/2018/6/62/T--Queens_Canada--PyMOLEstrogenLinker.jpg" alt='glucocorticoid'/>
+
    height: 40px;
<figcaption>Linked glucocorticoid receptor and recA intein halves using the linkers from the Estrogen intein system paper.
+
    width: 40px;
</figcaption>
+
    border-radius: 100%;
</figure><br>
+
    font-size: 20px;
<p>This allows for qualification of the linkers’ length and flexibility. By examining the proximity between the two halves of the intein we can
+
    line-height: 40px;
determine if an association event is possible. If the linkers do not appear to reach or if there appears to be excess length causing the halves
+
    color: #000;
of the inteins to overshoot each other the linker can be qualified as either too short or too long. The flexibility can be qualified by watching
+
    outline: 0;
to note how easily and often the two halves of the intein are able to come close to each other. If the halves of the intein are easily able to
+
    -webkit-transition: all .3s;
reach each other and do so more than once this indicates that the linker is probably at an appropriate flexibility for our purposes. If the halves
+
    -moz-transition: all .3s;
easily reach each other but also flail around more than expected the linkers are likely too flexible. Conversely if the halves do not easily come
+
    transition: all .3;"><i class="fa fa-facebook"style="color:black;font-family:FontAwesome;margin-left:10.75px;"></i></a>
into proximity than the linker is likely too inflexible.
+
                            </li>
</p>
+
                            <li><a href="mailto:director@qgemteam.com" style="    display: block;
-->
+
    background-color: #fff;
 
+
    height: 40px;
 +
    width: 40px;
 +
    border-radius: 100%;
 +
    font-size: 20px;
 +
    line-height: 40px;
 +
    color: #000;
 +
    outline: 0;
 +
    -webkit-transition: all .3s;
 +
    -moz-transition: all .3s;
 +
    transition: all .3;"><i class="fa fa-envelope"style="color:black;font-family:FontAwesome;margin-left:10.75px;"></i></a>
 +
                            </li>
 +
                            <li><a href="https://www.linkedin.com/company/1633448?trk=tyah&amp;trkInfo=clickedVertical%3Acompany%2CclickedEntityId%3A1633448%2Cidx%3A1-1-1%2CtarId%3A1464110668532%2Ctas%3Aqgem" style="    display: block;
 +
    background-color: #fff;
 +
    height: 40px;
 +
    width: 40px;
 +
    border-radius: 100%;
 +
    font-size: 20px;
 +
    line-height: 40px;
 +
    color: #000;
 +
    outline: 0;
 +
    -webkit-transition: all .3s;
 +
    -moz-transition: all .3s;
 +
    transition: all .3;"><i class="fa fa-linkedin"style="color:black; font-family:FontAwesome;margin-left:10.75px;"></i></a>
 +
                            </li>
 +
                        </ul>
 +
                    </div>
 +
                    <div class="col-md-4">
 +
                        <ul class="list-inline quicklinks" style="color: white;font-size:16pt;">
 +
                            <li><a href="http://www.queensu.ca/" style="color:white;margin-left:100px;">Queen's University</a>
 +
                            </li>
 +
                        </ul>
 +
                    </div>
 +
                </div>
 +
            </div>
 +
        </footer>
 
</body>
 
</body>
 
</html>
 
</html>

Latest revision as of 00:27, 16 October 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.