@sjcrh/proteinpaint-server 2.133.1 → 2.133.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sjcrh/proteinpaint-server",
3
- "version": "2.133.1",
3
+ "version": "2.133.2",
4
4
  "type": "module",
5
5
  "description": "a genomics visualization tool for exploring a cohort's genotype and phenotype data",
6
6
  "main": "src/app.js",
@@ -209,7 +209,7 @@ function init({ genomes }) {
209
209
  const pngImg = resultData.png[0];
210
210
  const topGeneTable = resultData.topGeneTable || null;
211
211
  const analysisStats = parsedRustResult.summary || {};
212
- const totalProcessTime = Math.round((downloadTime + grin2AnalysisTime) / 1e3);
212
+ const totalProcessTime = downloadTimeToPrint + grin2AnalysisTimeToPrint;
213
213
  console.log("[GRIN2] Total GRIN2 processing time:", totalProcessTime);
214
214
  return res.json({
215
215
  pngImg,