@jbrowse/plugin-linear-comparative-view 3.2.0 → 3.3.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/dist/LinearComparativeView/model.d.ts +2 -0
- package/dist/LinearSyntenyView/components/ImportForm/ImportSyntenyOpenCustomTrack.js +2 -2
- package/dist/LinearSyntenyView/model.d.ts +2 -0
- package/esm/LinearComparativeView/model.d.ts +2 -0
- package/esm/LinearSyntenyView/components/ImportForm/ImportSyntenyOpenCustomTrack.js +3 -3
- package/esm/LinearSyntenyView/model.d.ts +2 -0
- package/package.json +7 -7
|
@@ -193,6 +193,7 @@ declare function stateModelFactory(pluginManager: PluginManager): import("mobx-s
|
|
|
193
193
|
input: string;
|
|
194
194
|
assembly: import("@jbrowse/core/assemblyManager/assembly").Assembly;
|
|
195
195
|
}): Promise<void>;
|
|
196
|
+
navToLocation(parsedLocString: import("@jbrowse/core/util").ParsedLocString, assemblyName?: string): Promise<void>;
|
|
196
197
|
navToLocations(parsedLocStrings: import("@jbrowse/core/util").ParsedLocString[], assemblyName?: string): Promise<void>;
|
|
197
198
|
navTo(query: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView/types").NavLocation): void;
|
|
198
199
|
navToMultiple(locations: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView/types").NavLocation[]): void;
|
|
@@ -507,6 +508,7 @@ declare function stateModelFactory(pluginManager: PluginManager): import("mobx-s
|
|
|
507
508
|
input: string;
|
|
508
509
|
assembly: import("@jbrowse/core/assemblyManager/assembly").Assembly;
|
|
509
510
|
}): Promise<void>;
|
|
511
|
+
navToLocation(parsedLocString: import("@jbrowse/core/util").ParsedLocString, assemblyName?: string): Promise<void>;
|
|
510
512
|
navToLocations(parsedLocStrings: import("@jbrowse/core/util").ParsedLocString[], assemblyName?: string): Promise<void>;
|
|
511
513
|
navTo(query: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView/types").NavLocation): void;
|
|
512
514
|
navToMultiple(locations: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView/types").NavLocation[]): void;
|
|
@@ -73,7 +73,7 @@ const ImportSyntenyOpenCustomTrack = (0, mobx_react_1.observer)(function ({ mode
|
|
|
73
73
|
};
|
|
74
74
|
return ((0, jsx_runtime_1.jsxs)(material_1.Paper, { style: { padding: 12 }, children: [error ? (0, jsx_runtime_1.jsx)(ui_1.ErrorMessage, { error: error }) : null, (0, jsx_runtime_1.jsx)(material_1.Typography, { style: { textAlign: 'center' }, children: "Add a .paf (minimap2), .delta (Mummer), .chain (UCSC liftover), .anchors or .anchors.simple (MCScan), or .pif.gz (jbrowse CLI make-pif) file to view. These file types can also be gzipped." }), (0, jsx_runtime_1.jsx)(material_1.RadioGroup, { value: radioOption, onChange: event => {
|
|
75
75
|
setValue(event.target.value);
|
|
76
|
-
}, children: (0, jsx_runtime_1.jsx)(material_1.
|
|
76
|
+
}, children: (0, jsx_runtime_1.jsx)(material_1.Grid, { container: true, justifyContent: "center", children: [
|
|
77
77
|
'.paf',
|
|
78
78
|
'.delta',
|
|
79
79
|
'.out',
|
|
@@ -81,7 +81,7 @@ const ImportSyntenyOpenCustomTrack = (0, mobx_react_1.observer)(function ({ mode
|
|
|
81
81
|
'.anchors',
|
|
82
82
|
'.anchors.simple',
|
|
83
83
|
'.pif.gz',
|
|
84
|
-
].map(extension => ((0, jsx_runtime_1.jsx)(material_1.FormControlLabel, { value: extension, control: (0, jsx_runtime_1.jsx)(material_1.Radio, {}), label: extension }, extension))) }) }), (0, jsx_runtime_1.jsx)(material_1.
|
|
84
|
+
].map(extension => ((0, jsx_runtime_1.jsx)(material_1.FormControlLabel, { value: extension, control: (0, jsx_runtime_1.jsx)(material_1.Radio, {}), label: extension }, extension))) }) }), (0, jsx_runtime_1.jsx)(material_1.Grid, { container: true, justifyContent: "center", children: radioOption === '.paf' ||
|
|
85
85
|
radioOption === '.out' ||
|
|
86
86
|
radioOption === '.delta' ||
|
|
87
87
|
radioOption === '.chain' ||
|
|
@@ -210,6 +210,7 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
210
210
|
input: string;
|
|
211
211
|
assembly: import("@jbrowse/core/assemblyManager/assembly").Assembly;
|
|
212
212
|
}): Promise<void>;
|
|
213
|
+
navToLocation(parsedLocString: import("@jbrowse/core/util").ParsedLocString, assemblyName?: string): Promise<void>;
|
|
213
214
|
navToLocations(parsedLocStrings: import("@jbrowse/core/util").ParsedLocString[], assemblyName?: string): Promise<void>;
|
|
214
215
|
navTo(query: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView/types").NavLocation): void;
|
|
215
216
|
navToMultiple(locations: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView/types").NavLocation[]): void;
|
|
@@ -591,6 +592,7 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
591
592
|
input: string;
|
|
592
593
|
assembly: import("@jbrowse/core/assemblyManager/assembly").Assembly;
|
|
593
594
|
}): Promise<void>;
|
|
595
|
+
navToLocation(parsedLocString: import("@jbrowse/core/util").ParsedLocString, assemblyName?: string): Promise<void>;
|
|
594
596
|
navToLocations(parsedLocStrings: import("@jbrowse/core/util").ParsedLocString[], assemblyName?: string): Promise<void>;
|
|
595
597
|
navTo(query: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView/types").NavLocation): void;
|
|
596
598
|
navToMultiple(locations: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView/types").NavLocation[]): void;
|
|
@@ -193,6 +193,7 @@ declare function stateModelFactory(pluginManager: PluginManager): import("mobx-s
|
|
|
193
193
|
input: string;
|
|
194
194
|
assembly: import("@jbrowse/core/assemblyManager/assembly").Assembly;
|
|
195
195
|
}): Promise<void>;
|
|
196
|
+
navToLocation(parsedLocString: import("@jbrowse/core/util").ParsedLocString, assemblyName?: string): Promise<void>;
|
|
196
197
|
navToLocations(parsedLocStrings: import("@jbrowse/core/util").ParsedLocString[], assemblyName?: string): Promise<void>;
|
|
197
198
|
navTo(query: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView/types").NavLocation): void;
|
|
198
199
|
navToMultiple(locations: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView/types").NavLocation[]): void;
|
|
@@ -507,6 +508,7 @@ declare function stateModelFactory(pluginManager: PluginManager): import("mobx-s
|
|
|
507
508
|
input: string;
|
|
508
509
|
assembly: import("@jbrowse/core/assemblyManager/assembly").Assembly;
|
|
509
510
|
}): Promise<void>;
|
|
511
|
+
navToLocation(parsedLocString: import("@jbrowse/core/util").ParsedLocString, assemblyName?: string): Promise<void>;
|
|
510
512
|
navToLocations(parsedLocStrings: import("@jbrowse/core/util").ParsedLocString[], assemblyName?: string): Promise<void>;
|
|
511
513
|
navTo(query: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView/types").NavLocation): void;
|
|
512
514
|
navToMultiple(locations: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView/types").NavLocation[]): void;
|
|
@@ -2,7 +2,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
2
2
|
import { useEffect, useState } from 'react';
|
|
3
3
|
import { ErrorMessage, FileSelector } from '@jbrowse/core/ui';
|
|
4
4
|
import HelpIcon from '@mui/icons-material/Help';
|
|
5
|
-
import { Button, FormControlLabel,
|
|
5
|
+
import { Button, FormControlLabel, Grid, Paper, Radio, RadioGroup, Tooltip, Typography, } from '@mui/material';
|
|
6
6
|
import { observer } from 'mobx-react';
|
|
7
7
|
import { getAdapter } from './getAdapter';
|
|
8
8
|
import { basename, extName, getName, stripGz } from './util';
|
|
@@ -68,7 +68,7 @@ const ImportSyntenyOpenCustomTrack = observer(function ({ model, assembly1, asse
|
|
|
68
68
|
};
|
|
69
69
|
return (_jsxs(Paper, { style: { padding: 12 }, children: [error ? _jsx(ErrorMessage, { error: error }) : null, _jsx(Typography, { style: { textAlign: 'center' }, children: "Add a .paf (minimap2), .delta (Mummer), .chain (UCSC liftover), .anchors or .anchors.simple (MCScan), or .pif.gz (jbrowse CLI make-pif) file to view. These file types can also be gzipped." }), _jsx(RadioGroup, { value: radioOption, onChange: event => {
|
|
70
70
|
setValue(event.target.value);
|
|
71
|
-
}, children: _jsx(
|
|
71
|
+
}, children: _jsx(Grid, { container: true, justifyContent: "center", children: [
|
|
72
72
|
'.paf',
|
|
73
73
|
'.delta',
|
|
74
74
|
'.out',
|
|
@@ -76,7 +76,7 @@ const ImportSyntenyOpenCustomTrack = observer(function ({ model, assembly1, asse
|
|
|
76
76
|
'.anchors',
|
|
77
77
|
'.anchors.simple',
|
|
78
78
|
'.pif.gz',
|
|
79
|
-
].map(extension => (_jsx(FormControlLabel, { value: extension, control: _jsx(Radio, {}), label: extension }, extension))) }) }), _jsx(
|
|
79
|
+
].map(extension => (_jsx(FormControlLabel, { value: extension, control: _jsx(Radio, {}), label: extension }, extension))) }) }), _jsx(Grid, { container: true, justifyContent: "center", children: radioOption === '.paf' ||
|
|
80
80
|
radioOption === '.out' ||
|
|
81
81
|
radioOption === '.delta' ||
|
|
82
82
|
radioOption === '.chain' ||
|
|
@@ -210,6 +210,7 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
210
210
|
input: string;
|
|
211
211
|
assembly: import("@jbrowse/core/assemblyManager/assembly").Assembly;
|
|
212
212
|
}): Promise<void>;
|
|
213
|
+
navToLocation(parsedLocString: import("@jbrowse/core/util").ParsedLocString, assemblyName?: string): Promise<void>;
|
|
213
214
|
navToLocations(parsedLocStrings: import("@jbrowse/core/util").ParsedLocString[], assemblyName?: string): Promise<void>;
|
|
214
215
|
navTo(query: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView/types").NavLocation): void;
|
|
215
216
|
navToMultiple(locations: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView/types").NavLocation[]): void;
|
|
@@ -591,6 +592,7 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
591
592
|
input: string;
|
|
592
593
|
assembly: import("@jbrowse/core/assemblyManager/assembly").Assembly;
|
|
593
594
|
}): Promise<void>;
|
|
595
|
+
navToLocation(parsedLocString: import("@jbrowse/core/util").ParsedLocString, assemblyName?: string): Promise<void>;
|
|
594
596
|
navToLocations(parsedLocStrings: import("@jbrowse/core/util").ParsedLocString[], assemblyName?: string): Promise<void>;
|
|
595
597
|
navTo(query: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView/types").NavLocation): void;
|
|
596
598
|
navToMultiple(locations: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView/types").NavLocation[]): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-linear-comparative-view",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"description": "JBrowse 2 linear comparative view",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
"clean": "rimraf dist esm *.tsbuildinfo"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@jbrowse/core": "^3.
|
|
40
|
-
"@jbrowse/plugin-alignments": "^3.
|
|
41
|
-
"@jbrowse/plugin-linear-genome-view": "^3.
|
|
42
|
-
"@mui/icons-material": "^
|
|
43
|
-
"@mui/material": "^
|
|
39
|
+
"@jbrowse/core": "^3.3.0",
|
|
40
|
+
"@jbrowse/plugin-alignments": "^3.3.0",
|
|
41
|
+
"@jbrowse/plugin-linear-genome-view": "^3.3.0",
|
|
42
|
+
"@mui/icons-material": "^7.0.0",
|
|
43
|
+
"@mui/material": "^7.0.0",
|
|
44
44
|
"copy-to-clipboard": "^3.3.1",
|
|
45
45
|
"file-saver": "^2.0.0",
|
|
46
46
|
"mobx": "^6.0.0",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"publishConfig": {
|
|
60
60
|
"access": "public"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "0bb64d8cc7ecdd167515308b31eec3d9acbc59e4"
|
|
63
63
|
}
|