public/js/query.js in sequenceserver-2.0.0.rc8 vs public/js/query.js in sequenceserver-2.0.0
- old
+ new
@@ -109,11 +109,11 @@
return (
<div className="table-hit-overview">
<h4 className="caption" data-toggle="collapse" data-target={'#Query_'+this.props.query.number+'HT_'+this.props.query.number}>
<i className="fa fa-minus-square-o"></i>
- <span>Summary table of hits</span>
+ <span>Sequences producing significant alignments</span>
</h4>
<div className="collapsed in"id={'Query_'+ this.props.query.number + 'HT_'+ this.props.query.number}>
<table
className="table table-hover table-condensed tabular-view ">
<thead>
@@ -121,14 +121,11 @@
<th width={`${seqwidth}%`}>Similar sequences</th>
{hasName && <th width="15%" className="text-left">Species</th>}
{!this.props.imported_xml && <th width="15%" className="text-right">Query coverage (%)</th>}
<th width="10%" className="text-right">Total score</th>
<th width="10%" className="text-right">E value</th>
- <th width="10%" className="text-right" data-toggle="tooltip"
- data-placement="left" title="Total identity of all hsps / total length of all hsps">
- Identity (%)
- </th>
+ <th width="10%" className="text-right">Identity (%)</th>
</thead>
<tbody>
{
_.map(this.props.query.hits, _.bind(function (hit) {
return (
@@ -145,12 +142,12 @@
data-toggle="tooltip" data-placement="top">
{hit.sciname}
</td>
}
{!this.props.imported_xml && <td className="text-right">{hit.qcovs}</td>}
- <td className="text-right">{hit.score}</td>
+ <td className="text-right">{hit.total_score}</td>
<td className="text-right">{this.inExponential(hit.hsps[0].evalue)}</td>
- <td className="text-right">{hit.identity}</td>
+ <td className="text-right">{this.inPercentage(hit.hsps[0].identity, hit.hsps[0].length)}</td>
</tr>
);
}, this))
}
</tbody>