@sjcrh/proteinpaint-server 2.199.0 → 2.201.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 +0 -3
- package/package.json +5 -5
- package/src/app.js +8445 -7580
- package/src/serverconfig.js +55 -10
package/dataset/termdb.test.js
CHANGED
|
@@ -359,7 +359,6 @@ function termdb_test_default() {
|
|
|
359
359
|
file: "files/hg38/TermdbTest/TermdbTest_ITD.gz"
|
|
360
360
|
},
|
|
361
361
|
singleSampleMutation: {
|
|
362
|
-
src: "native",
|
|
363
362
|
sample_id_key: "sample_id",
|
|
364
363
|
folder: "files/hg38/TermdbTest/mutationpersample/"
|
|
365
364
|
},
|
|
@@ -418,7 +417,6 @@ function termdb_test_default() {
|
|
|
418
417
|
},
|
|
419
418
|
data: {
|
|
420
419
|
sameLegend: true,
|
|
421
|
-
src: "native",
|
|
422
420
|
plots: [
|
|
423
421
|
{
|
|
424
422
|
name: "UMAP",
|
|
@@ -436,7 +434,6 @@ function termdb_test_default() {
|
|
|
436
434
|
]
|
|
437
435
|
},
|
|
438
436
|
geneExpression: {
|
|
439
|
-
src: "native",
|
|
440
437
|
folder: "files/hg38/TermdbTest/scrna/geneExpHdf5"
|
|
441
438
|
}
|
|
442
439
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sjcrh/proteinpaint-server",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.201.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.
|
|
61
|
+
"@sjcrh/proteinpaint-python": "2.201.0",
|
|
62
|
+
"@sjcrh/proteinpaint-r": "2.201.0",
|
|
63
63
|
"@sjcrh/proteinpaint-rust": "2.198.0",
|
|
64
|
-
"@sjcrh/proteinpaint-shared": "2.
|
|
65
|
-
"@sjcrh/proteinpaint-types": "2.
|
|
64
|
+
"@sjcrh/proteinpaint-shared": "2.201.0",
|
|
65
|
+
"@sjcrh/proteinpaint-types": "2.201.0",
|
|
66
66
|
"@types/express": "^5.0.0",
|
|
67
67
|
"@types/express-session": "^1.18.1",
|
|
68
68
|
"better-sqlite3": "^12.4.1",
|