@sjcrh/proteinpaint-server 2.147.1 → 2.147.2-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.violin.js +0 -1
- package/src/app.js +4 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sjcrh/proteinpaint-server",
|
|
3
|
-
"version": "2.147.
|
|
3
|
+
"version": "2.147.2-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",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"@sjcrh/proteinpaint-r": "2.146.4-0",
|
|
66
66
|
"@sjcrh/proteinpaint-rust": "2.146.4-1",
|
|
67
67
|
"@sjcrh/proteinpaint-shared": "2.147.1",
|
|
68
|
-
"@sjcrh/proteinpaint-types": "2.147.
|
|
68
|
+
"@sjcrh/proteinpaint-types": "2.147.2-0",
|
|
69
69
|
"@types/express": "^5.0.0",
|
|
70
70
|
"@types/express-session": "^1.18.1",
|
|
71
71
|
"better-sqlite3": "^9.4.1",
|
package/routes/termdb.violin.js
CHANGED
|
@@ -174,7 +174,6 @@ async function createCanvasImg(q, result, ds) {
|
|
|
174
174
|
if (!q.radius) q.radius = 5;
|
|
175
175
|
if (q.radius <= 0) throw "q.radius is not a number";
|
|
176
176
|
else q.radius = +q.radius;
|
|
177
|
-
if (!q.strokeWidth) q.strokeWidth = 0.2;
|
|
178
177
|
const isH = q.orientation == "horizontal";
|
|
179
178
|
for (const k of Object.keys(result.charts)) {
|
|
180
179
|
const chart = result.charts[k];
|