canloc / templates /help.html
Biocoder09's picture
Upload 14 files
ecd5b53 verified
raw
history blame
1.07 kB
{% extends "base.html" %}
{% block content %}
<div class="main-wrap">
<section class="card">
<h2>Help &amp; 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 %}