@sjcrh/proteinpaint-server 2.133.3 → 2.133.5
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/genome/hg38.js +0 -1
- package/package.json +3 -3
- package/routes/wsimages.js +2 -3
- package/src/app.js +7 -9
package/genome/hg38.js
CHANGED
|
@@ -61,7 +61,6 @@ var hg38_default = {
|
|
|
61
61
|
categories: {
|
|
62
62
|
coding: { color: "#004D99", label: "Coding gene" },
|
|
63
63
|
nonCoding: { color: "#008833", label: "Noncoding gene" },
|
|
64
|
-
problem: { color: "#CC3300", label: "Problem" },
|
|
65
64
|
pseudo: { color: "#CC00CC", label: "Pseudogene" }
|
|
66
65
|
},
|
|
67
66
|
type: "bedj",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sjcrh/proteinpaint-server",
|
|
3
|
-
"version": "2.133.
|
|
3
|
+
"version": "2.133.5",
|
|
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",
|
|
@@ -64,8 +64,8 @@
|
|
|
64
64
|
"@sjcrh/proteinpaint-python": "2.133.0",
|
|
65
65
|
"@sjcrh/proteinpaint-r": "2.130.0",
|
|
66
66
|
"@sjcrh/proteinpaint-rust": "2.133.0",
|
|
67
|
-
"@sjcrh/proteinpaint-shared": "2.
|
|
68
|
-
"@sjcrh/proteinpaint-types": "2.133.
|
|
67
|
+
"@sjcrh/proteinpaint-shared": "2.133.5",
|
|
68
|
+
"@sjcrh/proteinpaint-types": "2.133.5",
|
|
69
69
|
"@types/express": "^5.0.0",
|
|
70
70
|
"@types/express-session": "^1.18.1",
|
|
71
71
|
"better-sqlite3": "^9.4.1",
|
package/routes/wsimages.js
CHANGED
|
@@ -3,7 +3,6 @@ import qs from "qs";
|
|
|
3
3
|
import path from "path";
|
|
4
4
|
import { CookieJar } from "tough-cookie";
|
|
5
5
|
import { promisify } from "util";
|
|
6
|
-
import { PredictionOverlayType } from "#types";
|
|
7
6
|
import { wsImagesPayload } from "#types/checkers";
|
|
8
7
|
import SessionManager from "../src/wsisessions/SessionManager.ts";
|
|
9
8
|
import { ShardManager } from "#src/sharding/ShardManager.ts";
|
|
@@ -121,7 +120,7 @@ async function getSessionId(ds, sampleId, cookieJar, getCookieString, setCookie,
|
|
|
121
120
|
}).json();
|
|
122
121
|
const overlay = {
|
|
123
122
|
layerNumber,
|
|
124
|
-
predictionOverlayType:
|
|
123
|
+
predictionOverlayType: "Prediction"
|
|
125
124
|
};
|
|
126
125
|
overlays.push(overlay);
|
|
127
126
|
}
|
|
@@ -148,7 +147,7 @@ async function getSessionId(ds, sampleId, cookieJar, getCookieString, setCookie,
|
|
|
148
147
|
}).json();
|
|
149
148
|
const overlay = {
|
|
150
149
|
layerNumber,
|
|
151
|
-
predictionOverlayType:
|
|
150
|
+
predictionOverlayType: "Uncertainty"
|
|
152
151
|
};
|
|
153
152
|
overlays.push(overlay);
|
|
154
153
|
}
|