@jbrowse/plugin-linear-comparative-view 3.0.1 → 3.0.2
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.
|
@@ -151,7 +151,7 @@ function getTooltip({ feature, cigarOp, cigarOpLen, }) {
|
|
|
151
151
|
identity ? `Identity: ${identity.toPrecision(2)}` : '',
|
|
152
152
|
cigarOp ? `CIGAR operator: ${cigarOp}${cigarOpLen}` : '',
|
|
153
153
|
n1 ? `Name 1: ${n1}` : '',
|
|
154
|
-
n2 ? `Name
|
|
154
|
+
n2 ? `Name 2: ${n2}` : '',
|
|
155
155
|
]
|
|
156
156
|
.filter(f => !!f)
|
|
157
157
|
.join('<br/>');
|
|
@@ -11,7 +11,10 @@ function configSchemaFactory(pluginManager) {
|
|
|
11
11
|
type: 'stringArray',
|
|
12
12
|
defaultValue: [],
|
|
13
13
|
},
|
|
14
|
-
middle: {
|
|
14
|
+
middle: {
|
|
15
|
+
type: 'boolean',
|
|
16
|
+
defaultValue: true,
|
|
17
|
+
},
|
|
15
18
|
}, {
|
|
16
19
|
baseConfiguration: (0, configSchemaF_1.default)(pluginManager),
|
|
17
20
|
explicitlyTyped: true,
|
|
@@ -142,7 +142,7 @@ export function getTooltip({ feature, cigarOp, cigarOpLen, }) {
|
|
|
142
142
|
identity ? `Identity: ${identity.toPrecision(2)}` : '',
|
|
143
143
|
cigarOp ? `CIGAR operator: ${cigarOp}${cigarOpLen}` : '',
|
|
144
144
|
n1 ? `Name 1: ${n1}` : '',
|
|
145
|
-
n2 ? `Name
|
|
145
|
+
n2 ? `Name 2: ${n2}` : '',
|
|
146
146
|
]
|
|
147
147
|
.filter(f => !!f)
|
|
148
148
|
.join('<br/>');
|
|
@@ -6,7 +6,10 @@ function configSchemaFactory(pluginManager) {
|
|
|
6
6
|
type: 'stringArray',
|
|
7
7
|
defaultValue: [],
|
|
8
8
|
},
|
|
9
|
-
middle: {
|
|
9
|
+
middle: {
|
|
10
|
+
type: 'boolean',
|
|
11
|
+
defaultValue: true,
|
|
12
|
+
},
|
|
10
13
|
}, {
|
|
11
14
|
baseConfiguration: baseConfigFactory(pluginManager),
|
|
12
15
|
explicitlyTyped: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-linear-comparative-view",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
4
|
"description": "JBrowse 2 linear comparative view",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
"clean": "rimraf dist esm *.tsbuildinfo"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@jbrowse/core": "^3.0.
|
|
40
|
-
"@jbrowse/plugin-alignments": "^3.0.
|
|
41
|
-
"@jbrowse/plugin-linear-genome-view": "^3.0.
|
|
39
|
+
"@jbrowse/core": "^3.0.2",
|
|
40
|
+
"@jbrowse/plugin-alignments": "^3.0.2",
|
|
41
|
+
"@jbrowse/plugin-linear-genome-view": "^3.0.2",
|
|
42
42
|
"@mui/icons-material": "^6.0.0",
|
|
43
43
|
"@mui/material": "^6.0.0",
|
|
44
44
|
"copy-to-clipboard": "^3.3.1",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"publishConfig": {
|
|
60
60
|
"access": "public"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "c01a35edcb2612e94661af8793f09c95c0b13c75"
|
|
63
63
|
}
|