jbrowse-plugin-msaview 2.2.0 → 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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.2.0",
2
+ "version": "2.2.1",
3
3
  "license": "MIT",
4
4
  "name": "jbrowse-plugin-msaview",
5
5
  "keywords": [
package/src/index.ts CHANGED
@@ -1,9 +1,7 @@
1
1
  import Plugin from '@jbrowse/core/Plugin'
2
2
  import PluginManager from '@jbrowse/core/PluginManager'
3
- import { ConfigurationSchema } from '@jbrowse/core/configuration'
4
3
  import { AbstractSessionModel, isAbstractMenuManager } from '@jbrowse/core/util'
5
4
  import GridOn from '@mui/icons-material/GridOn'
6
- import { types } from 'mobx-state-tree'
7
5
 
8
6
  import { version } from '../package.json'
9
7
  import AddHighlightModelF from './AddHighlightModel'
@@ -31,25 +29,4 @@ export default class MsaViewPlugin extends Plugin {
31
29
  })
32
30
  }
33
31
  }
34
-
35
- rootConfigurationSchema = {
36
- msa: ConfigurationSchema('MSA', {
37
- datasets: types.maybe(
38
- types.array(
39
- ConfigurationSchema('MSAEntry', {
40
- name: {
41
- type: 'string',
42
- defaultValue: '',
43
- },
44
- adapter: {
45
- type: 'frozen',
46
- description:
47
- 'This can be a data adapter config for a IndexedFasta for example, which has a special way of being interpreted',
48
- defaultValue: {},
49
- },
50
- }),
51
- ),
52
- ),
53
- }),
54
- }
55
32
  }