-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathwelcome.html
42 lines (35 loc) · 1.73 KB
/
welcome.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{% extends "layout.html" %}
{% block title %}Trace file alignment{% endblock %}
{% block nav_index %}active{% endblock %}
{% block head %}
{{ super() }}
{% endblock %}
{% block container %}
<div id="header" xmlns="http://www.w3.org/1999/html">
<div class="container">
<div class="row mb-4" id="header-cards">
<h1>Welcome to <b>Trace</b>Track</h1>
<p>
TraceTrack is a web application for batch alignment of trace files to a reference and visualization of mutations.
The tool enables batch upload of trace files, creating alignments with user-defined settings, displaying their overview of details and viewing original chromatograms
</p>
<p style="text-align:center;">
<center><img src="{{ url_for('static', filename='figure_1.png') }}" alt="Figure 1" height="350" ></center>
</p>
<p>
The input consists of trace files (in ab1 format) and a file with reference sequences (as .xlsx, .csv, GenBank or fasta format).
Alignments of trace files to the reference are performed based on user settings and displayed in a table.
After clicking on an alignment, the chromatogram from the ab1 file can be displayed. For more information, see the help tab.
<br> <br>
Visit our <a href="https://github.com/Merck/TraceTrack">GitHub page</a> <br>
View the <a href="https://biorxiv.org/cgi/content/short/2022.07.28.501824v1">publication</a>
</p>
<p>
<div class="btn-group" role="group">
<a href="/input" class="btn btn-primary">Get started!</a>
</div>
</p>
</div>
</div>
</div>
{% endblock %}