higlass 1.13.5 → 2.0.0
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/README.md +48 -54
- package/app/globals.d.ts +1 -1
- package/app/missing-types.d.ts +4 -1
- package/app/scripts/AddTrackDialog.jsx +11 -4
- package/app/scripts/AddTrackPositionMenu.jsx +28 -7
- package/app/scripts/Annotations1dTrack.js +90 -251
- package/app/scripts/Annotations2dTrack.js +12 -7
- package/app/scripts/Autocomplete.jsx +13 -28
- package/app/scripts/AxisPixi.js +6 -10
- package/app/scripts/BarTrack.js +3 -3
- package/app/scripts/BedLikeTrack.js +556 -449
- package/app/scripts/Button.jsx +1 -1
- package/app/scripts/CNVIntervalTrack.js +1 -1
- package/app/scripts/CenterTrack.jsx +8 -7
- package/app/scripts/Chromosome2DAnnotations.js +1 -1
- package/app/scripts/Chromosome2DLabels.js +1 -1
- package/app/scripts/ChromosomeGrid.js +49 -38
- package/app/scripts/ChromosomeInfo.js +1 -1
- package/app/scripts/CombinedTrack.js +3 -1
- package/app/scripts/ConfigTrackMenu.jsx +1 -1
- package/app/scripts/ConfigViewMenu.jsx +2 -2
- package/app/scripts/ContextMenuContainer.jsx +4 -2
- package/app/scripts/ContextMenuItem.jsx +14 -2
- package/app/scripts/CrossRule.js +1 -1
- package/app/scripts/CustomTrackDialog.jsx +2 -2
- package/app/scripts/Dialog.jsx +2 -2
- package/app/scripts/DragListeningDiv.jsx +1 -1
- package/app/scripts/DraggableDiv.jsx +2 -3
- package/app/scripts/ExportLinkDialog.jsx +1 -1
- package/app/scripts/FilledLine.js +349 -0
- package/app/scripts/GalleryTracks.jsx +77 -78
- package/app/scripts/GenomePositionSearchBox.jsx +184 -482
- package/app/scripts/HeatmapOptions.jsx +4 -2
- package/app/scripts/HeatmapTiledPixiTrack.js +23 -32
- package/app/scripts/HiGlassComponent.jsx +515 -444
- package/app/scripts/HiGlassComponentContext.js +5 -0
- package/app/scripts/Horizontal1dHeatmapTrack.js +1 -1
- package/app/scripts/Horizontal2DDomainsTrack.js +1 -1
- package/app/scripts/HorizontalChromosomeLabels.js +28 -22
- package/app/scripts/HorizontalGeneAnnotationsTrack.js +1 -1
- package/app/scripts/HorizontalHeatmapTrack.js +2 -2
- package/app/scripts/HorizontalMultivecTrack.js +6 -7
- package/app/scripts/HorizontalRule.js +1 -2
- package/app/scripts/HorizontalTiled1DPixiTrack.js +4 -4
- package/app/scripts/HorizontalTiledPlot.jsx +9 -9
- package/app/scripts/LeftTrackModifier.js +4 -0
- package/app/scripts/ListWrapper.jsx +1 -2
- package/app/scripts/MapboxTilesTrack.js +1 -2
- package/app/scripts/Modal.jsx +2 -2
- package/app/scripts/MoveableTrack.jsx +10 -12
- package/app/scripts/NestedContextMenu.jsx +2 -1
- package/app/scripts/OSMTileIdsTrack.js +1 -1
- package/app/scripts/OverlayTrack.js +4 -4
- package/app/scripts/PixiTrack.js +27 -13
- package/app/scripts/PlotTypeChooser.jsx +3 -4
- package/app/scripts/SearchField.js +5 -5
- package/app/scripts/SeriesListItems.jsx +3 -4
- package/app/scripts/SeriesListMenu.jsx +95 -53
- package/app/scripts/SeriesListSubmenuMixin.jsx +2 -1
- package/app/scripts/SketchInlinePicker.jsx +2 -2
- package/app/scripts/SortableList.jsx +1 -1
- package/app/scripts/Tiled1DPixiTrack.js +4 -1
- package/app/scripts/TiledPixiTrack.js +244 -102
- package/app/scripts/TiledPlot.jsx +565 -118
- package/app/scripts/TilesetFinder.jsx +12 -4
- package/app/scripts/Track.js +1 -1
- package/app/scripts/TrackArea.jsx +4 -0
- package/app/scripts/TrackControl.jsx +2 -2
- package/app/scripts/TrackRenderer.jsx +32 -33
- package/app/scripts/ValueIntervalTrack.js +1 -1
- package/app/scripts/VerticalRule.js +2 -2
- package/app/scripts/VerticalTiledPlot.jsx +7 -7
- package/app/scripts/ViewConfigEditor.jsx +1 -1
- package/app/scripts/ViewContextMenu.jsx +53 -5
- package/app/scripts/ViewHeader.jsx +9 -9
- package/app/scripts/ViewportTracker2D.js +1 -1
- package/app/scripts/api.js +92 -12
- package/app/scripts/configs/available-track-types.js +1 -1
- package/app/scripts/configs/index.js +6 -1
- package/app/scripts/configs/positions-by-datatype.js +2 -2
- package/app/scripts/configs/primitives.js +2 -0
- package/app/scripts/configs/themes.js +0 -1
- package/app/scripts/configs/tracks-info-by-type.js +11 -8
- package/app/scripts/configs/tracks-info.js +3 -2
- package/app/scripts/d3-context-menu.js +3 -4
- package/app/scripts/data-fetchers/DataFetcher.js +35 -36
- package/app/scripts/data-fetchers/genbank-fetcher.js +13 -22
- package/app/scripts/data-fetchers/local-tile-fetcher.js +10 -8
- package/app/scripts/hglib.jsx +62 -71
- package/app/scripts/hocs/with-modal.jsx +32 -10
- package/app/scripts/hocs/with-pub-sub.js +12 -3
- package/app/scripts/hocs/with-theme.jsx +21 -14
- package/app/scripts/icons.jsx +3 -2
- package/app/scripts/mixwith.js +2 -2
- package/app/scripts/options-info.js +49 -11
- package/app/scripts/plugins/get-data-fetcher.js +2 -3
- package/app/scripts/services/chrom-info.js +32 -4
- package/app/scripts/services/element-resize-listener.js +2 -2
- package/app/scripts/services/index.js +0 -1
- package/app/scripts/services/tile-proxy.js +368 -285
- package/app/scripts/services/worker.js +31 -28
- package/app/scripts/test-helpers/index.js +2 -1
- package/app/scripts/test-helpers/test-helpers.jsx +157 -69
- package/app/scripts/types.ts +118 -47
- package/app/scripts/utils/LruCache.js +3 -2
- package/app/scripts/utils/assert.js +19 -0
- package/app/scripts/utils/background-task-scheduler.js +2 -0
- package/app/scripts/utils/color-domain-to-rgba-array.js +13 -3
- package/app/scripts/utils/copy-text-to-clipboard.js +36 -0
- package/app/scripts/utils/decompress.js +33 -0
- package/app/scripts/utils/default-tracks.js +46 -0
- package/app/scripts/utils/dict-items.js +1 -0
- package/app/scripts/utils/dict-keys.js +1 -0
- package/app/scripts/utils/dict-values.js +1 -0
- package/app/scripts/utils/expand-combined-tracks.js +11 -7
- package/app/scripts/utils/fill-in-min-widths.js +47 -21
- package/app/scripts/utils/flatten.js +0 -1
- package/app/scripts/utils/get-aggregation-function.js +1 -1
- package/app/scripts/utils/get-default-track-for-datatype.js +37 -10
- package/app/scripts/utils/get-default-tracks-for-datatype.ts +46 -0
- package/app/scripts/utils/get-higlass-components.js +27 -3
- package/app/scripts/utils/get-track-position-by-uid.js +8 -1
- package/app/scripts/utils/get-xylofon.js +12 -9
- package/app/scripts/utils/has-parent.js +5 -5
- package/app/scripts/utils/hex-string-to-int.js +1 -1
- package/app/scripts/utils/index.js +1 -0
- package/app/scripts/utils/interval-tree.js +222 -177
- package/app/scripts/utils/load-chrom-infos.js +4 -1
- package/app/scripts/utils/pixi-text-to-svg.js +5 -9
- package/app/scripts/utils/positioned-tracks-to-all-tracks.js +55 -0
- package/app/scripts/utils/range-query-2d.js +3 -3
- package/app/scripts/utils/reduce.js +12 -5
- package/app/scripts/utils/segments-to-rows.js +14 -11
- package/app/scripts/utils/svg-line.js +7 -8
- package/app/scripts/utils/type-guards.js +16 -7
- package/app/scripts/utils/visit-positioned-tracks.js +9 -4
- package/app/styles/AddTrackPositionMenu.module.scss +37 -0
- package/app/styles/HiGlass.module.scss +3 -1
- package/app/styles/d3-context-menu.css +0 -1
- package/app/styles/prism.css +1 -0
- package/dist/app/schema.json +525 -0
- package/dist/app/scripts/AddTrackDialog.d.ts +64 -0
- package/dist/app/scripts/AddTrackPositionMenu.d.ts +5 -0
- package/dist/app/scripts/Annotations1dTrack.d.ts +15 -0
- package/dist/app/scripts/Annotations2dTrack.d.ts +95 -0
- package/dist/app/scripts/ArrowheadDomainsTrack.d.ts +36 -0
- package/dist/app/scripts/Autocomplete.d.ts +102 -0
- package/dist/app/scripts/AxisPixi.d.ts +25 -0
- package/dist/app/scripts/BarTrack.d.ts +28 -0
- package/dist/app/scripts/BedLikeTrack.d.ts +84 -0
- package/dist/app/scripts/Button.d.ts +3 -0
- package/dist/app/scripts/CNVIntervalTrack.d.ts +12 -0
- package/dist/app/scripts/CenterTiledPlot.d.ts +3 -0
- package/dist/app/scripts/CenterTrack.d.ts +92 -0
- package/dist/app/scripts/Chromosome2DAnnotations.d.ts +10 -0
- package/dist/app/scripts/Chromosome2DLabels.d.ts +13 -0
- package/dist/app/scripts/ChromosomeGrid.d.ts +24 -0
- package/dist/app/scripts/ChromosomeInfo.d.ts +14 -0
- package/dist/app/scripts/CloseTrackMenu.d.ts +10 -0
- package/dist/app/scripts/CombinedTrack.d.ts +32 -0
- package/dist/app/scripts/ConfigTrackMenu.d.ts +10 -0
- package/dist/app/scripts/ConfigViewMenu.d.ts +34 -0
- package/dist/app/scripts/ConfigureSeriesMenu.d.ts +3 -0
- package/dist/app/scripts/ContextMenuContainer.d.ts +36 -0
- package/dist/app/scripts/ContextMenuItem.d.ts +34 -0
- package/dist/app/scripts/Cross.d.ts +3 -0
- package/dist/app/scripts/CrossRule.d.ts +24 -0
- package/dist/app/scripts/CustomTrackDialog.d.ts +17 -0
- package/dist/app/scripts/Dialog.d.ts +5 -0
- package/dist/app/scripts/DivergentBarTrack.d.ts +4 -0
- package/dist/app/scripts/DragListeningDiv.d.ts +32 -0
- package/dist/app/scripts/DraggableDiv.d.ts +63 -0
- package/dist/app/scripts/ExportLinkDialog.d.ts +21 -0
- package/dist/app/scripts/FilledLine.d.ts +5 -0
- package/dist/app/scripts/FixedTrack.d.ts +5 -0
- package/dist/app/scripts/GalleryTracks.d.ts +20 -0
- package/dist/app/scripts/GenomePositionSearchBox.d.ts +95 -0
- package/dist/app/scripts/HeatmapOptions.d.ts +30 -0
- package/dist/app/scripts/HeatmapTiledPixiTrack.d.ts +184 -0
- package/dist/app/scripts/HiGlassComponent.d.ts +762 -0
- package/dist/app/scripts/HiGlassComponentContext.d.ts +3 -0
- package/dist/app/scripts/HiGlassTrackComponent.d.ts +37 -0
- package/dist/app/scripts/Horizontal1dHeatmapTrack.d.ts +9 -0
- package/dist/app/scripts/Horizontal2DDomainsTrack.d.ts +21 -0
- package/dist/app/scripts/HorizontalChromosomeLabels.d.ts +47 -0
- package/dist/app/scripts/HorizontalGeneAnnotationsTrack.d.ts +25 -0
- package/dist/app/scripts/HorizontalHeatmapTrack.d.ts +12 -0
- package/dist/app/scripts/HorizontalItem.d.ts +3 -0
- package/dist/app/scripts/HorizontalLine1DPixiTrack.d.ts +23 -0
- package/dist/app/scripts/HorizontalMultivecTrack.d.ts +50 -0
- package/dist/app/scripts/HorizontalPoint1DPixiTrack.d.ts +5 -0
- package/dist/app/scripts/HorizontalRule.d.ts +22 -0
- package/dist/app/scripts/HorizontalTiled1DPixiTrack.d.ts +26 -0
- package/dist/app/scripts/HorizontalTiledPlot.d.ts +49 -0
- package/dist/app/scripts/HorizontalTrack.d.ts +6 -0
- package/dist/app/scripts/Id2DTiledPixiTrack.d.ts +10 -0
- package/dist/app/scripts/IdHorizontal1DTiledPixiTrack.d.ts +6 -0
- package/dist/app/scripts/IdVertical1DTiledPixiTrack.d.ts +7 -0
- package/dist/app/scripts/LeftAxisTrack.d.ts +9 -0
- package/dist/app/scripts/LeftTrackModifier.d.ts +29 -0
- package/dist/app/scripts/ListWrapper.d.ts +64 -0
- package/dist/app/scripts/MapboxTilesTrack.d.ts +9 -0
- package/dist/app/scripts/Modal.d.ts +5 -0
- package/dist/app/scripts/MoveableTrack.d.ts +18 -0
- package/dist/app/scripts/NestedContextMenu.d.ts +7 -0
- package/dist/app/scripts/OSMTileIdsTrack.d.ts +5 -0
- package/dist/app/scripts/OSMTilesTrack.d.ts +129 -0
- package/dist/app/scripts/OverlayTrack.d.ts +13 -0
- package/dist/app/scripts/PixiTrack.d.ts +174 -0
- package/dist/app/scripts/PlotTypeChooser.d.ts +25 -0
- package/dist/app/scripts/PopupMenu.d.ts +28 -0
- package/dist/app/scripts/RasterTilesTrack.d.ts +9 -0
- package/dist/app/scripts/RuleMixin.d.ts +2 -0
- package/dist/app/scripts/SVGTrack.d.ts +15 -0
- package/dist/app/scripts/SearchField.d.ts +13 -0
- package/dist/app/scripts/SeriesListItems.d.ts +2 -0
- package/dist/app/scripts/SeriesListMenu.d.ts +51 -0
- package/dist/app/scripts/SeriesListSubmenuMixin.d.ts +2 -0
- package/dist/app/scripts/SketchInlinePicker.d.ts +25 -0
- package/dist/app/scripts/SortableList.d.ts +22 -0
- package/dist/app/scripts/SquareMarkersTrack.d.ts +22 -0
- package/dist/app/scripts/Tiled1DPixiTrack.d.ts +60 -0
- package/dist/app/scripts/TiledPixiTrack.d.ts +369 -0
- package/dist/app/scripts/TiledPlot.d.ts +313 -0
- package/dist/app/scripts/TilesetFinder.d.ts +65 -0
- package/dist/app/scripts/TopAxisTrack.d.ts +9 -0
- package/dist/app/scripts/Track.d.ts +196 -0
- package/dist/app/scripts/TrackArea.d.ts +26 -0
- package/dist/app/scripts/TrackControl.d.ts +5 -0
- package/dist/app/scripts/TrackRenderer.d.ts +724 -0
- package/dist/app/scripts/UnknownPixiTrack.d.ts +7 -0
- package/dist/app/scripts/ValueIntervalTrack.d.ts +6 -0
- package/dist/app/scripts/VerticalItem.d.ts +3 -0
- package/dist/app/scripts/VerticalRule.d.ts +21 -0
- package/dist/app/scripts/VerticalTiled1DPixiTrack.d.ts +6 -0
- package/dist/app/scripts/VerticalTiledPlot.d.ts +50 -0
- package/dist/app/scripts/VerticalTrack.d.ts +6 -0
- package/dist/app/scripts/ViewConfigEditor.d.ts +53 -0
- package/dist/app/scripts/ViewContextMenu.d.ts +17 -0
- package/dist/app/scripts/ViewHeader.d.ts +75 -0
- package/dist/app/scripts/ViewportTracker2D.d.ts +17 -0
- package/dist/app/scripts/ViewportTracker2DPixi.d.ts +11 -0
- package/dist/app/scripts/ViewportTrackerHorizontal.d.ts +17 -0
- package/dist/app/scripts/ViewportTrackerVertical.d.ts +17 -0
- package/dist/app/scripts/api.d.ts +640 -0
- package/dist/app/scripts/configs/available-track-types.d.ts +2 -0
- package/dist/app/scripts/configs/colormaps.d.ts +2 -0
- package/dist/app/scripts/configs/datatype-to-track-type.d.ts +4 -0
- package/dist/app/scripts/configs/default-tracks-for-datatype.d.ts +38 -0
- package/dist/app/scripts/configs/dense-data-extrema-config.d.ts +2 -0
- package/dist/app/scripts/configs/globals.d.ts +5 -0
- package/dist/app/scripts/configs/index.d.ts +16 -0
- package/dist/app/scripts/configs/positions-by-datatype.d.ts +2 -0
- package/dist/app/scripts/configs/primitives.d.ts +20 -0
- package/dist/app/scripts/configs/themes.d.ts +3 -0
- package/dist/app/scripts/configs/tracks-info-by-type.d.ts +4 -0
- package/dist/app/scripts/configs/tracks-info.d.ts +24 -0
- package/dist/app/scripts/d3-context-menu.d.ts +2 -0
- package/dist/app/scripts/data-fetchers/DataFetcher.d.ts +151 -0
- package/dist/app/scripts/data-fetchers/genbank-fetcher.d.ts +86 -0
- package/dist/app/scripts/data-fetchers/index.d.ts +3 -0
- package/dist/app/scripts/data-fetchers/local-tile-fetcher.d.ts +47 -0
- package/dist/app/scripts/gosling-exports.d.ts +17 -0
- package/dist/app/scripts/hglib.d.ts +24 -0
- package/dist/app/scripts/hocs/with-modal.d.ts +19 -0
- package/dist/app/scripts/hocs/with-pub-sub.d.ts +22 -0
- package/dist/app/scripts/hocs/with-theme.d.ts +13 -0
- package/dist/app/scripts/icons.d.ts +161 -0
- package/dist/app/scripts/mixwith.d.ts +27 -0
- package/dist/app/scripts/options-info.d.ts +1355 -0
- package/dist/app/scripts/plugins/available-for-plugins.d.ts +2338 -0
- package/dist/app/scripts/plugins/get-data-fetcher.d.ts +2 -0
- package/dist/app/scripts/plugins/index.d.ts +2 -0
- package/dist/app/scripts/services/chrom-info.d.ts +10 -0
- package/dist/app/scripts/services/dom-event.d.ts +7 -0
- package/dist/app/scripts/services/element-resize-listener.d.ts +5 -0
- package/dist/app/scripts/services/index.d.ts +5 -0
- package/dist/app/scripts/services/tile-proxy.d.ts +180 -0
- package/dist/app/scripts/services/worker.d.ts +157 -0
- package/dist/app/scripts/symbol.d.ts +13 -0
- package/dist/app/scripts/test-helpers/index.d.ts +1 -0
- package/dist/app/scripts/test-helpers/test-helpers.d.ts +33 -0
- package/dist/app/scripts/track-utils.d.ts +73 -0
- package/dist/app/scripts/types.d.ts +199 -0
- package/dist/app/scripts/utils/DenseDataExtrema1D.d.ts +88 -0
- package/dist/app/scripts/utils/DenseDataExtrema2D.d.ts +97 -0
- package/dist/app/scripts/utils/LruCache.d.ts +44 -0
- package/dist/app/scripts/utils/abs-to-chr.d.ts +14 -0
- package/dist/app/scripts/utils/accessor-transposition.d.ts +14 -0
- package/dist/app/scripts/utils/add-arrays.d.ts +18 -0
- package/dist/app/scripts/utils/add-class.d.ts +8 -0
- package/dist/app/scripts/utils/add-event-listener-once.d.ts +11 -0
- package/dist/app/scripts/utils/assert.d.ts +17 -0
- package/dist/app/scripts/utils/background-task-scheduler.d.ts +47 -0
- package/dist/app/scripts/utils/base64-to-canvas.d.ts +9 -0
- package/dist/app/scripts/utils/chr-to-abs.d.ts +10 -0
- package/dist/app/scripts/utils/chrom-info-bisector.d.ts +4 -0
- package/dist/app/scripts/utils/clone-event.d.ts +12 -0
- package/dist/app/scripts/utils/color-domain-to-rgba-array.d.ts +13 -0
- package/dist/app/scripts/utils/color-to-hex.d.ts +9 -0
- package/dist/app/scripts/utils/color-to-rgba.d.ts +9 -0
- package/dist/app/scripts/utils/copy-text-to-clipboard.d.ts +2 -0
- package/dist/app/scripts/utils/data-to-genomic-loci.d.ts +11 -0
- package/dist/app/scripts/utils/debounce.d.ts +5 -0
- package/dist/app/scripts/utils/dec-to-hex-str.d.ts +8 -0
- package/dist/app/scripts/utils/decompress.d.ts +27 -0
- package/dist/app/scripts/utils/default-tracks.d.ts +3 -0
- package/dist/app/scripts/utils/dict-from-tuples.d.ts +11 -0
- package/dist/app/scripts/utils/dict-items.d.ts +18 -0
- package/dist/app/scripts/utils/dict-keys.d.ts +10 -0
- package/dist/app/scripts/utils/dict-values.d.ts +8 -0
- package/dist/app/scripts/utils/download.d.ts +7 -0
- package/dist/app/scripts/utils/expand-combined-tracks.d.ts +11 -0
- package/dist/app/scripts/utils/fake-pub-sub.d.ts +11 -0
- package/dist/app/scripts/utils/fill-in-min-widths.d.ts +44 -0
- package/dist/app/scripts/utils/flatten.d.ts +9 -0
- package/dist/app/scripts/utils/for-each.d.ts +9 -0
- package/dist/app/scripts/utils/forward-event.d.ts +7 -0
- package/dist/app/scripts/utils/genome-loci-to-pixels.d.ts +9 -0
- package/dist/app/scripts/utils/genomic-range-to-chromosome-chunks.d.ts +21 -0
- package/dist/app/scripts/utils/get-aggregation-function.d.ts +10 -0
- package/dist/app/scripts/utils/get-default-track-for-datatype.d.ts +21 -0
- package/dist/app/scripts/utils/get-default-tracks-for-datatype.d.ts +3 -0
- package/dist/app/scripts/utils/get-element-dim.d.ts +7 -0
- package/dist/app/scripts/utils/get-higlass-components.d.ts +7 -0
- package/dist/app/scripts/utils/get-track-by-uid.d.ts +7 -0
- package/dist/app/scripts/utils/get-track-conf-from-hgc.d.ts +10 -0
- package/dist/app/scripts/utils/get-track-obj-by-id.d.ts +2 -0
- package/dist/app/scripts/utils/get-track-position-by-uid.d.ts +13 -0
- package/dist/app/scripts/utils/get-xylofon.d.ts +2 -0
- package/dist/app/scripts/utils/gradient.d.ts +14 -0
- package/dist/app/scripts/utils/has-class.d.ts +8 -0
- package/dist/app/scripts/utils/has-parent.d.ts +9 -0
- package/dist/app/scripts/utils/hex-string-to-int.d.ts +14 -0
- package/dist/app/scripts/utils/index.d.ts +89 -0
- package/dist/app/scripts/utils/interval-tree.d.ts +109 -0
- package/dist/app/scripts/utils/into-the-void.d.ts +6 -0
- package/dist/app/scripts/utils/is-track-or-child-track.d.ts +7 -0
- package/dist/app/scripts/utils/is-track-range-selectable.d.ts +2 -0
- package/dist/app/scripts/utils/is-within.d.ts +12 -0
- package/dist/app/scripts/utils/lat-to-y.d.ts +9 -0
- package/dist/app/scripts/utils/lng-to-x.d.ts +8 -0
- package/dist/app/scripts/utils/load-chrom-infos.d.ts +8 -0
- package/dist/app/scripts/utils/map.d.ts +13 -0
- package/dist/app/scripts/utils/max-non-zero.d.ts +6 -0
- package/dist/app/scripts/utils/max.d.ts +10 -0
- package/dist/app/scripts/utils/min-non-zero.d.ts +6 -0
- package/dist/app/scripts/utils/min.d.ts +10 -0
- package/dist/app/scripts/utils/mod.d.ts +9 -0
- package/dist/app/scripts/utils/ndarray-assign.d.ts +2 -0
- package/dist/app/scripts/utils/ndarray-flatten.d.ts +2 -0
- package/dist/app/scripts/utils/ndarray-to-list.d.ts +2 -0
- package/dist/app/scripts/utils/numericify-version.d.ts +6 -0
- package/dist/app/scripts/utils/obj-vals.d.ts +8 -0
- package/dist/app/scripts/utils/or.d.ts +8 -0
- package/dist/app/scripts/utils/parse-chromsizes-rows.d.ts +34 -0
- package/dist/app/scripts/utils/pixi-text-to-svg.d.ts +2 -0
- package/dist/app/scripts/utils/positioned-tracks-to-all-tracks.d.ts +26 -0
- package/dist/app/scripts/utils/q.d.ts +18 -0
- package/dist/app/scripts/utils/rad-to-deg.d.ts +7 -0
- package/dist/app/scripts/utils/range-query-2d.d.ts +17 -0
- package/dist/app/scripts/utils/reduce.d.ts +14 -0
- package/dist/app/scripts/utils/rel-to-abs-chrom-pos.d.ts +10 -0
- package/dist/app/scripts/utils/remove-class.d.ts +7 -0
- package/dist/app/scripts/utils/reset-d3-brush-style.d.ts +10 -0
- package/dist/app/scripts/utils/rgb-to-hex.d.ts +8 -0
- package/dist/app/scripts/utils/scales-center-and-k.d.ts +12 -0
- package/dist/app/scripts/utils/scales-to-genome-loci.d.ts +3 -0
- package/dist/app/scripts/utils/segments-to-rows.d.ts +15 -0
- package/dist/app/scripts/utils/selected-items-to-cum-weights.d.ts +12 -0
- package/dist/app/scripts/utils/selected-items-to-size.d.ts +13 -0
- package/dist/app/scripts/utils/show-mouse-position.d.ts +54 -0
- package/dist/app/scripts/utils/some.d.ts +10 -0
- package/dist/app/scripts/utils/sum.d.ts +8 -0
- package/dist/app/scripts/utils/svg-line.d.ts +2 -0
- package/dist/app/scripts/utils/throttle-and-debounce.d.ts +33 -0
- package/dist/app/scripts/utils/tile-to-canvas.d.ts +9 -0
- package/dist/app/scripts/utils/timeout.d.ts +3 -0
- package/dist/app/scripts/utils/to-void.d.ts +3 -0
- package/dist/app/scripts/utils/total-track-pixel-height.d.ts +27 -0
- package/dist/app/scripts/utils/trim-trailing-slash.d.ts +7 -0
- package/dist/app/scripts/utils/type-guards.d.ts +36 -0
- package/dist/app/scripts/utils/value-to-color.d.ts +12 -0
- package/dist/app/scripts/utils/visit-positioned-tracks.d.ts +18 -0
- package/dist/app/scripts/utils/visit-tracks.d.ts +9 -0
- package/dist/esm.html +1 -3
- package/dist/hglib.js +86315 -100592
- package/dist/hglib.min.js +123 -131
- package/dist/higlass.mjs +88861 -103138
- package/dist/index.html +1 -3
- package/dist/package.json +134 -0
- package/package.json +25 -27
|
@@ -0,0 +1,1355 @@
|
|
|
1
|
+
export namespace OPTIONS_INFO {
|
|
2
|
+
namespace axisLabelFormatting {
|
|
3
|
+
let name: string;
|
|
4
|
+
namespace inlineOptions {
|
|
5
|
+
namespace normal {
|
|
6
|
+
let name_1: string;
|
|
7
|
+
export { name_1 as name };
|
|
8
|
+
export let value: string;
|
|
9
|
+
}
|
|
10
|
+
namespace scientific {
|
|
11
|
+
let name_2: string;
|
|
12
|
+
export { name_2 as name };
|
|
13
|
+
let value_1: string;
|
|
14
|
+
export { value_1 as value };
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
namespace flipDiagonal {
|
|
19
|
+
let name_3: string;
|
|
20
|
+
export { name_3 as name };
|
|
21
|
+
export namespace inlineOptions_1 {
|
|
22
|
+
namespace none {
|
|
23
|
+
let name_4: string;
|
|
24
|
+
export { name_4 as name };
|
|
25
|
+
let value_2: string;
|
|
26
|
+
export { value_2 as value };
|
|
27
|
+
}
|
|
28
|
+
namespace yes {
|
|
29
|
+
let name_5: string;
|
|
30
|
+
export { name_5 as name };
|
|
31
|
+
let value_3: string;
|
|
32
|
+
export { value_3 as value };
|
|
33
|
+
}
|
|
34
|
+
namespace copy {
|
|
35
|
+
let name_6: string;
|
|
36
|
+
export { name_6 as name };
|
|
37
|
+
let value_4: string;
|
|
38
|
+
export { value_4 as value };
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
export { inlineOptions_1 as inlineOptions };
|
|
42
|
+
}
|
|
43
|
+
namespace heatmapValueScaling {
|
|
44
|
+
let name_7: string;
|
|
45
|
+
export { name_7 as name };
|
|
46
|
+
export namespace inlineOptions_2 {
|
|
47
|
+
namespace linear {
|
|
48
|
+
let name_8: string;
|
|
49
|
+
export { name_8 as name };
|
|
50
|
+
let value_5: string;
|
|
51
|
+
export { value_5 as value };
|
|
52
|
+
}
|
|
53
|
+
namespace log {
|
|
54
|
+
let name_9: string;
|
|
55
|
+
export { name_9 as name };
|
|
56
|
+
let value_6: string;
|
|
57
|
+
export { value_6 as value };
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
export { inlineOptions_2 as inlineOptions };
|
|
61
|
+
}
|
|
62
|
+
namespace valueScaling {
|
|
63
|
+
let name_10: string;
|
|
64
|
+
export { name_10 as name };
|
|
65
|
+
export namespace inlineOptions_3 {
|
|
66
|
+
export namespace linear_1 {
|
|
67
|
+
let name_11: string;
|
|
68
|
+
export { name_11 as name };
|
|
69
|
+
let value_7: string;
|
|
70
|
+
export { value_7 as value };
|
|
71
|
+
}
|
|
72
|
+
export { linear_1 as linear };
|
|
73
|
+
export namespace log_1 {
|
|
74
|
+
let name_12: string;
|
|
75
|
+
export { name_12 as name };
|
|
76
|
+
let value_8: string;
|
|
77
|
+
export { value_8 as value };
|
|
78
|
+
}
|
|
79
|
+
export { log_1 as log };
|
|
80
|
+
}
|
|
81
|
+
export { inlineOptions_3 as inlineOptions };
|
|
82
|
+
}
|
|
83
|
+
namespace extent {
|
|
84
|
+
let name_13: string;
|
|
85
|
+
export { name_13 as name };
|
|
86
|
+
export namespace inlineOptions_4 {
|
|
87
|
+
namespace full {
|
|
88
|
+
let name_14: string;
|
|
89
|
+
export { name_14 as name };
|
|
90
|
+
let value_9: string;
|
|
91
|
+
export { value_9 as value };
|
|
92
|
+
}
|
|
93
|
+
namespace upperRight {
|
|
94
|
+
let name_15: string;
|
|
95
|
+
export { name_15 as name };
|
|
96
|
+
let value_10: string;
|
|
97
|
+
export { value_10 as value };
|
|
98
|
+
}
|
|
99
|
+
namespace lowerLeft {
|
|
100
|
+
let name_16: string;
|
|
101
|
+
export { name_16 as name };
|
|
102
|
+
let value_11: string;
|
|
103
|
+
export { value_11 as value };
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
export { inlineOptions_4 as inlineOptions };
|
|
107
|
+
}
|
|
108
|
+
namespace labelLeftMargin {
|
|
109
|
+
let name_17: string;
|
|
110
|
+
export { name_17 as name };
|
|
111
|
+
export { AVAILABLE_MARGIN as inlineOptions };
|
|
112
|
+
}
|
|
113
|
+
namespace labelRightMargin {
|
|
114
|
+
let name_18: string;
|
|
115
|
+
export { name_18 as name };
|
|
116
|
+
export { AVAILABLE_MARGIN as inlineOptions };
|
|
117
|
+
}
|
|
118
|
+
namespace labelTopMargin {
|
|
119
|
+
let name_19: string;
|
|
120
|
+
export { name_19 as name };
|
|
121
|
+
export { AVAILABLE_MARGIN as inlineOptions };
|
|
122
|
+
}
|
|
123
|
+
namespace labelBottomMargin {
|
|
124
|
+
let name_20: string;
|
|
125
|
+
export { name_20 as name };
|
|
126
|
+
export { AVAILABLE_MARGIN as inlineOptions };
|
|
127
|
+
}
|
|
128
|
+
namespace labelShowResolution {
|
|
129
|
+
let name_21: string;
|
|
130
|
+
export { name_21 as name };
|
|
131
|
+
export { YES_NO as inlineOptions };
|
|
132
|
+
}
|
|
133
|
+
namespace labelShowAssembly {
|
|
134
|
+
let name_22: string;
|
|
135
|
+
export { name_22 as name };
|
|
136
|
+
export { YES_NO as inlineOptions };
|
|
137
|
+
}
|
|
138
|
+
namespace lineStrokeWidth {
|
|
139
|
+
let name_23: string;
|
|
140
|
+
export { name_23 as name };
|
|
141
|
+
export { AVAILABLE_WIDTHS as inlineOptions };
|
|
142
|
+
}
|
|
143
|
+
namespace strokeSingleSeries {
|
|
144
|
+
let name_24: string;
|
|
145
|
+
export { name_24 as name };
|
|
146
|
+
export function generateOptions(track: any): ({
|
|
147
|
+
name: number;
|
|
148
|
+
value: number;
|
|
149
|
+
} | {
|
|
150
|
+
name: string;
|
|
151
|
+
value: string;
|
|
152
|
+
})[];
|
|
153
|
+
}
|
|
154
|
+
namespace strokeWidthAndNone {
|
|
155
|
+
let name_25: string;
|
|
156
|
+
export { name_25 as name };
|
|
157
|
+
export { AVAILABLE_WIDTHS_AND_NONE as inlineOptions };
|
|
158
|
+
}
|
|
159
|
+
namespace trackBorderWidth {
|
|
160
|
+
let name_26: string;
|
|
161
|
+
export { name_26 as name };
|
|
162
|
+
export { AVAILABLE_WIDTHS as inlineOptions };
|
|
163
|
+
}
|
|
164
|
+
namespace separatePlusMinusStrands {
|
|
165
|
+
let name_27: string;
|
|
166
|
+
export { name_27 as name };
|
|
167
|
+
export { YES_NO as inlineOptions };
|
|
168
|
+
}
|
|
169
|
+
namespace sortLargestOnTop {
|
|
170
|
+
let name_28: string;
|
|
171
|
+
export { name_28 as name };
|
|
172
|
+
export { YES_NO as inlineOptions };
|
|
173
|
+
}
|
|
174
|
+
namespace showTexts {
|
|
175
|
+
let name_29: string;
|
|
176
|
+
export { name_29 as name };
|
|
177
|
+
export { YES_NO as inlineOptions };
|
|
178
|
+
}
|
|
179
|
+
namespace staggered {
|
|
180
|
+
let name_30: string;
|
|
181
|
+
export { name_30 as name };
|
|
182
|
+
export { YES_NO as inlineOptions };
|
|
183
|
+
}
|
|
184
|
+
namespace minSquareSize {
|
|
185
|
+
let name_31: string;
|
|
186
|
+
export { name_31 as name };
|
|
187
|
+
export { AVAILABLE_WIDTHS_AND_NONE as inlineOptions };
|
|
188
|
+
}
|
|
189
|
+
namespace pointSize {
|
|
190
|
+
let name_32: string;
|
|
191
|
+
export { name_32 as name };
|
|
192
|
+
export { AVAILABLE_WIDTHS as inlineOptions };
|
|
193
|
+
}
|
|
194
|
+
namespace pointColor {
|
|
195
|
+
let name_33: string;
|
|
196
|
+
export { name_33 as name };
|
|
197
|
+
export { AVAILABLE_COLORS as inlineOptions };
|
|
198
|
+
}
|
|
199
|
+
namespace trackBorderColor {
|
|
200
|
+
let name_34: string;
|
|
201
|
+
export { name_34 as name };
|
|
202
|
+
export { AVAILABLE_COLORS as inlineOptions };
|
|
203
|
+
}
|
|
204
|
+
namespace backgroundColor {
|
|
205
|
+
let name_35: string;
|
|
206
|
+
export { name_35 as name };
|
|
207
|
+
export namespace inlineOptions_5 {
|
|
208
|
+
namespace white {
|
|
209
|
+
let name_36: string;
|
|
210
|
+
export { name_36 as name };
|
|
211
|
+
let value_12: string;
|
|
212
|
+
export { value_12 as value };
|
|
213
|
+
}
|
|
214
|
+
namespace lightGrey {
|
|
215
|
+
let name_37: string;
|
|
216
|
+
export { name_37 as name };
|
|
217
|
+
let value_13: string;
|
|
218
|
+
export { value_13 as value };
|
|
219
|
+
}
|
|
220
|
+
namespace grey {
|
|
221
|
+
let name_38: string;
|
|
222
|
+
export { name_38 as name };
|
|
223
|
+
let value_14: string;
|
|
224
|
+
export { value_14 as value };
|
|
225
|
+
}
|
|
226
|
+
namespace black {
|
|
227
|
+
let name_39: string;
|
|
228
|
+
export { name_39 as name };
|
|
229
|
+
let value_15: string;
|
|
230
|
+
export { value_15 as value };
|
|
231
|
+
}
|
|
232
|
+
namespace transparent {
|
|
233
|
+
let name_40: string;
|
|
234
|
+
export { name_40 as name };
|
|
235
|
+
let value_16: string;
|
|
236
|
+
export { value_16 as value };
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
export { inlineOptions_5 as inlineOptions };
|
|
240
|
+
}
|
|
241
|
+
namespace colorScale {
|
|
242
|
+
let name_41: string;
|
|
243
|
+
export { name_41 as name };
|
|
244
|
+
export namespace inlineOptions_6 {
|
|
245
|
+
namespace epilogos {
|
|
246
|
+
let name_42: string;
|
|
247
|
+
export { name_42 as name };
|
|
248
|
+
export let values: string[];
|
|
249
|
+
}
|
|
250
|
+
namespace category10 {
|
|
251
|
+
let name_43: string;
|
|
252
|
+
export { name_43 as name };
|
|
253
|
+
let values_1: string[];
|
|
254
|
+
export { values_1 as values };
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
export { inlineOptions_6 as inlineOptions };
|
|
258
|
+
}
|
|
259
|
+
namespace minusStrandColor {
|
|
260
|
+
let name_44: string;
|
|
261
|
+
export { name_44 as name };
|
|
262
|
+
export { AVAILABLE_COLORS as inlineOptions };
|
|
263
|
+
}
|
|
264
|
+
namespace plusStrandColor {
|
|
265
|
+
let name_45: string;
|
|
266
|
+
export { name_45 as name };
|
|
267
|
+
export { AVAILABLE_COLORS as inlineOptions };
|
|
268
|
+
}
|
|
269
|
+
namespace lineStrokeColor {
|
|
270
|
+
let name_46: string;
|
|
271
|
+
export { name_46 as name };
|
|
272
|
+
export { AVAILABLE_COLORS as inlineOptions };
|
|
273
|
+
}
|
|
274
|
+
namespace projectionStrokeColor {
|
|
275
|
+
let name_47: string;
|
|
276
|
+
export { name_47 as name };
|
|
277
|
+
export { AVAILABLE_COLORS as inlineOptions };
|
|
278
|
+
}
|
|
279
|
+
namespace projectionFillColor {
|
|
280
|
+
let name_48: string;
|
|
281
|
+
export { name_48 as name };
|
|
282
|
+
export { AVAILABLE_COLORS as inlineOptions };
|
|
283
|
+
}
|
|
284
|
+
namespace stroke {
|
|
285
|
+
let name_49: string;
|
|
286
|
+
export { name_49 as name };
|
|
287
|
+
export { AVAILABLE_COLORS as inlineOptions };
|
|
288
|
+
}
|
|
289
|
+
namespace strokeColor {
|
|
290
|
+
let name_50: string;
|
|
291
|
+
export { name_50 as name };
|
|
292
|
+
export { AVAILABLE_COLORS as inlineOptions };
|
|
293
|
+
}
|
|
294
|
+
namespace fill {
|
|
295
|
+
let name_51: string;
|
|
296
|
+
export { name_51 as name };
|
|
297
|
+
export { AVAILABLE_COLORS as inlineOptions };
|
|
298
|
+
}
|
|
299
|
+
namespace color {
|
|
300
|
+
let name_52: string;
|
|
301
|
+
export { name_52 as name };
|
|
302
|
+
export { AVAILABLE_COLORS as inlineOptions };
|
|
303
|
+
}
|
|
304
|
+
namespace fontColor {
|
|
305
|
+
let name_53: string;
|
|
306
|
+
export { name_53 as name };
|
|
307
|
+
export { AVAILABLE_COLORS as inlineOptions };
|
|
308
|
+
}
|
|
309
|
+
namespace fillColor {
|
|
310
|
+
let name_54: string;
|
|
311
|
+
export { name_54 as name };
|
|
312
|
+
export { AVAILABLE_COLORS as inlineOptions };
|
|
313
|
+
}
|
|
314
|
+
namespace barFillColor {
|
|
315
|
+
let name_55: string;
|
|
316
|
+
export { name_55 as name };
|
|
317
|
+
export { AVAILABLE_COLORS as inlineOptions };
|
|
318
|
+
}
|
|
319
|
+
namespace barFillColorTop {
|
|
320
|
+
let name_56: string;
|
|
321
|
+
export { name_56 as name };
|
|
322
|
+
export { AVAILABLE_COLORS as inlineOptions };
|
|
323
|
+
}
|
|
324
|
+
namespace barFillColorBottom {
|
|
325
|
+
let name_57: string;
|
|
326
|
+
export { name_57 as name };
|
|
327
|
+
export { AVAILABLE_COLORS as inlineOptions };
|
|
328
|
+
}
|
|
329
|
+
namespace barOpacity {
|
|
330
|
+
let name_58: string;
|
|
331
|
+
export { name_58 as name };
|
|
332
|
+
export { OPACITY_OPTIONS as inlineOptions };
|
|
333
|
+
}
|
|
334
|
+
namespace viewNameOpacity {
|
|
335
|
+
let name_59: string;
|
|
336
|
+
export { name_59 as name };
|
|
337
|
+
export { OPACITY_OPTIONS as inlineOptions };
|
|
338
|
+
}
|
|
339
|
+
namespace zeroLineVisible {
|
|
340
|
+
let name_60: string;
|
|
341
|
+
export { name_60 as name };
|
|
342
|
+
export { YES_NO as inlineOptions };
|
|
343
|
+
}
|
|
344
|
+
namespace zeroLineColor {
|
|
345
|
+
let name_61: string;
|
|
346
|
+
export { name_61 as name };
|
|
347
|
+
export { AVAILABLE_COLORS as inlineOptions };
|
|
348
|
+
}
|
|
349
|
+
namespace zeroLineOpacity {
|
|
350
|
+
let name_62: string;
|
|
351
|
+
export { name_62 as name };
|
|
352
|
+
export { OPACITY_OPTIONS_NO_ZERO as inlineOptions };
|
|
353
|
+
}
|
|
354
|
+
namespace fillOpacity {
|
|
355
|
+
let name_63: string;
|
|
356
|
+
export { name_63 as name };
|
|
357
|
+
export { OPACITY_OPTIONS as inlineOptions };
|
|
358
|
+
}
|
|
359
|
+
namespace strokeOpacity {
|
|
360
|
+
let name_64: string;
|
|
361
|
+
export { name_64 as name };
|
|
362
|
+
export { OPACITY_OPTIONS as inlineOptions };
|
|
363
|
+
}
|
|
364
|
+
namespace strokePos {
|
|
365
|
+
let name_65: string;
|
|
366
|
+
export { name_65 as name };
|
|
367
|
+
export namespace inlineOptions_7 {
|
|
368
|
+
namespace aroundInner {
|
|
369
|
+
let name_66: string;
|
|
370
|
+
export { name_66 as name };
|
|
371
|
+
let value_17: string;
|
|
372
|
+
export { value_17 as value };
|
|
373
|
+
}
|
|
374
|
+
namespace aroundCenter {
|
|
375
|
+
let name_67: string;
|
|
376
|
+
export { name_67 as name };
|
|
377
|
+
let value_18: null;
|
|
378
|
+
export { value_18 as value };
|
|
379
|
+
}
|
|
380
|
+
namespace hidden {
|
|
381
|
+
let name_68: string;
|
|
382
|
+
export { name_68 as name };
|
|
383
|
+
let value_19: string;
|
|
384
|
+
export { value_19 as value };
|
|
385
|
+
}
|
|
386
|
+
namespace top {
|
|
387
|
+
let name_69: string;
|
|
388
|
+
export { name_69 as name };
|
|
389
|
+
let value_20: string;
|
|
390
|
+
export { value_20 as value };
|
|
391
|
+
}
|
|
392
|
+
namespace right {
|
|
393
|
+
let name_70: string;
|
|
394
|
+
export { name_70 as name };
|
|
395
|
+
let value_21: string;
|
|
396
|
+
export { value_21 as value };
|
|
397
|
+
}
|
|
398
|
+
namespace bottom {
|
|
399
|
+
let name_71: string;
|
|
400
|
+
export { name_71 as name };
|
|
401
|
+
let value_22: string;
|
|
402
|
+
export { value_22 as value };
|
|
403
|
+
}
|
|
404
|
+
namespace left {
|
|
405
|
+
let name_72: string;
|
|
406
|
+
export { name_72 as name };
|
|
407
|
+
let value_23: string;
|
|
408
|
+
export { value_23 as value };
|
|
409
|
+
}
|
|
410
|
+
}
|
|
411
|
+
export { inlineOptions_7 as inlineOptions };
|
|
412
|
+
}
|
|
413
|
+
namespace barBorder {
|
|
414
|
+
let name_73: string;
|
|
415
|
+
export { name_73 as name };
|
|
416
|
+
export { YES_NO as inlineOptions };
|
|
417
|
+
}
|
|
418
|
+
namespace scaledHeight {
|
|
419
|
+
let name_74: string;
|
|
420
|
+
export { name_74 as name };
|
|
421
|
+
export { YES_NO as inlineOptions };
|
|
422
|
+
}
|
|
423
|
+
namespace rectangleDomainStrokeColor {
|
|
424
|
+
let name_75: string;
|
|
425
|
+
export { name_75 as name };
|
|
426
|
+
export { AVAILABLE_COLORS as inlineOptions };
|
|
427
|
+
}
|
|
428
|
+
namespace rectangleDomainFillColor {
|
|
429
|
+
let name_76: string;
|
|
430
|
+
export { name_76 as name };
|
|
431
|
+
export { AVAILABLE_COLORS as inlineOptions };
|
|
432
|
+
}
|
|
433
|
+
namespace rectangleDomainFillOpacity {
|
|
434
|
+
let name_77: string;
|
|
435
|
+
export { name_77 as name };
|
|
436
|
+
export { OPACITY_OPTIONS as inlineOptions };
|
|
437
|
+
}
|
|
438
|
+
namespace rectangleDomainOpacity {
|
|
439
|
+
let name_78: string;
|
|
440
|
+
export { name_78 as name };
|
|
441
|
+
export { OPACITY_OPTIONS as inlineOptions };
|
|
442
|
+
}
|
|
443
|
+
namespace mapboxStyle {
|
|
444
|
+
let name_79: string;
|
|
445
|
+
export { name_79 as name };
|
|
446
|
+
let inlineOptions_8: {
|
|
447
|
+
streets: {
|
|
448
|
+
name: string;
|
|
449
|
+
value: string;
|
|
450
|
+
};
|
|
451
|
+
light: {
|
|
452
|
+
name: string;
|
|
453
|
+
value: string;
|
|
454
|
+
};
|
|
455
|
+
dark: {
|
|
456
|
+
name: string;
|
|
457
|
+
value: string;
|
|
458
|
+
};
|
|
459
|
+
satellite: {
|
|
460
|
+
name: string;
|
|
461
|
+
value: string;
|
|
462
|
+
};
|
|
463
|
+
'streets-satellite': {
|
|
464
|
+
name: string;
|
|
465
|
+
value: string;
|
|
466
|
+
};
|
|
467
|
+
wheatpaste: {
|
|
468
|
+
name: string;
|
|
469
|
+
value: string;
|
|
470
|
+
};
|
|
471
|
+
'streets-basic': {
|
|
472
|
+
name: string;
|
|
473
|
+
value: string;
|
|
474
|
+
};
|
|
475
|
+
comic: {
|
|
476
|
+
name: string;
|
|
477
|
+
value: string;
|
|
478
|
+
};
|
|
479
|
+
outdoors: {
|
|
480
|
+
name: string;
|
|
481
|
+
value: string;
|
|
482
|
+
};
|
|
483
|
+
'run-bike-hike': {
|
|
484
|
+
name: string;
|
|
485
|
+
value: string;
|
|
486
|
+
};
|
|
487
|
+
pencil: {
|
|
488
|
+
name: string;
|
|
489
|
+
value: string;
|
|
490
|
+
};
|
|
491
|
+
pirates: {
|
|
492
|
+
name: string;
|
|
493
|
+
value: string;
|
|
494
|
+
};
|
|
495
|
+
emerald: {
|
|
496
|
+
name: string;
|
|
497
|
+
value: string;
|
|
498
|
+
};
|
|
499
|
+
'high-contrast': {
|
|
500
|
+
name: string;
|
|
501
|
+
value: string;
|
|
502
|
+
};
|
|
503
|
+
};
|
|
504
|
+
export { inlineOptions_8 as inlineOptions };
|
|
505
|
+
}
|
|
506
|
+
namespace oneDHeatmapFlipped {
|
|
507
|
+
let name_80: string;
|
|
508
|
+
export { name_80 as name };
|
|
509
|
+
export namespace inlineOptions_9 {
|
|
510
|
+
export namespace yes_1 {
|
|
511
|
+
let name_81: string;
|
|
512
|
+
export { name_81 as name };
|
|
513
|
+
let value_24: string;
|
|
514
|
+
export { value_24 as value };
|
|
515
|
+
}
|
|
516
|
+
export { yes_1 as yes };
|
|
517
|
+
export namespace no {
|
|
518
|
+
let name_82: string;
|
|
519
|
+
export { name_82 as name };
|
|
520
|
+
let value_25: null;
|
|
521
|
+
export { value_25 as value };
|
|
522
|
+
}
|
|
523
|
+
}
|
|
524
|
+
export { inlineOptions_9 as inlineOptions };
|
|
525
|
+
}
|
|
526
|
+
namespace showMousePosition {
|
|
527
|
+
let name_83: string;
|
|
528
|
+
export { name_83 as name };
|
|
529
|
+
export { YES_NO as inlineOptions };
|
|
530
|
+
}
|
|
531
|
+
namespace showTooltip {
|
|
532
|
+
let name_84: string;
|
|
533
|
+
export { name_84 as name };
|
|
534
|
+
export { YES_NO as inlineOptions };
|
|
535
|
+
}
|
|
536
|
+
namespace nanAsZero {
|
|
537
|
+
let name_85: string;
|
|
538
|
+
export { name_85 as name };
|
|
539
|
+
export { YES_NO as inlineOptions };
|
|
540
|
+
}
|
|
541
|
+
namespace fontSize {
|
|
542
|
+
let name_86: string;
|
|
543
|
+
export { name_86 as name };
|
|
544
|
+
let inlineOptions_10: any;
|
|
545
|
+
export { inlineOptions_10 as inlineOptions };
|
|
546
|
+
}
|
|
547
|
+
namespace tickPositions {
|
|
548
|
+
let name_87: string;
|
|
549
|
+
export { name_87 as name };
|
|
550
|
+
export namespace inlineOptions_11 {
|
|
551
|
+
namespace even {
|
|
552
|
+
let name_88: string;
|
|
553
|
+
export { name_88 as name };
|
|
554
|
+
let value_26: string;
|
|
555
|
+
export { value_26 as value };
|
|
556
|
+
}
|
|
557
|
+
namespace ends {
|
|
558
|
+
let name_89: string;
|
|
559
|
+
export { name_89 as name };
|
|
560
|
+
let value_27: string;
|
|
561
|
+
export { value_27 as value };
|
|
562
|
+
}
|
|
563
|
+
}
|
|
564
|
+
export { inlineOptions_11 as inlineOptions };
|
|
565
|
+
}
|
|
566
|
+
namespace tickFormat {
|
|
567
|
+
let name_90: string;
|
|
568
|
+
export { name_90 as name };
|
|
569
|
+
export namespace inlineOptions_12 {
|
|
570
|
+
namespace plain {
|
|
571
|
+
let name_91: string;
|
|
572
|
+
export { name_91 as name };
|
|
573
|
+
let value_28: string;
|
|
574
|
+
export { value_28 as value };
|
|
575
|
+
}
|
|
576
|
+
namespace si {
|
|
577
|
+
let name_92: string;
|
|
578
|
+
export { name_92 as name };
|
|
579
|
+
let value_29: string;
|
|
580
|
+
export { value_29 as value };
|
|
581
|
+
}
|
|
582
|
+
}
|
|
583
|
+
export { inlineOptions_12 as inlineOptions };
|
|
584
|
+
}
|
|
585
|
+
namespace colorEncoding {
|
|
586
|
+
let name_93: string;
|
|
587
|
+
export { name_93 as name };
|
|
588
|
+
export namespace inlineOptions_13 {
|
|
589
|
+
export namespace none_1 {
|
|
590
|
+
let name_94: string;
|
|
591
|
+
export { name_94 as name };
|
|
592
|
+
let value_30: null;
|
|
593
|
+
export { value_30 as value };
|
|
594
|
+
}
|
|
595
|
+
export { none_1 as none };
|
|
596
|
+
export namespace itemRgb {
|
|
597
|
+
let name_95: string;
|
|
598
|
+
export { name_95 as name };
|
|
599
|
+
let value_31: string;
|
|
600
|
+
export { value_31 as value };
|
|
601
|
+
}
|
|
602
|
+
}
|
|
603
|
+
export { inlineOptions_13 as inlineOptions };
|
|
604
|
+
export { valueColumnOptions as generateOptions };
|
|
605
|
+
}
|
|
606
|
+
namespace fontIsAligned {
|
|
607
|
+
let name_96: string;
|
|
608
|
+
export { name_96 as name };
|
|
609
|
+
export { YES_NO as inlineOptions };
|
|
610
|
+
}
|
|
611
|
+
namespace axisPositionHorizontal {
|
|
612
|
+
let name_97: string;
|
|
613
|
+
export { name_97 as name };
|
|
614
|
+
export namespace inlineOptions_14 {
|
|
615
|
+
export namespace left_1 {
|
|
616
|
+
let name_98: string;
|
|
617
|
+
export { name_98 as name };
|
|
618
|
+
let value_32: string;
|
|
619
|
+
export { value_32 as value };
|
|
620
|
+
}
|
|
621
|
+
export { left_1 as left };
|
|
622
|
+
export namespace outsideLeft {
|
|
623
|
+
let name_99: string;
|
|
624
|
+
export { name_99 as name };
|
|
625
|
+
let value_33: string;
|
|
626
|
+
export { value_33 as value };
|
|
627
|
+
}
|
|
628
|
+
export namespace right_1 {
|
|
629
|
+
let name_100: string;
|
|
630
|
+
export { name_100 as name };
|
|
631
|
+
let value_34: string;
|
|
632
|
+
export { value_34 as value };
|
|
633
|
+
}
|
|
634
|
+
export { right_1 as right };
|
|
635
|
+
export namespace outsideRight {
|
|
636
|
+
let name_101: string;
|
|
637
|
+
export { name_101 as name };
|
|
638
|
+
let value_35: string;
|
|
639
|
+
export { value_35 as value };
|
|
640
|
+
}
|
|
641
|
+
export namespace hidden_1 {
|
|
642
|
+
let name_102: string;
|
|
643
|
+
export { name_102 as name };
|
|
644
|
+
let value_36: null;
|
|
645
|
+
export { value_36 as value };
|
|
646
|
+
}
|
|
647
|
+
export { hidden_1 as hidden };
|
|
648
|
+
}
|
|
649
|
+
export { inlineOptions_14 as inlineOptions };
|
|
650
|
+
}
|
|
651
|
+
namespace axisPositionVertical {
|
|
652
|
+
let name_103: string;
|
|
653
|
+
export { name_103 as name };
|
|
654
|
+
export namespace inlineOptions_15 {
|
|
655
|
+
export namespace top_1 {
|
|
656
|
+
let name_104: string;
|
|
657
|
+
export { name_104 as name };
|
|
658
|
+
let value_37: string;
|
|
659
|
+
export { value_37 as value };
|
|
660
|
+
}
|
|
661
|
+
export { top_1 as top };
|
|
662
|
+
export namespace outsideTop {
|
|
663
|
+
let name_105: string;
|
|
664
|
+
export { name_105 as name };
|
|
665
|
+
let value_38: string;
|
|
666
|
+
export { value_38 as value };
|
|
667
|
+
}
|
|
668
|
+
export namespace bottom_1 {
|
|
669
|
+
let name_106: string;
|
|
670
|
+
export { name_106 as name };
|
|
671
|
+
let value_39: string;
|
|
672
|
+
export { value_39 as value };
|
|
673
|
+
}
|
|
674
|
+
export { bottom_1 as bottom };
|
|
675
|
+
export namespace outsideBottom {
|
|
676
|
+
let name_107: string;
|
|
677
|
+
export { name_107 as name };
|
|
678
|
+
let value_40: string;
|
|
679
|
+
export { value_40 as value };
|
|
680
|
+
}
|
|
681
|
+
export namespace hidden_2 {
|
|
682
|
+
let name_108: string;
|
|
683
|
+
export { name_108 as name };
|
|
684
|
+
let value_41: null;
|
|
685
|
+
export { value_41 as value };
|
|
686
|
+
}
|
|
687
|
+
export { hidden_2 as hidden };
|
|
688
|
+
}
|
|
689
|
+
export { inlineOptions_15 as inlineOptions };
|
|
690
|
+
}
|
|
691
|
+
namespace axisMargin {
|
|
692
|
+
let name_109: string;
|
|
693
|
+
export { name_109 as name };
|
|
694
|
+
let inlineOptions_16: any;
|
|
695
|
+
export { inlineOptions_16 as inlineOptions };
|
|
696
|
+
}
|
|
697
|
+
namespace colorbarPosition {
|
|
698
|
+
let name_110: string;
|
|
699
|
+
export { name_110 as name };
|
|
700
|
+
export namespace inlineOptions_17 {
|
|
701
|
+
export namespace topLeft {
|
|
702
|
+
let name_111: string;
|
|
703
|
+
export { name_111 as name };
|
|
704
|
+
let value_42: string;
|
|
705
|
+
export { value_42 as value };
|
|
706
|
+
}
|
|
707
|
+
export namespace topRight {
|
|
708
|
+
let name_112: string;
|
|
709
|
+
export { name_112 as name };
|
|
710
|
+
let value_43: string;
|
|
711
|
+
export { value_43 as value };
|
|
712
|
+
}
|
|
713
|
+
export namespace bottomLeft {
|
|
714
|
+
let name_113: string;
|
|
715
|
+
export { name_113 as name };
|
|
716
|
+
let value_44: string;
|
|
717
|
+
export { value_44 as value };
|
|
718
|
+
}
|
|
719
|
+
export namespace bottomRight {
|
|
720
|
+
let name_114: string;
|
|
721
|
+
export { name_114 as name };
|
|
722
|
+
let value_45: string;
|
|
723
|
+
export { value_45 as value };
|
|
724
|
+
}
|
|
725
|
+
export namespace hidden_3 {
|
|
726
|
+
let name_115: string;
|
|
727
|
+
export { name_115 as name };
|
|
728
|
+
let value_46: null;
|
|
729
|
+
export { value_46 as value };
|
|
730
|
+
}
|
|
731
|
+
export { hidden_3 as hidden };
|
|
732
|
+
}
|
|
733
|
+
export { inlineOptions_17 as inlineOptions };
|
|
734
|
+
}
|
|
735
|
+
namespace colorbarBackgroundColor {
|
|
736
|
+
let name_116: string;
|
|
737
|
+
export { name_116 as name };
|
|
738
|
+
export { AVAILABLE_COLORS as inlineOptions };
|
|
739
|
+
}
|
|
740
|
+
namespace colorbarBackgroundOpacity {
|
|
741
|
+
let name_117: string;
|
|
742
|
+
export { name_117 as name };
|
|
743
|
+
export { OPACITY_OPTIONS as inlineOptions };
|
|
744
|
+
}
|
|
745
|
+
namespace colorbarLabelsPosition {
|
|
746
|
+
let name_118: string;
|
|
747
|
+
export { name_118 as name };
|
|
748
|
+
export namespace inlineOptions_18 {
|
|
749
|
+
namespace inside {
|
|
750
|
+
let name_119: string;
|
|
751
|
+
export { name_119 as name };
|
|
752
|
+
let value_47: string;
|
|
753
|
+
export { value_47 as value };
|
|
754
|
+
}
|
|
755
|
+
namespace outside {
|
|
756
|
+
let name_120: string;
|
|
757
|
+
export { name_120 as name };
|
|
758
|
+
let value_48: string;
|
|
759
|
+
export { value_48 as value };
|
|
760
|
+
}
|
|
761
|
+
}
|
|
762
|
+
export { inlineOptions_18 as inlineOptions };
|
|
763
|
+
}
|
|
764
|
+
namespace labelColor {
|
|
765
|
+
let name_121: string;
|
|
766
|
+
export { name_121 as name };
|
|
767
|
+
export namespace inlineOptions_19 {
|
|
768
|
+
export namespace use_stroke {
|
|
769
|
+
let name_122: string;
|
|
770
|
+
export { name_122 as name };
|
|
771
|
+
let value_49: string;
|
|
772
|
+
export { value_49 as value };
|
|
773
|
+
}
|
|
774
|
+
export namespace black_1 {
|
|
775
|
+
let name_123: string;
|
|
776
|
+
export { name_123 as name };
|
|
777
|
+
let value_50: string;
|
|
778
|
+
export { value_50 as value };
|
|
779
|
+
}
|
|
780
|
+
export { black_1 as black };
|
|
781
|
+
export namespace blue {
|
|
782
|
+
let name_124: string;
|
|
783
|
+
export { name_124 as name };
|
|
784
|
+
let value_51: string;
|
|
785
|
+
export { value_51 as value };
|
|
786
|
+
}
|
|
787
|
+
export namespace brown {
|
|
788
|
+
let name_125: string;
|
|
789
|
+
export { name_125 as name };
|
|
790
|
+
let value_52: string;
|
|
791
|
+
export { value_52 as value };
|
|
792
|
+
}
|
|
793
|
+
export namespace cyan {
|
|
794
|
+
let name_126: string;
|
|
795
|
+
export { name_126 as name };
|
|
796
|
+
let value_53: string;
|
|
797
|
+
export { value_53 as value };
|
|
798
|
+
}
|
|
799
|
+
export namespace green {
|
|
800
|
+
let name_127: string;
|
|
801
|
+
export { name_127 as name };
|
|
802
|
+
let value_54: string;
|
|
803
|
+
export { value_54 as value };
|
|
804
|
+
}
|
|
805
|
+
export namespace grey_1 {
|
|
806
|
+
let name_128: string;
|
|
807
|
+
export { name_128 as name };
|
|
808
|
+
let value_55: string;
|
|
809
|
+
export { value_55 as value };
|
|
810
|
+
}
|
|
811
|
+
export { grey_1 as grey };
|
|
812
|
+
export namespace orange {
|
|
813
|
+
let name_129: string;
|
|
814
|
+
export { name_129 as name };
|
|
815
|
+
let value_56: string;
|
|
816
|
+
export { value_56 as value };
|
|
817
|
+
}
|
|
818
|
+
export namespace purple {
|
|
819
|
+
let name_130: string;
|
|
820
|
+
export { name_130 as name };
|
|
821
|
+
let value_57: string;
|
|
822
|
+
export { value_57 as value };
|
|
823
|
+
}
|
|
824
|
+
export namespace turquoise {
|
|
825
|
+
let name_131: string;
|
|
826
|
+
export { name_131 as name };
|
|
827
|
+
let value_58: string;
|
|
828
|
+
export { value_58 as value };
|
|
829
|
+
}
|
|
830
|
+
export namespace red {
|
|
831
|
+
let name_132: string;
|
|
832
|
+
export { name_132 as name };
|
|
833
|
+
let value_59: string;
|
|
834
|
+
export { value_59 as value };
|
|
835
|
+
}
|
|
836
|
+
export namespace white_1 {
|
|
837
|
+
let name_133: string;
|
|
838
|
+
export { name_133 as name };
|
|
839
|
+
let value_60: string;
|
|
840
|
+
export { value_60 as value };
|
|
841
|
+
}
|
|
842
|
+
export { white_1 as white };
|
|
843
|
+
}
|
|
844
|
+
export { inlineOptions_19 as inlineOptions };
|
|
845
|
+
}
|
|
846
|
+
namespace labelPosition {
|
|
847
|
+
let name_134: string;
|
|
848
|
+
export { name_134 as name };
|
|
849
|
+
export namespace inlineOptions_20 {
|
|
850
|
+
export namespace l {
|
|
851
|
+
let name_135: string;
|
|
852
|
+
export { name_135 as name };
|
|
853
|
+
let value_61: string;
|
|
854
|
+
export { value_61 as value };
|
|
855
|
+
}
|
|
856
|
+
export namespace r {
|
|
857
|
+
let name_136: string;
|
|
858
|
+
export { name_136 as name };
|
|
859
|
+
let value_62: string;
|
|
860
|
+
export { value_62 as value };
|
|
861
|
+
}
|
|
862
|
+
export namespace ol {
|
|
863
|
+
let name_137: string;
|
|
864
|
+
export { name_137 as name };
|
|
865
|
+
let value_63: string;
|
|
866
|
+
export { value_63 as value };
|
|
867
|
+
}
|
|
868
|
+
export namespace or {
|
|
869
|
+
let name_138: string;
|
|
870
|
+
export { name_138 as name };
|
|
871
|
+
let value_64: string;
|
|
872
|
+
export { value_64 as value };
|
|
873
|
+
}
|
|
874
|
+
export namespace t {
|
|
875
|
+
let name_139: string;
|
|
876
|
+
export { name_139 as name };
|
|
877
|
+
let value_65: string;
|
|
878
|
+
export { value_65 as value };
|
|
879
|
+
}
|
|
880
|
+
export namespace b {
|
|
881
|
+
let name_140: string;
|
|
882
|
+
export { name_140 as name };
|
|
883
|
+
let value_66: string;
|
|
884
|
+
export { value_66 as value };
|
|
885
|
+
}
|
|
886
|
+
export namespace ot {
|
|
887
|
+
let name_141: string;
|
|
888
|
+
export { name_141 as name };
|
|
889
|
+
let value_67: string;
|
|
890
|
+
export { value_67 as value };
|
|
891
|
+
}
|
|
892
|
+
export namespace ob {
|
|
893
|
+
let name_142: string;
|
|
894
|
+
export { name_142 as name };
|
|
895
|
+
let value_68: string;
|
|
896
|
+
export { value_68 as value };
|
|
897
|
+
}
|
|
898
|
+
export namespace tl {
|
|
899
|
+
let name_143: string;
|
|
900
|
+
export { name_143 as name };
|
|
901
|
+
let value_69: string;
|
|
902
|
+
export { value_69 as value };
|
|
903
|
+
}
|
|
904
|
+
export namespace tr {
|
|
905
|
+
let name_144: string;
|
|
906
|
+
export { name_144 as name };
|
|
907
|
+
let value_70: string;
|
|
908
|
+
export { value_70 as value };
|
|
909
|
+
}
|
|
910
|
+
export namespace bl {
|
|
911
|
+
let name_145: string;
|
|
912
|
+
export { name_145 as name };
|
|
913
|
+
let value_71: string;
|
|
914
|
+
export { value_71 as value };
|
|
915
|
+
}
|
|
916
|
+
export namespace br {
|
|
917
|
+
let name_146: string;
|
|
918
|
+
export { name_146 as name };
|
|
919
|
+
let value_72: string;
|
|
920
|
+
export { value_72 as value };
|
|
921
|
+
}
|
|
922
|
+
export namespace hidden_4 {
|
|
923
|
+
let name_147: string;
|
|
924
|
+
export { name_147 as name };
|
|
925
|
+
let value_73: string;
|
|
926
|
+
export { value_73 as value };
|
|
927
|
+
}
|
|
928
|
+
export { hidden_4 as hidden };
|
|
929
|
+
}
|
|
930
|
+
export { inlineOptions_20 as inlineOptions };
|
|
931
|
+
}
|
|
932
|
+
namespace labelTextOpacity {
|
|
933
|
+
let name_148: string;
|
|
934
|
+
export { name_148 as name };
|
|
935
|
+
export { OPACITY_OPTIONS as inlineOptions };
|
|
936
|
+
}
|
|
937
|
+
namespace geneAnnotationHeight {
|
|
938
|
+
let name_149: string;
|
|
939
|
+
export { name_149 as name };
|
|
940
|
+
let inlineOptions_21: {
|
|
941
|
+
8: {
|
|
942
|
+
name: string;
|
|
943
|
+
value: number;
|
|
944
|
+
};
|
|
945
|
+
10: {
|
|
946
|
+
name: string;
|
|
947
|
+
value: number;
|
|
948
|
+
};
|
|
949
|
+
12: {
|
|
950
|
+
name: string;
|
|
951
|
+
value: number;
|
|
952
|
+
};
|
|
953
|
+
16: {
|
|
954
|
+
name: string;
|
|
955
|
+
value: number;
|
|
956
|
+
};
|
|
957
|
+
};
|
|
958
|
+
export { inlineOptions_21 as inlineOptions };
|
|
959
|
+
}
|
|
960
|
+
namespace annotationHeight {
|
|
961
|
+
let name_150: string;
|
|
962
|
+
export { name_150 as name };
|
|
963
|
+
let inlineOptions_22: {
|
|
964
|
+
5: {
|
|
965
|
+
name: string;
|
|
966
|
+
value: number;
|
|
967
|
+
};
|
|
968
|
+
8: {
|
|
969
|
+
name: string;
|
|
970
|
+
value: number;
|
|
971
|
+
};
|
|
972
|
+
10: {
|
|
973
|
+
name: string;
|
|
974
|
+
value: number;
|
|
975
|
+
};
|
|
976
|
+
12: {
|
|
977
|
+
name: string;
|
|
978
|
+
value: number;
|
|
979
|
+
};
|
|
980
|
+
16: {
|
|
981
|
+
name: string;
|
|
982
|
+
value: number;
|
|
983
|
+
};
|
|
984
|
+
20: {
|
|
985
|
+
name: string;
|
|
986
|
+
value: number;
|
|
987
|
+
};
|
|
988
|
+
scaled: {
|
|
989
|
+
name: string;
|
|
990
|
+
value: string;
|
|
991
|
+
};
|
|
992
|
+
};
|
|
993
|
+
export { inlineOptions_22 as inlineOptions };
|
|
994
|
+
}
|
|
995
|
+
namespace maxAnnotationHeight {
|
|
996
|
+
let name_151: string;
|
|
997
|
+
export { name_151 as name };
|
|
998
|
+
let inlineOptions_23: {
|
|
999
|
+
5: {
|
|
1000
|
+
name: string;
|
|
1001
|
+
value: number;
|
|
1002
|
+
};
|
|
1003
|
+
8: {
|
|
1004
|
+
name: string;
|
|
1005
|
+
value: number;
|
|
1006
|
+
};
|
|
1007
|
+
10: {
|
|
1008
|
+
name: string;
|
|
1009
|
+
value: number;
|
|
1010
|
+
};
|
|
1011
|
+
12: {
|
|
1012
|
+
name: string;
|
|
1013
|
+
value: number;
|
|
1014
|
+
};
|
|
1015
|
+
16: {
|
|
1016
|
+
name: string;
|
|
1017
|
+
value: number;
|
|
1018
|
+
};
|
|
1019
|
+
20: {
|
|
1020
|
+
name: string;
|
|
1021
|
+
value: number;
|
|
1022
|
+
};
|
|
1023
|
+
none: {
|
|
1024
|
+
name: string;
|
|
1025
|
+
value: null;
|
|
1026
|
+
};
|
|
1027
|
+
};
|
|
1028
|
+
export { inlineOptions_23 as inlineOptions };
|
|
1029
|
+
}
|
|
1030
|
+
namespace annotationStyle {
|
|
1031
|
+
let name_152: string;
|
|
1032
|
+
export { name_152 as name };
|
|
1033
|
+
export namespace inlineOptions_24 {
|
|
1034
|
+
namespace box {
|
|
1035
|
+
let name_153: string;
|
|
1036
|
+
export { name_153 as name };
|
|
1037
|
+
let value_74: string;
|
|
1038
|
+
export { value_74 as value };
|
|
1039
|
+
}
|
|
1040
|
+
namespace segment {
|
|
1041
|
+
let name_154: string;
|
|
1042
|
+
export { name_154 as name };
|
|
1043
|
+
let value_75: string;
|
|
1044
|
+
export { value_75 as value };
|
|
1045
|
+
}
|
|
1046
|
+
}
|
|
1047
|
+
export { inlineOptions_24 as inlineOptions };
|
|
1048
|
+
}
|
|
1049
|
+
namespace geneLabelPosition {
|
|
1050
|
+
let name_155: string;
|
|
1051
|
+
export { name_155 as name };
|
|
1052
|
+
export namespace inlineOptions_25 {
|
|
1053
|
+
export namespace inside_1 {
|
|
1054
|
+
let name_156: string;
|
|
1055
|
+
export { name_156 as name };
|
|
1056
|
+
let value_76: string;
|
|
1057
|
+
export { value_76 as value };
|
|
1058
|
+
}
|
|
1059
|
+
export { inside_1 as inside };
|
|
1060
|
+
export namespace outside_1 {
|
|
1061
|
+
let name_157: string;
|
|
1062
|
+
export { name_157 as name };
|
|
1063
|
+
let value_77: string;
|
|
1064
|
+
export { value_77 as value };
|
|
1065
|
+
}
|
|
1066
|
+
export { outside_1 as outside };
|
|
1067
|
+
}
|
|
1068
|
+
export { inlineOptions_25 as inlineOptions };
|
|
1069
|
+
}
|
|
1070
|
+
namespace geneStrandSpacing {
|
|
1071
|
+
let name_158: string;
|
|
1072
|
+
export { name_158 as name };
|
|
1073
|
+
let inlineOptions_26: {
|
|
1074
|
+
2: {
|
|
1075
|
+
name: string;
|
|
1076
|
+
value: number;
|
|
1077
|
+
};
|
|
1078
|
+
4: {
|
|
1079
|
+
name: string;
|
|
1080
|
+
value: number;
|
|
1081
|
+
};
|
|
1082
|
+
8: {
|
|
1083
|
+
name: string;
|
|
1084
|
+
value: number;
|
|
1085
|
+
};
|
|
1086
|
+
};
|
|
1087
|
+
export { inlineOptions_26 as inlineOptions };
|
|
1088
|
+
}
|
|
1089
|
+
namespace labelBackgroundColor {
|
|
1090
|
+
let name_159: string;
|
|
1091
|
+
export { name_159 as name };
|
|
1092
|
+
export { AVAILABLE_COLORS as inlineOptions };
|
|
1093
|
+
}
|
|
1094
|
+
namespace labelBackgroundOpacity {
|
|
1095
|
+
let name_160: string;
|
|
1096
|
+
export { name_160 as name };
|
|
1097
|
+
export { OPACITY_OPTIONS as inlineOptions };
|
|
1098
|
+
}
|
|
1099
|
+
namespace viewResolution {
|
|
1100
|
+
let name_161: string;
|
|
1101
|
+
export { name_161 as name };
|
|
1102
|
+
export namespace inlineOptions_27 {
|
|
1103
|
+
namespace high {
|
|
1104
|
+
let name_162: string;
|
|
1105
|
+
export { name_162 as name };
|
|
1106
|
+
let value_78: number;
|
|
1107
|
+
export { value_78 as value };
|
|
1108
|
+
}
|
|
1109
|
+
namespace medium {
|
|
1110
|
+
let name_163: string;
|
|
1111
|
+
export { name_163 as name };
|
|
1112
|
+
let value_79: number;
|
|
1113
|
+
export { value_79 as value };
|
|
1114
|
+
}
|
|
1115
|
+
namespace low {
|
|
1116
|
+
let name_164: string;
|
|
1117
|
+
export { name_164 as name };
|
|
1118
|
+
let value_80: number;
|
|
1119
|
+
export { value_80 as value };
|
|
1120
|
+
}
|
|
1121
|
+
}
|
|
1122
|
+
export { inlineOptions_27 as inlineOptions };
|
|
1123
|
+
}
|
|
1124
|
+
namespace colorRange {
|
|
1125
|
+
let name_165: string;
|
|
1126
|
+
export { name_165 as name };
|
|
1127
|
+
export namespace inlineOptions_28 {
|
|
1128
|
+
export namespace afmhot {
|
|
1129
|
+
let name_166: string;
|
|
1130
|
+
export { name_166 as name };
|
|
1131
|
+
let value_81: string[];
|
|
1132
|
+
export { value_81 as value };
|
|
1133
|
+
}
|
|
1134
|
+
export namespace fall {
|
|
1135
|
+
let name_167: string;
|
|
1136
|
+
export { name_167 as name };
|
|
1137
|
+
let value_82: string[];
|
|
1138
|
+
export { value_82 as value };
|
|
1139
|
+
}
|
|
1140
|
+
export namespace hot {
|
|
1141
|
+
let name_168: string;
|
|
1142
|
+
export { name_168 as name };
|
|
1143
|
+
let value_83: string[];
|
|
1144
|
+
export { value_83 as value };
|
|
1145
|
+
}
|
|
1146
|
+
export namespace jet {
|
|
1147
|
+
let name_169: string;
|
|
1148
|
+
export { name_169 as name };
|
|
1149
|
+
let value_84: string[];
|
|
1150
|
+
export { value_84 as value };
|
|
1151
|
+
}
|
|
1152
|
+
export namespace bwr {
|
|
1153
|
+
let name_170: string;
|
|
1154
|
+
export { name_170 as name };
|
|
1155
|
+
let value_85: string[];
|
|
1156
|
+
export { value_85 as value };
|
|
1157
|
+
}
|
|
1158
|
+
export namespace cubehelix {
|
|
1159
|
+
let name_171: string;
|
|
1160
|
+
export { name_171 as name };
|
|
1161
|
+
let value_86: string[];
|
|
1162
|
+
export { value_86 as value };
|
|
1163
|
+
}
|
|
1164
|
+
export namespace rainbow {
|
|
1165
|
+
let name_172: string;
|
|
1166
|
+
export { name_172 as name };
|
|
1167
|
+
let value_87: string[];
|
|
1168
|
+
export { value_87 as value };
|
|
1169
|
+
}
|
|
1170
|
+
export namespace gray {
|
|
1171
|
+
let name_173: string;
|
|
1172
|
+
export { name_173 as name };
|
|
1173
|
+
let value_88: string[];
|
|
1174
|
+
export { value_88 as value };
|
|
1175
|
+
}
|
|
1176
|
+
export namespace red_1 {
|
|
1177
|
+
let name_174: string;
|
|
1178
|
+
export { name_174 as name };
|
|
1179
|
+
let value_89: string[];
|
|
1180
|
+
export { value_89 as value };
|
|
1181
|
+
}
|
|
1182
|
+
export { red_1 as red };
|
|
1183
|
+
export namespace green_1 {
|
|
1184
|
+
let name_175: string;
|
|
1185
|
+
export { name_175 as name };
|
|
1186
|
+
let value_90: string[];
|
|
1187
|
+
export { value_90 as value };
|
|
1188
|
+
}
|
|
1189
|
+
export { green_1 as green };
|
|
1190
|
+
export namespace blue_1 {
|
|
1191
|
+
let name_176: string;
|
|
1192
|
+
export { name_176 as name };
|
|
1193
|
+
let value_91: string[];
|
|
1194
|
+
export { value_91 as value };
|
|
1195
|
+
}
|
|
1196
|
+
export { blue_1 as blue };
|
|
1197
|
+
export namespace custard {
|
|
1198
|
+
let name_177: string;
|
|
1199
|
+
export { name_177 as name };
|
|
1200
|
+
let value_92: string[];
|
|
1201
|
+
export { value_92 as value };
|
|
1202
|
+
}
|
|
1203
|
+
export namespace magma {
|
|
1204
|
+
let name_178: string;
|
|
1205
|
+
export { name_178 as name };
|
|
1206
|
+
let value_93: string[];
|
|
1207
|
+
export { value_93 as value };
|
|
1208
|
+
}
|
|
1209
|
+
export namespace viridis {
|
|
1210
|
+
let name_179: string;
|
|
1211
|
+
export { name_179 as name };
|
|
1212
|
+
let value_94: string[];
|
|
1213
|
+
export { value_94 as value };
|
|
1214
|
+
}
|
|
1215
|
+
export namespace custom {
|
|
1216
|
+
let name_180: string;
|
|
1217
|
+
export { name_180 as name };
|
|
1218
|
+
export let componentPickers: {
|
|
1219
|
+
heatmap: typeof HeatmapOptions;
|
|
1220
|
+
'horizontal-heatmap': typeof HeatmapOptions;
|
|
1221
|
+
};
|
|
1222
|
+
}
|
|
1223
|
+
}
|
|
1224
|
+
export { inlineOptions_28 as inlineOptions };
|
|
1225
|
+
}
|
|
1226
|
+
namespace align {
|
|
1227
|
+
let name_181: string;
|
|
1228
|
+
export { name_181 as name };
|
|
1229
|
+
export namespace inlineOptions_29 {
|
|
1230
|
+
export namespace white_2 {
|
|
1231
|
+
let name_182: string;
|
|
1232
|
+
export { name_182 as name };
|
|
1233
|
+
let value_95: string;
|
|
1234
|
+
export { value_95 as value };
|
|
1235
|
+
}
|
|
1236
|
+
export { white_2 as white };
|
|
1237
|
+
export namespace lightGrey_1 {
|
|
1238
|
+
let name_183: string;
|
|
1239
|
+
export { name_183 as name };
|
|
1240
|
+
let value_96: string;
|
|
1241
|
+
export { value_96 as value };
|
|
1242
|
+
}
|
|
1243
|
+
export { lightGrey_1 as lightGrey };
|
|
1244
|
+
}
|
|
1245
|
+
export { inlineOptions_29 as inlineOptions };
|
|
1246
|
+
}
|
|
1247
|
+
namespace colorRangeGradient {
|
|
1248
|
+
let name_184: string;
|
|
1249
|
+
export { name_184 as name };
|
|
1250
|
+
export { YES_NO as inlineOptions };
|
|
1251
|
+
}
|
|
1252
|
+
namespace dataTransform {
|
|
1253
|
+
let name_185: string;
|
|
1254
|
+
export { name_185 as name };
|
|
1255
|
+
export namespace inlineOptions_30 {
|
|
1256
|
+
namespace _default {
|
|
1257
|
+
let name_186: string;
|
|
1258
|
+
export { name_186 as name };
|
|
1259
|
+
let value_97: string;
|
|
1260
|
+
export { value_97 as value };
|
|
1261
|
+
}
|
|
1262
|
+
export { _default as default };
|
|
1263
|
+
export namespace None {
|
|
1264
|
+
let name_187: string;
|
|
1265
|
+
export { name_187 as name };
|
|
1266
|
+
let value_98: string;
|
|
1267
|
+
export { value_98 as value };
|
|
1268
|
+
}
|
|
1269
|
+
}
|
|
1270
|
+
export { inlineOptions_30 as inlineOptions };
|
|
1271
|
+
export function generateOptions_1(track: any): {
|
|
1272
|
+
name: any;
|
|
1273
|
+
value: any;
|
|
1274
|
+
}[];
|
|
1275
|
+
export { generateOptions_1 as generateOptions };
|
|
1276
|
+
}
|
|
1277
|
+
namespace aggregationMode {
|
|
1278
|
+
let name_188: string;
|
|
1279
|
+
export { name_188 as name };
|
|
1280
|
+
let inlineOptions_31: {};
|
|
1281
|
+
export { inlineOptions_31 as inlineOptions };
|
|
1282
|
+
export function generateOptions_2(track: any): {
|
|
1283
|
+
name: string;
|
|
1284
|
+
value: string;
|
|
1285
|
+
}[];
|
|
1286
|
+
export { generateOptions_2 as generateOptions };
|
|
1287
|
+
}
|
|
1288
|
+
namespace maxZoom {
|
|
1289
|
+
let name_189: string;
|
|
1290
|
+
export { name_189 as name };
|
|
1291
|
+
export namespace inlineOptions_32 {
|
|
1292
|
+
export namespace none_2 {
|
|
1293
|
+
let name_190: string;
|
|
1294
|
+
export { name_190 as name };
|
|
1295
|
+
let value_99: null;
|
|
1296
|
+
export { value_99 as value };
|
|
1297
|
+
}
|
|
1298
|
+
export { none_2 as none };
|
|
1299
|
+
}
|
|
1300
|
+
export { inlineOptions_32 as inlineOptions };
|
|
1301
|
+
export function generateOptions_3(track: any): {
|
|
1302
|
+
name: string;
|
|
1303
|
+
value: string;
|
|
1304
|
+
}[];
|
|
1305
|
+
export { generateOptions_3 as generateOptions };
|
|
1306
|
+
}
|
|
1307
|
+
namespace valueColumn {
|
|
1308
|
+
let name_191: string;
|
|
1309
|
+
export { name_191 as name };
|
|
1310
|
+
export namespace inlineOptions_33 {
|
|
1311
|
+
export namespace none_3 {
|
|
1312
|
+
let name_192: string;
|
|
1313
|
+
export { name_192 as name };
|
|
1314
|
+
let value_100: null;
|
|
1315
|
+
export { value_100 as value };
|
|
1316
|
+
}
|
|
1317
|
+
export { none_3 as none };
|
|
1318
|
+
}
|
|
1319
|
+
export { inlineOptions_33 as inlineOptions };
|
|
1320
|
+
export { valueColumnOptions as generateOptions };
|
|
1321
|
+
}
|
|
1322
|
+
namespace zeroValueColor {
|
|
1323
|
+
let name_193: string;
|
|
1324
|
+
export { name_193 as name };
|
|
1325
|
+
export { AVAILABLE_COLORS as inlineOptions };
|
|
1326
|
+
}
|
|
1327
|
+
}
|
|
1328
|
+
export default OPTIONS_INFO;
|
|
1329
|
+
declare const AVAILABLE_MARGIN: any;
|
|
1330
|
+
declare namespace YES_NO {
|
|
1331
|
+
export namespace yes_2 {
|
|
1332
|
+
let name_194: string;
|
|
1333
|
+
export { name_194 as name };
|
|
1334
|
+
let value_101: boolean;
|
|
1335
|
+
export { value_101 as value };
|
|
1336
|
+
}
|
|
1337
|
+
export { yes_2 as yes };
|
|
1338
|
+
export namespace no_1 {
|
|
1339
|
+
let name_195: string;
|
|
1340
|
+
export { name_195 as name };
|
|
1341
|
+
let value_102: boolean;
|
|
1342
|
+
export { value_102 as value };
|
|
1343
|
+
}
|
|
1344
|
+
export { no_1 as no };
|
|
1345
|
+
}
|
|
1346
|
+
declare const AVAILABLE_WIDTHS: any;
|
|
1347
|
+
declare const AVAILABLE_WIDTHS_AND_NONE: any;
|
|
1348
|
+
declare namespace AVAILABLE_COLORS { }
|
|
1349
|
+
declare const OPACITY_OPTIONS: any;
|
|
1350
|
+
declare const OPACITY_OPTIONS_NO_ZERO: any;
|
|
1351
|
+
declare function valueColumnOptions(track: any): {
|
|
1352
|
+
name: any;
|
|
1353
|
+
value: number;
|
|
1354
|
+
}[];
|
|
1355
|
+
import HeatmapOptions from './HeatmapOptions';
|