@jbrowse/plugin-sequence 1.7.0 → 1.7.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/BgzipFastaAdapter/BgzipFastaAdapter.d.ts +7 -7
- package/dist/BgzipFastaAdapter/configSchema.d.ts +2 -2
- package/dist/BgzipFastaAdapter/index.d.ts +1 -1
- package/dist/ChromSizesAdapter/ChromSizesAdapter.d.ts +19 -19
- package/dist/ChromSizesAdapter/configSchema.d.ts +2 -2
- package/dist/ChromSizesAdapter/index.d.ts +1 -1
- package/dist/DivSequenceRenderer/components/DivSequenceRendering.d.ts +21 -21
- package/dist/DivSequenceRenderer/configSchema.d.ts +2 -2
- package/dist/DivSequenceRenderer/index.d.ts +2 -2
- package/dist/GCContentAdapter/GCContentAdapter.d.ts +23 -23
- package/dist/GCContentAdapter/configSchema.d.ts +3 -3
- package/dist/GCContentAdapter/index.d.ts +6 -6
- package/dist/IndexedFastaAdapter/IndexedFastaAdapter.d.ts +25 -25
- package/dist/IndexedFastaAdapter/configSchema.d.ts +2 -2
- package/dist/IndexedFastaAdapter/index.d.ts +1 -1
- package/dist/LinearReferenceSequenceDisplay/configSchema.d.ts +1 -1
- package/dist/LinearReferenceSequenceDisplay/index.d.ts +2 -2
- package/dist/LinearReferenceSequenceDisplay/model.d.ts +208 -208
- package/dist/TwoBitAdapter/TwoBitAdapter.d.ts +26 -26
- package/dist/TwoBitAdapter/configSchema.d.ts +2 -2
- package/dist/TwoBitAdapter/index.d.ts +1 -1
- package/dist/index.d.ts +6 -6
- package/dist/referenceSeqTrackConfig.d.ts +2 -2
- package/package.json +4 -3
- package/dist/DivSequenceRenderer/components/DivSequenceRendering.test.d.ts +0 -1
- package/dist/index.test.d.ts +0 -1
- package/dist/plugin-sequence.cjs.development.js +0 -2567
- package/dist/plugin-sequence.cjs.development.js.map +0 -1
- package/dist/plugin-sequence.cjs.production.min.js +0 -2
- package/dist/plugin-sequence.cjs.production.min.js.map +0 -1
- package/dist/plugin-sequence.esm.js +0 -2561
- package/dist/plugin-sequence.esm.js.map +0 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { AnyConfigurationModel } from '@jbrowse/core/configuration/configurationSchema';
|
|
2
|
-
import IndexedFasta from '../IndexedFastaAdapter/IndexedFastaAdapter';
|
|
3
|
-
import PluginManager from '@jbrowse/core/PluginManager';
|
|
4
|
-
import { getSubAdapterType } from '@jbrowse/core/data_adapters/dataAdapterCache';
|
|
5
|
-
export default class extends IndexedFasta {
|
|
6
|
-
constructor(config: AnyConfigurationModel, getSubAdapter?: getSubAdapterType, pluginManager?: PluginManager);
|
|
7
|
-
}
|
|
1
|
+
import { AnyConfigurationModel } from '@jbrowse/core/configuration/configurationSchema';
|
|
2
|
+
import IndexedFasta from '../IndexedFastaAdapter/IndexedFastaAdapter';
|
|
3
|
+
import PluginManager from '@jbrowse/core/PluginManager';
|
|
4
|
+
import { getSubAdapterType } from '@jbrowse/core/data_adapters/dataAdapterCache';
|
|
5
|
+
export default class extends IndexedFasta {
|
|
6
|
+
constructor(config: AnyConfigurationModel, getSubAdapter?: getSubAdapterType, pluginManager?: PluginManager);
|
|
7
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
2
|
-
export default _default;
|
|
1
|
+
declare const _default: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
2
|
+
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as configSchema } from './configSchema';
|
|
1
|
+
export { default as configSchema } from './configSchema';
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { RegionsAdapter, BaseAdapter } from '@jbrowse/core/data_adapters/BaseAdapter';
|
|
2
|
-
import { Instance } from 'mobx-state-tree';
|
|
3
|
-
import MyConfigSchema from './configSchema';
|
|
4
|
-
import PluginManager from '@jbrowse/core/PluginManager';
|
|
5
|
-
import { getSubAdapterType } from '@jbrowse/core/data_adapters/dataAdapterCache';
|
|
6
|
-
export default class extends BaseAdapter implements RegionsAdapter {
|
|
7
|
-
protected refSeqs: Promise<Record<string, number>>;
|
|
8
|
-
protected source: string;
|
|
9
|
-
constructor(config: Instance<typeof MyConfigSchema>, getSubAdapter?: getSubAdapterType, pluginManager?: PluginManager);
|
|
10
|
-
private init;
|
|
11
|
-
getRegions(): Promise<{
|
|
12
|
-
refName: string;
|
|
13
|
-
start: number;
|
|
14
|
-
end: number;
|
|
15
|
-
}[]>;
|
|
16
|
-
getFeatures(): void;
|
|
17
|
-
getHeader(): {};
|
|
18
|
-
freeResources(): void;
|
|
19
|
-
}
|
|
1
|
+
import { RegionsAdapter, BaseAdapter } from '@jbrowse/core/data_adapters/BaseAdapter';
|
|
2
|
+
import { Instance } from 'mobx-state-tree';
|
|
3
|
+
import MyConfigSchema from './configSchema';
|
|
4
|
+
import PluginManager from '@jbrowse/core/PluginManager';
|
|
5
|
+
import { getSubAdapterType } from '@jbrowse/core/data_adapters/dataAdapterCache';
|
|
6
|
+
export default class extends BaseAdapter implements RegionsAdapter {
|
|
7
|
+
protected refSeqs: Promise<Record<string, number>>;
|
|
8
|
+
protected source: string;
|
|
9
|
+
constructor(config: Instance<typeof MyConfigSchema>, getSubAdapter?: getSubAdapterType, pluginManager?: PluginManager);
|
|
10
|
+
private init;
|
|
11
|
+
getRegions(): Promise<{
|
|
12
|
+
refName: string;
|
|
13
|
+
start: number;
|
|
14
|
+
end: number;
|
|
15
|
+
}[]>;
|
|
16
|
+
getFeatures(): void;
|
|
17
|
+
getHeader(): {};
|
|
18
|
+
freeResources(): void;
|
|
19
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
2
|
-
export default _default;
|
|
1
|
+
declare const _default: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
2
|
+
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as configSchema } from './configSchema';
|
|
1
|
+
export { default as configSchema } from './configSchema';
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { AnyConfigurationModel } from '@jbrowse/core/configuration/configurationSchema';
|
|
3
|
-
import { Feature } from '@jbrowse/core/util/simpleFeature';
|
|
4
|
-
import { Region } from '@jbrowse/core/util/types';
|
|
5
|
-
interface MyProps {
|
|
6
|
-
exportSVG?: {
|
|
7
|
-
rasterizeLayers: boolean;
|
|
8
|
-
};
|
|
9
|
-
features: Map<string, Feature>;
|
|
10
|
-
regions: Region[];
|
|
11
|
-
bpPerPx: number;
|
|
12
|
-
config: AnyConfigurationModel;
|
|
13
|
-
highResolutionScaling: number;
|
|
14
|
-
theme: any;
|
|
15
|
-
showForward: boolean;
|
|
16
|
-
showReverse: boolean;
|
|
17
|
-
showTranslation: boolean;
|
|
18
|
-
}
|
|
19
|
-
declare function Sequence(props: MyProps): JSX.Element;
|
|
20
|
-
declare const _default: typeof Sequence;
|
|
21
|
-
export default _default;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { AnyConfigurationModel } from '@jbrowse/core/configuration/configurationSchema';
|
|
3
|
+
import { Feature } from '@jbrowse/core/util/simpleFeature';
|
|
4
|
+
import { Region } from '@jbrowse/core/util/types';
|
|
5
|
+
interface MyProps {
|
|
6
|
+
exportSVG?: {
|
|
7
|
+
rasterizeLayers: boolean;
|
|
8
|
+
};
|
|
9
|
+
features: Map<string, Feature>;
|
|
10
|
+
regions: Region[];
|
|
11
|
+
bpPerPx: number;
|
|
12
|
+
config: AnyConfigurationModel;
|
|
13
|
+
highResolutionScaling: number;
|
|
14
|
+
theme: any;
|
|
15
|
+
showForward: boolean;
|
|
16
|
+
showReverse: boolean;
|
|
17
|
+
showTranslation: boolean;
|
|
18
|
+
}
|
|
19
|
+
declare function Sequence(props: MyProps): JSX.Element;
|
|
20
|
+
declare const _default: typeof Sequence;
|
|
21
|
+
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
2
|
-
export default _default;
|
|
1
|
+
declare const _default: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
2
|
+
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { default as ReactComponent } from './components/DivSequenceRendering';
|
|
2
|
-
export { default as configSchema } from './configSchema';
|
|
1
|
+
export { default as ReactComponent } from './components/DivSequenceRendering';
|
|
2
|
+
export { default as configSchema } from './configSchema';
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import { BaseFeatureDataAdapter, BaseOptions } from '@jbrowse/core/data_adapters/BaseAdapter';
|
|
2
|
-
import { Region } from '@jbrowse/core/util/types';
|
|
3
|
-
import { Feature } from '@jbrowse/core/util/simpleFeature';
|
|
4
|
-
export default class extends BaseFeatureDataAdapter {
|
|
5
|
-
private windowSize;
|
|
6
|
-
private windowDelta;
|
|
7
|
-
private gcMode;
|
|
8
|
-
static capabilities: string[];
|
|
9
|
-
configure(): Promise<BaseFeatureDataAdapter>;
|
|
10
|
-
getRefNames(): Promise<string[]>;
|
|
11
|
-
/**
|
|
12
|
-
* Fetch features for a certain region
|
|
13
|
-
* @param param -
|
|
14
|
-
* @returns Observable of Feature objects in the region
|
|
15
|
-
*/
|
|
16
|
-
getFeatures(query: Region, opts: BaseOptions): import("rxjs").Observable<Feature>;
|
|
17
|
-
/**
|
|
18
|
-
* called to provide a hint that data tied to a certain region
|
|
19
|
-
* will not be needed for the forseeable future and can be purged
|
|
20
|
-
* from caches, etc
|
|
21
|
-
*/
|
|
22
|
-
freeResources(): void;
|
|
23
|
-
}
|
|
1
|
+
import { BaseFeatureDataAdapter, BaseOptions } from '@jbrowse/core/data_adapters/BaseAdapter';
|
|
2
|
+
import { Region } from '@jbrowse/core/util/types';
|
|
3
|
+
import { Feature } from '@jbrowse/core/util/simpleFeature';
|
|
4
|
+
export default class extends BaseFeatureDataAdapter {
|
|
5
|
+
private windowSize;
|
|
6
|
+
private windowDelta;
|
|
7
|
+
private gcMode;
|
|
8
|
+
static capabilities: string[];
|
|
9
|
+
configure(): Promise<BaseFeatureDataAdapter>;
|
|
10
|
+
getRefNames(): Promise<string[]>;
|
|
11
|
+
/**
|
|
12
|
+
* Fetch features for a certain region
|
|
13
|
+
* @param param -
|
|
14
|
+
* @returns Observable of Feature objects in the region
|
|
15
|
+
*/
|
|
16
|
+
getFeatures(query: Region, opts: BaseOptions): import("rxjs").Observable<Feature>;
|
|
17
|
+
/**
|
|
18
|
+
* called to provide a hint that data tied to a certain region
|
|
19
|
+
* will not be needed for the forseeable future and can be purged
|
|
20
|
+
* from caches, etc
|
|
21
|
+
*/
|
|
22
|
+
freeResources(): void;
|
|
23
|
+
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import PluginManager from '@jbrowse/core/PluginManager';
|
|
2
|
-
declare const _default: (pluginManager: PluginManager) => import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
3
|
-
export default _default;
|
|
1
|
+
import PluginManager from '@jbrowse/core/PluginManager';
|
|
2
|
+
declare const _default: (pluginManager: PluginManager) => import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
3
|
+
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import PluginManager from '@jbrowse/core/PluginManager';
|
|
2
|
-
declare const _default: (pluginManager: PluginManager) => {
|
|
3
|
-
configSchema: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
4
|
-
getAdapterClass: () => Promise<typeof import("./GCContentAdapter").default>;
|
|
5
|
-
};
|
|
6
|
-
export default _default;
|
|
1
|
+
import PluginManager from '@jbrowse/core/PluginManager';
|
|
2
|
+
declare const _default: (pluginManager: PluginManager) => {
|
|
3
|
+
configSchema: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
4
|
+
getAdapterClass: () => Promise<typeof import("./GCContentAdapter").default>;
|
|
5
|
+
};
|
|
6
|
+
export default _default;
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { IndexedFasta } from '@gmod/indexedfasta';
|
|
2
|
-
import { BaseSequenceAdapter, BaseOptions } from '@jbrowse/core/data_adapters/BaseAdapter';
|
|
3
|
-
import { NoAssemblyRegion } from '@jbrowse/core/util/types';
|
|
4
|
-
import { Feature } from '@jbrowse/core/util/simpleFeature';
|
|
5
|
-
import { AnyConfigurationModel } from '@jbrowse/core/configuration/configurationSchema';
|
|
6
|
-
import PluginManager from '@jbrowse/core/PluginManager';
|
|
7
|
-
import { getSubAdapterType } from '@jbrowse/core/data_adapters/dataAdapterCache';
|
|
8
|
-
export default class extends BaseSequenceAdapter {
|
|
9
|
-
protected fasta: IndexedFasta;
|
|
10
|
-
private seqCache;
|
|
11
|
-
constructor(config: AnyConfigurationModel, getSubAdapter?: getSubAdapterType, pluginManager?: PluginManager);
|
|
12
|
-
getRefNames(opts?: BaseOptions): Promise<string[]>;
|
|
13
|
-
getRegions(opts?: BaseOptions): Promise<{
|
|
14
|
-
refName: string;
|
|
15
|
-
start: number;
|
|
16
|
-
end: number;
|
|
17
|
-
}[]>;
|
|
18
|
-
getFeatures(region: NoAssemblyRegion, opts?: BaseOptions): import("rxjs").Observable<Feature>;
|
|
19
|
-
/**
|
|
20
|
-
* called to provide a hint that data tied to a certain region
|
|
21
|
-
* will not be needed for the forseeable future and can be purged
|
|
22
|
-
* from caches, etc
|
|
23
|
-
*/
|
|
24
|
-
freeResources(): void;
|
|
25
|
-
}
|
|
1
|
+
import { IndexedFasta } from '@gmod/indexedfasta';
|
|
2
|
+
import { BaseSequenceAdapter, BaseOptions } from '@jbrowse/core/data_adapters/BaseAdapter';
|
|
3
|
+
import { NoAssemblyRegion } from '@jbrowse/core/util/types';
|
|
4
|
+
import { Feature } from '@jbrowse/core/util/simpleFeature';
|
|
5
|
+
import { AnyConfigurationModel } from '@jbrowse/core/configuration/configurationSchema';
|
|
6
|
+
import PluginManager from '@jbrowse/core/PluginManager';
|
|
7
|
+
import { getSubAdapterType } from '@jbrowse/core/data_adapters/dataAdapterCache';
|
|
8
|
+
export default class extends BaseSequenceAdapter {
|
|
9
|
+
protected fasta: IndexedFasta;
|
|
10
|
+
private seqCache;
|
|
11
|
+
constructor(config: AnyConfigurationModel, getSubAdapter?: getSubAdapterType, pluginManager?: PluginManager);
|
|
12
|
+
getRefNames(opts?: BaseOptions): Promise<string[]>;
|
|
13
|
+
getRegions(opts?: BaseOptions): Promise<{
|
|
14
|
+
refName: string;
|
|
15
|
+
start: number;
|
|
16
|
+
end: number;
|
|
17
|
+
}[]>;
|
|
18
|
+
getFeatures(region: NoAssemblyRegion, opts?: BaseOptions): import("rxjs").Observable<Feature>;
|
|
19
|
+
/**
|
|
20
|
+
* called to provide a hint that data tied to a certain region
|
|
21
|
+
* will not be needed for the forseeable future and can be purged
|
|
22
|
+
* from caches, etc
|
|
23
|
+
*/
|
|
24
|
+
freeResources(): void;
|
|
25
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
2
|
-
export default _default;
|
|
1
|
+
declare const _default: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
2
|
+
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as configSchema } from './configSchema';
|
|
1
|
+
export { default as configSchema } from './configSchema';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const configSchema: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
1
|
+
export declare const configSchema: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { configSchema } from './configSchema';
|
|
2
|
-
export { modelFactory } from './model';
|
|
1
|
+
export { configSchema } from './configSchema';
|
|
2
|
+
export { modelFactory } from './model';
|