@jbrowse/react-app2 3.2.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/LICENSE +201 -0
- package/dist/JBrowseApp/AppReExport.d.ts +1 -0
- package/dist/JBrowseApp/AppReExport.js +5 -0
- package/dist/JBrowseApp/JBrowseApp.d.ts +5 -0
- package/dist/JBrowseApp/JBrowseApp.js +55 -0
- package/dist/JBrowseApp/index.d.ts +1 -0
- package/dist/JBrowseApp/index.js +8 -0
- package/dist/components/AboutDialog.d.ts +1 -0
- package/dist/components/AboutDialog.js +5 -0
- package/dist/components/PreferencesDialog.d.ts +14 -0
- package/dist/components/PreferencesDialog.js +21 -0
- package/dist/corePlugins.d.ts +3 -0
- package/dist/corePlugins.js +64 -0
- package/dist/createModel.d.ts +581 -0
- package/dist/createModel.js +26 -0
- package/dist/createViewState.d.ts +1769 -0
- package/dist/createViewState.js +23 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +14 -0
- package/dist/jbrowseModel.d.ts +139 -0
- package/dist/jbrowseModel.js +7 -0
- package/dist/loadPlugins.d.ts +12 -0
- package/dist/loadPlugins.js +12 -0
- package/dist/react-app.umd.production.min.js +185 -0
- package/dist/react-app.umd.production.min.js.LICENSE.txt +198 -0
- package/dist/react-app.umd.production.min.js.map +1 -0
- package/dist/rootModel/rootModel.d.ts +596 -0
- package/dist/rootModel/rootModel.js +166 -0
- package/dist/rootModel/rootModel.test.d.ts +1 -0
- package/dist/rootModel/rootModel.test.js +140 -0
- package/dist/rpcWorker.d.ts +2 -0
- package/dist/rpcWorker.js +49 -0
- package/dist/sessionModel/index.d.ts +2003 -0
- package/dist/sessionModel/index.js +10 -0
- package/dist/util.d.ts +5 -0
- package/dist/util.js +119 -0
- package/dist/version.d.ts +1 -0
- package/dist/version.js +4 -0
- package/dist/webpack.d.ts +7 -0
- package/dist/webpack.js +53 -0
- package/dist/workerPolyfill.d.ts +0 -0
- package/dist/workerPolyfill.js +32 -0
- package/esm/JBrowseApp/AppReExport.d.ts +1 -0
- package/esm/JBrowseApp/AppReExport.js +1 -0
- package/esm/JBrowseApp/JBrowseApp.d.ts +5 -0
- package/esm/JBrowseApp/JBrowseApp.js +20 -0
- package/esm/JBrowseApp/index.d.ts +1 -0
- package/esm/JBrowseApp/index.js +1 -0
- package/esm/components/AboutDialog.d.ts +1 -0
- package/esm/components/AboutDialog.js +1 -0
- package/esm/components/PreferencesDialog.d.ts +14 -0
- package/esm/components/PreferencesDialog.js +19 -0
- package/esm/corePlugins.d.ts +3 -0
- package/esm/corePlugins.js +59 -0
- package/esm/createModel.d.ts +581 -0
- package/esm/createModel.js +20 -0
- package/esm/createViewState.d.ts +1769 -0
- package/esm/createViewState.js +17 -0
- package/esm/index.d.ts +4 -0
- package/esm/index.js +4 -0
- package/esm/jbrowseModel.d.ts +139 -0
- package/esm/jbrowseModel.js +4 -0
- package/esm/loadPlugins.d.ts +12 -0
- package/esm/loadPlugins.js +6 -0
- package/esm/makeWorkerInstance.d.ts +1 -0
- package/esm/makeWorkerInstance.js +3 -0
- package/esm/rootModel/rootModel.d.ts +596 -0
- package/esm/rootModel/rootModel.js +160 -0
- package/esm/rpcWorker.d.ts +2 -0
- package/esm/rpcWorker.js +10 -0
- package/esm/sessionModel/index.d.ts +2003 -0
- package/esm/sessionModel/index.js +7 -0
- package/esm/util.d.ts +5 -0
- package/esm/util.js +80 -0
- package/esm/version.d.ts +1 -0
- package/esm/version.js +1 -0
- package/esm/webpack.d.ts +7 -0
- package/esm/webpack.js +7 -0
- package/esm/workerPolyfill.d.ts +0 -0
- package/esm/workerPolyfill.js +32 -0
- package/package.json +103 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.default = sessionModelFactory;
|
|
4
|
+
const web_core_1 = require("@jbrowse/web-core");
|
|
5
|
+
function sessionModelFactory({ pluginManager, assemblyConfigSchema, }) {
|
|
6
|
+
return (0, web_core_1.BaseWebSession)({ pluginManager, assemblyConfigSchema });
|
|
7
|
+
}
|
|
8
|
+
function z(x) {
|
|
9
|
+
return x;
|
|
10
|
+
}
|
package/dist/util.d.ts
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { IAnyStateTreeNode, IAnyType } from 'mobx-state-tree';
|
|
2
|
+
export declare function b64PadSuffix(b64: string): string;
|
|
3
|
+
export declare function fromUrlSafeB64(b64: string): Promise<string>;
|
|
4
|
+
export declare function toUrlSafeB64(str: string): Promise<string>;
|
|
5
|
+
export declare function filterSessionInPlace(node: IAnyStateTreeNode | undefined, type: IAnyType): void;
|
package/dist/util.js
ADDED
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.b64PadSuffix = b64PadSuffix;
|
|
37
|
+
exports.fromUrlSafeB64 = fromUrlSafeB64;
|
|
38
|
+
exports.toUrlSafeB64 = toUrlSafeB64;
|
|
39
|
+
exports.filterSessionInPlace = filterSessionInPlace;
|
|
40
|
+
const mobx_state_tree_1 = require("mobx-state-tree");
|
|
41
|
+
function b64PadSuffix(b64) {
|
|
42
|
+
let num = 0;
|
|
43
|
+
const mo = b64.length % 4;
|
|
44
|
+
switch (mo) {
|
|
45
|
+
case 3:
|
|
46
|
+
num = 1;
|
|
47
|
+
break;
|
|
48
|
+
case 2:
|
|
49
|
+
num = 2;
|
|
50
|
+
break;
|
|
51
|
+
case 0:
|
|
52
|
+
num = 0;
|
|
53
|
+
break;
|
|
54
|
+
default:
|
|
55
|
+
throw new Error('base64 not a valid length');
|
|
56
|
+
}
|
|
57
|
+
return b64 + '='.repeat(num);
|
|
58
|
+
}
|
|
59
|
+
async function fromUrlSafeB64(b64) {
|
|
60
|
+
const originalB64 = b64PadSuffix(b64.replaceAll('-', '+').replaceAll('_', '/'));
|
|
61
|
+
const { toByteArray } = await Promise.resolve().then(() => __importStar(require('base64-js')));
|
|
62
|
+
const { inflate } = await Promise.resolve().then(() => __importStar(require('pako')));
|
|
63
|
+
const bytes = toByteArray(originalB64);
|
|
64
|
+
const inflated = inflate(bytes);
|
|
65
|
+
return new TextDecoder().decode(inflated);
|
|
66
|
+
}
|
|
67
|
+
async function toUrlSafeB64(str) {
|
|
68
|
+
const bytes = new TextEncoder().encode(str);
|
|
69
|
+
const { deflate } = await Promise.resolve().then(() => __importStar(require('pako')));
|
|
70
|
+
const { fromByteArray } = await Promise.resolve().then(() => __importStar(require('base64-js')));
|
|
71
|
+
const deflated = deflate(bytes);
|
|
72
|
+
const encoded = fromByteArray(deflated);
|
|
73
|
+
const pos = encoded.indexOf('=');
|
|
74
|
+
return pos > 0
|
|
75
|
+
? encoded.slice(0, pos).replaceAll('+', '-').replaceAll('/', '_')
|
|
76
|
+
: encoded.replaceAll('+', '-').replaceAll('/', '_');
|
|
77
|
+
}
|
|
78
|
+
function filterSessionInPlace(node, type) {
|
|
79
|
+
if (node === undefined) {
|
|
80
|
+
return;
|
|
81
|
+
}
|
|
82
|
+
if ((0, mobx_state_tree_1.isArrayType)(type)) {
|
|
83
|
+
const array = node;
|
|
84
|
+
const childType = (0, mobx_state_tree_1.getChildType)(node);
|
|
85
|
+
if ((0, mobx_state_tree_1.isReferenceType)(childType)) {
|
|
86
|
+
for (let i = 0; i < array.length;) {
|
|
87
|
+
if (!(0, mobx_state_tree_1.isValidReference)(() => array[i])) {
|
|
88
|
+
array.splice(i, 1);
|
|
89
|
+
}
|
|
90
|
+
else {
|
|
91
|
+
i += 1;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
for (const el of array) {
|
|
96
|
+
filterSessionInPlace(el, childType);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
else if ((0, mobx_state_tree_1.isMapType)(type)) {
|
|
100
|
+
const map = node;
|
|
101
|
+
const childType = (0, mobx_state_tree_1.getChildType)(map);
|
|
102
|
+
if ((0, mobx_state_tree_1.isReferenceType)(childType)) {
|
|
103
|
+
for (const key in map.keys()) {
|
|
104
|
+
if (!(0, mobx_state_tree_1.isValidReference)(() => map.get(key))) {
|
|
105
|
+
map.delete(key);
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
for (const child of map) {
|
|
110
|
+
filterSessionInPlace(child, childType);
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
else if ((0, mobx_state_tree_1.isModelType)(type)) {
|
|
114
|
+
const { properties } = (0, mobx_state_tree_1.getPropertyMembers)(node);
|
|
115
|
+
for (const [pname, ptype] of Object.entries(properties)) {
|
|
116
|
+
filterSessionInPlace(node[pname], ptype);
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const version: "3.2.0";
|
package/dist/version.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
export { default as JBrowseApp } from './JBrowseApp';
|
|
3
|
+
export { default as createModel } from './createModel';
|
|
4
|
+
export { default as createViewState } from './createViewState';
|
|
5
|
+
export { default as loadPlugins } from './loadPlugins';
|
|
6
|
+
export * from 'react-dom/client';
|
|
7
|
+
export { React };
|
package/dist/webpack.js
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
36
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
37
|
+
};
|
|
38
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
39
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
40
|
+
};
|
|
41
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
42
|
+
exports.React = exports.loadPlugins = exports.createViewState = exports.createModel = exports.JBrowseApp = void 0;
|
|
43
|
+
const React = __importStar(require("react"));
|
|
44
|
+
exports.React = React;
|
|
45
|
+
var JBrowseApp_1 = require("./JBrowseApp");
|
|
46
|
+
Object.defineProperty(exports, "JBrowseApp", { enumerable: true, get: function () { return __importDefault(JBrowseApp_1).default; } });
|
|
47
|
+
var createModel_1 = require("./createModel");
|
|
48
|
+
Object.defineProperty(exports, "createModel", { enumerable: true, get: function () { return __importDefault(createModel_1).default; } });
|
|
49
|
+
var createViewState_1 = require("./createViewState");
|
|
50
|
+
Object.defineProperty(exports, "createViewState", { enumerable: true, get: function () { return __importDefault(createViewState_1).default; } });
|
|
51
|
+
var loadPlugins_1 = require("./loadPlugins");
|
|
52
|
+
Object.defineProperty(exports, "loadPlugins", { enumerable: true, get: function () { return __importDefault(loadPlugins_1).default; } });
|
|
53
|
+
__exportStar(require("react-dom/client"), exports);
|
|
File without changes
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
self.window = {
|
|
3
|
+
addEventListener() { },
|
|
4
|
+
fetch: self.fetch.bind(self),
|
|
5
|
+
location: self.location,
|
|
6
|
+
Date: self.Date,
|
|
7
|
+
requestIdleCallback: cb => {
|
|
8
|
+
cb();
|
|
9
|
+
},
|
|
10
|
+
cancelIdleCallback: () => { },
|
|
11
|
+
requestAnimationFrame: cb => {
|
|
12
|
+
cb();
|
|
13
|
+
},
|
|
14
|
+
cancelAnimationFrame: () => { },
|
|
15
|
+
navigator: {},
|
|
16
|
+
};
|
|
17
|
+
self.document = {
|
|
18
|
+
createTextNode() { },
|
|
19
|
+
querySelector() {
|
|
20
|
+
return { appendChild() { } };
|
|
21
|
+
},
|
|
22
|
+
documentElement: {},
|
|
23
|
+
querySelectorAll: () => [],
|
|
24
|
+
createElement() {
|
|
25
|
+
return {
|
|
26
|
+
style: {},
|
|
27
|
+
setAttribute() { },
|
|
28
|
+
removeAttribute() { },
|
|
29
|
+
appendChild() { },
|
|
30
|
+
};
|
|
31
|
+
},
|
|
32
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { App as default } from '@jbrowse/app-core';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { App as default } from '@jbrowse/app-core';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { Suspense, lazy } from 'react';
|
|
3
|
+
import { getConf } from '@jbrowse/core/configuration';
|
|
4
|
+
import { LoadingEllipses, createJBrowseTheme } from '@jbrowse/core/ui';
|
|
5
|
+
import { ScopedCssBaseline, ThemeProvider } from '@mui/material';
|
|
6
|
+
import { observer } from 'mobx-react';
|
|
7
|
+
import { makeStyles } from 'tss-react/mui';
|
|
8
|
+
const App = lazy(() => import('./AppReExport'));
|
|
9
|
+
const useStyles = makeStyles()({
|
|
10
|
+
avoidParentStyle: {
|
|
11
|
+
all: 'initial',
|
|
12
|
+
},
|
|
13
|
+
});
|
|
14
|
+
const JBrowseApp = observer(function ({ viewState }) {
|
|
15
|
+
const { classes } = useStyles();
|
|
16
|
+
const session = viewState.session;
|
|
17
|
+
const theme = createJBrowseTheme(getConf(viewState.jbrowse, 'theme'));
|
|
18
|
+
return (_jsx(ThemeProvider, { theme: theme, children: _jsx("div", { className: classes.avoidParentStyle, children: _jsx(ScopedCssBaseline, { children: _jsx(Suspense, { fallback: _jsx(LoadingEllipses, {}), children: _jsx(App, { session: session }) }) }) }) }));
|
|
19
|
+
});
|
|
20
|
+
export default JBrowseApp;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './JBrowseApp';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './JBrowseApp';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { AboutDialog as default } from '@jbrowse/product-core';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { AboutDialog as default } from '@jbrowse/product-core';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { ThemeOptions } from '@mui/material';
|
|
2
|
+
declare const PreferencesDialog: ({ handleClose, session, }: {
|
|
3
|
+
handleClose: () => void;
|
|
4
|
+
session: {
|
|
5
|
+
allThemes: () => Record<string, ThemeOptions & {
|
|
6
|
+
name?: string;
|
|
7
|
+
}>;
|
|
8
|
+
themeName?: string;
|
|
9
|
+
stickyViewHeaders: boolean;
|
|
10
|
+
setStickyViewHeaders(sticky: boolean): void;
|
|
11
|
+
setThemeName: (arg: string) => void;
|
|
12
|
+
};
|
|
13
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export default PreferencesDialog;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { Dialog } from '@jbrowse/core/ui';
|
|
3
|
+
import { Button, Checkbox, DialogActions, DialogContent, FormControlLabel, FormGroup, MenuItem, TextField, } from '@mui/material';
|
|
4
|
+
import { observer } from 'mobx-react';
|
|
5
|
+
import { makeStyles } from 'tss-react/mui';
|
|
6
|
+
const useStyles = makeStyles()(() => ({
|
|
7
|
+
container: {
|
|
8
|
+
width: 800,
|
|
9
|
+
},
|
|
10
|
+
}));
|
|
11
|
+
const PreferencesDialog = observer(function ({ handleClose, session, }) {
|
|
12
|
+
const { classes } = useStyles();
|
|
13
|
+
return (_jsxs(Dialog, { title: "Preferences", open: true, onClose: handleClose, maxWidth: "xl", children: [_jsxs(DialogContent, { className: classes.container, children: [_jsx(TextField, { select: true, label: "Theme", value: session.themeName, onChange: event => {
|
|
14
|
+
session.setThemeName(event.target.value);
|
|
15
|
+
}, children: Object.entries(session.allThemes()).map(([key, val]) => (_jsx(MenuItem, { value: key, children: val.name || '(Unknown name)' }, key))) }), _jsx(FormGroup, { children: _jsx(FormControlLabel, { control: _jsx(Checkbox, { checked: session.stickyViewHeaders }), onChange: (_, checked) => {
|
|
16
|
+
session.setStickyViewHeaders(checked);
|
|
17
|
+
}, label: "Keep view header visible" }) })] }), _jsx(DialogActions, { children: _jsx(Button, { onClick: handleClose, children: "Close" }) })] }));
|
|
18
|
+
});
|
|
19
|
+
export default PreferencesDialog;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import Alignments from '@jbrowse/plugin-alignments';
|
|
2
|
+
import Arc from '@jbrowse/plugin-arc';
|
|
3
|
+
import Authentication from '@jbrowse/plugin-authentication';
|
|
4
|
+
import Bed from '@jbrowse/plugin-bed';
|
|
5
|
+
import BreakpointSplitView from '@jbrowse/plugin-breakpoint-split-view';
|
|
6
|
+
import CircularView from '@jbrowse/plugin-circular-view';
|
|
7
|
+
import ComparativeAdapters from '@jbrowse/plugin-comparative-adapters';
|
|
8
|
+
import Config from '@jbrowse/plugin-config';
|
|
9
|
+
import DataManagement from '@jbrowse/plugin-data-management';
|
|
10
|
+
import DotplotView from '@jbrowse/plugin-dotplot-view';
|
|
11
|
+
import GCContent from '@jbrowse/plugin-gccontent';
|
|
12
|
+
import Gff3 from '@jbrowse/plugin-gff3';
|
|
13
|
+
import GridBookmarkPlugin from '@jbrowse/plugin-grid-bookmark';
|
|
14
|
+
import GtfPlugin from '@jbrowse/plugin-gtf';
|
|
15
|
+
import HicPlugin from '@jbrowse/plugin-hic';
|
|
16
|
+
import LegacyJBrowse from '@jbrowse/plugin-legacy-jbrowse';
|
|
17
|
+
import LinearComparativeView from '@jbrowse/plugin-linear-comparative-view';
|
|
18
|
+
import LinearGenomeView from '@jbrowse/plugin-linear-genome-view';
|
|
19
|
+
import Lollipop from '@jbrowse/plugin-lollipop';
|
|
20
|
+
import Menus from '@jbrowse/plugin-menus';
|
|
21
|
+
import RDF from '@jbrowse/plugin-rdf';
|
|
22
|
+
import Sequence from '@jbrowse/plugin-sequence';
|
|
23
|
+
import SpreadsheetViewPlugin from '@jbrowse/plugin-spreadsheet-view';
|
|
24
|
+
import SvInspectorPlugin from '@jbrowse/plugin-sv-inspector';
|
|
25
|
+
import SVG from '@jbrowse/plugin-svg';
|
|
26
|
+
import TrixPlugin from '@jbrowse/plugin-trix';
|
|
27
|
+
import Variants from '@jbrowse/plugin-variants';
|
|
28
|
+
import Wiggle from '@jbrowse/plugin-wiggle';
|
|
29
|
+
const corePlugins = [
|
|
30
|
+
SVG,
|
|
31
|
+
LinearGenomeView,
|
|
32
|
+
Alignments,
|
|
33
|
+
Authentication,
|
|
34
|
+
Bed,
|
|
35
|
+
CircularView,
|
|
36
|
+
Config,
|
|
37
|
+
DataManagement,
|
|
38
|
+
DotplotView,
|
|
39
|
+
GtfPlugin,
|
|
40
|
+
Gff3,
|
|
41
|
+
LegacyJBrowse,
|
|
42
|
+
LinearComparativeView,
|
|
43
|
+
Lollipop,
|
|
44
|
+
Menus,
|
|
45
|
+
RDF,
|
|
46
|
+
Sequence,
|
|
47
|
+
Variants,
|
|
48
|
+
Wiggle,
|
|
49
|
+
GCContent,
|
|
50
|
+
SpreadsheetViewPlugin,
|
|
51
|
+
SvInspectorPlugin,
|
|
52
|
+
BreakpointSplitView,
|
|
53
|
+
HicPlugin,
|
|
54
|
+
TrixPlugin,
|
|
55
|
+
GridBookmarkPlugin,
|
|
56
|
+
ComparativeAdapters,
|
|
57
|
+
Arc,
|
|
58
|
+
];
|
|
59
|
+
export default corePlugins;
|