aboutsummaryrefslogtreecommitdiff
path: root/app/templates/about.html
blob: b61bfedcd1205940c784ae7858427bae91b817ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends 'base.html' %}

{% block main %}
    <h1>About Curie Web</h1>
    <p>Curie Web is a web interface for my private Python Library called "Curie", with some aditional superpowers.</p>
    <h4>Dock and Report</h4>
    <p>This module uses AutoDock Vina to perform molecular docking on the specified molecular docking. It then uses PyMOL
         to create high quality ray-traced visualisations. After finding and tabulating protein ligand interactions using PLIP,
        it creates a PDF and emails you the report ( Along with supporting files )</p>
    
    <section>
        <style>
            #astronaut{
                height: 40vh;
            }
        </style>
        <div id="astronaut"></div>
        <script src="{{url_for('static',filename='js/astronaut.js')}}"></script>
    </section>

{% endblock %}