@jbrowse/plugin-data-management 2.1.7 → 2.2.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/AddConnectionWidget/components/ConfigureConnection.js +3 -2
- package/dist/AddConnectionWidget/components/ConfigureConnection.js.map +1 -1
- package/dist/AddTrackWidget/components/AddTrackWidget.js +2 -0
- package/dist/AddTrackWidget/components/AddTrackWidget.js.map +1 -1
- package/dist/AddTrackWidget/components/PasteConfigWorkflow.d.ts +7 -0
- package/dist/AddTrackWidget/components/PasteConfigWorkflow.js +66 -0
- package/dist/AddTrackWidget/components/PasteConfigWorkflow.js.map +1 -0
- package/dist/AddTrackWidget/model.d.ts +2 -2
- package/dist/HierarchicalTrackSelectorWidget/components/HierarchicalTrackSelector.js +1 -1
- package/dist/HierarchicalTrackSelectorWidget/components/HierarchicalTrackSelector.js.map +1 -1
- package/dist/HierarchicalTrackSelectorWidget/model.d.ts +3 -3
- package/dist/PluginStoreWidget/components/PluginStoreWidget.js +4 -3
- package/dist/PluginStoreWidget/components/PluginStoreWidget.js.map +1 -1
- package/dist/PluginStoreWidget/model.d.ts +2 -2
- package/dist/ucsc-trackhub/configSchema.d.ts +2 -2
- package/dist/ucsc-trackhub/configSchema.js +18 -2
- package/dist/ucsc-trackhub/configSchema.js.map +1 -1
- package/esm/AddConnectionWidget/components/ConfigureConnection.js +3 -2
- package/esm/AddConnectionWidget/components/ConfigureConnection.js.map +1 -1
- package/esm/AddTrackWidget/components/AddTrackWidget.js +2 -0
- package/esm/AddTrackWidget/components/AddTrackWidget.js.map +1 -1
- package/esm/AddTrackWidget/components/PasteConfigWorkflow.d.ts +7 -0
- package/esm/AddTrackWidget/components/PasteConfigWorkflow.js +41 -0
- package/esm/AddTrackWidget/components/PasteConfigWorkflow.js.map +1 -0
- package/esm/AddTrackWidget/model.d.ts +2 -2
- package/esm/AddTrackWidget/model.js +1 -1
- package/esm/HierarchicalTrackSelectorWidget/components/HierarchicalTrackSelector.js +1 -1
- package/esm/HierarchicalTrackSelectorWidget/components/HierarchicalTrackSelector.js.map +1 -1
- package/esm/HierarchicalTrackSelectorWidget/model.d.ts +3 -3
- package/esm/PluginStoreWidget/components/PluginStoreWidget.js +4 -3
- package/esm/PluginStoreWidget/components/PluginStoreWidget.js.map +1 -1
- package/esm/PluginStoreWidget/model.d.ts +2 -2
- package/esm/ucsc-trackhub/configSchema.d.ts +2 -2
- package/esm/ucsc-trackhub/configSchema.js +18 -2
- package/esm/ucsc-trackhub/configSchema.js.map +1 -1
- package/package.json +2 -2
- package/src/AddConnectionWidget/components/ConfigureConnection.tsx +3 -2
- package/src/AddConnectionWidget/components/__snapshots__/AddConnectionWidget.test.js.snap +5 -5
- package/src/AddTrackWidget/components/AddTrackWidget.tsx +2 -0
- package/src/AddTrackWidget/components/PasteConfigWorkflow.tsx +64 -0
- package/src/AddTrackWidget/model.ts +1 -1
- package/src/HierarchicalTrackSelectorWidget/components/HierarchicalTrackSelector.tsx +1 -1
- package/src/HierarchicalTrackSelectorWidget/components/__snapshots__/HierarchicalTrackSelector.test.tsx.snap +7 -7
- package/src/PluginStoreWidget/components/PluginStoreWidget.tsx +4 -4
- package/src/PluginStoreWidget/components/__snapshots__/PluginStoreWidget.test.js.snap +57 -35
- package/src/__snapshots__/index.test.js.snap +4 -4
- package/src/ucsc-trackhub/{configSchema.js → configSchema.ts} +20 -2
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
import { baseConnectionConfig } from '@jbrowse/core/pluggableElementTypes/models'
|
|
2
2
|
import { ConfigurationSchema } from '@jbrowse/core/configuration'
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
/**
|
|
5
|
+
* #config UCSCTrackHubConnection
|
|
6
|
+
*/
|
|
7
|
+
function x() {} // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
8
|
+
|
|
9
|
+
const UCSCTrackHubConnection = ConfigurationSchema(
|
|
5
10
|
'UCSCTrackHubConnection',
|
|
6
11
|
{
|
|
12
|
+
/**
|
|
13
|
+
* #slot
|
|
14
|
+
*/
|
|
7
15
|
hubTxtLocation: {
|
|
8
16
|
type: 'fileLocation',
|
|
9
17
|
defaultValue: {
|
|
@@ -12,6 +20,9 @@ export default ConfigurationSchema(
|
|
|
12
20
|
},
|
|
13
21
|
description: 'location of the hub file (usually called hub.txt)',
|
|
14
22
|
},
|
|
23
|
+
/**
|
|
24
|
+
* #slot
|
|
25
|
+
*/
|
|
15
26
|
assemblyNames: {
|
|
16
27
|
type: 'stringArray',
|
|
17
28
|
defaultValue: [],
|
|
@@ -19,5 +30,12 @@ export default ConfigurationSchema(
|
|
|
19
30
|
'optional list of genomes to import from this track hub, if empty all genomes will be imported',
|
|
20
31
|
},
|
|
21
32
|
},
|
|
22
|
-
{
|
|
33
|
+
{
|
|
34
|
+
/**
|
|
35
|
+
* #baseConfiguration
|
|
36
|
+
*/
|
|
37
|
+
baseConfiguration: baseConnectionConfig,
|
|
38
|
+
},
|
|
23
39
|
)
|
|
40
|
+
|
|
41
|
+
export default UCSCTrackHubConnection
|