Spaces:
Sleeping
Sleeping
File size: 1,072 Bytes
ecd5b53 | 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 | {% extends "base.html" %}
{% block content %}
<div class="main-wrap">
<section class="card">
<h2>Help & Usage</h2>
<h3>Single Sequence</h3>
<ul>
<li>Paste a protein sequence using single-letter amino acid code.</li>
<li>Remove spaces, numbers, headers, or other characters.</li>
<li>Minimum length: 15 amino acids.</li>
</ul>
<h3>FASTA File</h3>
<ul>
<li>For Multiple sequences, upload a valid FASTA file (.fa, .fasta).</li>
<li>Each entry will be analyzed individually.</li>
<li>Refer to a row in the results table to see probabilities for that sequence.</li>
</ul>
<h3>Interpreting Predictions</h3>
<ul>
<li><b>Predicted Location</b>: class with the highest probability.</li>
<li><b>Confidence Bar Chart</b>: probability of each class.</li>
<li><b>Radar Plot</b>: comparative view of probabilities across all classes.</li>
<li>Use medium/low confidence predictions cautiously and combine with biological context.</li>
</ul>
</section>
</div>
{% endblock %}
|