@galaxyproject/igv 0.0.12 → 0.0.15
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 +8 -5
- package/static/igv.xml +34 -24
- package/static/index.css +1 -1
- package/static/index.js +118 -118
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@galaxyproject/igv",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"files": [
|
|
@@ -11,16 +11,19 @@
|
|
|
11
11
|
"build": "vite build",
|
|
12
12
|
"preview": "vite preview",
|
|
13
13
|
"prettier": "prettier --config ./prettier.config.js --write './*.{js,ts,json}' 'src/**/*.{js,ts,json,css,vue}'",
|
|
14
|
-
"test": "
|
|
15
|
-
"test:
|
|
16
|
-
"test:ui": "vitest --ui"
|
|
14
|
+
"test": "npm run test:unit && npm run test:e2e",
|
|
15
|
+
"test:e2e": "npx playwright test",
|
|
16
|
+
"test:ui": "vitest --ui",
|
|
17
|
+
"test:unit": "vitest run",
|
|
18
|
+
"test:watch": "vitest --watch"
|
|
17
19
|
},
|
|
18
20
|
"devDependencies": {
|
|
21
|
+
"@playwright/test": "^1.56.0",
|
|
19
22
|
"@types/node": "^22.9.0",
|
|
20
23
|
"@vitejs/plugin-vue": "^5.0.5",
|
|
21
24
|
"@vitest/ui": "^3.0.9",
|
|
22
25
|
"autoprefixer": "^10.4.19",
|
|
23
|
-
"galaxy-charts": "^0.0.
|
|
26
|
+
"galaxy-charts": "^0.0.89",
|
|
24
27
|
"galaxy-charts-xml-parser": "^1.0.3",
|
|
25
28
|
"igv": "^3.5.0",
|
|
26
29
|
"jsdom": "^25.0.1",
|
package/static/igv.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
2
|
<!DOCTYPE visualization SYSTEM "../../visualization.dtd">
|
|
3
|
-
<visualization name="
|
|
4
|
-
<description>
|
|
3
|
+
<visualization name="Integrative Genomics Viewer" embeddable="true">
|
|
4
|
+
<description>Explore Genomic Data</description>
|
|
5
5
|
<data_sources>
|
|
6
6
|
<data_source>
|
|
7
7
|
<model_class>HistoryDatasetAssociation</model_class>
|
|
@@ -27,19 +27,37 @@
|
|
|
27
27
|
</params>
|
|
28
28
|
<entry_point entry_point_type="script" src="index.js" css="index.css" />
|
|
29
29
|
<settings>
|
|
30
|
+
<input>
|
|
31
|
+
<label>Locus</label>
|
|
32
|
+
<help>Select a gene locus e.g. chr1:1-100.</help>
|
|
33
|
+
<name>locus</name>
|
|
34
|
+
<type>text</type>
|
|
35
|
+
<deferred>true</deferred>
|
|
36
|
+
<value>all</value>
|
|
37
|
+
</input>
|
|
30
38
|
<input>
|
|
31
39
|
<label>Source</label>
|
|
32
|
-
<help>
|
|
40
|
+
<help>Pick a genome source.</help>
|
|
33
41
|
<name>source</name>
|
|
34
42
|
<type>conditional</type>
|
|
35
43
|
<test_param>
|
|
36
|
-
<name>
|
|
37
|
-
<type>
|
|
38
|
-
<value>
|
|
44
|
+
<name>origin</name>
|
|
45
|
+
<type>select</type>
|
|
46
|
+
<value>igv</value>
|
|
47
|
+
<data>
|
|
48
|
+
<data>
|
|
49
|
+
<label>IGV Remote Genome</label>
|
|
50
|
+
<value>igv</value>
|
|
51
|
+
</data>
|
|
52
|
+
<data>
|
|
53
|
+
<label>Galaxy Reference Genome</label>
|
|
54
|
+
<value>builtin</value>
|
|
55
|
+
</data>
|
|
56
|
+
</data>
|
|
39
57
|
</test_param>
|
|
40
58
|
<cases>
|
|
41
59
|
<cases>
|
|
42
|
-
<value>
|
|
60
|
+
<value>builtin</value>
|
|
43
61
|
<inputs>
|
|
44
62
|
<inputs>
|
|
45
63
|
<label>Genome</label>
|
|
@@ -54,7 +72,7 @@
|
|
|
54
72
|
</inputs>
|
|
55
73
|
</cases>
|
|
56
74
|
<cases>
|
|
57
|
-
<value>
|
|
75
|
+
<value>igv</value>
|
|
58
76
|
<inputs>
|
|
59
77
|
<inputs>
|
|
60
78
|
<label>Genome</label>
|
|
@@ -67,26 +85,11 @@
|
|
|
67
85
|
</cases>
|
|
68
86
|
</cases>
|
|
69
87
|
</input>
|
|
70
|
-
<input>
|
|
71
|
-
<label>Locus</label>
|
|
72
|
-
<help>Select a gene locus e.g. chr1:1-100.</help>
|
|
73
|
-
<name>locus</name>
|
|
74
|
-
<type>text</type>
|
|
75
|
-
<deferred>true</deferred>
|
|
76
|
-
<value>all</value>
|
|
77
|
-
</input>
|
|
78
88
|
</settings>
|
|
79
89
|
<tracks>
|
|
80
|
-
<input>
|
|
81
|
-
<label>Name</label>
|
|
82
|
-
<help>Specify a track name.</help>
|
|
83
|
-
<name>name</name>
|
|
84
|
-
<type>text</type>
|
|
85
|
-
<value>Track</value>
|
|
86
|
-
</input>
|
|
87
90
|
<input>
|
|
88
91
|
<label>Dataset</label>
|
|
89
|
-
<help>Select a track dataset.</help>
|
|
92
|
+
<help>Select or drag and drop a track dataset from your history.</help>
|
|
90
93
|
<name>urlDataset</name>
|
|
91
94
|
<type>data</type>
|
|
92
95
|
</input>
|
|
@@ -123,6 +126,13 @@
|
|
|
123
126
|
<data><label>Expanded</label><value>EXPANDED</value></data>
|
|
124
127
|
</data>
|
|
125
128
|
</input>
|
|
129
|
+
<input>
|
|
130
|
+
<label>Name</label>
|
|
131
|
+
<help>Specify a track name.</help>
|
|
132
|
+
<name>name</name>
|
|
133
|
+
<type>text</type>
|
|
134
|
+
<value></value>
|
|
135
|
+
</input>
|
|
126
136
|
<input>
|
|
127
137
|
<label>Color</label>
|
|
128
138
|
<help>Pick a color.</help>
|
package/static/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html,:host{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }.container{width:100%}@media (min-width: 640px){.container{max-width:640px}}@media (min-width: 768px){.container{max-width:768px}}@media (min-width: 1024px){.container{max-width:1024px}}@media (min-width: 1280px){.container{max-width:1280px}}@media (min-width: 1536px){.container{max-width:1536px}}.pointer-events-none{pointer-events:none}.absolute{position:absolute}.inset-2{top:.5rem;right:.5rem;bottom:.5rem;left:.5rem}.z-256{z-index:256}.mt-1{margin-top:.25rem}.flex{display:flex}.table{display:table}.h-screen{height:100vh}.items-center{align-items:center}.justify-center{justify-content:center}.overflow-auto{overflow:auto}.rounded{border-radius:.25rem}.border{border-width:1px}.border-4{border-width:4px}.border-dashed{border-style:dashed}.border-sky-200{--tw-border-opacity: 1;border-color:rgb(186 230 253 / var(--tw-border-opacity))}.border-sky-600{--tw-border-opacity: 1;border-color:rgb(2 132 199 / var(--tw-border-opacity))}.bg-sky-100{--tw-bg-opacity: 1;background-color:rgb(224 242 254 / var(--tw-bg-opacity))}.bg-sky-200{--tw-bg-opacity: 1;background-color:rgb(186 230 253 / var(--tw-bg-opacity))}.bg-opacity-80{--tw-bg-opacity: .8}.p-2{padding:.5rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.font-semibold{font-weight:600}.text-sky-600{--tw-text-opacity: 1;color:rgb(2 132 199 / var(--tw-text-opacity))}.text-sky-800{--tw-text-opacity: 1;color:rgb(7 89 133 / var(--tw-text-opacity))}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}
|