@sjcrh/proteinpaint-server 2.200.0 → 2.202.0
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/dataset/termdb.test.js +5 -0
- package/package.json +6 -6
- package/src/app.js +17815 -16848
- package/src/serverconfig.js +55 -10
package/dataset/termdb.test.js
CHANGED
|
@@ -441,6 +441,11 @@ function termdb_test_default() {
|
|
|
441
441
|
type: "H&E",
|
|
442
442
|
imageBySampleFolder: "files/hg38/TermdbTest/wsimages"
|
|
443
443
|
},
|
|
444
|
+
// w2 plot: each sample with images is a subfolder of this directory,
|
|
445
|
+
// holding that sample's .svs files (folder/<sample>/<fileName>)
|
|
446
|
+
w2: {
|
|
447
|
+
folder: "files/hg38/TermdbTest/wsimages"
|
|
448
|
+
},
|
|
444
449
|
trackLst: {
|
|
445
450
|
jsonFile: "files/hg38/TermdbTest/trackLst/facet.json",
|
|
446
451
|
facetTwLst: [{ id: "diaggrp" }, { id: "agedx" }],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sjcrh/proteinpaint-server",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.202.0",
|
|
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",
|
|
@@ -58,11 +58,11 @@
|
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"@sjcrh/augen": "2.190.0",
|
|
61
|
-
"@sjcrh/proteinpaint-python": "2.
|
|
62
|
-
"@sjcrh/proteinpaint-r": "2.
|
|
63
|
-
"@sjcrh/proteinpaint-rust": "2.
|
|
64
|
-
"@sjcrh/proteinpaint-shared": "2.
|
|
65
|
-
"@sjcrh/proteinpaint-types": "2.
|
|
61
|
+
"@sjcrh/proteinpaint-python": "2.202.0",
|
|
62
|
+
"@sjcrh/proteinpaint-r": "2.202.0",
|
|
63
|
+
"@sjcrh/proteinpaint-rust": "2.202.0",
|
|
64
|
+
"@sjcrh/proteinpaint-shared": "2.201.0",
|
|
65
|
+
"@sjcrh/proteinpaint-types": "2.202.0",
|
|
66
66
|
"@types/express": "^5.0.0",
|
|
67
67
|
"@types/express-session": "^1.18.1",
|
|
68
68
|
"better-sqlite3": "^12.4.1",
|