Skip to content

Commit

Permalink
removed p-values for ecc on gene family pages which are currently not…
Browse files Browse the repository at this point in the history
… exactly calculated
  • Loading branch information
proost committed Nov 29, 2017
1 parent 0112deb commit 3faa8f9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions conekt/templates/pagination/ecc_relations.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<td>Query</td>
<td>Target</td>
<td>ECC Score</td>
<td>p-Value</td>
<td>p-Value (corrected)</td>
<!--<td>p-Value</td>
<td>p-Value (corrected)</td>-->
<td>Actions</td>
</tr>
</thead>
Expand All @@ -16,8 +16,8 @@
<td><a href="{{ url_for('sequence.sequence_view', sequence_id=relation.query_id) }}" class="qtip_tooltip qtip_dynamic_tooltip" qtip_href="{{ url_for('sequence.sequence_tooltip', sequence_id=relation.query_id) }}">{{ relation.query_sequence.name }}</a></td>
<td><a href="{{ url_for('sequence.sequence_view', sequence_id=relation.target_id) }}" class="qtip_tooltip qtip_dynamic_tooltip" qtip_href="{{ url_for('sequence.sequence_tooltip', sequence_id=relation.target_id) }}">{{ relation.target_sequence.name }}</a></td>
<td>{{ relation.ecc|round(2) }}</td>
<td>{% if relation.p_value %}{{ relation.p_value|round(3) }}{% else %}<em class="text-muted">None</em>{% endif %}</td>
<td>{% if relation.corrected_p_value %}{{ relation.corrected_p_value|round(3) }}{% else %}<em class="text-muted">None</em>{% endif %}</td>
<!--<td>{% if relation.p_value %}{{ relation.p_value|round(3) }}{% else %}<em class="text-muted">None</em>{% endif %}</td>
<td>{% if relation.corrected_p_value %}{{ relation.corrected_p_value|round(3) }}{% else %}<em class="text-muted">None</em>{% endif %}</td>-->
<td><a href="{{ url_for('ecc.ecc_graph_pair', ecc_id=relation.id) }}" data-toggle="tooltip" data-placement="top" title="View ECC pair as graph"><i class="fa fa-eye"></i></a>
<a href="{{ url_for('ecc.ecc_graph', sequence=relation.query_id, network=relation.query_network_method_id, family=relation.gene_family_method_id) }}" data-toggle="tooltip" data-placement="top" title="View ECC as graph"><i class="fa fa-share-alt"></i></a></td>
</tr>
Expand Down

0 comments on commit 3faa8f9

Please sign in to comment.