2015-07-29 23:35:44 +03:00
|
|
|
<!-- Show standard deviation if >1 run -->
|
|
|
|
<span class="detail-hint" ng-if="replicates.length > 1"
|
|
|
|
tooltip="Runs: < {{replicates.join(' ')}} >
|
|
|
|
({{stddev|displayPrecision}} = {{stddevpct|displayPrecision}}% standard deviation)">
|
|
|
|
{{value|displayPrecision}} ± {{stddevpct|displayPrecision}}%
|
|
|
|
</span>
|
|
|
|
<!-- View for only 1 run (no stddev) -->
|
|
|
|
<span class="detail-hint" ng-if="replicates.length === 1"
|
|
|
|
tooltip="Only one run (consider more for greater confidence)">
|
|
|
|
{{value|displayPrecision}}
|
|
|
|
</span>
|
|
|
|
<span class="text-muted" ng-if="!replicates || replicates.length == 0">
|
|
|
|
No results
|
2015-07-08 23:08:24 +03:00
|
|
|
</span>
|