blob: 541c313cf382ebb3e4e2a81dd00a326b08d4a3fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{% extends 'base.html' %}
{% block main %}
<h2>Curie Web Demo</h2>
<p>Dock and Report performs molecular docking using AutoDock Vina, generates visualisations using PyMOL and then finds protein-ligand interactions using PLIP. It then compiles all of this into a PDF report and emails it to you.</p>
<ul>
<li><a href="{{ url_for('dock_upload') }}">Dock and Report</a></li>
<li><a href="{{ url_for('status')}}">Job Status</a></li>
<li><a href="{{ url_for('generate') }}">Generate</a></li>
</ul>
<img src="{{url_for('static',filename='assets/workingInALaboratory.svg')}}" />
{% endblock %}
|