@jbrowse/plugin-legacy-jbrowse 2.10.3 → 2.11.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/dist/GuessNCList/index.d.ts +1 -2
- package/dist/GuessNCList/index.js +3 -2
- package/dist/JBrowse1Connection/index.d.ts +1 -2
- package/dist/JBrowse1Connection/index.js +3 -2
- package/dist/JBrowse1Connection/jb1ConfigParse.js +3 -2
- package/dist/JBrowse1Connection/jb1ToJb2.js +6 -7
- package/dist/JBrowse1Connection/model.d.ts +1 -1
- package/dist/JBrowse1Connection/model.js +3 -3
- package/dist/JBrowse1TextSearchAdapter/index.d.ts +1 -2
- package/dist/JBrowse1TextSearchAdapter/index.js +3 -2
- package/dist/NCListAdapter/NCListFeature.js +1 -0
- package/dist/NCListAdapter/index.d.ts +1 -2
- package/dist/NCListAdapter/index.js +3 -2
- package/esm/GuessNCList/index.d.ts +1 -2
- package/esm/GuessNCList/index.js +2 -2
- package/esm/JBrowse1Connection/index.d.ts +1 -2
- package/esm/JBrowse1Connection/index.js +2 -2
- package/esm/JBrowse1Connection/jb1ConfigParse.js +3 -2
- package/esm/JBrowse1Connection/jb1ToJb2.js +6 -7
- package/esm/JBrowse1Connection/model.d.ts +1 -1
- package/esm/JBrowse1Connection/model.js +2 -2
- package/esm/JBrowse1TextSearchAdapter/index.d.ts +1 -2
- package/esm/JBrowse1TextSearchAdapter/index.js +2 -2
- package/esm/NCListAdapter/NCListFeature.js +1 -0
- package/esm/NCListAdapter/index.d.ts +1 -2
- package/esm/NCListAdapter/index.js +2 -2
- package/package.json +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tracks_1 = require("@jbrowse/core/util/tracks");
|
|
4
|
-
|
|
4
|
+
function GuessNCListF(pluginManager) {
|
|
5
5
|
pluginManager.addToExtensionPoint('Core-guessAdapterForLocation', (adapterGuesser) => {
|
|
6
6
|
return (file, index, adapterHint) => {
|
|
7
7
|
const regexGuess = /trackData.jsonz?$/i;
|
|
@@ -16,4 +16,5 @@ exports.default = (pluginManager) => {
|
|
|
16
16
|
return adapterGuesser(file, index, adapterHint);
|
|
17
17
|
};
|
|
18
18
|
});
|
|
19
|
-
}
|
|
19
|
+
}
|
|
20
|
+
exports.default = GuessNCListF;
|
|
@@ -7,7 +7,7 @@ const ConnectionType_1 = __importDefault(require("@jbrowse/core/pluggableElement
|
|
|
7
7
|
// locals
|
|
8
8
|
const model_1 = __importDefault(require("./model"));
|
|
9
9
|
const configSchema_1 = __importDefault(require("./configSchema"));
|
|
10
|
-
|
|
10
|
+
function JBrowse1ConnectionF(pluginManager) {
|
|
11
11
|
pluginManager.addConnectionType(() => new ConnectionType_1.default({
|
|
12
12
|
name: 'JBrowse1Connection',
|
|
13
13
|
configSchema: configSchema_1.default,
|
|
@@ -16,4 +16,5 @@ exports.default = (pluginManager) => {
|
|
|
16
16
|
description: 'A JBrowse 1 data directory',
|
|
17
17
|
url: '//jbrowse.org/',
|
|
18
18
|
}));
|
|
19
|
-
}
|
|
19
|
+
}
|
|
20
|
+
exports.default = JBrowse1ConnectionF;
|
|
@@ -293,10 +293,11 @@ function regularizeClass(root, className) {
|
|
|
293
293
|
return className;
|
|
294
294
|
}
|
|
295
295
|
function guessStoreClass(trackConfig, urlTemplate) {
|
|
296
|
+
var _a, _b;
|
|
296
297
|
if (!trackConfig) {
|
|
297
298
|
return '';
|
|
298
299
|
}
|
|
299
|
-
if (trackConfig.type
|
|
300
|
+
if ((_a = trackConfig.type) === null || _a === void 0 ? void 0 : _a.includes('/FixedImage')) {
|
|
300
301
|
return `JBrowse/Store/TiledImage/Fixed${trackConfig.backendVersion === 0 ? '_v0' : ''}`;
|
|
301
302
|
}
|
|
302
303
|
if (/\.jsonz?$/i.test(urlTemplate)) {
|
|
@@ -338,7 +339,7 @@ function guessStoreClass(trackConfig, urlTemplate) {
|
|
|
338
339
|
if (/\.2bit$/i.test(urlTemplate)) {
|
|
339
340
|
return 'JBrowse/Store/SeqFeature/TwoBit';
|
|
340
341
|
}
|
|
341
|
-
if (trackConfig.type
|
|
342
|
+
if ((_b = trackConfig.type) === null || _b === void 0 ? void 0 : _b.endsWith('/Sequence')) {
|
|
342
343
|
return 'JBrowse/Store/Sequence/StaticChunked';
|
|
343
344
|
}
|
|
344
345
|
return '';
|
|
@@ -5,7 +5,7 @@ const io_1 = require("@jbrowse/core/util/io");
|
|
|
5
5
|
const util_1 = require("@jbrowse/core/util");
|
|
6
6
|
const tracks_1 = require("@jbrowse/core/util/tracks");
|
|
7
7
|
function convertTrackConfig(jb1TrackConfig, dataRoot, sequenceAdapter) {
|
|
8
|
-
var _a;
|
|
8
|
+
var _a, _b, _c, _d, _e;
|
|
9
9
|
const jb2TrackConfig = {
|
|
10
10
|
trackId: (0, util_1.objectHash)(jb1TrackConfig),
|
|
11
11
|
name: jb1TrackConfig.key || jb1TrackConfig.label,
|
|
@@ -19,7 +19,7 @@ function convertTrackConfig(jb1TrackConfig, dataRoot, sequenceAdapter) {
|
|
|
19
19
|
jb2TrackConfig.category = category ? category.split(/\s*\/\s*/) : [];
|
|
20
20
|
const { storeClass } = jb1TrackConfig;
|
|
21
21
|
if (!jb1TrackConfig.urlTemplate) {
|
|
22
|
-
if (!(storeClass
|
|
22
|
+
if (!(storeClass === null || storeClass === void 0 ? void 0 : storeClass.endsWith('FromConfig'))) {
|
|
23
23
|
const trackIdentifier = jb1TrackConfig.key || jb1TrackConfig.label;
|
|
24
24
|
console.warn(`Could not import JBrowse1 track "${trackIdentifier}" because it does not have a "urlTemplate" or is not a "FromConfig" track`);
|
|
25
25
|
return (0, tracks_1.generateUnsupportedTrackConf)(jb2TrackConfig.name, trackIdentifier, jb2TrackConfig.category);
|
|
@@ -99,11 +99,10 @@ function convertTrackConfig(jb1TrackConfig, dataRoot, sequenceAdapter) {
|
|
|
99
99
|
}
|
|
100
100
|
if (storeClass === 'JBrowse/Store/SeqFeature/BigWig' ||
|
|
101
101
|
storeClass === 'JBrowse/Store/BigWig') {
|
|
102
|
-
if (jb1TrackConfig.type
|
|
102
|
+
if ((_b = jb1TrackConfig.type) === null || _b === void 0 ? void 0 : _b.endsWith('XYPlot')) {
|
|
103
103
|
jb2TrackConfig.defaultRendering = 'xyplot';
|
|
104
104
|
}
|
|
105
|
-
else if (jb1TrackConfig.type
|
|
106
|
-
jb1TrackConfig.type.endsWith('Density')) {
|
|
105
|
+
else if ((_c = jb1TrackConfig.type) === null || _c === void 0 ? void 0 : _c.endsWith('Density')) {
|
|
107
106
|
jb2TrackConfig.defaultRendering = 'density';
|
|
108
107
|
}
|
|
109
108
|
return {
|
|
@@ -330,10 +329,10 @@ function convertTrackConfig(jb1TrackConfig, dataRoot, sequenceAdapter) {
|
|
|
330
329
|
}
|
|
331
330
|
jb2TrackConfig.type = (0, tracks_1.guessTrackType)(jb2TrackConfig.adapter.type);
|
|
332
331
|
if (jb2TrackConfig.type === 'QuantitativeTrack') {
|
|
333
|
-
if (jb1TrackConfig.type
|
|
332
|
+
if ((_d = jb1TrackConfig.type) === null || _d === void 0 ? void 0 : _d.endsWith('XYPlot')) {
|
|
334
333
|
jb2TrackConfig.defaultRendering = 'xyplot';
|
|
335
334
|
}
|
|
336
|
-
else if (jb1TrackConfig.type
|
|
335
|
+
else if ((_e = jb1TrackConfig.type) === null || _e === void 0 ? void 0 : _e.endsWith('Density')) {
|
|
337
336
|
jb2TrackConfig.defaultRendering = 'density';
|
|
338
337
|
}
|
|
339
338
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import PluginManager from '@jbrowse/core/PluginManager';
|
|
2
|
-
export default function (pluginManager: PluginManager): import("mobx-state-tree").IModelType<{
|
|
2
|
+
export default function stateModelFactory(pluginManager: PluginManager): import("mobx-state-tree").IModelType<{
|
|
3
3
|
name: import("mobx-state-tree").ISimpleType<string>;
|
|
4
4
|
tracks: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>;
|
|
5
5
|
configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
@@ -32,7 +32,7 @@ const models_1 = require("@jbrowse/core/pluggableElementTypes/models");
|
|
|
32
32
|
const mobx_state_tree_1 = require("mobx-state-tree");
|
|
33
33
|
// locals
|
|
34
34
|
const configSchema_1 = __importDefault(require("./configSchema"));
|
|
35
|
-
function
|
|
35
|
+
function stateModelFactory(pluginManager) {
|
|
36
36
|
return mobx_state_tree_1.types
|
|
37
37
|
.compose('JBrowse1Connection', (0, models_1.BaseConnectionModelFactory)(pluginManager), mobx_state_tree_1.types.model({
|
|
38
38
|
configuration: (0, configuration_1.ConfigurationReference)(configSchema_1.default),
|
|
@@ -65,10 +65,10 @@ function default_1(pluginManager) {
|
|
|
65
65
|
}
|
|
66
66
|
catch (error) {
|
|
67
67
|
console.error(error);
|
|
68
|
-
session.
|
|
68
|
+
session.notifyError(`There was a problem connecting to the JBrowse 1 data directory "${self.name}". Please make sure you have entered a valid location. The error that was thrown is: "${error}"`, error);
|
|
69
69
|
(_b = session.breakConnection) === null || _b === void 0 ? void 0 : _b.call(session, self.configuration);
|
|
70
70
|
}
|
|
71
71
|
},
|
|
72
72
|
}));
|
|
73
73
|
}
|
|
74
|
-
exports.default =
|
|
74
|
+
exports.default = stateModelFactory;
|
|
@@ -7,11 +7,12 @@ const TextSearchAdapterType_1 = __importDefault(require("@jbrowse/core/pluggable
|
|
|
7
7
|
// locals
|
|
8
8
|
const JBrowse1TextSearchAdapter_1 = __importDefault(require("./JBrowse1TextSearchAdapter"));
|
|
9
9
|
const configSchema_1 = __importDefault(require("./configSchema"));
|
|
10
|
-
|
|
10
|
+
function JBrowse1TextSearchAdapterF(pluginManager) {
|
|
11
11
|
pluginManager.addTextSearchAdapterType(() => new TextSearchAdapterType_1.default({
|
|
12
12
|
name: 'JBrowse1TextSearchAdapter',
|
|
13
13
|
configSchema: configSchema_1.default,
|
|
14
14
|
AdapterClass: JBrowse1TextSearchAdapter_1.default,
|
|
15
15
|
description: 'A JBrowse 1 text search adapter',
|
|
16
16
|
}));
|
|
17
|
-
}
|
|
17
|
+
}
|
|
18
|
+
exports.default = JBrowse1TextSearchAdapterF;
|
|
@@ -28,11 +28,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
29
|
const pluggableElementTypes_1 = require("@jbrowse/core/pluggableElementTypes");
|
|
30
30
|
const configSchema_1 = __importDefault(require("./configSchema"));
|
|
31
|
-
|
|
31
|
+
function NCListAdapterF(pluginManager) {
|
|
32
32
|
pluginManager.addAdapterType(() => new pluggableElementTypes_1.AdapterType({
|
|
33
33
|
name: 'NCListAdapter',
|
|
34
34
|
displayName: 'NCList adapter',
|
|
35
35
|
configSchema: configSchema_1.default,
|
|
36
36
|
getAdapterClass: () => Promise.resolve().then(() => __importStar(require('./NCListAdapter'))).then(r => r.default),
|
|
37
37
|
}));
|
|
38
|
-
}
|
|
38
|
+
}
|
|
39
|
+
exports.default = NCListAdapterF;
|
package/esm/GuessNCList/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { getFileName } from '@jbrowse/core/util/tracks';
|
|
2
|
-
export default (pluginManager)
|
|
2
|
+
export default function GuessNCListF(pluginManager) {
|
|
3
3
|
pluginManager.addToExtensionPoint('Core-guessAdapterForLocation', (adapterGuesser) => {
|
|
4
4
|
return (file, index, adapterHint) => {
|
|
5
5
|
const regexGuess = /trackData.jsonz?$/i;
|
|
@@ -14,4 +14,4 @@ export default (pluginManager) => {
|
|
|
14
14
|
return adapterGuesser(file, index, adapterHint);
|
|
15
15
|
};
|
|
16
16
|
});
|
|
17
|
-
}
|
|
17
|
+
}
|
|
@@ -2,7 +2,7 @@ import ConnectionType from '@jbrowse/core/pluggableElementTypes/ConnectionType';
|
|
|
2
2
|
// locals
|
|
3
3
|
import modelFactory from './model';
|
|
4
4
|
import configSchema from './configSchema';
|
|
5
|
-
export default (pluginManager)
|
|
5
|
+
export default function JBrowse1ConnectionF(pluginManager) {
|
|
6
6
|
pluginManager.addConnectionType(() => new ConnectionType({
|
|
7
7
|
name: 'JBrowse1Connection',
|
|
8
8
|
configSchema,
|
|
@@ -11,4 +11,4 @@ export default (pluginManager) => {
|
|
|
11
11
|
description: 'A JBrowse 1 data directory',
|
|
12
12
|
url: '//jbrowse.org/',
|
|
13
13
|
}));
|
|
14
|
-
}
|
|
14
|
+
}
|
|
@@ -284,10 +284,11 @@ function regularizeClass(root, className) {
|
|
|
284
284
|
return className;
|
|
285
285
|
}
|
|
286
286
|
function guessStoreClass(trackConfig, urlTemplate) {
|
|
287
|
+
var _a, _b;
|
|
287
288
|
if (!trackConfig) {
|
|
288
289
|
return '';
|
|
289
290
|
}
|
|
290
|
-
if (trackConfig.type
|
|
291
|
+
if ((_a = trackConfig.type) === null || _a === void 0 ? void 0 : _a.includes('/FixedImage')) {
|
|
291
292
|
return `JBrowse/Store/TiledImage/Fixed${trackConfig.backendVersion === 0 ? '_v0' : ''}`;
|
|
292
293
|
}
|
|
293
294
|
if (/\.jsonz?$/i.test(urlTemplate)) {
|
|
@@ -329,7 +330,7 @@ function guessStoreClass(trackConfig, urlTemplate) {
|
|
|
329
330
|
if (/\.2bit$/i.test(urlTemplate)) {
|
|
330
331
|
return 'JBrowse/Store/SeqFeature/TwoBit';
|
|
331
332
|
}
|
|
332
|
-
if (trackConfig.type
|
|
333
|
+
if ((_b = trackConfig.type) === null || _b === void 0 ? void 0 : _b.endsWith('/Sequence')) {
|
|
333
334
|
return 'JBrowse/Store/Sequence/StaticChunked';
|
|
334
335
|
}
|
|
335
336
|
return '';
|
|
@@ -2,7 +2,7 @@ import { openLocation } from '@jbrowse/core/util/io';
|
|
|
2
2
|
import { objectHash } from '@jbrowse/core/util';
|
|
3
3
|
import { generateUnknownTrackConf, generateUnsupportedTrackConf, guessAdapter, guessTrackType, UNKNOWN, UNSUPPORTED, } from '@jbrowse/core/util/tracks';
|
|
4
4
|
export function convertTrackConfig(jb1TrackConfig, dataRoot, sequenceAdapter) {
|
|
5
|
-
var _a;
|
|
5
|
+
var _a, _b, _c, _d, _e;
|
|
6
6
|
const jb2TrackConfig = {
|
|
7
7
|
trackId: objectHash(jb1TrackConfig),
|
|
8
8
|
name: jb1TrackConfig.key || jb1TrackConfig.label,
|
|
@@ -16,7 +16,7 @@ export function convertTrackConfig(jb1TrackConfig, dataRoot, sequenceAdapter) {
|
|
|
16
16
|
jb2TrackConfig.category = category ? category.split(/\s*\/\s*/) : [];
|
|
17
17
|
const { storeClass } = jb1TrackConfig;
|
|
18
18
|
if (!jb1TrackConfig.urlTemplate) {
|
|
19
|
-
if (!(storeClass
|
|
19
|
+
if (!(storeClass === null || storeClass === void 0 ? void 0 : storeClass.endsWith('FromConfig'))) {
|
|
20
20
|
const trackIdentifier = jb1TrackConfig.key || jb1TrackConfig.label;
|
|
21
21
|
console.warn(`Could not import JBrowse1 track "${trackIdentifier}" because it does not have a "urlTemplate" or is not a "FromConfig" track`);
|
|
22
22
|
return generateUnsupportedTrackConf(jb2TrackConfig.name, trackIdentifier, jb2TrackConfig.category);
|
|
@@ -96,11 +96,10 @@ export function convertTrackConfig(jb1TrackConfig, dataRoot, sequenceAdapter) {
|
|
|
96
96
|
}
|
|
97
97
|
if (storeClass === 'JBrowse/Store/SeqFeature/BigWig' ||
|
|
98
98
|
storeClass === 'JBrowse/Store/BigWig') {
|
|
99
|
-
if (jb1TrackConfig.type
|
|
99
|
+
if ((_b = jb1TrackConfig.type) === null || _b === void 0 ? void 0 : _b.endsWith('XYPlot')) {
|
|
100
100
|
jb2TrackConfig.defaultRendering = 'xyplot';
|
|
101
101
|
}
|
|
102
|
-
else if (jb1TrackConfig.type
|
|
103
|
-
jb1TrackConfig.type.endsWith('Density')) {
|
|
102
|
+
else if ((_c = jb1TrackConfig.type) === null || _c === void 0 ? void 0 : _c.endsWith('Density')) {
|
|
104
103
|
jb2TrackConfig.defaultRendering = 'density';
|
|
105
104
|
}
|
|
106
105
|
return {
|
|
@@ -327,10 +326,10 @@ export function convertTrackConfig(jb1TrackConfig, dataRoot, sequenceAdapter) {
|
|
|
327
326
|
}
|
|
328
327
|
jb2TrackConfig.type = guessTrackType(jb2TrackConfig.adapter.type);
|
|
329
328
|
if (jb2TrackConfig.type === 'QuantitativeTrack') {
|
|
330
|
-
if (jb1TrackConfig.type
|
|
329
|
+
if ((_d = jb1TrackConfig.type) === null || _d === void 0 ? void 0 : _d.endsWith('XYPlot')) {
|
|
331
330
|
jb2TrackConfig.defaultRendering = 'xyplot';
|
|
332
331
|
}
|
|
333
|
-
else if (jb1TrackConfig.type
|
|
332
|
+
else if ((_e = jb1TrackConfig.type) === null || _e === void 0 ? void 0 : _e.endsWith('Density')) {
|
|
334
333
|
jb2TrackConfig.defaultRendering = 'density';
|
|
335
334
|
}
|
|
336
335
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import PluginManager from '@jbrowse/core/PluginManager';
|
|
2
|
-
export default function (pluginManager: PluginManager): import("mobx-state-tree").IModelType<{
|
|
2
|
+
export default function stateModelFactory(pluginManager: PluginManager): import("mobx-state-tree").IModelType<{
|
|
3
3
|
name: import("mobx-state-tree").ISimpleType<string>;
|
|
4
4
|
tracks: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>;
|
|
5
5
|
configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
@@ -4,7 +4,7 @@ import { BaseConnectionModelFactory } from '@jbrowse/core/pluggableElementTypes/
|
|
|
4
4
|
import { types } from 'mobx-state-tree';
|
|
5
5
|
// locals
|
|
6
6
|
import configSchema from './configSchema';
|
|
7
|
-
export default function (pluginManager) {
|
|
7
|
+
export default function stateModelFactory(pluginManager) {
|
|
8
8
|
return types
|
|
9
9
|
.compose('JBrowse1Connection', BaseConnectionModelFactory(pluginManager), types.model({
|
|
10
10
|
configuration: ConfigurationReference(configSchema),
|
|
@@ -37,7 +37,7 @@ export default function (pluginManager) {
|
|
|
37
37
|
}
|
|
38
38
|
catch (error) {
|
|
39
39
|
console.error(error);
|
|
40
|
-
session.
|
|
40
|
+
session.notifyError(`There was a problem connecting to the JBrowse 1 data directory "${self.name}". Please make sure you have entered a valid location. The error that was thrown is: "${error}"`, error);
|
|
41
41
|
(_b = session.breakConnection) === null || _b === void 0 ? void 0 : _b.call(session, self.configuration);
|
|
42
42
|
}
|
|
43
43
|
},
|
|
@@ -2,11 +2,11 @@ import TextSearchAdapterType from '@jbrowse/core/pluggableElementTypes/TextSearc
|
|
|
2
2
|
// locals
|
|
3
3
|
import AdapterClass from './JBrowse1TextSearchAdapter';
|
|
4
4
|
import configSchema from './configSchema';
|
|
5
|
-
export default (pluginManager)
|
|
5
|
+
export default function JBrowse1TextSearchAdapterF(pluginManager) {
|
|
6
6
|
pluginManager.addTextSearchAdapterType(() => new TextSearchAdapterType({
|
|
7
7
|
name: 'JBrowse1TextSearchAdapter',
|
|
8
8
|
configSchema,
|
|
9
9
|
AdapterClass,
|
|
10
10
|
description: 'A JBrowse 1 text search adapter',
|
|
11
11
|
}));
|
|
12
|
-
}
|
|
12
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { AdapterType } from '@jbrowse/core/pluggableElementTypes';
|
|
2
2
|
import configSchema from './configSchema';
|
|
3
|
-
export default (pluginManager)
|
|
3
|
+
export default function NCListAdapterF(pluginManager) {
|
|
4
4
|
pluginManager.addAdapterType(() => new AdapterType({
|
|
5
5
|
name: 'NCListAdapter',
|
|
6
6
|
displayName: 'NCList adapter',
|
|
7
7
|
configSchema,
|
|
8
8
|
getAdapterClass: () => import('./NCListAdapter').then(r => r.default),
|
|
9
9
|
}));
|
|
10
|
-
}
|
|
10
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-legacy-jbrowse",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.11.1",
|
|
4
4
|
"description": "JBrowse 2 plugin for connecting to and reading JBrowse 1 data",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"distModule": "esm/index.js",
|
|
56
56
|
"srcModule": "src/index.ts",
|
|
57
57
|
"module": "esm/index.js",
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "11b28d66d782eb06f92ccb993108bb6c3c82819e"
|
|
59
59
|
}
|