diff --git a/create_report.html b/create_report.html index d789fd1..da3d8cb 100644 --- a/create_report.html +++ b/create_report.html @@ -52,7 +52,7 @@
-| - abundance [uL/uL] or [1/uL] + abundance [ug/uL] or [1/uL] | 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: |
|---|