@molgenis/vip-report-template 5.3.0 → 5.4.1
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/.travis.yml
CHANGED
|
@@ -12,7 +12,8 @@ cache:
|
|
|
12
12
|
directories:
|
|
13
13
|
- "~/.pnpm-store"
|
|
14
14
|
before_install:
|
|
15
|
-
-
|
|
15
|
+
- corepack enable
|
|
16
|
+
- corepack prepare pnpm@latest-8 --activate
|
|
16
17
|
- pnpm config set store-dir ~/.pnpm-store
|
|
17
18
|
install:
|
|
18
19
|
- pnpm install
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@molgenis/vip-report-template",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.4.1",
|
|
4
4
|
"description": "Report Template for Variant Call Format (VCF) Report Generator",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "vite build",
|
|
@@ -15,33 +15,33 @@
|
|
|
15
15
|
},
|
|
16
16
|
"license": "LGPL-3.0",
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@molgenis/vite-plugin-inline": "^1.0.
|
|
19
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
20
|
-
"@typescript-eslint/parser": "^5.
|
|
21
|
-
"@vitest/coverage-
|
|
18
|
+
"@molgenis/vite-plugin-inline": "^1.0.13",
|
|
19
|
+
"@typescript-eslint/eslint-plugin": "^5.61.0",
|
|
20
|
+
"@typescript-eslint/parser": "^5.61.0",
|
|
21
|
+
"@vitest/coverage-v8": "^0.32.4",
|
|
22
22
|
"bulma": "^0.9.4",
|
|
23
|
-
"eslint": "^8.
|
|
23
|
+
"eslint": "^8.44.0",
|
|
24
24
|
"eslint-config-prettier": "^8.8.0",
|
|
25
25
|
"eslint-plugin-prettier": "^4.2.1",
|
|
26
26
|
"eslint-plugin-solid": "^0.12.1",
|
|
27
27
|
"husky": "^8.0.3",
|
|
28
|
-
"jsdom": "^
|
|
29
|
-
"prettier": "^2.8.
|
|
30
|
-
"sass": "^1.
|
|
31
|
-
"typescript": "^5.
|
|
32
|
-
"vite": "^4.
|
|
28
|
+
"jsdom": "^22.1.0",
|
|
29
|
+
"prettier": "^2.8.8",
|
|
30
|
+
"sass": "^1.63.6",
|
|
31
|
+
"typescript": "^5.1.6",
|
|
32
|
+
"vite": "^4.4.0",
|
|
33
33
|
"vite-plugin-solid": "^2.7.0",
|
|
34
|
-
"vitest": "^0.
|
|
34
|
+
"vitest": "^0.32.4"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@fortawesome/fontawesome-svg-core": "^6.4.0",
|
|
38
38
|
"@fortawesome/free-solid-svg-icons": "^6.4.0",
|
|
39
|
-
"@molgenis/vip-report-api": "^4.
|
|
40
|
-
"@molgenis/vip-report-vcf": "^1.
|
|
39
|
+
"@molgenis/vip-report-api": "^4.4.1",
|
|
40
|
+
"@molgenis/vip-report-vcf": "^1.4.1",
|
|
41
41
|
"@solidjs/router": "^0.8.2",
|
|
42
42
|
"base64-js": "^1.5.1",
|
|
43
|
-
"igv": "^2.15.
|
|
44
|
-
"solid-js": "^1.7.
|
|
43
|
+
"igv": "^2.15.8",
|
|
44
|
+
"solid-js": "^1.7.7"
|
|
45
45
|
},
|
|
46
46
|
"lint-staged": {
|
|
47
47
|
"src/**/*.{tsx,ts}": [
|
|
@@ -23,6 +23,12 @@ export const FilterIntegerVid: Component<FilterProps> = (props) => {
|
|
|
23
23
|
<div class="control">
|
|
24
24
|
<Checkbox
|
|
25
25
|
label="Inheritance: de novo"
|
|
26
|
+
desc="Inheritance De Novo:
|
|
27
|
+
On autosomes:
|
|
28
|
+
- available parents do not have the variant, or genotype is missing.
|
|
29
|
+
On the X chromosome:
|
|
30
|
+
- Female proband: same as autosomes.
|
|
31
|
+
- Male proband: Mother does not have the variant, or mother genotype missing."
|
|
26
32
|
checked={props.query && props.query.args === 1}
|
|
27
33
|
onChange={onFilterChange}
|
|
28
34
|
/>
|