Skip to content

Commit

Permalink
added entropy and tau to search results
Browse files Browse the repository at this point in the history
  • Loading branch information
proost committed Oct 25, 2016
1 parent cba1a91 commit 02e442c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion planet/templates/search_specific_profiles.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ <h1><em>{{species.name}}</em> profiles specific for <strong>{{condition}}</stron
<th data-sort="string-ins">Gene</th>
<th data-sort="string-ins">Condition</th>
<th data-sort="float"><abbr title="Click to show help" href="{{ url_for('help.help_topic', topic='spm') }}" data-target="#helpModal">SPM</abbr> score</th>
<th data-sort="float"><abbr title="Click to show help" href="{{ url_for('help.help_topic', topic='entropy') }}" data-target="#helpModal">Entropy</abbr> score</th>
<th data-sort="float"><abbr title="Click to show help" href="{{ url_for('help.help_topic', topic='tau') }}" data-target="#helpModal">Tau</abbr> score</th>
<th data-sort="float">Action</th>
</tr>
</thead>
Expand All @@ -52,7 +54,9 @@ <h1><em>{{species.name}}</em> profiles specific for <strong>{{condition}}</stron
<td>{{ r.id }}</td>
<td><a href="{{url_for('sequence.sequence_view', sequence_id=r.profile.sequence.id)}}">{{ r.profile.sequence.name }}</a></td>
<td>{{ r.condition }}</td>
<td>{{ r.score }}</td>
<td>{{ r.score|round(2) }}</td>
<td>{{ r.entropy|round(2) }}</td>
<td>{% if r.tau %}{{ r.tau|round(2) }}{% else %}<span class="text-muted">None</span>{% endif %}</td>
<td><a href="{{url_for('expression_profile.expression_profile_view', profile_id=r.profile_id)}}">view profile</a></td>
</tr>
{% endif %}
Expand Down

0 comments on commit 02e442c

Please sign in to comment.