@apollo-annotation/jbrowse-plugin-apollo 0.1.10 → 0.1.11
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/index.esm.js +4 -4
- package/dist/index.esm.js.map +1 -1
- package/dist/jbrowse-plugin-apollo.cjs.development.js +68 -68
- package/dist/jbrowse-plugin-apollo.cjs.development.js.map +1 -1
- package/dist/jbrowse-plugin-apollo.cjs.production.min.js +1 -1
- package/dist/jbrowse-plugin-apollo.cjs.production.min.js.map +1 -1
- package/dist/jbrowse-plugin-apollo.umd.development.js +77 -78
- package/dist/jbrowse-plugin-apollo.umd.development.js.map +1 -1
- package/dist/jbrowse-plugin-apollo.umd.production.min.js +1 -1
- package/dist/jbrowse-plugin-apollo.umd.production.min.js.map +1 -1
- package/package.json +5 -5
- package/src/ApolloInternetAccount/model.ts +2 -2
- package/src/ApolloSixFrameRenderer/components/ApolloRendering.tsx +2 -2
- package/src/BackendDrivers/BackendDriver.ts +3 -3
- package/src/BackendDrivers/CollaborationServerDriver.ts +3 -9
- package/src/BackendDrivers/DesktopFileDriver.ts +3 -3
- package/src/BackendDrivers/InMemoryFileDriver.ts +3 -6
- package/src/ChangeManager.ts +2 -2
- package/src/FeatureDetailsWidget/Attributes.tsx +2 -2
- package/src/FeatureDetailsWidget/BasicInformation.tsx +2 -2
- package/src/FeatureDetailsWidget/RelatedFeature.tsx +1 -4
- package/src/FeatureDetailsWidget/Sequence.tsx +2 -2
- package/src/FeatureDetailsWidget/model.ts +1 -4
- package/src/LinearApolloDisplay/glyphs/BoxGlyph.ts +2 -2
- package/src/LinearApolloDisplay/glyphs/CanonicalGeneGlyph.ts +2 -2
- package/src/LinearApolloDisplay/glyphs/GenericChildGlyph.ts +1 -1
- package/src/LinearApolloDisplay/glyphs/Glyph.ts +1 -1
- package/src/LinearApolloDisplay/glyphs/ImplicitExonGeneGlyph.ts +2 -2
- package/src/LinearApolloDisplay/stateModel/base.ts +1 -1
- package/src/LinearApolloDisplay/stateModel/getGlyph.ts +1 -1
- package/src/LinearApolloDisplay/stateModel/glyphs.ts +1 -1
- package/src/LinearApolloDisplay/stateModel/layouts.ts +1 -1
- package/src/LinearApolloDisplay/stateModel/mouseEvents.ts +1 -1
- package/src/OntologyManager/util.ts +1 -1
- package/src/SixFrameFeatureDisplay/stateModel.ts +1 -1
- package/src/TabularEditor/HybridGrid/ChangeHandling.ts +2 -2
- package/src/TabularEditor/HybridGrid/Feature.tsx +1 -1
- package/src/TabularEditor/HybridGrid/FeatureAttributes.tsx +1 -1
- package/src/TabularEditor/HybridGrid/featureContextMenuItems.ts +1 -1
- package/src/components/AddAssembly.tsx +1 -1
- package/src/components/AddChildFeature.tsx +2 -2
- package/src/components/AddFeature.tsx +1 -1
- package/src/components/CopyFeature.tsx +2 -2
- package/src/components/DeleteAssembly.tsx +1 -1
- package/src/components/DeleteFeature.tsx +2 -2
- package/src/components/DownloadGFF3.tsx +2 -2
- package/src/components/ImportFeatures.tsx +1 -1
- package/src/components/ManageUsers.tsx +1 -1
- package/src/components/ModifyFeatureAttribute.tsx +2 -2
- package/src/components/ViewChangeLog.tsx +1 -1
- package/src/extensions/annotationFromPileup.ts +2 -2
- package/src/index.ts +2 -2
- package/src/session/ClientDataStore.ts +2 -2
- package/src/session/session.ts +3 -6
- package/src/util/loadAssemblyIntoClient.ts +2 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apollo-annotation/jbrowse-plugin-apollo",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"description": "Apollo plugin for JBrowse 2",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"browse": "serve --no-request-logging --listen 8999 --no-port-switching .jbrowse",
|
|
38
38
|
"test": "jest",
|
|
39
39
|
"test:ci": "jest --coverage",
|
|
40
|
-
"start:collab-cypress": "yarn workspace apollo-collaboration-server run cypress:start",
|
|
40
|
+
"start:collab-cypress": "yarn workspace @apollo-annotation/collaboration-server run cypress:start",
|
|
41
41
|
"test:e2e": "yarn build && start-test \"npm-run-all --parallel start:server browse start:collab-cypress\" \"9000|8999|http://localhost:3999/health\" \"npm-run-all cypress:run\"",
|
|
42
42
|
"test:e2e:debug": "yarn build && start-test \"npm-run-all --parallel start:server browse start:collab-cypress\" \"9000|8999|http://localhost:3999/health\" \"npm-run-all cypress:debug\"",
|
|
43
43
|
"cypress:run": "cypress run --browser chrome",
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
"name": "Apollo"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@apollo-annotation/
|
|
55
|
-
"@apollo-annotation/
|
|
56
|
-
"@apollo-annotation/
|
|
54
|
+
"@apollo-annotation/common": "^0.1.11",
|
|
55
|
+
"@apollo-annotation/mst": "^0.1.11",
|
|
56
|
+
"@apollo-annotation/shared": "^0.1.11",
|
|
57
57
|
"@emotion/react": "^11.10.6",
|
|
58
58
|
"@emotion/styled": "^11.10.6",
|
|
59
59
|
"@gmod/gff": "1.2.0",
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
/* eslint-disable @typescript-eslint/no-unsafe-argument */
|
|
7
7
|
/* eslint-disable @typescript-eslint/unbound-method */
|
|
8
8
|
/* eslint-disable @typescript-eslint/no-misused-promises */
|
|
9
|
-
import { Change } from '@apollo-annotation/
|
|
9
|
+
import { Change } from '@apollo-annotation/common'
|
|
10
10
|
import {
|
|
11
11
|
ChangeMessage,
|
|
12
12
|
CheckResultUpdate,
|
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
UserLocationMessage,
|
|
16
16
|
getDecodedToken,
|
|
17
17
|
makeUserSessionId,
|
|
18
|
-
} from '@apollo-annotation/
|
|
18
|
+
} from '@apollo-annotation/shared'
|
|
19
19
|
import { ConfigurationReference, getConf } from '@jbrowse/core/configuration'
|
|
20
20
|
import { InternetAccount } from '@jbrowse/core/pluggableElementTypes'
|
|
21
21
|
import {
|
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
/* eslint-disable @typescript-eslint/no-unsafe-argument */
|
|
6
6
|
/* eslint-disable @typescript-eslint/no-unnecessary-condition */
|
|
7
7
|
/* eslint-disable @typescript-eslint/no-misused-promises */
|
|
8
|
-
import { AnnotationFeatureI } from '@apollo-annotation/
|
|
8
|
+
import { AnnotationFeatureI } from '@apollo-annotation/mst'
|
|
9
9
|
import {
|
|
10
10
|
LocationEndChange,
|
|
11
11
|
LocationStartChange,
|
|
12
|
-
} from '@apollo-annotation/
|
|
12
|
+
} from '@apollo-annotation/shared'
|
|
13
13
|
import { getConf } from '@jbrowse/core/configuration'
|
|
14
14
|
import { AbstractSessionModel, Region, getSession } from '@jbrowse/core/util'
|
|
15
15
|
import { Menu, MenuItem } from '@mui/material'
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { Change, ClientDataStore } from '@apollo-annotation/
|
|
1
|
+
import { Change, ClientDataStore } from '@apollo-annotation/common'
|
|
2
2
|
import {
|
|
3
3
|
AnnotationFeatureSnapshot,
|
|
4
4
|
CheckResultSnapshot,
|
|
5
|
-
} from '@apollo-annotation/
|
|
6
|
-
import { ValidationResultSet } from '@apollo-annotation/
|
|
5
|
+
} from '@apollo-annotation/mst'
|
|
6
|
+
import { ValidationResultSet } from '@apollo-annotation/shared'
|
|
7
7
|
import { Assembly } from '@jbrowse/core/assemblyManager/assembly'
|
|
8
8
|
import { Region } from '@jbrowse/core/util'
|
|
9
9
|
|
|
@@ -4,19 +4,13 @@
|
|
|
4
4
|
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
|
5
5
|
/* eslint-disable @typescript-eslint/no-unsafe-call */
|
|
6
6
|
/* eslint-disable @typescript-eslint/no-unnecessary-condition */
|
|
7
|
-
import {
|
|
8
|
-
AssemblySpecificChange,
|
|
9
|
-
Change,
|
|
10
|
-
} from '@apollo-annotation/apollo-common'
|
|
7
|
+
import { AssemblySpecificChange, Change } from '@apollo-annotation/common'
|
|
11
8
|
import {
|
|
12
9
|
AnnotationFeatureSnapshot,
|
|
13
10
|
ApolloRefSeqI,
|
|
14
11
|
CheckResultSnapshot,
|
|
15
|
-
} from '@apollo-annotation/
|
|
16
|
-
import {
|
|
17
|
-
ChangeMessage,
|
|
18
|
-
ValidationResultSet,
|
|
19
|
-
} from '@apollo-annotation/apollo-shared'
|
|
12
|
+
} from '@apollo-annotation/mst'
|
|
13
|
+
import { ChangeMessage, ValidationResultSet } from '@apollo-annotation/shared'
|
|
20
14
|
import { getConf } from '@jbrowse/core/configuration'
|
|
21
15
|
import { BaseInternetAccountModel } from '@jbrowse/core/pluggableElementTypes'
|
|
22
16
|
import { Region, getSession } from '@jbrowse/core/util'
|
|
@@ -3,16 +3,16 @@ import {
|
|
|
3
3
|
AssemblySpecificChange,
|
|
4
4
|
Change,
|
|
5
5
|
isAssemblySpecificChange,
|
|
6
|
-
} from '@apollo-annotation/
|
|
6
|
+
} from '@apollo-annotation/common'
|
|
7
7
|
import {
|
|
8
8
|
AnnotationFeatureSnapshot,
|
|
9
9
|
CheckResultSnapshot,
|
|
10
|
-
} from '@apollo-annotation/
|
|
10
|
+
} from '@apollo-annotation/mst'
|
|
11
11
|
import {
|
|
12
12
|
ValidationResultSet,
|
|
13
13
|
makeGFF3Feature,
|
|
14
14
|
splitStringIntoChunks,
|
|
15
|
-
} from '@apollo-annotation/
|
|
15
|
+
} from '@apollo-annotation/shared'
|
|
16
16
|
import gff, { GFF3Item } from '@gmod/gff'
|
|
17
17
|
import { getConf } from '@jbrowse/core/configuration'
|
|
18
18
|
import { Region, getSession } from '@jbrowse/core/util'
|
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
/* eslint-disable @typescript-eslint/require-await */
|
|
2
|
-
import {
|
|
3
|
-
AssemblySpecificChange,
|
|
4
|
-
Change,
|
|
5
|
-
} from '@apollo-annotation/apollo-common'
|
|
2
|
+
import { AssemblySpecificChange, Change } from '@apollo-annotation/common'
|
|
6
3
|
import {
|
|
7
4
|
AnnotationFeatureSnapshot,
|
|
8
5
|
CheckResultSnapshot,
|
|
9
|
-
} from '@apollo-annotation/
|
|
10
|
-
import { ValidationResultSet } from '@apollo-annotation/
|
|
6
|
+
} from '@apollo-annotation/mst'
|
|
7
|
+
import { ValidationResultSet } from '@apollo-annotation/shared'
|
|
11
8
|
import { getConf } from '@jbrowse/core/configuration'
|
|
12
9
|
import { Region, getSession } from '@jbrowse/core/util'
|
|
13
10
|
|
package/src/ChangeManager.ts
CHANGED
|
@@ -5,11 +5,11 @@ import {
|
|
|
5
5
|
Change,
|
|
6
6
|
ClientDataStore,
|
|
7
7
|
isAssemblySpecificChange,
|
|
8
|
-
} from '@apollo-annotation/
|
|
8
|
+
} from '@apollo-annotation/common'
|
|
9
9
|
import {
|
|
10
10
|
ValidationResultSet,
|
|
11
11
|
validationRegistry,
|
|
12
|
-
} from '@apollo-annotation/
|
|
12
|
+
} from '@apollo-annotation/shared'
|
|
13
13
|
import { getSession } from '@jbrowse/core/util'
|
|
14
14
|
import { IAnyStateTreeNode } from 'mobx-state-tree'
|
|
15
15
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/* eslint-disable @typescript-eslint/unbound-method */
|
|
2
2
|
/* eslint-disable @typescript-eslint/no-unnecessary-condition */
|
|
3
3
|
/* eslint-disable @typescript-eslint/no-misused-promises */
|
|
4
|
-
import { AnnotationFeatureI } from '@apollo-annotation/
|
|
5
|
-
import { FeatureAttributeChange } from '@apollo-annotation/
|
|
4
|
+
import { AnnotationFeatureI } from '@apollo-annotation/mst'
|
|
5
|
+
import { FeatureAttributeChange } from '@apollo-annotation/shared'
|
|
6
6
|
import { AbstractSessionModel } from '@jbrowse/core/util'
|
|
7
7
|
import DeleteIcon from '@mui/icons-material/Delete'
|
|
8
8
|
import {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/* eslint-disable @typescript-eslint/no-misused-promises */
|
|
2
|
-
import { AnnotationFeatureI } from '@apollo-annotation/
|
|
2
|
+
import { AnnotationFeatureI } from '@apollo-annotation/mst'
|
|
3
3
|
import {
|
|
4
4
|
LocationEndChange,
|
|
5
5
|
LocationStartChange,
|
|
6
6
|
StrandChange,
|
|
7
7
|
TypeChange,
|
|
8
|
-
} from '@apollo-annotation/
|
|
8
|
+
} from '@apollo-annotation/shared'
|
|
9
9
|
import { AbstractSessionModel } from '@jbrowse/core/util'
|
|
10
10
|
import {
|
|
11
11
|
FormControl,
|
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
|
|
2
2
|
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
|
3
3
|
/* eslint-disable @typescript-eslint/no-unsafe-argument */
|
|
4
|
-
import {
|
|
5
|
-
AnnotationFeature,
|
|
6
|
-
AnnotationFeatureI,
|
|
7
|
-
} from '@apollo-annotation/apollo-mst'
|
|
4
|
+
import { AnnotationFeature, AnnotationFeatureI } from '@apollo-annotation/mst'
|
|
8
5
|
import { SessionWithWidgets } from '@jbrowse/core/util'
|
|
9
6
|
import { Button, Paper, Typography } from '@mui/material'
|
|
10
7
|
import { observer } from 'mobx-react'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* eslint-disable @typescript-eslint/no-unnecessary-condition */
|
|
2
|
-
import { AnnotationFeatureI } from '@apollo-annotation/
|
|
3
|
-
import { splitStringIntoChunks } from '@apollo-annotation/
|
|
2
|
+
import { AnnotationFeatureI } from '@apollo-annotation/mst'
|
|
3
|
+
import { splitStringIntoChunks } from '@apollo-annotation/shared'
|
|
4
4
|
import { Button, Typography } from '@mui/material'
|
|
5
5
|
import { observer } from 'mobx-react'
|
|
6
6
|
import React, { useState } from 'react'
|
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
/* eslint-disable @typescript-eslint/no-unsafe-call */
|
|
2
2
|
/* eslint-disable @typescript-eslint/no-unnecessary-condition */
|
|
3
|
-
import {
|
|
4
|
-
AnnotationFeature,
|
|
5
|
-
AnnotationFeatureI,
|
|
6
|
-
} from '@apollo-annotation/apollo-mst'
|
|
3
|
+
import { AnnotationFeature, AnnotationFeatureI } from '@apollo-annotation/mst'
|
|
7
4
|
import { getSession } from '@jbrowse/core/util'
|
|
8
5
|
import { ElementId } from '@jbrowse/core/util/types/mst'
|
|
9
6
|
import { autorun } from 'mobx'
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/* eslint-disable @typescript-eslint/no-unnecessary-condition */
|
|
2
2
|
/* eslint-disable @typescript-eslint/unbound-method */
|
|
3
|
-
import { AnnotationFeatureI } from '@apollo-annotation/
|
|
3
|
+
import { AnnotationFeatureI } from '@apollo-annotation/mst'
|
|
4
4
|
import {
|
|
5
5
|
LocationEndChange,
|
|
6
6
|
LocationStartChange,
|
|
7
|
-
} from '@apollo-annotation/
|
|
7
|
+
} from '@apollo-annotation/shared'
|
|
8
8
|
import { Theme, alpha } from '@mui/material'
|
|
9
9
|
|
|
10
10
|
import { LinearApolloDisplay } from '../stateModel'
|
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
/* eslint-disable @typescript-eslint/no-unsafe-argument */
|
|
4
4
|
/* eslint-disable @typescript-eslint/unbound-method */
|
|
5
5
|
/* eslint-disable @typescript-eslint/no-unnecessary-condition */
|
|
6
|
-
import { AnnotationFeatureI } from '@apollo-annotation/
|
|
6
|
+
import { AnnotationFeatureI } from '@apollo-annotation/mst'
|
|
7
7
|
import {
|
|
8
8
|
DiscontinuousLocationEndChange,
|
|
9
9
|
DiscontinuousLocationStartChange,
|
|
10
10
|
LocationEndChange,
|
|
11
11
|
LocationStartChange,
|
|
12
|
-
} from '@apollo-annotation/
|
|
12
|
+
} from '@apollo-annotation/shared'
|
|
13
13
|
import { alpha } from '@mui/material'
|
|
14
14
|
|
|
15
15
|
import { LinearApolloDisplay } from '../stateModel'
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* eslint-disable @typescript-eslint/no-unnecessary-condition */
|
|
2
2
|
/* eslint-disable @typescript-eslint/no-unsafe-argument */
|
|
3
3
|
/* eslint-disable @typescript-eslint/unbound-method */
|
|
4
|
-
import { AnnotationFeatureI } from '@apollo-annotation/
|
|
4
|
+
import { AnnotationFeatureI } from '@apollo-annotation/mst'
|
|
5
5
|
|
|
6
6
|
import { LinearApolloDisplay } from '../stateModel'
|
|
7
7
|
import { MousePosition } from '../stateModel/mouseEvents'
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
|
3
3
|
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
|
|
4
4
|
/* eslint-disable @typescript-eslint/no-unsafe-return */
|
|
5
|
-
import { AnnotationFeatureI } from '@apollo-annotation/
|
|
5
|
+
import { AnnotationFeatureI } from '@apollo-annotation/mst'
|
|
6
6
|
import { MenuItem } from '@jbrowse/core/ui'
|
|
7
7
|
import { AbstractSessionModel, SessionWithWidgets } from '@jbrowse/core/util'
|
|
8
8
|
import { alpha } from '@mui/material'
|
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
/* eslint-disable @typescript-eslint/no-unsafe-call */
|
|
5
5
|
/* eslint-disable @typescript-eslint/unbound-method */
|
|
6
6
|
/* eslint-disable @typescript-eslint/no-unnecessary-condition */
|
|
7
|
-
import { AnnotationFeatureI } from '@apollo-annotation/
|
|
7
|
+
import { AnnotationFeatureI } from '@apollo-annotation/mst'
|
|
8
8
|
import {
|
|
9
9
|
LocationEndChange,
|
|
10
10
|
LocationStartChange,
|
|
11
|
-
} from '@apollo-annotation/
|
|
11
|
+
} from '@apollo-annotation/shared'
|
|
12
12
|
import { alpha } from '@mui/material'
|
|
13
13
|
|
|
14
14
|
import { LinearApolloDisplay } from '../stateModel'
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
|
|
4
4
|
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
|
5
5
|
/* eslint-disable @typescript-eslint/no-unnecessary-condition */
|
|
6
|
-
import { AnnotationFeatureI } from '@apollo-annotation/
|
|
6
|
+
import { AnnotationFeatureI } from '@apollo-annotation/mst'
|
|
7
7
|
import { ConfigurationReference, getConf } from '@jbrowse/core/configuration'
|
|
8
8
|
import { AnyConfigurationSchemaType } from '@jbrowse/core/configuration/configurationSchema'
|
|
9
9
|
import { BaseDisplay } from '@jbrowse/core/pluggableElementTypes'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* eslint-disable @typescript-eslint/no-unsafe-argument */
|
|
2
2
|
/* eslint-disable @typescript-eslint/no-unsafe-return */
|
|
3
|
-
import { AnnotationFeatureI } from '@apollo-annotation/
|
|
3
|
+
import { AnnotationFeatureI } from '@apollo-annotation/mst'
|
|
4
4
|
import { ObservableMap, observable } from 'mobx'
|
|
5
5
|
import { types } from 'mobx-state-tree'
|
|
6
6
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* eslint-disable @typescript-eslint/no-unnecessary-condition */
|
|
2
2
|
/* eslint-disable @typescript-eslint/no-unsafe-argument */
|
|
3
3
|
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
|
4
|
-
import { AnnotationFeatureI } from '@apollo-annotation/
|
|
4
|
+
import { AnnotationFeatureI } from '@apollo-annotation/mst'
|
|
5
5
|
import { AnyConfigurationSchemaType } from '@jbrowse/core/configuration/configurationSchema'
|
|
6
6
|
import PluginManager from '@jbrowse/core/PluginManager'
|
|
7
7
|
import { AbstractSessionModel, doesIntersect2 } from '@jbrowse/core/util'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* eslint-disable @typescript-eslint/no-unnecessary-condition */
|
|
2
2
|
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
|
3
|
-
import { AnnotationFeatureI } from '@apollo-annotation/
|
|
3
|
+
import { AnnotationFeatureI } from '@apollo-annotation/mst'
|
|
4
4
|
import { AnyConfigurationSchemaType } from '@jbrowse/core/configuration/configurationSchema'
|
|
5
5
|
import PluginManager from '@jbrowse/core/PluginManager'
|
|
6
6
|
import { MenuItem } from '@jbrowse/core/ui'
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
|
5
5
|
/* eslint-disable @typescript-eslint/no-unsafe-argument */
|
|
6
6
|
/* eslint-disable @typescript-eslint/unbound-method */
|
|
7
|
-
import { AnnotationFeatureI } from '@apollo-annotation/
|
|
7
|
+
import { AnnotationFeatureI } from '@apollo-annotation/mst'
|
|
8
8
|
import { ConfigurationReference } from '@jbrowse/core/configuration'
|
|
9
9
|
import { AnyConfigurationSchemaType } from '@jbrowse/core/configuration/configurationSchema'
|
|
10
10
|
import PluginManager from '@jbrowse/core/PluginManager'
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import type { AnnotationFeatureI } from '@apollo-annotation/
|
|
1
|
+
import type { AnnotationFeatureI } from '@apollo-annotation/mst'
|
|
2
2
|
import {
|
|
3
3
|
DiscontinuousLocationEndChange,
|
|
4
4
|
DiscontinuousLocationStartChange,
|
|
5
5
|
LocationEndChange,
|
|
6
6
|
LocationStartChange,
|
|
7
7
|
TypeChange,
|
|
8
|
-
} from '@apollo-annotation/
|
|
8
|
+
} from '@apollo-annotation/shared'
|
|
9
9
|
|
|
10
10
|
import type { ChangeManager } from '../../ChangeManager'
|
|
11
11
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
|
|
3
3
|
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
|
4
4
|
/* eslint-disable @typescript-eslint/no-unsafe-argument */
|
|
5
|
-
import { AnnotationFeatureI } from '@apollo-annotation/
|
|
5
|
+
import { AnnotationFeatureI } from '@apollo-annotation/mst'
|
|
6
6
|
import { AbstractSessionModel } from '@jbrowse/core/util'
|
|
7
7
|
import { observer } from 'mobx-react'
|
|
8
8
|
import React from 'react'
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* eslint-disable @typescript-eslint/restrict-template-expressions */
|
|
2
|
-
import { AnnotationFeatureI } from '@apollo-annotation/
|
|
2
|
+
import { AnnotationFeatureI } from '@apollo-annotation/mst'
|
|
3
3
|
import { observer } from 'mobx-react'
|
|
4
4
|
import { getSnapshot } from 'mobx-state-tree'
|
|
5
5
|
import React from 'react'
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
AddAssemblyAndFeaturesFromFileChange,
|
|
9
9
|
AddAssemblyFromExternalChange,
|
|
10
10
|
AddAssemblyFromFileChange,
|
|
11
|
-
} from '@apollo-annotation/
|
|
11
|
+
} from '@apollo-annotation/shared'
|
|
12
12
|
import { readConfObject } from '@jbrowse/core/configuration'
|
|
13
13
|
import { AbstractSessionModel } from '@jbrowse/core/util'
|
|
14
14
|
import LinkIcon from '@mui/icons-material/Link'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* eslint-disable @typescript-eslint/no-misused-promises */
|
|
2
|
-
import { AnnotationFeatureI } from '@apollo-annotation/
|
|
3
|
-
import { AddFeatureChange } from '@apollo-annotation/
|
|
2
|
+
import { AnnotationFeatureI } from '@apollo-annotation/mst'
|
|
3
|
+
import { AddFeatureChange } from '@apollo-annotation/shared'
|
|
4
4
|
import { AbstractSessionModel } from '@jbrowse/core/util'
|
|
5
5
|
import {
|
|
6
6
|
Button,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* eslint-disable @typescript-eslint/no-unnecessary-condition */
|
|
2
2
|
/* eslint-disable @typescript-eslint/no-misused-promises */
|
|
3
|
-
import { AddFeatureChange } from '@apollo-annotation/
|
|
3
|
+
import { AddFeatureChange } from '@apollo-annotation/shared'
|
|
4
4
|
import { AbstractSessionModel, Region } from '@jbrowse/core/util/types'
|
|
5
5
|
import {
|
|
6
6
|
Button,
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
import {
|
|
5
5
|
AnnotationFeatureI,
|
|
6
6
|
AnnotationFeatureSnapshot,
|
|
7
|
-
} from '@apollo-annotation/
|
|
8
|
-
import { AddFeatureChange } from '@apollo-annotation/
|
|
7
|
+
} from '@apollo-annotation/mst'
|
|
8
|
+
import { AddFeatureChange } from '@apollo-annotation/shared'
|
|
9
9
|
import { readConfObject } from '@jbrowse/core/configuration'
|
|
10
10
|
import { AbstractSessionModel } from '@jbrowse/core/util'
|
|
11
11
|
import {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* eslint-disable @typescript-eslint/no-misused-promises */
|
|
2
|
-
import { DeleteAssemblyChange } from '@apollo-annotation/
|
|
2
|
+
import { DeleteAssemblyChange } from '@apollo-annotation/shared'
|
|
3
3
|
import { Assembly } from '@jbrowse/core/assemblyManager/assembly'
|
|
4
4
|
import {
|
|
5
5
|
Button,
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
|
|
2
2
|
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
|
3
3
|
/* eslint-disable @typescript-eslint/no-misused-promises */
|
|
4
|
-
import { AnnotationFeatureI } from '@apollo-annotation/
|
|
5
|
-
import { DeleteFeatureChange } from '@apollo-annotation/
|
|
4
|
+
import { AnnotationFeatureI } from '@apollo-annotation/mst'
|
|
5
|
+
import { DeleteFeatureChange } from '@apollo-annotation/shared'
|
|
6
6
|
import { AbstractSessionModel } from '@jbrowse/core/util'
|
|
7
7
|
import {
|
|
8
8
|
Button,
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
|
4
4
|
/* eslint-disable @typescript-eslint/no-unnecessary-condition */
|
|
5
5
|
/* eslint-disable @typescript-eslint/no-misused-promises */
|
|
6
|
-
import { ApolloAssembly } from '@apollo-annotation/
|
|
7
|
-
import { makeGFF3Feature } from '@apollo-annotation/
|
|
6
|
+
import { ApolloAssembly } from '@apollo-annotation/mst'
|
|
7
|
+
import { makeGFF3Feature } from '@apollo-annotation/shared'
|
|
8
8
|
import gff, { GFF3Item } from '@gmod/gff'
|
|
9
9
|
import { Assembly } from '@jbrowse/core/assemblyManager/assembly'
|
|
10
10
|
import { getConf } from '@jbrowse/core/configuration'
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
|
5
5
|
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
|
|
6
6
|
/* eslint-disable @typescript-eslint/no-misused-promises */
|
|
7
|
-
import { AddFeaturesFromFileChange } from '@apollo-annotation/
|
|
7
|
+
import { AddFeaturesFromFileChange } from '@apollo-annotation/shared'
|
|
8
8
|
import { Assembly } from '@jbrowse/core/assemblyManager/assembly'
|
|
9
9
|
import { getConf } from '@jbrowse/core/configuration'
|
|
10
10
|
import {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
|
|
4
4
|
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
|
5
5
|
/* eslint-disable @typescript-eslint/no-unsafe-return */
|
|
6
|
-
import { DeleteUserChange, UserChange } from '@apollo-annotation/
|
|
6
|
+
import { DeleteUserChange, UserChange } from '@apollo-annotation/shared'
|
|
7
7
|
import { AbstractRootModel } from '@jbrowse/core/util'
|
|
8
8
|
import DeleteIcon from '@mui/icons-material/Delete'
|
|
9
9
|
import {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/* eslint-disable @typescript-eslint/unbound-method */
|
|
2
2
|
/* eslint-disable @typescript-eslint/no-unnecessary-condition */
|
|
3
3
|
/* eslint-disable @typescript-eslint/no-misused-promises */
|
|
4
|
-
import { AnnotationFeatureI } from '@apollo-annotation/
|
|
5
|
-
import { FeatureAttributeChange } from '@apollo-annotation/
|
|
4
|
+
import { AnnotationFeatureI } from '@apollo-annotation/mst'
|
|
5
|
+
import { FeatureAttributeChange } from '@apollo-annotation/shared'
|
|
6
6
|
import { AbstractSessionModel } from '@jbrowse/core/util'
|
|
7
7
|
import DeleteIcon from '@mui/icons-material/Delete'
|
|
8
8
|
import {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable @typescript-eslint/no-unsafe-argument */
|
|
4
4
|
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
|
5
5
|
/* eslint-disable @typescript-eslint/no-unsafe-return */
|
|
6
|
-
import { changeRegistry } from '@apollo-annotation/
|
|
6
|
+
import { changeRegistry } from '@apollo-annotation/common'
|
|
7
7
|
import {
|
|
8
8
|
Button,
|
|
9
9
|
DialogActions,
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
|
4
4
|
/* eslint-disable @typescript-eslint/no-unsafe-call */
|
|
5
5
|
/* eslint-disable @typescript-eslint/no-unsafe-return */
|
|
6
|
-
import { AnnotationFeatureSnapshot } from '@apollo-annotation/
|
|
7
|
-
import { AddFeatureChange } from '@apollo-annotation/
|
|
6
|
+
import { AnnotationFeatureSnapshot } from '@apollo-annotation/mst'
|
|
7
|
+
import { AddFeatureChange } from '@apollo-annotation/shared'
|
|
8
8
|
import { Assembly } from '@jbrowse/core/assemblyManager/assembly'
|
|
9
9
|
import { DisplayType } from '@jbrowse/core/pluggableElementTypes'
|
|
10
10
|
import PluggableElementBase from '@jbrowse/core/pluggableElementTypes/PluggableElementBase'
|
package/src/index.ts
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
/* eslint-disable @typescript-eslint/unbound-method */
|
|
3
3
|
/* eslint-disable @typescript-eslint/no-unnecessary-condition */
|
|
4
4
|
/* eslint-disable @typescript-eslint/no-misused-promises */
|
|
5
|
-
import { changeRegistry, checkRegistry } from '@apollo-annotation/
|
|
5
|
+
import { changeRegistry, checkRegistry } from '@apollo-annotation/common'
|
|
6
6
|
import {
|
|
7
7
|
CDSCheck,
|
|
8
8
|
CoreValidation,
|
|
9
9
|
ParentChildValidation,
|
|
10
10
|
changes,
|
|
11
11
|
validationRegistry,
|
|
12
|
-
} from '@apollo-annotation/
|
|
12
|
+
} from '@apollo-annotation/shared'
|
|
13
13
|
import { ConfigurationSchema } from '@jbrowse/core/configuration'
|
|
14
14
|
import {
|
|
15
15
|
DisplayType,
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable @typescript-eslint/no-unsafe-call */
|
|
4
4
|
/* eslint-disable @typescript-eslint/no-unnecessary-condition */
|
|
5
5
|
/* eslint-disable @typescript-eslint/no-unsafe-argument */
|
|
6
|
-
import { ClientDataStore as ClientDataStoreType } from '@apollo-annotation/
|
|
6
|
+
import { ClientDataStore as ClientDataStoreType } from '@apollo-annotation/common'
|
|
7
7
|
import {
|
|
8
8
|
AnnotationFeature,
|
|
9
9
|
AnnotationFeatureSnapshot,
|
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
ApolloRefSeq,
|
|
12
12
|
CheckResult,
|
|
13
13
|
CheckResultSnapshot,
|
|
14
|
-
} from '@apollo-annotation/
|
|
14
|
+
} from '@apollo-annotation/mst'
|
|
15
15
|
import { getConf, readConfObject } from '@jbrowse/core/configuration'
|
|
16
16
|
import { ConfigurationModel } from '@jbrowse/core/configuration/types'
|
|
17
17
|
import { Region, getSession, isElectron } from '@jbrowse/core/util'
|
package/src/session/session.ts
CHANGED
|
@@ -2,12 +2,9 @@
|
|
|
2
2
|
/* eslint-disable @typescript-eslint/no-unnecessary-condition */
|
|
3
3
|
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
|
|
4
4
|
/* eslint-disable @typescript-eslint/no-unsafe-argument */
|
|
5
|
-
import { ClientDataStore as ClientDataStoreType } from '@apollo-annotation/
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
AnnotationFeatureI,
|
|
9
|
-
} from '@apollo-annotation/apollo-mst'
|
|
10
|
-
import { UserLocation } from '@apollo-annotation/apollo-shared'
|
|
5
|
+
import { ClientDataStore as ClientDataStoreType } from '@apollo-annotation/common'
|
|
6
|
+
import { AnnotationFeature, AnnotationFeatureI } from '@apollo-annotation/mst'
|
|
7
|
+
import { UserLocation } from '@apollo-annotation/shared'
|
|
11
8
|
import { AssemblyModel } from '@jbrowse/core/assemblyManager/assembly'
|
|
12
9
|
import { getConf } from '@jbrowse/core/configuration'
|
|
13
10
|
import { BaseInternetAccountModel } from '@jbrowse/core/pluggableElementTypes'
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
ClientDataStore,
|
|
3
|
-
checkRegistry,
|
|
4
|
-
} from '@apollo-annotation/apollo-common'
|
|
1
|
+
import { ClientDataStore, checkRegistry } from '@apollo-annotation/common'
|
|
5
2
|
import {
|
|
6
3
|
AnnotationFeatureSnapshot,
|
|
7
4
|
ApolloAssemblyI,
|
|
8
5
|
CheckResultSnapshot,
|
|
9
|
-
} from '@apollo-annotation/
|
|
6
|
+
} from '@apollo-annotation/mst'
|
|
10
7
|
import gff, { GFF3Comment, GFF3Feature, GFF3Sequence } from '@gmod/gff'
|
|
11
8
|
import { getSnapshot } from 'mobx-state-tree'
|
|
12
9
|
import { nanoid } from 'nanoid'
|