@jbrowse/plugin-variants 1.6.1 → 1.6.5
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/LinearVariantDisplay/model.d.ts +1 -1
- package/dist/plugin-variants.cjs.development.js +1 -1
- package/dist/plugin-variants.cjs.development.js.map +1 -1
- package/dist/plugin-variants.cjs.production.min.js +1 -1
- package/dist/plugin-variants.cjs.production.min.js.map +1 -1
- package/dist/plugin-variants.esm.js +1 -1
- package/dist/plugin-variants.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/index.ts +4 -1
|
@@ -184,7 +184,7 @@ export default function (configSchema: LinearVariantDisplayConfigModel): import(
|
|
|
184
184
|
}[];
|
|
185
185
|
renderProps(): any;
|
|
186
186
|
} & {
|
|
187
|
-
renderSvg(opts: import("@jbrowse/plugin-linear-genome-view/
|
|
187
|
+
renderSvg(opts: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView").ExportSvgOptions & {
|
|
188
188
|
overrideHeight: number;
|
|
189
189
|
}): Promise<JSX.Element>;
|
|
190
190
|
} & {
|
|
@@ -1846,7 +1846,7 @@ var VariantsPlugin = /*#__PURE__*/function (_Plugin) {
|
|
|
1846
1846
|
});
|
|
1847
1847
|
pluginManager.addToExtensionPoint('Core-guessTrackTypeForLocation', function (trackTypeGuesser) {
|
|
1848
1848
|
return function (adapterName) {
|
|
1849
|
-
if (adapterName === 'VcfTabixAdapter') {
|
|
1849
|
+
if (adapterName === 'VcfTabixAdapter' || adapterName === 'VcfAdapter') {
|
|
1850
1850
|
return 'VariantTrack';
|
|
1851
1851
|
}
|
|
1852
1852
|
|