@sjcrh/proteinpaint-server 2.92.0 → 2.93.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/package.json +2 -2
- package/routes/termdb.config.js +1 -2
- package/src/app.js +18 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sjcrh/proteinpaint-server",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.93.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",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"@sjcrh/augen": "2.87.0",
|
|
62
62
|
"@sjcrh/proteinpaint-rust": "2.84.0",
|
|
63
63
|
"@sjcrh/proteinpaint-shared": "2.88.2",
|
|
64
|
-
"@sjcrh/proteinpaint-types": "2.
|
|
64
|
+
"@sjcrh/proteinpaint-types": "2.93.0",
|
|
65
65
|
"better-sqlite3": "^9.4.1",
|
|
66
66
|
"body-parser": "^1.15.2",
|
|
67
67
|
"canvas": "~2.11.2",
|
package/routes/termdb.config.js
CHANGED
|
@@ -219,8 +219,7 @@ function addNonDictionaryQueries(c, ds, genome) {
|
|
|
219
219
|
data: {
|
|
220
220
|
sameLegend: q.singleCell.data.sameLegend,
|
|
221
221
|
refName: q.singleCell.data.refName,
|
|
222
|
-
|
|
223
|
-
height: q.singleCell.data.height,
|
|
222
|
+
settings: q.singleCell.data.settings,
|
|
224
223
|
plots: q.singleCell.data.plots.map((p) => {
|
|
225
224
|
return { name: p.name, colorColumns: p.colorColumns.map((c2) => c2.name), selected: p.selected };
|
|
226
225
|
})
|