@jbrowse/core 2.11.2 → 2.12.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/BaseFeatureWidget/BaseFeatureDetail/DataGridDetails.js +16 -21
- package/BaseFeatureWidget/BaseFeatureDetail/index.js +1 -3
- package/BaseFeatureWidget/SequenceFeatureDetails/SequenceFeatureDetails.js +24 -85
- package/BaseFeatureWidget/SequenceFeatureDetails/SequenceFeaturePanel.js +2 -2
- package/BaseFeatureWidget/SequenceFeatureDetails/SequencePanel.d.ts +3 -4
- package/BaseFeatureWidget/SequenceFeatureDetails/SequencePanel.js +55 -24
- package/BaseFeatureWidget/SequenceFeatureDetails/dialogs/SequenceDialog.d.ts +9 -0
- package/BaseFeatureWidget/SequenceFeatureDetails/dialogs/SequenceDialog.js +69 -0
- package/BaseFeatureWidget/SequenceFeatureDetails/dialogs/SequenceFeatureMenu.d.ts +9 -0
- package/BaseFeatureWidget/SequenceFeatureDetails/dialogs/SequenceFeatureMenu.js +126 -0
- package/BaseFeatureWidget/SequenceFeatureDetails/dialogs/SequenceTypeSelector.d.ts +6 -0
- package/BaseFeatureWidget/SequenceFeatureDetails/dialogs/SequenceTypeSelector.js +68 -0
- package/BaseFeatureWidget/SequenceFeatureDetails/dialogs/SettingsDialog.js +19 -10
- package/BaseFeatureWidget/SequenceFeatureDetails/model.d.ts +47 -0
- package/BaseFeatureWidget/SequenceFeatureDetails/model.js +83 -9
- package/BaseFeatureWidget/SequenceFeatureDetails/seqtypes/CDNASequence.d.ts +3 -1
- package/BaseFeatureWidget/SequenceFeatureDetails/seqtypes/CDNASequence.js +76 -19
- package/BaseFeatureWidget/SequenceFeatureDetails/seqtypes/CDSSequence.d.ts +5 -2
- package/BaseFeatureWidget/SequenceFeatureDetails/seqtypes/CDSSequence.js +12 -3
- package/BaseFeatureWidget/SequenceFeatureDetails/seqtypes/GenomicSequence.d.ts +7 -2
- package/BaseFeatureWidget/SequenceFeatureDetails/seqtypes/GenomicSequence.js +51 -5
- package/BaseFeatureWidget/SequenceFeatureDetails/seqtypes/ProteinSequence.d.ts +5 -2
- package/BaseFeatureWidget/SequenceFeatureDetails/seqtypes/ProteinSequence.js +12 -3
- package/BaseFeatureWidget/SequenceFeatureDetails/seqtypes/SequenceDisplay.d.ts +11 -0
- package/BaseFeatureWidget/SequenceFeatureDetails/seqtypes/SequenceDisplay.js +30 -0
- package/BaseFeatureWidget/SequenceFeatureDetails/util.d.ts +11 -0
- package/BaseFeatureWidget/SequenceFeatureDetails/util.js +43 -1
- package/BaseFeatureWidget/stateModelFactory.d.ts +32 -2
- package/PluginManager.d.ts +2 -11
- package/ReExports/modules.d.ts +2 -11
- package/package.json +4 -2
- package/stories/JBrowseCore.stories.d.ts +5 -0
- package/stories/JBrowseCore.stories.js +10 -0
- package/stories/examples/WithSequencePanel.d.ts +7 -0
- package/stories/examples/WithSequencePanel.js +43 -0
- package/stories/examples/index.d.ts +1 -0
- package/stories/examples/index.js +17 -0
- package/stories/examples/util.d.ts +33 -0
- package/stories/examples/util.js +235 -0
- package/tsconfig.build.tsbuildinfo +1 -1
- package/ui/Dialog.js +2 -1
- package/util/Base1DUtils.d.ts +1 -1
- package/util/Base1DUtils.js +3 -7
- package/util/Base1DViewModel.d.ts +5 -16
- package/util/Base1DViewModel.js +6 -12
- package/util/index.d.ts +1 -1
- package/util/tracks.d.ts +3 -2
- package/util/tracks.js +10 -6
- package/util/types/index.d.ts +4 -1
- package/ui/useResizeBar.d.ts +0 -5
- package/ui/useResizeBar.js +0 -22
|
@@ -52,13 +52,28 @@ export declare function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
52
52
|
* #property
|
|
53
53
|
*/
|
|
54
54
|
sequenceFeatureDetails: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{}, {
|
|
55
|
+
showCoordinatesSetting: string;
|
|
55
56
|
intronBp: number;
|
|
56
57
|
upDownBp: number;
|
|
57
58
|
upperCaseCDS: boolean;
|
|
59
|
+
charactersPerRow: number;
|
|
60
|
+
feature: import("../util").SimpleFeatureSerialized | undefined;
|
|
61
|
+
mode: string;
|
|
58
62
|
} & {
|
|
63
|
+
setFeature(f: import("../util").SimpleFeatureSerialized): void;
|
|
59
64
|
setUpDownBp(f: number): void;
|
|
60
|
-
setIntronBp(f: number): void;
|
|
65
|
+
setIntronBp(f: number): void; /**
|
|
66
|
+
* #property
|
|
67
|
+
*/
|
|
61
68
|
setUpperCaseCDS(f: boolean): void;
|
|
69
|
+
setShowCoordinates(f: "none" | "relative" | "genomic"): void;
|
|
70
|
+
setMode(mode: string): void;
|
|
71
|
+
} & {
|
|
72
|
+
readonly showCoordinates: boolean;
|
|
73
|
+
readonly showGenomicCoordsOption: boolean;
|
|
74
|
+
readonly hasCDS: boolean | undefined;
|
|
75
|
+
readonly hasExon: boolean | undefined;
|
|
76
|
+
readonly hasExonOrCDS: boolean | undefined;
|
|
62
77
|
} & {
|
|
63
78
|
afterAttach(): void;
|
|
64
79
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
|
|
@@ -132,13 +147,28 @@ export declare function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
132
147
|
* #property
|
|
133
148
|
*/
|
|
134
149
|
sequenceFeatureDetails: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{}, {
|
|
150
|
+
showCoordinatesSetting: string;
|
|
135
151
|
intronBp: number;
|
|
136
152
|
upDownBp: number;
|
|
137
153
|
upperCaseCDS: boolean;
|
|
154
|
+
charactersPerRow: number;
|
|
155
|
+
feature: import("../util").SimpleFeatureSerialized | undefined;
|
|
156
|
+
mode: string;
|
|
138
157
|
} & {
|
|
158
|
+
setFeature(f: import("../util").SimpleFeatureSerialized): void;
|
|
139
159
|
setUpDownBp(f: number): void;
|
|
140
|
-
setIntronBp(f: number): void;
|
|
160
|
+
setIntronBp(f: number): void; /**
|
|
161
|
+
* #property
|
|
162
|
+
*/
|
|
141
163
|
setUpperCaseCDS(f: boolean): void;
|
|
164
|
+
setShowCoordinates(f: "none" | "relative" | "genomic"): void;
|
|
165
|
+
setMode(mode: string): void;
|
|
166
|
+
} & {
|
|
167
|
+
readonly showCoordinates: boolean;
|
|
168
|
+
readonly showGenomicCoordsOption: boolean;
|
|
169
|
+
readonly hasCDS: boolean | undefined;
|
|
170
|
+
readonly hasExon: boolean | undefined;
|
|
171
|
+
readonly hasExonOrCDS: boolean | undefined;
|
|
142
172
|
} & {
|
|
143
173
|
afterAttach(): void;
|
|
144
174
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
|
package/PluginManager.d.ts
CHANGED
|
@@ -151,16 +151,7 @@ export default class PluginManager {
|
|
|
151
151
|
'@jbrowse/core/util/tracks': typeof import("./util/tracks");
|
|
152
152
|
'@jbrowse/core/util/Base1DViewModel': import("mobx-state-tree").IModelType<{
|
|
153
153
|
id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
154
|
-
displayedRegions: import("mobx-state-tree").
|
|
155
|
-
refName: import("mobx-state-tree").ISimpleType<string>;
|
|
156
|
-
start: import("mobx-state-tree").ISimpleType<number>;
|
|
157
|
-
end: import("mobx-state-tree").ISimpleType<number>;
|
|
158
|
-
reversed: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
159
|
-
} & {
|
|
160
|
-
assemblyName: import("mobx-state-tree").ISimpleType<string>;
|
|
161
|
-
}, {
|
|
162
|
-
setRefName(newRefName: string): void;
|
|
163
|
-
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
154
|
+
displayedRegions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<import("./util").Region[], import("./util").Region[], import("./util").Region[]>, [undefined]>;
|
|
164
155
|
bpPerPx: import("mobx-state-tree").IType<number | undefined, number, number>;
|
|
165
156
|
offsetPx: import("mobx-state-tree").IType<number | undefined, number, number>;
|
|
166
157
|
interRegionPaddingWidth: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
|
|
@@ -193,7 +184,7 @@ export default class PluginManager {
|
|
|
193
184
|
offset: number;
|
|
194
185
|
start: number;
|
|
195
186
|
end: number;
|
|
196
|
-
reversed
|
|
187
|
+
reversed?: boolean | undefined;
|
|
197
188
|
};
|
|
198
189
|
bpToPx({ refName, coord, regionNumber, }: {
|
|
199
190
|
refName: string;
|
package/ReExports/modules.d.ts
CHANGED
|
@@ -59,16 +59,7 @@ declare const libs: {
|
|
|
59
59
|
'@jbrowse/core/util/tracks': typeof trackUtils;
|
|
60
60
|
'@jbrowse/core/util/Base1DViewModel': mst.IModelType<{
|
|
61
61
|
id: mst.IOptionalIType<mst.ISimpleType<string>, [undefined]>;
|
|
62
|
-
displayedRegions: mst.
|
|
63
|
-
refName: mst.ISimpleType<string>;
|
|
64
|
-
start: mst.ISimpleType<number>;
|
|
65
|
-
end: mst.ISimpleType<number>;
|
|
66
|
-
reversed: mst.IOptionalIType<mst.ISimpleType<boolean>, [undefined]>;
|
|
67
|
-
} & {
|
|
68
|
-
assemblyName: mst.ISimpleType<string>;
|
|
69
|
-
}, {
|
|
70
|
-
setRefName(newRefName: string): void;
|
|
71
|
-
}, mst._NotCustomized, mst._NotCustomized>>;
|
|
62
|
+
displayedRegions: mst.IOptionalIType<mst.IType<coreUtil.Region[], coreUtil.Region[], coreUtil.Region[]>, [undefined]>;
|
|
72
63
|
bpPerPx: mst.IType<number | undefined, number, number>;
|
|
73
64
|
offsetPx: mst.IType<number | undefined, number, number>;
|
|
74
65
|
interRegionPaddingWidth: mst.IOptionalIType<mst.ISimpleType<number>, [undefined]>;
|
|
@@ -101,7 +92,7 @@ declare const libs: {
|
|
|
101
92
|
offset: number;
|
|
102
93
|
start: number;
|
|
103
94
|
end: number;
|
|
104
|
-
reversed
|
|
95
|
+
reversed?: boolean | undefined;
|
|
105
96
|
};
|
|
106
97
|
bpToPx({ refName, coord, regionNumber, }: {
|
|
107
98
|
refName: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.12.0",
|
|
4
4
|
"description": "JBrowse 2 core libraries used by plugins",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -21,6 +21,8 @@
|
|
|
21
21
|
"main": "index.js",
|
|
22
22
|
"scripts": {
|
|
23
23
|
"test": "cd ../..; jest packages/core",
|
|
24
|
+
"storybook": "storybook dev --port 6006",
|
|
25
|
+
"storybook:build": "storybook build",
|
|
24
26
|
"coverage": "yarn test --coverage",
|
|
25
27
|
"clean": "rimraf dist tsconfig.build.tsbuildinfo",
|
|
26
28
|
"prebuild": "yarn clean",
|
|
@@ -72,5 +74,5 @@
|
|
|
72
74
|
"access": "public",
|
|
73
75
|
"directory": "dist"
|
|
74
76
|
},
|
|
75
|
-
"gitHead": "
|
|
77
|
+
"gitHead": "935f2602d29abc737bb1f493a922b6218d023ae2"
|
|
76
78
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GeneCollapsedIntronNoCoords = exports.GeneCollapsedIntronCoords = exports.GeneCoordsGenomic = exports.CDSCoords = exports.CDSNoCoords = void 0;
|
|
4
|
+
var examples_1 = require("./examples");
|
|
5
|
+
Object.defineProperty(exports, "CDSNoCoords", { enumerable: true, get: function () { return examples_1.CDSNoCoords; } });
|
|
6
|
+
Object.defineProperty(exports, "CDSCoords", { enumerable: true, get: function () { return examples_1.CDSCoords; } });
|
|
7
|
+
Object.defineProperty(exports, "GeneCoordsGenomic", { enumerable: true, get: function () { return examples_1.GeneCoordsGenomic; } });
|
|
8
|
+
Object.defineProperty(exports, "GeneCollapsedIntronCoords", { enumerable: true, get: function () { return examples_1.GeneCollapsedIntronCoords; } });
|
|
9
|
+
Object.defineProperty(exports, "GeneCollapsedIntronNoCoords", { enumerable: true, get: function () { return examples_1.GeneCollapsedIntronNoCoords; } });
|
|
10
|
+
exports.default = { title: 'Source code for examples' };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare function GeneCollapsedIntronCoords(): React.JSX.Element;
|
|
3
|
+
declare function GeneCollapsedIntronNoCoords(): React.JSX.Element;
|
|
4
|
+
declare function CDSCoords(): React.JSX.Element;
|
|
5
|
+
declare function GeneCoordsGenomic(): React.JSX.Element;
|
|
6
|
+
declare function CDSNoCoords(): React.JSX.Element;
|
|
7
|
+
export { CDSNoCoords, CDSCoords, GeneCoordsGenomic, GeneCollapsedIntronCoords, GeneCollapsedIntronNoCoords, };
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.GeneCollapsedIntronNoCoords = exports.GeneCollapsedIntronCoords = exports.GeneCoordsGenomic = exports.CDSCoords = exports.CDSNoCoords = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const SequencePanel_1 = __importDefault(require(".././../BaseFeatureWidget/SequenceFeatureDetails/SequencePanel"));
|
|
9
|
+
const model_1 = require(".././../BaseFeatureWidget/SequenceFeatureDetails/model");
|
|
10
|
+
const util_1 = require("./util");
|
|
11
|
+
function GeneCollapsedIntronCoords() {
|
|
12
|
+
const model = (0, model_1.SequenceFeatureDetailsF)().create();
|
|
13
|
+
model.setShowCoordinates('relative');
|
|
14
|
+
model.setMode('gene_collapsed_intron');
|
|
15
|
+
return react_1.default.createElement(SequencePanel_1.default, { model: model, sequence: util_1.sequence, feature: util_1.feature });
|
|
16
|
+
}
|
|
17
|
+
exports.GeneCollapsedIntronCoords = GeneCollapsedIntronCoords;
|
|
18
|
+
function GeneCollapsedIntronNoCoords() {
|
|
19
|
+
const model = (0, model_1.SequenceFeatureDetailsF)().create();
|
|
20
|
+
model.setMode('gene_collapsed_intron');
|
|
21
|
+
return react_1.default.createElement(SequencePanel_1.default, { model: model, sequence: util_1.sequence, feature: util_1.feature });
|
|
22
|
+
}
|
|
23
|
+
exports.GeneCollapsedIntronNoCoords = GeneCollapsedIntronNoCoords;
|
|
24
|
+
function CDSCoords() {
|
|
25
|
+
const model = (0, model_1.SequenceFeatureDetailsF)().create();
|
|
26
|
+
model.setShowCoordinates('relative');
|
|
27
|
+
model.setMode('cds');
|
|
28
|
+
return react_1.default.createElement(SequencePanel_1.default, { model: model, sequence: util_1.sequence, feature: util_1.feature });
|
|
29
|
+
}
|
|
30
|
+
exports.CDSCoords = CDSCoords;
|
|
31
|
+
function GeneCoordsGenomic() {
|
|
32
|
+
const model = (0, model_1.SequenceFeatureDetailsF)().create();
|
|
33
|
+
model.setShowCoordinates('genomic');
|
|
34
|
+
model.setMode('gene');
|
|
35
|
+
return react_1.default.createElement(SequencePanel_1.default, { model: model, sequence: util_1.sequence, feature: util_1.feature });
|
|
36
|
+
}
|
|
37
|
+
exports.GeneCoordsGenomic = GeneCoordsGenomic;
|
|
38
|
+
function CDSNoCoords() {
|
|
39
|
+
const model = (0, model_1.SequenceFeatureDetailsF)().create();
|
|
40
|
+
model.setMode('cds');
|
|
41
|
+
return react_1.default.createElement(SequencePanel_1.default, { model: model, sequence: util_1.sequence, feature: util_1.feature });
|
|
42
|
+
}
|
|
43
|
+
exports.CDSNoCoords = CDSNoCoords;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './WithSequencePanel';
|
|
@@ -0,0 +1,17 @@
|
|
|
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 __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./WithSequencePanel"), exports);
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
export declare const feature: {
|
|
2
|
+
strand: number;
|
|
3
|
+
source: string;
|
|
4
|
+
type: string;
|
|
5
|
+
start: number;
|
|
6
|
+
end: number;
|
|
7
|
+
phase: number;
|
|
8
|
+
derived_features: never[];
|
|
9
|
+
refName: string;
|
|
10
|
+
id: string;
|
|
11
|
+
parent: string;
|
|
12
|
+
name: string;
|
|
13
|
+
note: string;
|
|
14
|
+
index: string;
|
|
15
|
+
subfeatures: {
|
|
16
|
+
strand: number;
|
|
17
|
+
source: string;
|
|
18
|
+
type: string;
|
|
19
|
+
start: number;
|
|
20
|
+
end: number;
|
|
21
|
+
phase: number;
|
|
22
|
+
derived_features: never[];
|
|
23
|
+
refName: string;
|
|
24
|
+
parent: string;
|
|
25
|
+
uniqueId: string;
|
|
26
|
+
parentId: string;
|
|
27
|
+
}[];
|
|
28
|
+
uniqueId: string;
|
|
29
|
+
parentId: string;
|
|
30
|
+
};
|
|
31
|
+
export declare const sequence: {
|
|
32
|
+
seq: string;
|
|
33
|
+
};
|
|
@@ -0,0 +1,235 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.sequence = exports.feature = void 0;
|
|
4
|
+
exports.feature = {
|
|
5
|
+
strand: 1,
|
|
6
|
+
source: 'example',
|
|
7
|
+
type: 'mRNA',
|
|
8
|
+
start: 1049,
|
|
9
|
+
end: 9000,
|
|
10
|
+
phase: 0,
|
|
11
|
+
derived_features: [],
|
|
12
|
+
refName: 'ctgA',
|
|
13
|
+
id: 'EDEN.1',
|
|
14
|
+
parent: 'EDEN',
|
|
15
|
+
name: 'EDEN.1',
|
|
16
|
+
note: 'Eden splice form 1',
|
|
17
|
+
index: '1',
|
|
18
|
+
subfeatures: [
|
|
19
|
+
{
|
|
20
|
+
strand: 1,
|
|
21
|
+
source: 'example',
|
|
22
|
+
type: 'five_prime_UTR',
|
|
23
|
+
start: 1049,
|
|
24
|
+
end: 1200,
|
|
25
|
+
phase: 0,
|
|
26
|
+
derived_features: [],
|
|
27
|
+
refName: 'ctgA',
|
|
28
|
+
parent: 'EDEN.1',
|
|
29
|
+
uniqueId: '753811506-offset-791705-0-0',
|
|
30
|
+
parentId: '753811506-offset-791705-0',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
strand: 1,
|
|
34
|
+
source: 'example',
|
|
35
|
+
type: 'CDS',
|
|
36
|
+
start: 1200,
|
|
37
|
+
end: 1500,
|
|
38
|
+
phase: 0,
|
|
39
|
+
derived_features: [],
|
|
40
|
+
refName: 'ctgA',
|
|
41
|
+
parent: 'EDEN.1',
|
|
42
|
+
uniqueId: '753811506-offset-791705-0-1',
|
|
43
|
+
parentId: '753811506-offset-791705-0',
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
strand: 1,
|
|
47
|
+
source: 'example',
|
|
48
|
+
type: 'CDS',
|
|
49
|
+
start: 2999,
|
|
50
|
+
end: 3902,
|
|
51
|
+
phase: 0,
|
|
52
|
+
derived_features: [],
|
|
53
|
+
refName: 'ctgA',
|
|
54
|
+
parent: 'EDEN.1',
|
|
55
|
+
uniqueId: '753811506-offset-791705-0-2',
|
|
56
|
+
parentId: '753811506-offset-791705-0',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
strand: 1,
|
|
60
|
+
source: 'example',
|
|
61
|
+
type: 'CDS',
|
|
62
|
+
start: 4999,
|
|
63
|
+
end: 5500,
|
|
64
|
+
phase: 0,
|
|
65
|
+
derived_features: [],
|
|
66
|
+
refName: 'ctgA',
|
|
67
|
+
parent: 'EDEN.1',
|
|
68
|
+
uniqueId: '753811506-offset-791705-0-3',
|
|
69
|
+
parentId: '753811506-offset-791705-0',
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
strand: 1,
|
|
73
|
+
source: 'example',
|
|
74
|
+
type: 'CDS',
|
|
75
|
+
start: 6999,
|
|
76
|
+
end: 7608,
|
|
77
|
+
phase: 0,
|
|
78
|
+
derived_features: [],
|
|
79
|
+
refName: 'ctgA',
|
|
80
|
+
parent: 'EDEN.1',
|
|
81
|
+
uniqueId: '753811506-offset-791705-0-4',
|
|
82
|
+
parentId: '753811506-offset-791705-0',
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
strand: 1,
|
|
86
|
+
source: 'example',
|
|
87
|
+
type: 'three_prime_UTR',
|
|
88
|
+
start: 7608,
|
|
89
|
+
end: 9000,
|
|
90
|
+
phase: 0,
|
|
91
|
+
derived_features: [],
|
|
92
|
+
refName: 'ctgA',
|
|
93
|
+
parent: 'EDEN.1',
|
|
94
|
+
uniqueId: '753811506-offset-791705-0-5',
|
|
95
|
+
parentId: '753811506-offset-791705-0',
|
|
96
|
+
},
|
|
97
|
+
],
|
|
98
|
+
uniqueId: '753811506-offset-791705-0',
|
|
99
|
+
parentId: '753811506-offset-791705',
|
|
100
|
+
};
|
|
101
|
+
exports.sequence = {
|
|
102
|
+
seq: `tccatcggcaataggggttatcagtactaccaagaagattgtgaagatattaacagcatt
|
|
103
|
+
gaaaaaagttcggactgggcatgaaacgtgtgtcagagttagagtccttgagggactgaa
|
|
104
|
+
tgggtttgtcccaggcccaagcttgaggtggatgtcacctcgggtactgcctctattaca
|
|
105
|
+
gaggtatcttaatggcgcatccagccttgtggctgggtctacgtacgcgtgggcaccata
|
|
106
|
+
cgtatgttggcaggaaaggtcaatcatgcttgtttcctcgtcgcagaaacgttcacacta
|
|
107
|
+
ttggctcgcgggatcgaacgggcctgattatttttccagctcctgcgttcctatcacgcc
|
|
108
|
+
aactgtcgctaataaaatgttatatagagataacccattgctatgcaaggatggagaaac
|
|
109
|
+
cgcttcacaacaccctagaattacttcagcactaacatctaagataccgggaaaaccgta
|
|
110
|
+
ggtgccacttggttttgagggcaatgcctcttgcactggcgattcgtggagtaaccttgc
|
|
111
|
+
taccgatttccaccttttctaggtatgattacatgcgatcgccattgtcagtcgtcgtac
|
|
112
|
+
gaaatccaggaaggaattcgaatacatgaccgaaagctatggcatcataagcgtggctct
|
|
113
|
+
ttactaaggacacgtgtagtcggctgatttcgcgcagaacttcgctcaccggacagtgac
|
|
114
|
+
tgctgtccgaacttgggggcagcgtagattctagctagagaccgcagcgaaaatgccact
|
|
115
|
+
cgctaggtggctatggacgtccagctataggcccccacattcgtatgtatactccggtaa
|
|
116
|
+
ttgagtctacctttcgaaagatcaaagttcacaaaccttctctcacgttaacatagatgc
|
|
117
|
+
tcgcacatagctagtccggtgataaagcggccgtgcatgcgagtatttagcgcacggaac
|
|
118
|
+
agatattaggctgcgaaataccctcatatgctacagcgcaggtaacagacggttgatctc
|
|
119
|
+
cccgtagaattccctcaaggccggatcgttctcatgagtagcctttgtctgacatttcct
|
|
120
|
+
ctcaatagattgcagactcctgtgtcgtgggaaaacttcgcggaatcgctgtcgttacat
|
|
121
|
+
aaatctaaacagtgcagtccaagctatttactaccacgtatcataatgaacatctctttg
|
|
122
|
+
tgaaatacgccggtacgccgagagatcgcccacattgcgtgtcaccaagacccagtgtct
|
|
123
|
+
attgggcgcgctggttatagtatgcggaggcacccgatgtgctgctaatcactacaaact
|
|
124
|
+
cgacaccaagaggcgaccgcgtgcgggagggctagaacgcgagagccacgtcaacgtggt
|
|
125
|
+
ggtaccgctcctgatgatacgagcactgtgctggcaccgctgccctatgtccagctaaca
|
|
126
|
+
ggtgtcacataatatcgcatctatagttgagtatcttatcgctagcgttacttgtgagtt
|
|
127
|
+
ctcgggtagaatcgtcgtagcattctagtccttagcgtaagcaacgatatcgccgatatt
|
|
128
|
+
ataggggcaataggtctcacccaccacgggtgtatatttaacgccctaagtagttaacgg
|
|
129
|
+
agactattaaacaattatgcacgtgaaagattagggtactgcacacgtgtcacgttgacg
|
|
130
|
+
atgtaaacaccataaaggttgttctgtgatgcgatgcccatacctgcggtgcaacgtcct
|
|
131
|
+
aaacttatgcggatcaccttctaattcagccgacgttgagaacgccagctatactctgtg
|
|
132
|
+
agtacaaggtgaaagccccagatcaaaatattggagtcttgtccgtagctcttgggtgga
|
|
133
|
+
gagtgtgaccacgtttatcccttaatactgagactcttctcgttccacgccccggacatt
|
|
134
|
+
cgcgatacagcctagtttgataggtggctacaagggctctatccgaatagcacaaaactc
|
|
135
|
+
agtcctagtgcgtataggtcgtgctctgcggttatacgctccacagaagaaagtacccac
|
|
136
|
+
tgcagtttgtcggtgggacttagcaaaacctgtaaccaaaaccgcacatggactctgttt
|
|
137
|
+
tggtggcgtggagtgtgcccgccgcctttatgctgggtcaaaatactatatgatttgttg
|
|
138
|
+
tggtcgggcgcgacattggctcttatggtttataactattattcggtgcacagaaccgac
|
|
139
|
+
ttatgccccgattttgcacctcccgagagaaatggtactagtcattgtctcggggtttta
|
|
140
|
+
caactcaaggataatctgccagcggtaccccgaaaaatcccatcccgaacggctggtacc
|
|
141
|
+
tatgctggagaccgaaatggagccagtgctatgcaaaccctcgctctttctatttggccc
|
|
142
|
+
gaccagctgcgagagtcattcgacatacattgcgatggctggttcatctctctgcttcgg
|
|
143
|
+
attccgatcctgctgcctatggccacaacacgaaagagatcttggatacgtcctcaccat
|
|
144
|
+
agtccaacggacaaatatggaggtgtacgcgcacggatacgagtacgacgggccgcccaa
|
|
145
|
+
tgctggtccttcgtgttatactgtttacttgcctccggtaagagtgtacagcttgtaccc
|
|
146
|
+
acgcggtggaggaccttacgcgtcgtccgcaggtgtggagatttcgctacctgttgcatt
|
|
147
|
+
ggggcctcgccttacgtttttttcgacggaggcccgacccgccaggccagaccctcatca
|
|
148
|
+
ttgggatttttactgccttggacggcagattctgatgctggtaacgcgcttggcacacac
|
|
149
|
+
cctggtcgtaattacgtactatcacctctattttaccaggggcgggccccgcctcaacga
|
|
150
|
+
tcggtagtctcgttagaacagttgcttatactccgttagcactcacaactcggagaatga
|
|
151
|
+
gcttacacagtccgtaatagtctccacagcttcccctggaaggttcgtacaggggccctg
|
|
152
|
+
gggtctaatgtgctaccgcctaacttcgttagtgtaaggtctcgtgtgcacctccaataa
|
|
153
|
+
cgctgcatttttgtatagaactcctttataggcctgactcttcggaacagcccactaatt
|
|
154
|
+
gacgtgcacgatgctgcatatacccttctcaatgacgcataccggtgactaaatcctgtg
|
|
155
|
+
gctggttgacactttgcataacccaccacgaaaacgcggtttgcacgtggttggaagcga
|
|
156
|
+
gtaccggttaagggaagttacgtaaacccaacatagtgagcgatgcttaaaacactgcat
|
|
157
|
+
gcgaacaacgaccggaacgagagcctaatagaaccaaatggataggtggttacgaaatcc
|
|
158
|
+
gcgcacaagtgtcgtgccactctcgtaaagaatgattgcttgcttatctatgagaaacct
|
|
159
|
+
aataggcacgcacgtgtcgccagggaaaaaccaccatccgacaagacgctgaaaatcgag
|
|
160
|
+
atagatgcagcccgcgcgtactttaagcacgatagccatcttgagcgcgacgattcagct
|
|
161
|
+
tacggagattacttctcaaagcggacacctcgacgctgaagctctctatcgatgcacttg
|
|
162
|
+
catgtccatctacggcttgagcgaaccatgcttaacgcttggatgacgttgttagtcgga
|
|
163
|
+
ttcgatcgtaccatactgtcctatccatcataacttcccgaattaaaactcattttctac
|
|
164
|
+
cctcatttgtttcattggcgcatatgagcgccccatgggcgctgatcgacacaggcttgt
|
|
165
|
+
agcgcacggctcgtcttgcagtagataaccatagtctttacgtcgcatatattaatatat
|
|
166
|
+
cctcagacttccactgcggtattttggatcgtggcgtctgggacagtcacactctttaac
|
|
167
|
+
gggagcgcgttcaatgtctgagtccatccgtgcagttcggtgcgattttattcttccctg
|
|
168
|
+
catcttccggattccttcttcttgtcggagaattcgccgctcgatcaaactcatcattgg
|
|
169
|
+
tacttattgaccgtttcatgctattacaccggtacactgatgataacgctgcggttttat
|
|
170
|
+
cccccccaatacgcgcacacacgcttctttcggtgcgtcctgtcgtacccctattgcgca
|
|
171
|
+
tcatggcactccagccgagcaatgctttggacaggtgtaaccaagctggatctagcgtgg
|
|
172
|
+
gttcgacacagctcggttcgtataaccacacgcatgaactgcgagtgcctcgccccagcg
|
|
173
|
+
ccgctgtctacttgctgtttagaggaagaagcaacagcttgcacccaatccgcatatctg
|
|
174
|
+
catataggtggccgttcctccgtggcgcgccgctacgttgtagcgcacggatcaaaagcg
|
|
175
|
+
ctgtgttactatacactggttcggagacggttcatgacgagcgcgctatatgtcggcatc
|
|
176
|
+
tgcgccccatgagcggccgctgtccggcggcacgaataatatagtgcaagaaaaaccgaa
|
|
177
|
+
gactacggttatatatgatggaacggccctcacagcattctaacaggtttgacaaactta
|
|
178
|
+
ataaatgatgggccgcgcctgctgtgaatcccggacggtttggccggaaatacctaggca
|
|
179
|
+
gtctttggaaaagcttttcctagatcaccatatcgttgtcagtggccaaggtttcgttaa
|
|
180
|
+
ctctcggcgtacccagtatcggcgcaataggcctttgatcaacccttggaagattagtcg
|
|
181
|
+
atcgtaacttcctacatcccggtgaaaggctttaattctaagtcttcgccacaaacgctt
|
|
182
|
+
caggagcgtcgagttctatcactttcgaggtactgccacttactatacaccggtacactt
|
|
183
|
+
gttaagcaagtgtttgcggatgtggttaaattttgatggcagatttctgggtgttttagc
|
|
184
|
+
tatagctgtatcctcgaggtcgtcgtttaaccgctcctgttgctagatcatatgtatcgt
|
|
185
|
+
tgttcgagacgctagtagtcgctcctaccgaatcttacaggttcgatctctgctcggctt
|
|
186
|
+
ttgccgcgggccggtgcttgtgctataattataatgataagggcagtggccgcacaactg
|
|
187
|
+
cagattactgacacttgagtgagaactaagccttgaagcatagtgttgaatgttgtagaa
|
|
188
|
+
aagtatactgtgacaaaaacagggcctggtgtcaagtgtcctcagtgatctggatatcat
|
|
189
|
+
cacgccttgttagcaggatttacccgcatagtaatggccggactttatattgccctgctg
|
|
190
|
+
cgctagctagtactgcgggggctctcttccccctattgatattccgggcagaatgcgcgg
|
|
191
|
+
gtagtcagcattcatgtcaggcttctatcaacgtctcattcacccttggagtgtgaccta
|
|
192
|
+
cgtgttagaggcaatgtagcccgagagcccgttcaaagacaaactcccgaattaaacaga
|
|
193
|
+
caccggttatgggagtgtgagtagtgacttccgaccagtgtttggtttcagcctgtcggt
|
|
194
|
+
taacctcgcagggctaggagaatgagctgctagtaggtgattaccgaagtctccccagaa
|
|
195
|
+
agggaacagtcttatagagtagagaatgtcaaatagcgttattgagttctgtctactgca
|
|
196
|
+
ctaccaagagcatgcccaccagagatgcgtcgcagtcgtagcgtagacgtcgtaatgacc
|
|
197
|
+
caggtggcgttcggcctattcgcgtcggacgcgcgcgctactacaacgaagggttctgaa
|
|
198
|
+
agtgcatgttcacactgaaattctaagtgttagtaaacaaacgcgtgtattccagggtcg
|
|
199
|
+
tgtgtgacattatggctgtctgcgcccctcaatgatcatcaagacgttcaattgtatgtt
|
|
200
|
+
aacgtagatatcaggtttagttatccgtatactttttacgccgcgcgcttggaacagatt
|
|
201
|
+
ctcctaacagccctcgcggtttcaaaaagaaccaaagtctataccatccttgttcccaat
|
|
202
|
+
tctgcctggttgcggagaaaagaccgcctccatacgtacccgactcggtattggtaagtg
|
|
203
|
+
gggaagcagtcgaacgcatatttcttggttatatcacaggccacgttctatatcggaagt
|
|
204
|
+
ggccggattacgatttgacgttctatccccgagagcgcattcttgtttgttactactacc
|
|
205
|
+
acgcgggcgcttcttattcccagaccagagggaatgtgcggaagctttttccacagattg
|
|
206
|
+
gcggaactccagcgtgcttagtgcaggcggagaacgtccgttcagtggtgcgtgctttat
|
|
207
|
+
ttttcaatctgacccgacctgcgctcaagggttgcaagttgttgtgcgcccgagtaatag
|
|
208
|
+
gcgactcgtcgcaatgggtctggtacattgcattttcatcggtacggcgcttcataaagt
|
|
209
|
+
gcggcaaatttctcaccccagtactcatgtttatagggtatcaggacccgaagcttctct
|
|
210
|
+
gttccaaagaaatgtactgtttggctcccctgtccatattggaggtagatcacttgtgga
|
|
211
|
+
ttatgcaatgaatgaatgaaagtttggtgctccccaccggggcgctctcaaagagagtga
|
|
212
|
+
gctaaatttgaacatttaaattgctattccaacccggagtcctgaccggaacagtaatga
|
|
213
|
+
aacttcaaccatgccggacagactagaagaagggaaagttgcttgtatatgggagtaaaa
|
|
214
|
+
atgatgttggtgccgtaatggtgccggaagtgactatagagcatgtcgtgacgcaccggt
|
|
215
|
+
aggcagtgctataatcgtatgtccttcaggcgccgccggacctacgaagctgaaattaga
|
|
216
|
+
caccggcacactagccccgtcagcgacggtgcgcggccgctgccctgcagcgaatggggc
|
|
217
|
+
taacacgcataaaacgcccgcataaccactcgagctacgggaattcactcaggctgttgc
|
|
218
|
+
ttcgacgtgtagtctcattacataatcataatacctccaagaccaacggctgctcatgac
|
|
219
|
+
tctcttaccttgttagggacatttcggcactagggaagagctgaggactttgaaaacgtc
|
|
220
|
+
gataaaaccatcgcgggaactagctgcgttagaactccatattttacgggtcgcaagctt
|
|
221
|
+
gaggtcctgtcccggcagctgcaagtgctacggcaggaggggatctacctaacgtgcagt
|
|
222
|
+
aacgagcccctgcccgtaatgaggcgtactcgtctctaatcgtcagtaagttactatgtc
|
|
223
|
+
cgaggacgcctctacgagttgaactctggctaggcccacctgtccgcgccctgctcgggt
|
|
224
|
+
accccatctgcttatccaacttcacctcgccttacggaatctctggttgccagtcatccg
|
|
225
|
+
atggtcattaagcagcgtggtacatcgtagccaatacttcagggcgccagccatattccc
|
|
226
|
+
agccaagcggctgcataattacagcgcctggcacgactaatcgatcccacaagcctggta
|
|
227
|
+
gatgacccttagccctaaagcgccctctgacctatctgcacgtgatacttgattatttgt
|
|
228
|
+
aatgagcggacagggtagatgactaatatacagggtcgtctaggtttgcacaatgcagac
|
|
229
|
+
atcatccgcgcaaggcccggacggctgtactcacacagctagctccatctccctcagcag
|
|
230
|
+
cactaagattcccacgtgaccagggcgacgggcctcagccaaacgtatccttgatatcta
|
|
231
|
+
cttaagtcaaggttgactccgaaccctatgggtcggtgccgttaacagggagtctatatc
|
|
232
|
+
tcggcgttccattgcttgtttcaaactcctgctataaggtgaaagcgctggagggcatag
|
|
233
|
+
tttatgcccaaagttgcgcgtagatccgtcgggatatgtgctataataaggactgctcga
|
|
234
|
+
ggtaggcggtaacggctcccgccttcagtag`.replaceAll('\n', ''),
|
|
235
|
+
};
|