Curie-Web/app/templates/home.html

58 lines
3.2 KiB
HTML
Raw Normal View History

2020-06-24 19:09:05 +01:00
{% extends 'base.html' %}
{% block main %}
<h2>Curie Web Demo</h2>
<p>Curie-Web is a part of The Curie Project which aims to make the process of Computer-Aided Drug Design as fast as possible.</p>
<p>The following are the currently active modules</p>
<h3>Docking</h3>
2020-06-24 19:09:05 +01:00
<ul>
<li><a href="{{ url_for('dock_upload') }}">Dock and Report (Manual)</a> - You can enter your AutoDock Vina configuration, upload the PDBQT files and it will perform the molecular docking and generate a PDF with proper visualisations and protein-interaction profillings (Using PLIP) </li>
<li><a href="{{ url_for('dock_upload_single') }}">Dock and Report (Automatic)</a> - You just enter in the PDB Code, target compound's SMILES structure and name, it will automatically find a binding location and then perform docking and report generation</li>
2020-06-24 19:09:05 +01:00
</ul>
2020-08-04 16:58:56 +01:00
<h3>Drug Designing</h3>
<ul>
<li><a href="{{ url_for('generate') }}">Generate</a> - You can use this to generate completely new compounds</li>
</ul>
<h3>Researching</h3>
<ul>
<li><a href="{{ url_for('pubmed') }}">PubMed Search</a> - Handy PubMed search with direct download links</li>
<li>Qrious App - You can enter a question for a set of papers (e.g. ChemRxiv preprints) and it uses AI to answer it for each individual paper based on their abstract</li>
</ul>
<h3>Misc.</h3>
<ul>
2020-09-11 16:50:12 +01:00
<li>API - <a href="/docs">Swagger UI</a> or <a href="/redoc">ReDoc</a> - API access for the server</li>
2020-09-09 20:19:32 +01:00
<li><a href="{{url_for('generate_pdbqts')}}">Generate PDBQTs</a> - Generate PDBQTs for your compounds or proteins</li>
2020-08-29 20:22:21 +01:00
<li><a href="{{url_for('editor')}}">Editor</a> - Simple Molecular Editor powered by Kekule.js</li>
<li><a href="{{ url_for('status')}}">Job Status</a> - Check the job status </li>
<li><a href="{{ url_for('visualise')}}">Visualise</a> - Molecular Viewer </li>
</ul>
2020-09-11 18:28:42 +01:00
<section>
<h2>Credits</h2>
<q>If I have seen further it is by standing on the shoulders of Giants.</q> - Sir Isaac Newton
<br>
This project would not have been possible without the following:
<br><br>
<h2><img src="{{url_for('static',filename='assets/pliplogo.svg')}}" width=100vw /> PLIP</h2>
<ul>
<li>PLIP is used for binding site analysis, interaction detection and visualisations.</li>
<li>PLIP is powered by <a href="https://www.pharm.ai">PharmAI.</a></li>
</ul>
<h2>AutoDock Vina</h2>
<ul>
<li>AutoDock Vina is an open-source program for doing molecular docking. It was designed and implemented by Dr. Oleg Trott in the Molecular Graphics Lab at The Scripps Research Institute.</li>
</ul>
<h2>PyMOL</h2>
<ul>
<li>PyMOL is used for generating visualisations of protein-ligand complexes</li>
<li>PyMOL is a user-sponsored molecular visualization system on an open-source foundation, maintained and distributed by <a href="https://www.schrodinger.com">Schrödinger.</a></li>
</ul>
</section>
2020-08-04 16:58:56 +01:00
<img src="{{url_for('static',filename='assets/workingInALaboratory.svg')}}" />
2020-06-24 19:09:05 +01:00
{% endblock %}