minor changes to main scan

This commit is contained in:
lukas fricke 2025-02-05 14:08:44 +01:00
parent a17325be5b
commit f497ca1ff0

View file

@ -52,7 +52,7 @@
</p>
<h3>Main Scan Table</h3>
<h3>Filamentous Organisms and Protozoa Table</h3>
<table class="table" id = "main_scan_table" style="width:100%">
<thead>
<tr>
@ -60,7 +60,7 @@
organism
</th>
<th>
abundance [uL/uL] or [1/uL]
abundance [ug/uL] or [1/uL]
</th>
<th>
standard deviation [%]
@ -407,7 +407,7 @@
case "Actinobacteria":
newRow.insertCell(0).innerHTML = key ;
// get
newRow.insertCell(1).innerHTML = (mean * Math.pow(10, -9) * multiplication_factor_main_scan).toExponential(2);
newRow.insertCell(1).innerHTML = (mean * Math.pow(10, -6) * multiplication_factor_main_scan).toExponential(2);
newRow.insertCell(2).innerHTML = (stdev/mean * 100);
break
default: