@teselagen/ove 0.0.13 → 0.0.15
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/index.umd.js +164751 -135808
- package/package.json +78 -2
- package/src/AlignmentTool/index.js +16 -0
- package/src/AlignmentView/AlignmentVisibilityTool.js +105 -0
- package/src/AlignmentView/EditTrackNameDialog.js +34 -0
- package/src/AlignmentView/HorizontalPanelDragHandle.js +35 -0
- package/src/AlignmentView/Minimap.js +520 -0
- package/src/AlignmentView/Mismatches.js +134 -0
- package/src/AlignmentView/PairwiseAlignmentView.js +68 -0
- package/src/AlignmentView/PerformantSelectionLayer.js +32 -0
- package/src/AlignmentView/coerceInitialValue.js +7 -0
- package/src/AlignmentView/getGapMap.js +12 -0
- package/src/AlignmentView/getGaps.js +27 -0
- package/src/AlignmentView/getPairwiseOverviewLinearViewOptions.js +38 -0
- package/src/AlignmentView/getTrackFromEvent.js +25 -0
- package/src/AlignmentView/index.js +2058 -0
- package/src/AlignmentView/isTargetWithinEl.js +6 -0
- package/src/AlignmentView/style.css +100 -0
- package/src/AlignmentView/updateTrackHelper.js +58 -0
- package/src/AutoAnnotate.js +500 -0
- package/src/AutoAnnotateBpMatchingDialog.js +208 -0
- package/src/CircularView/Axis.js +40 -0
- package/src/CircularView/AxisNumbers.js +35 -0
- package/src/CircularView/Caret.js +63 -0
- package/src/CircularView/CircularDnaSequence.js +73 -0
- package/src/CircularView/CircularZoomMinimap.js +16 -0
- package/src/CircularView/Cutsite.js +18 -0
- package/src/CircularView/Cutsites.js +113 -0
- package/src/CircularView/DeletionLayer.js +28 -0
- package/src/CircularView/Feature.js +83 -0
- package/src/CircularView/Labels/index.js +536 -0
- package/src/CircularView/Labels/relaxLabelAngles.js +157 -0
- package/src/CircularView/Labels/relaxLabels_DEPRECATED.js +105 -0
- package/src/CircularView/Labels/style.css +55 -0
- package/src/CircularView/Orf.js +25 -0
- package/src/CircularView/Part.js +34 -0
- package/src/CircularView/PositionAnnotationOnCircle.js +26 -0
- package/src/CircularView/Primer.js +41 -0
- package/src/CircularView/RotateCircularViewSlider.js +82 -0
- package/src/CircularView/SelectionLayer.js +132 -0
- package/src/CircularView/VeTopRightContainer.js +12 -0
- package/src/CircularView/ZoomCircularViewSlider.js +62 -0
- package/src/CircularView/drawAnnotations.js +433 -0
- package/src/CircularView/drawDirectedPiePiece.js +142 -0
- package/src/CircularView/getAngleForPositionMidpoint.js +3 -0
- package/src/CircularView/getInternalLabel.js +40 -0
- package/src/CircularView/getRangeAnglesSpecial.js +12 -0
- package/src/CircularView/getYOffset.js +15 -0
- package/src/CircularView/index.d.ts +20 -0
- package/src/CircularView/index.js +930 -0
- package/src/CircularView/normalizeAngle.js +3 -0
- package/src/CircularView/normalizeAngleRange.js +9 -0
- package/src/CircularView/positionCutsites.js +6 -0
- package/src/CircularView/shouldFlipText.js +4 -0
- package/src/CircularView/style.css +47 -0
- package/src/CircularView/utils/polarToSpecialCartesian.js +7 -0
- package/src/CreateAnnotationsPage.js +96 -0
- package/src/CreateCustomEnzyme/index.js +337 -0
- package/src/CreateCustomEnzyme/style.css +100 -0
- package/src/CutsiteFilter/AdditionalCutsiteInfoDialog.js +599 -0
- package/src/CutsiteFilter/index.js +408 -0
- package/src/CutsiteFilter/style.css +23 -0
- package/src/CutsiteFilter/withRestrictionEnzymes.js +15 -0
- package/src/DigestTool/AddLaddersDialog.js +82 -0
- package/src/DigestTool/DigestTool.js +223 -0
- package/src/DigestTool/Ladder.css +20 -0
- package/src/DigestTool/Ladder.js +303 -0
- package/src/DigestTool/createFragmentLines.js +120 -0
- package/src/DigestTool/ladderDefaults.js +26 -0
- package/src/DigestTool/ruler.css +89 -0
- package/src/Editor/CommandHotkeyHandler.js +44 -0
- package/src/Editor/DropHandler.css +21 -0
- package/src/Editor/DropHandler.js +64 -0
- package/src/Editor/FillWindow.js +46 -0
- package/src/Editor/darkmode.css +98 -0
- package/src/Editor/index.js +1005 -0
- package/src/Editor/style.css +235 -0
- package/src/Editor/userDefinedHandlersAndOpts.js +56 -0
- package/src/EnzymeViewer/index.js +81 -0
- package/src/EnzymeViewer/style.css +6 -0
- package/src/FindBar/index.js +411 -0
- package/src/FindBar/style.css +46 -0
- package/src/GlobalDialog.js +66 -0
- package/src/GlobalDialogUtils.js +85 -0
- package/src/LinearView/SequenceName.js +15 -0
- package/src/LinearView/ZoomLinearView.js +47 -0
- package/src/LinearView/index.js +374 -0
- package/src/LinearView/style.css +12 -0
- package/src/ManageEnzymes/index.js +326 -0
- package/src/ManageEnzymes/style.css +100 -0
- package/src/MenuBar/defaultConfig.js +149 -0
- package/src/MenuBar/index.js +98 -0
- package/src/MenuBar/viewSubmenu.js +479 -0
- package/src/PCRTool/PCRTool.js +173 -0
- package/src/Reflex/Browser.js +107 -0
- package/src/Reflex/ReflexContainer.js +802 -0
- package/src/Reflex/ReflexElement.js +160 -0
- package/src/Reflex/ReflexEvents.js +77 -0
- package/src/Reflex/ReflexSplitter.js +205 -0
- package/src/Reflex/index.js +5 -0
- package/src/Reflex/reflex-styles.css +128 -0
- package/src/Reflex/reflex-styles.css.map +9 -0
- package/src/RowItem/AnnotationContainerHolder.js +20 -0
- package/src/RowItem/AnnotationPositioner.js +27 -0
- package/src/RowItem/Axis.js +149 -0
- package/src/RowItem/Caret/index.js +64 -0
- package/src/RowItem/Caret/style.css +8 -0
- package/src/RowItem/Chromatograms/Chromatogram.js +289 -0
- package/src/RowItem/CutsiteSelectionLayers.js +47 -0
- package/src/RowItem/Cutsites.js +271 -0
- package/src/RowItem/DeletionLayers/index.js +113 -0
- package/src/RowItem/DeletionLayers/style.css +5 -0
- package/src/RowItem/Labels.js +327 -0
- package/src/RowItem/Orf.js +109 -0
- package/src/RowItem/Orfs.js +35 -0
- package/src/RowItem/ReplacementLayers/style.css +5 -0
- package/src/RowItem/SelectionLayer/index.js +184 -0
- package/src/RowItem/SelectionLayer/style.css +21 -0
- package/src/RowItem/Sequence.js +269 -0
- package/src/RowItem/StackedAnnotations/PointedAnnotation.js +347 -0
- package/src/RowItem/StackedAnnotations/getStructuredBases.js +97 -0
- package/src/RowItem/StackedAnnotations/index.js +182 -0
- package/src/RowItem/StackedAnnotations/primerBases.js +218 -0
- package/src/RowItem/StackedAnnotations/style.css +14 -0
- package/src/RowItem/Translations/AASliver.js +190 -0
- package/src/RowItem/Translations/Translation.js +162 -0
- package/src/RowItem/Translations/index.js +54 -0
- package/src/RowItem/Translations/style.css +3 -0
- package/src/RowItem/constants.js +3 -0
- package/src/RowItem/getCutsiteLabelHeights.js +56 -0
- package/src/RowItem/getXStartAndWidthFromNonCircularRange.js +12 -0
- package/src/RowItem/getXStartAndWidthOfRangeWrtRow.js +27 -0
- package/src/RowItem/getXStartAndWidthOfRowAnnotation.js +19 -0
- package/src/RowItem/index.js +647 -0
- package/src/RowItem/partOverhangs.js +6 -0
- package/src/RowItem/style.css +103 -0
- package/src/RowItem/utils.js +32 -0
- package/src/RowView/estimateRowHeight.js +184 -0
- package/src/RowView/index.d.ts +10 -0
- package/src/RowView/index.js +554 -0
- package/src/RowView/style.css +12 -0
- package/src/SimpleCircularOrLinearView.js +379 -0
- package/src/SimpleOligoPreview.js +39 -0
- package/src/StatusBar/MeltingTemp.js +81 -0
- package/src/StatusBar/index.js +275 -0
- package/src/StatusBar/style.css +38 -0
- package/src/ToolBar/ToolbarItem.js +194 -0
- package/src/ToolBar/alignmentTool.js +503 -0
- package/src/ToolBar/array_move.js +10 -0
- package/src/ToolBar/cutsiteTool.js +88 -0
- package/src/ToolBar/downloadTool.js +38 -0
- package/src/ToolBar/editTool.js +26 -0
- package/src/ToolBar/featureTool.js +34 -0
- package/src/ToolBar/findTool.js +2 -0
- package/src/ToolBar/importTool.js +27 -0
- package/src/ToolBar/index.js +231 -0
- package/src/ToolBar/inlineFindTool.js +38 -0
- package/src/ToolBar/oligoTool.js +30 -0
- package/src/ToolBar/orfTool.js +141 -0
- package/src/ToolBar/partTool.js +47 -0
- package/src/ToolBar/printTool.js +31 -0
- package/src/ToolBar/redoTool.js +30 -0
- package/src/ToolBar/saveTool.js +48 -0
- package/src/ToolBar/style.css +138 -0
- package/src/ToolBar/undoTool.js +30 -0
- package/src/ToolBar/veToolbarIcons/find.png +0 -0
- package/src/ToolBar/veToolbarIcons/fullscreen.png +0 -0
- package/src/ToolBar/veToolbarIcons/linear.png +0 -0
- package/src/ToolBar/veToolbarIcons/pie.png +0 -0
- package/src/ToolBar/veToolbarIcons/print.png +0 -0
- package/src/ToolBar/veToolbarIcons/save.png +0 -0
- package/src/ToolBar/veToolbarIcons/show_cut_sites.png +0 -0
- package/src/ToolBar/veToolbarIcons/show_features.png +0 -0
- package/src/ToolBar/veToolbarIcons/show_orfs.png +0 -0
- package/src/ToolBar/veToolbarIcons/show_primers.png +0 -0
- package/src/ToolBar/veToolbarIcons/toggle_views.svg +1 -0
- package/src/ToolBar/versionHistoryTool.js +20 -0
- package/src/ToolBar/visibilityTool.js +39 -0
- package/src/VersionHistoryView/index.js +215 -0
- package/src/addAlignment.js +6 -0
- package/src/commands/getOveHotkeyDefs.js +12 -0
- package/src/commands/index.js +1585 -0
- package/src/constants/constants.js +2 -0
- package/src/constants/dnaToColor.js +17 -0
- package/src/constants/draggableClassnames.js +5 -0
- package/src/constants/findToolConstants.js +1 -0
- package/src/constants/orfFrameToColorMap.js +10 -0
- package/src/constants/rowviewContants.js +3 -0
- package/src/constants/specialCutsiteFilterOptions.js +22 -0
- package/src/constants.js +1 -0
- package/src/createVectorEditor/index.js +138 -0
- package/src/createVectorEditor/makeStore.js +34 -0
- package/src/fileUtils.js +103 -0
- package/src/helperComponents/AddOrEditAnnotationDialog/index.js +711 -0
- package/src/helperComponents/AddOrEditAnnotationDialog/style.css +11 -0
- package/src/helperComponents/AddOrEditFeatureDialog/index.js +58 -0
- package/src/helperComponents/AddOrEditPartDialog/index.js +101 -0
- package/src/helperComponents/AddOrEditPrimerDialog/EditCaretPosition.js +234 -0
- package/src/helperComponents/AddOrEditPrimerDialog/index.js +329 -0
- package/src/helperComponents/AddOrEditPrimerDialog/style.css +41 -0
- package/src/helperComponents/EnzymesDialog/index.js +904 -0
- package/src/helperComponents/EnzymesDialog/style.css +21 -0
- package/src/helperComponents/GoToDialog.js +21 -0
- package/src/helperComponents/MergeFeaturesDialog/index.js +253 -0
- package/src/helperComponents/MergeFeaturesDialog/style.css +3 -0
- package/src/helperComponents/MultipleSeqsDetectedOnImportDialog.js +74 -0
- package/src/helperComponents/PinchHelper/PinchHelper.js +24 -0
- package/src/helperComponents/PrintDialog/index.js +396 -0
- package/src/helperComponents/PrintDialog/style.css +4 -0
- package/src/helperComponents/PropertiesDialog/ColorPicker.js +30 -0
- package/src/helperComponents/PropertiesDialog/CutsiteProperties.js +185 -0
- package/src/helperComponents/PropertiesDialog/FeatureProperties.js +6 -0
- package/src/helperComponents/PropertiesDialog/GenbankView.js +74 -0
- package/src/helperComponents/PropertiesDialog/GeneralProperties.js +140 -0
- package/src/helperComponents/PropertiesDialog/GenericAnnotationProperties.js +406 -0
- package/src/helperComponents/PropertiesDialog/OrfProperties.js +117 -0
- package/src/helperComponents/PropertiesDialog/PartProperties.js +9 -0
- package/src/helperComponents/PropertiesDialog/PrimerProperties.js +19 -0
- package/src/helperComponents/PropertiesDialog/SingleEnzymeCutsiteInfo.js +131 -0
- package/src/helperComponents/PropertiesDialog/TranslationProperties.js +149 -0
- package/src/helperComponents/PropertiesDialog/index.js +166 -0
- package/src/helperComponents/PropertiesDialog/style.css +68 -0
- package/src/helperComponents/PropertiesDialog/typeField.js +24 -0
- package/src/helperComponents/PropertiesDialog/utils.js +37 -0
- package/src/helperComponents/RemoveDuplicates/index.js +194 -0
- package/src/helperComponents/RenameSequenceDialog.js +7 -0
- package/src/helperComponents/SelectDialog.js +150 -0
- package/src/helperComponents/UncontrolledSliderWithPlusMinusBtns.css +5 -0
- package/src/helperComponents/UncontrolledSliderWithPlusMinusBtns.js +134 -0
- package/src/helperComponents/VeWarning/index.js +22 -0
- package/src/helperComponents/VeWarning/style.css +10 -0
- package/src/helperComponents/createSimpleDialog.js +89 -0
- package/src/helperComponents/partTagSearch.js +72 -0
- package/src/helperComponents/simpleDialog.css +13 -0
- package/src/helperComponents/withHover.js +90 -0
- package/src/index.js +60 -0
- package/src/redux/alignments.js +373 -0
- package/src/redux/annotationLabelVisibility.js +53 -0
- package/src/redux/annotationVisibility.js +196 -0
- package/src/redux/annotationsToSupport.js +104 -0
- package/src/redux/caretPosition.js +27 -0
- package/src/redux/charWidth.js +22 -0
- package/src/redux/copyOptions.js +34 -0
- package/src/redux/createYourOwnEnzyme.js +39 -0
- package/src/redux/deletionLayers.js +36 -0
- package/src/redux/digestTool.js +34 -0
- package/src/redux/featureLengthsToHide.js +27 -0
- package/src/redux/findTool.js +79 -0
- package/src/redux/frameTranslations.js +52 -0
- package/src/redux/hoveredAnnotation.js +24 -0
- package/src/redux/index.js +196 -0
- package/src/redux/labelLineIntensity.js +25 -0
- package/src/redux/labelSize.js +23 -0
- package/src/redux/lastSavedId.js +20 -0
- package/src/redux/middleware.js +112 -0
- package/src/redux/minimumOrfSize.js +24 -0
- package/src/redux/modalActions.js +3 -0
- package/src/redux/panelsShown.js +273 -0
- package/src/redux/partLengthsToHide.js +23 -0
- package/src/redux/primerLengthsToHide.js +27 -0
- package/src/redux/propertiesTool.js +40 -0
- package/src/redux/readOnly.js +28 -0
- package/src/redux/replacementLayers.js +36 -0
- package/src/redux/restrictionEnzymes.js +52 -0
- package/src/redux/selectedAnnotations.js +89 -0
- package/src/redux/selectedPartTags.js +21 -0
- package/src/redux/selectionLayer.js +46 -0
- package/src/redux/sequenceData/circular.js +19 -0
- package/src/redux/sequenceData/description.js +21 -0
- package/src/redux/sequenceData/features.js +19 -0
- package/src/redux/sequenceData/index.js +81 -0
- package/src/redux/sequenceData/lineageLines.js +11 -0
- package/src/redux/sequenceData/materiallyAvailable.js +19 -0
- package/src/redux/sequenceData/name.js +19 -0
- package/src/redux/sequenceData/parts.js +19 -0
- package/src/redux/sequenceData/primers.js +19 -0
- package/src/redux/sequenceData/sequence.js +12 -0
- package/src/redux/sequenceData/sharedActionCreators.js +0 -0
- package/src/redux/sequenceData/translations.js +20 -0
- package/src/redux/sequenceData/upsertDeleteActionGenerator.js +31 -0
- package/src/redux/sequenceDataHistory.js +43 -0
- package/src/redux/showGCContent.js +23 -0
- package/src/redux/toolBar.js +25 -0
- package/src/redux/uppercaseSequenceMapFont.js +25 -0
- package/src/redux/useAdditionalOrfStartCodons.js +24 -0
- package/src/redux/utils/addDashesForMatchStartAndEndForTracks/index.js +71 -0
- package/src/redux/utils/addMetaToActionCreators.js +12 -0
- package/src/redux/utils/createMergedDefaultStateReducer.js +30 -0
- package/src/redux/utils/createMetaAction.js +12 -0
- package/src/redux/versionHistory.js +27 -0
- package/src/selectors/annotationLabelVisibility.js +2 -0
- package/src/selectors/annotationSearchSelector.js +24 -0
- package/src/selectors/cdsFeaturesSelector.js +9 -0
- package/src/selectors/circularSelector.js +4 -0
- package/src/selectors/cutsiteLabelColorSelector.js +6 -0
- package/src/selectors/cutsitesByRangeSelector.js +5 -0
- package/src/selectors/cutsitesSelector.js +61 -0
- package/src/selectors/editorSelector.js +2 -0
- package/src/selectors/featuresSelector.js +8 -0
- package/src/selectors/filteredCutsitesSelector.js +137 -0
- package/src/selectors/filteredFeaturesSelector.js +32 -0
- package/src/selectors/filteredPartsSelector.js +57 -0
- package/src/selectors/filteredPrimersSelector.js +27 -0
- package/src/selectors/filteredRestrictionEnzymesSelector.js +1 -0
- package/src/selectors/getAdditionalEnzymesSelector.js +46 -0
- package/src/selectors/index.js +41 -0
- package/src/selectors/isEnzymeFilterAndSelector.js +1 -0
- package/src/selectors/minimumOrfSizeSelector.js +2 -0
- package/src/selectors/orfsSelector.js +15 -0
- package/src/selectors/partsSelector.js +8 -0
- package/src/selectors/primersSelector.js +8 -0
- package/src/selectors/restrictionEnzymesSelector.js +34 -0
- package/src/selectors/searchLayersSelector.js +71 -0
- package/src/selectors/selectedAnnotationsSelector.js +1 -0
- package/src/selectors/selectedCutsitesSelector.js +21 -0
- package/src/selectors/sequenceDataSelector.js +2 -0
- package/src/selectors/sequenceLengthSelector.js +5 -0
- package/src/selectors/sequenceSelector.js +4 -0
- package/src/selectors/tagsToBoldSelector.js +2 -0
- package/src/selectors/translationSearchMatchesSelector.js +14 -0
- package/src/selectors/translationsRawSelector.js +8 -0
- package/src/selectors/translationsSelector.js +137 -0
- package/src/style.css +82 -0
- package/src/updateEditor.js +198 -0
- package/src/utils/PassThrough.js +3 -0
- package/src/utils/addWrappedAddons.js +20 -0
- package/src/utils/annotationTypes.js +37 -0
- package/src/utils/arrayUtils.js +19 -0
- package/src/utils/calculateTickMarkPositionsForGivenRange.js +47 -0
- package/src/utils/cleanSequenceData_DEPRECATED/arrayToObjWithIds.js +17 -0
- package/src/utils/combineReducersDontIgnoreKeys.js +12 -0
- package/src/utils/commandUtils.js +18 -0
- package/src/utils/editorUtils.js +223 -0
- package/src/utils/getAnnotationClassnames.js +12 -0
- package/src/utils/getAnnotationNameAndStartStopString.js +61 -0
- package/src/utils/getVisibleStartEnd.js +7 -0
- package/src/utils/massageTickSpacing.js +19 -0
- package/src/utils/onlyUpdateForKeysDeep.js +31 -0
- package/src/utils/prepareRowData.js +64 -0
- package/src/utils/proteinUtils.js +3 -0
- package/src/utils/pureNoFunc.js +18 -0
- package/src/utils/selectionLayer.js +25 -0
- package/src/utils/shouldRerender.js +27 -0
- package/src/utils/showFileDialog.js +26 -0
- package/src/utils/updateLabelsForInViewFeatures.js +55 -0
- package/src/utils/updateLabelsForInViewFeaturesCircView.js +41 -0
- package/src/utils/useAAColorType.js +8 -0
- package/src/utils/useAnnotationLimits.js +42 -0
- package/src/utils/useChromatogramPrefs.js +31 -0
- package/src/utils/useLadders.js +6 -0
- package/src/utils/useMeltingTemp.js +7 -0
- package/src/utils/useTmType.js +10 -0
- package/src/withEditorInteractions/Keyboard.js +86 -0
- package/src/withEditorInteractions/clickAndDragUtils.js +576 -0
- package/src/withEditorInteractions/createSequenceInputPopup.js +296 -0
- package/src/withEditorInteractions/createSequenceInputPopupStyle.css +85 -0
- package/src/withEditorInteractions/getBpsPerRow.js +19 -0
- package/src/withEditorInteractions/index.js +1252 -0
- package/src/withEditorInteractions/isElementInViewport.js +29 -0
- package/src/withEditorInteractions/moveCaret.js +58 -0
- package/src/withEditorProps/index.js +1010 -0
- package/index.mjs +0 -193201
| @@ -0,0 +1,520 @@ | |
| 1 | 
            +
            import React from "react";
         | 
| 2 | 
            +
            import Draggable from "react-draggable";
         | 
| 3 | 
            +
            import ReactList from "@teselagen/react-list";
         | 
| 4 | 
            +
            import Axis from "../RowItem/Axis";
         | 
| 5 | 
            +
            import getXStartAndWidthFromNonCircularRange from "../RowItem/getXStartAndWidthFromNonCircularRange";
         | 
| 6 | 
            +
            import { view } from "@risingstack/react-easy-state";
         | 
| 7 | 
            +
            import { flatMap, some, toNumber } from "lodash";
         | 
| 8 | 
            +
            import {
         | 
| 9 | 
            +
              getOverlapOfNonCircularRanges,
         | 
| 10 | 
            +
              invertRange,
         | 
| 11 | 
            +
              isPositionWithinRange,
         | 
| 12 | 
            +
              splitRangeIntoTwoPartsIfItIsCircular
         | 
| 13 | 
            +
            } from "@teselagen/range-utils";
         | 
| 14 | 
            +
            import { massageTickSpacing } from "../utils/massageTickSpacing";
         | 
| 15 | 
            +
            import { getClientX, getClientY } from "../utils/editorUtils";
         | 
| 16 | 
            +
            export default class Minimap extends React.Component {
         | 
| 17 | 
            +
              shouldComponentUpdate(newProps) {
         | 
| 18 | 
            +
                const { props } = this;
         | 
| 19 | 
            +
                if (
         | 
| 20 | 
            +
                  [
         | 
| 21 | 
            +
                    "alignmentTracks",
         | 
| 22 | 
            +
                    "numBpsShownInLinearView",
         | 
| 23 | 
            +
                    "scrollAlignmentView",
         | 
| 24 | 
            +
                    "laneHeight",
         | 
| 25 | 
            +
                    "laneSpacing"
         | 
| 26 | 
            +
                  ].some((key) => props[key] !== newProps[key])
         | 
| 27 | 
            +
                )
         | 
| 28 | 
            +
                  return true;
         | 
| 29 | 
            +
                return false;
         | 
| 30 | 
            +
              }
         | 
| 31 | 
            +
              handleMinimapClick = (e) => {
         | 
| 32 | 
            +
                if (
         | 
| 33 | 
            +
                  this.isDragging ||
         | 
| 34 | 
            +
                  (e.target && e.target.classList.contains("minimapCaret"))
         | 
| 35 | 
            +
                ) {
         | 
| 36 | 
            +
                  e.stopPropagation();
         | 
| 37 | 
            +
                  return;
         | 
| 38 | 
            +
                }
         | 
| 39 | 
            +
                const {
         | 
| 40 | 
            +
                  onMinimapScrollX,
         | 
| 41 | 
            +
                  dimensions: { width = 200 }
         | 
| 42 | 
            +
                } = this.props;
         | 
| 43 | 
            +
                const scrollHandleWidth = this.getScrollHandleWidth();
         | 
| 44 | 
            +
                const percent =
         | 
| 45 | 
            +
                  (this.getXPositionOfClickInMinimap(e) - scrollHandleWidth / 2) /
         | 
| 46 | 
            +
                  (width - scrollHandleWidth);
         | 
| 47 | 
            +
                onMinimapScrollX(percent);
         | 
| 48 | 
            +
                this.scrollMinimapVertical({ e, force: true });
         | 
| 49 | 
            +
              };
         | 
| 50 | 
            +
              getSeqLen = () => {
         | 
| 51 | 
            +
                const { alignmentTracks = [] } = this.props;
         | 
| 52 | 
            +
                const [template] = alignmentTracks;
         | 
| 53 | 
            +
                const seqLength = template.alignmentData.sequence.length;
         | 
| 54 | 
            +
                return seqLength;
         | 
| 55 | 
            +
              };
         | 
| 56 | 
            +
              /**
         | 
| 57 | 
            +
               * @returns current nucleotide char
         | 
| 58 | 
            +
               * width, nucelotide char width scales with zooming
         | 
| 59 | 
            +
               */
         | 
| 60 | 
            +
              getCharWidth = () => {
         | 
| 61 | 
            +
                const {
         | 
| 62 | 
            +
                  dimensions: { width = 200 }
         | 
| 63 | 
            +
                } = this.props;
         | 
| 64 | 
            +
                const seqLength = this.getSeqLen();
         | 
| 65 | 
            +
                const charWidth = Math.min(16, width / seqLength);
         | 
| 66 | 
            +
                return charWidth || 12;
         | 
| 67 | 
            +
              };
         | 
| 68 | 
            +
              /**
         | 
| 69 | 
            +
               * @returns the width of the highlighted region of the minimap
         | 
| 70 | 
            +
               */
         | 
| 71 | 
            +
              getScrollHandleWidth = () => {
         | 
| 72 | 
            +
                const { numBpsShownInLinearView, dimensions } = this.props;
         | 
| 73 | 
            +
                const charWidth = this.getCharWidth();
         | 
| 74 | 
            +
                const { width } = getXStartAndWidthFromNonCircularRange(
         | 
| 75 | 
            +
                  { start: 0, end: Math.max(numBpsShownInLinearView - 1, 0) },
         | 
| 76 | 
            +
                  charWidth
         | 
| 77 | 
            +
                );
         | 
| 78 | 
            +
                return Math.min(width, dimensions.width);
         | 
| 79 | 
            +
              };
         | 
| 80 | 
            +
              getXPositionOfClickInMinimap = (e) => {
         | 
| 81 | 
            +
                const leftStart = this.minimap.getBoundingClientRect().left;
         | 
| 82 | 
            +
                return Math.max(getClientX(e) - leftStart, 0);
         | 
| 83 | 
            +
              };
         | 
| 84 | 
            +
              getYPositionOfClickInMinimap = (e) => {
         | 
| 85 | 
            +
                const topStart = this.minimap.getBoundingClientRect().top;
         | 
| 86 | 
            +
                return Math.max(getClientY(e) + this.minimapTracks.scrollTop - topStart, 0);
         | 
| 87 | 
            +
              };
         | 
| 88 | 
            +
             | 
| 89 | 
            +
              scrollMinimapVertical = ({ e, force, initialDragYOffsetFromCenter }) => {
         | 
| 90 | 
            +
                const clientY = getClientY(e) - (initialDragYOffsetFromCenter || 0);
         | 
| 91 | 
            +
                try {
         | 
| 92 | 
            +
                  if (
         | 
| 93 | 
            +
                    !force &&
         | 
| 94 | 
            +
                    isPositionWithinRange(clientY, {
         | 
| 95 | 
            +
                      start: this.lastYPosition - 5,
         | 
| 96 | 
            +
                      end: this.lastYPosition + 5
         | 
| 97 | 
            +
                    })
         | 
| 98 | 
            +
                  ) {
         | 
| 99 | 
            +
                    // this.lastYPosition = clientY
         | 
| 100 | 
            +
                    return;
         | 
| 101 | 
            +
                  }
         | 
| 102 | 
            +
                  const lanes = document.querySelectorAll(".minimapLane");
         | 
| 103 | 
            +
                  some(lanes, (lane) => {
         | 
| 104 | 
            +
                    const rect = lane.getBoundingClientRect();
         | 
| 105 | 
            +
                    if (rect.top > clientY && rect.top - rect.height < clientY) {
         | 
| 106 | 
            +
                      const laneI = toNumber(lane.getAttribute("data-lane-index"));
         | 
| 107 | 
            +
                      let scrollToLane = laneI - 3;
         | 
| 108 | 
            +
                      if (laneI === lanes.length - 1) {
         | 
| 109 | 
            +
                        scrollToLane = laneI - 1;
         | 
| 110 | 
            +
                      } else if (laneI === lanes.length - 2) {
         | 
| 111 | 
            +
                        scrollToLane = laneI - 2;
         | 
| 112 | 
            +
                      }
         | 
| 113 | 
            +
                      this.props.scrollYToTrack(Math.max(scrollToLane, 0));
         | 
| 114 | 
            +
                      return true;
         | 
| 115 | 
            +
                    }
         | 
| 116 | 
            +
                    return false;
         | 
| 117 | 
            +
                  });
         | 
| 118 | 
            +
                  this.lastYPosition = clientY;
         | 
| 119 | 
            +
                } catch (error) {
         | 
| 120 | 
            +
                  console.error(`error in scrollMinimapVertical:`, error);
         | 
| 121 | 
            +
                }
         | 
| 122 | 
            +
              };
         | 
| 123 | 
            +
              handleDragStop = () => {
         | 
| 124 | 
            +
                // this.hasSetDirection = false;
         | 
| 125 | 
            +
                setTimeout(() => {
         | 
| 126 | 
            +
                  this.isDragging = false;
         | 
| 127 | 
            +
                }, 150);
         | 
| 128 | 
            +
              };
         | 
| 129 | 
            +
              /**
         | 
| 130 | 
            +
               * Handler for beginning to drag across the minimap
         | 
| 131 | 
            +
               * Sets this.initialDragXOffsetFromCenter and Y for dragging
         | 
| 132 | 
            +
               * @param {*} e - event
         | 
| 133 | 
            +
               */
         | 
| 134 | 
            +
              handleDragStart = (e) => {
         | 
| 135 | 
            +
                const eventX = e.pageX;
         | 
| 136 | 
            +
                const handleEl = window.document.querySelector(".verticalScrollDisplay");
         | 
| 137 | 
            +
                if (!handleEl) return;
         | 
| 138 | 
            +
                const { x, width } = handleEl.getBoundingClientRect();
         | 
| 139 | 
            +
                const yellowScrollHandleXCenter = x + width / 2;
         | 
| 140 | 
            +
                this.initialDragXOffsetFromCenter = eventX - yellowScrollHandleXCenter;
         | 
| 141 | 
            +
                const eventY = e.pageY;
         | 
| 142 | 
            +
             | 
| 143 | 
            +
                if (!handleEl) return;
         | 
| 144 | 
            +
                const { y, height } = handleEl.getBoundingClientRect();
         | 
| 145 | 
            +
                const yellowScrollHandleYCenter = y + height / 2;
         | 
| 146 | 
            +
                this.initialDragYOffsetFromCenter = eventY - yellowScrollHandleYCenter;
         | 
| 147 | 
            +
              };
         | 
| 148 | 
            +
              /**
         | 
| 149 | 
            +
               * Moves the highlighted region as we drag
         | 
| 150 | 
            +
               * @param {*} e - event
         | 
| 151 | 
            +
               */
         | 
| 152 | 
            +
              handleDrag = (e) => {
         | 
| 153 | 
            +
                const {
         | 
| 154 | 
            +
                  onMinimapScrollX,
         | 
| 155 | 
            +
                  dimensions: { width = 200 }
         | 
| 156 | 
            +
                } = this.props;
         | 
| 157 | 
            +
                this.isDragging = true; //needed to block erroneous click events from being triggered!
         | 
| 158 | 
            +
             | 
| 159 | 
            +
                const scrollHandleWidth = this.getScrollHandleWidth();
         | 
| 160 | 
            +
                const percent =
         | 
| 161 | 
            +
                  (this.getXPositionOfClickInMinimap(e) -
         | 
| 162 | 
            +
                    (this.initialDragXOffsetFromCenter || 0) -
         | 
| 163 | 
            +
                    scrollHandleWidth / 2) /
         | 
| 164 | 
            +
                  (width - scrollHandleWidth);
         | 
| 165 | 
            +
                onMinimapScrollX(percent);
         | 
| 166 | 
            +
                this.scrollMinimapVertical({
         | 
| 167 | 
            +
                  e,
         | 
| 168 | 
            +
                  initialDragYOffsetFromCenter: this.initialDragYOffsetFromCenter
         | 
| 169 | 
            +
                });
         | 
| 170 | 
            +
              };
         | 
| 171 | 
            +
              /**
         | 
| 172 | 
            +
               * @returns this.props.laneheight
         | 
| 173 | 
            +
               */
         | 
| 174 | 
            +
              itemSizeGetter = () => {
         | 
| 175 | 
            +
                return this.props.laneHeight;
         | 
| 176 | 
            +
              };
         | 
| 177 | 
            +
              /**
         | 
| 178 | 
            +
               * Renders a lane (one by one for each call)
         | 
| 179 | 
            +
               * @param {*} i - lane info
         | 
| 180 | 
            +
               */
         | 
| 181 | 
            +
              renderItem = (i) => {
         | 
| 182 | 
            +
                const {
         | 
| 183 | 
            +
                  alignmentTracks = [],
         | 
| 184 | 
            +
                  dimensions: { width = 200 },
         | 
| 185 | 
            +
                  laneHeight,
         | 
| 186 | 
            +
                  laneSpacing = 1
         | 
| 187 | 
            +
                } = this.props;
         | 
| 188 | 
            +
                const charWidth = this.getCharWidth();
         | 
| 189 | 
            +
             | 
| 190 | 
            +
                const {
         | 
| 191 | 
            +
                  matchHighlightRanges: _matchHighlightRanges,
         | 
| 192 | 
            +
                  alignmentData: { trimmedRange } = {}
         | 
| 193 | 
            +
                } = alignmentTracks[i];
         | 
| 194 | 
            +
                const matchHighlightRanges = !trimmedRange
         | 
| 195 | 
            +
                  ? _matchHighlightRanges
         | 
| 196 | 
            +
                  : flatMap(_matchHighlightRanges, (r) => {
         | 
| 197 | 
            +
                      const overlap = getOverlapOfNonCircularRanges(r, trimmedRange);
         | 
| 198 | 
            +
                      if (!overlap) return [];
         | 
| 199 | 
            +
                      return { ...r, ...overlap };
         | 
| 200 | 
            +
                    });
         | 
| 201 | 
            +
             | 
| 202 | 
            +
                //need to get the chunks that can be rendered
         | 
| 203 | 
            +
                let redPath = ""; //draw these as just 1 path instead of a bunch of rectangles to improve browser performance
         | 
| 204 | 
            +
                let bluePath = "";
         | 
| 205 | 
            +
                // draw one grey rectangle then draw red/mismatching regions on top of it
         | 
| 206 | 
            +
                const height = laneHeight - laneSpacing;
         | 
| 207 | 
            +
                const y = 0;
         | 
| 208 | 
            +
                const firstRange = getXStartAndWidthFromNonCircularRange(
         | 
| 209 | 
            +
                  matchHighlightRanges[0],
         | 
| 210 | 
            +
                  charWidth
         | 
| 211 | 
            +
                );
         | 
| 212 | 
            +
                const lastRange = getXStartAndWidthFromNonCircularRange(
         | 
| 213 | 
            +
                  matchHighlightRanges[matchHighlightRanges.length - 1],
         | 
| 214 | 
            +
                  charWidth
         | 
| 215 | 
            +
                );
         | 
| 216 | 
            +
                bluePath += `M${firstRange.xStart},${y} L${
         | 
| 217 | 
            +
                  lastRange.xStart + lastRange.width
         | 
| 218 | 
            +
                },${y} L${lastRange.xStart + lastRange.width},${y + height} L${
         | 
| 219 | 
            +
                  firstRange.xStart
         | 
| 220 | 
            +
                },${y + height}`;
         | 
| 221 | 
            +
                matchHighlightRanges.forEach((range) => {
         | 
| 222 | 
            +
                  const { xStart, width } = getXStartAndWidthFromNonCircularRange(
         | 
| 223 | 
            +
                    range,
         | 
| 224 | 
            +
                    charWidth
         | 
| 225 | 
            +
                  );
         | 
| 226 | 
            +
                  const toAdd = `M${xStart},${y} L${xStart + width},${y} L${
         | 
| 227 | 
            +
                    xStart + width
         | 
| 228 | 
            +
                  },${y + height} L${xStart},${y + height}`;
         | 
| 229 | 
            +
                  if (!range.isMatch) {
         | 
| 230 | 
            +
                    redPath += toAdd;
         | 
| 231 | 
            +
                  }
         | 
| 232 | 
            +
                });
         | 
| 233 | 
            +
                return (
         | 
| 234 | 
            +
                  <div
         | 
| 235 | 
            +
                    key={i + "-lane"}
         | 
| 236 | 
            +
                    className="minimapLane"
         | 
| 237 | 
            +
                    data-lane-index={i}
         | 
| 238 | 
            +
                    style={{ height: laneHeight, maxHeight: laneHeight }}
         | 
| 239 | 
            +
                  >
         | 
| 240 | 
            +
                    <svg
         | 
| 241 | 
            +
                      height={laneHeight}
         | 
| 242 | 
            +
                      width={width}
         | 
| 243 | 
            +
                      shapeRendering="geometricPrecision"
         | 
| 244 | 
            +
                    >
         | 
| 245 | 
            +
                      <path className="miniBluePath" d={bluePath} fill="#9abeff" />
         | 
| 246 | 
            +
                      <path className="miniRedPath" d={redPath} fill="red" />
         | 
| 247 | 
            +
                    </svg>
         | 
| 248 | 
            +
                  </div>
         | 
| 249 | 
            +
                );
         | 
| 250 | 
            +
              };
         | 
| 251 | 
            +
              /**
         | 
| 252 | 
            +
               * @returns minimap compoent
         | 
| 253 | 
            +
               */
         | 
| 254 | 
            +
              render() {
         | 
| 255 | 
            +
                const {
         | 
| 256 | 
            +
                  alignmentTracks = [],
         | 
| 257 | 
            +
                  dimensions: { width = 200 },
         | 
| 258 | 
            +
                  laneHeight,
         | 
| 259 | 
            +
                  onSizeAdjust,
         | 
| 260 | 
            +
                  minSliderSize,
         | 
| 261 | 
            +
                  onMinimapScrollX,
         | 
| 262 | 
            +
                  easyStore,
         | 
| 263 | 
            +
                  selectionLayerComp
         | 
| 264 | 
            +
                } = this.props;
         | 
| 265 | 
            +
             | 
| 266 | 
            +
                const [template /* ...nonTemplates */] = alignmentTracks;
         | 
| 267 | 
            +
                const seqLength = template.alignmentData.sequence.length;
         | 
| 268 | 
            +
                const charWidth = this.getCharWidth();
         | 
| 269 | 
            +
                const scrollHandleWidth = this.getScrollHandleWidth();
         | 
| 270 | 
            +
                const minimapTracksPartialHeight = laneHeight * alignmentTracks.length;
         | 
| 271 | 
            +
             | 
| 272 | 
            +
                return (
         | 
| 273 | 
            +
                  <div
         | 
| 274 | 
            +
                    ref={(ref) => (this.minimap = ref)}
         | 
| 275 | 
            +
                    className="alignmentMinimap"
         | 
| 276 | 
            +
                    style={{
         | 
| 277 | 
            +
                      position: "relative",
         | 
| 278 | 
            +
                      width,
         | 
| 279 | 
            +
                      display: "flex",
         | 
| 280 | 
            +
                      flexDirection: "column",
         | 
| 281 | 
            +
                      overflowX: "visible"
         | 
| 282 | 
            +
             | 
| 283 | 
            +
                      // overflowY: "hidden"
         | 
| 284 | 
            +
                    }}
         | 
| 285 | 
            +
                    onClick={this.handleMinimapClick}
         | 
| 286 | 
            +
                  >
         | 
| 287 | 
            +
                    {selectionLayerComp}
         | 
| 288 | 
            +
                    <div
         | 
| 289 | 
            +
                      ref={(ref) => {
         | 
| 290 | 
            +
                        if (ref) {
         | 
| 291 | 
            +
                          this.minimapTracks = ref;
         | 
| 292 | 
            +
                        }
         | 
| 293 | 
            +
                      }}
         | 
| 294 | 
            +
                      style={{
         | 
| 295 | 
            +
                        // maxHeight: 350,
         | 
| 296 | 
            +
                        overflowY: minimapTracksPartialHeight > 190 ? "auto" : "hidden",
         | 
| 297 | 
            +
                        // overflowY: "auto",
         | 
| 298 | 
            +
                        overflowX: "hidden",
         | 
| 299 | 
            +
                        position: "relative"
         | 
| 300 | 
            +
                      }}
         | 
| 301 | 
            +
                      className="alignmentMinimapTracks"
         | 
| 302 | 
            +
                    >
         | 
| 303 | 
            +
                      <YellowScrollHandle
         | 
| 304 | 
            +
                        width={width}
         | 
| 305 | 
            +
                        handleDragStart={this.handleDragStart}
         | 
| 306 | 
            +
                        handleDrag={this.handleDrag}
         | 
| 307 | 
            +
                        handleDragStop={this.handleDragStop}
         | 
| 308 | 
            +
                        onMinimapScrollX={onMinimapScrollX}
         | 
| 309 | 
            +
                        minSliderSize={minSliderSize}
         | 
| 310 | 
            +
                        onSizeAdjust={onSizeAdjust}
         | 
| 311 | 
            +
                        easyStore={easyStore} //we use react-easy-state here to prevent costly setStates from being called
         | 
| 312 | 
            +
                        scrollHandleWidth={scrollHandleWidth}
         | 
| 313 | 
            +
                        alignmentTracks={alignmentTracks}
         | 
| 314 | 
            +
                        laneHeight={laneHeight}
         | 
| 315 | 
            +
                        minimapTracksPartialHeight={minimapTracksPartialHeight}
         | 
| 316 | 
            +
                      />
         | 
| 317 | 
            +
             | 
| 318 | 
            +
                      <ReactList
         | 
| 319 | 
            +
                        itemsRenderer={(items, ref) => (
         | 
| 320 | 
            +
                          <div
         | 
| 321 | 
            +
                            style={{
         | 
| 322 | 
            +
                              marginTop: -3
         | 
| 323 | 
            +
                              // paddingLeft: nameDivWidth
         | 
| 324 | 
            +
                            }}
         | 
| 325 | 
            +
                            ref={ref}
         | 
| 326 | 
            +
                          >
         | 
| 327 | 
            +
                            {items}
         | 
| 328 | 
            +
                          </div>
         | 
| 329 | 
            +
                        )}
         | 
| 330 | 
            +
                        type="uniform"
         | 
| 331 | 
            +
                        itemSizeGetter={this.itemSizeGetter}
         | 
| 332 | 
            +
                        itemRenderer={this.renderItem}
         | 
| 333 | 
            +
                        length={alignmentTracks.length}
         | 
| 334 | 
            +
                      />
         | 
| 335 | 
            +
                    </div>
         | 
| 336 | 
            +
             | 
| 337 | 
            +
                    <Axis
         | 
| 338 | 
            +
                      {...{
         | 
| 339 | 
            +
                        row: { start: 0, end: seqLength },
         | 
| 340 | 
            +
                        tickSpacing: massageTickSpacing(Math.floor(seqLength / 10)),
         | 
| 341 | 
            +
                        bpsPerRow: seqLength,
         | 
| 342 | 
            +
                        charWidth,
         | 
| 343 | 
            +
                        annotationHeight: 15,
         | 
| 344 | 
            +
                        sequenceLength: seqLength,
         | 
| 345 | 
            +
                        style: {
         | 
| 346 | 
            +
                          // paddingLeft: nameDivWidth,
         | 
| 347 | 
            +
                          height: 17
         | 
| 348 | 
            +
                        }
         | 
| 349 | 
            +
                      }}
         | 
| 350 | 
            +
                    />
         | 
| 351 | 
            +
                  </div>
         | 
| 352 | 
            +
                );
         | 
| 353 | 
            +
              }
         | 
| 354 | 
            +
            }
         | 
| 355 | 
            +
            /**
         | 
| 356 | 
            +
             * Yellow Scroll handle
         | 
| 357 | 
            +
             * Responsible for designating the current viewing area
         | 
| 358 | 
            +
             * Also supports zoom/resizing using handles
         | 
| 359 | 
            +
             */
         | 
| 360 | 
            +
            const YellowScrollHandle = view(
         | 
| 361 | 
            +
              class YellowScrollHandleInner extends React.Component {
         | 
| 362 | 
            +
                render() {
         | 
| 363 | 
            +
                  const {
         | 
| 364 | 
            +
                    scrollHandleWidth,
         | 
| 365 | 
            +
                    width,
         | 
| 366 | 
            +
                    easyStore,
         | 
| 367 | 
            +
                    handleDrag,
         | 
| 368 | 
            +
                    handleDragStop,
         | 
| 369 | 
            +
                    minSliderSize,
         | 
| 370 | 
            +
                    laneHeight,
         | 
| 371 | 
            +
                    onSizeAdjust,
         | 
| 372 | 
            +
                    handleDragStart,
         | 
| 373 | 
            +
                    minimapTracksPartialHeight
         | 
| 374 | 
            +
                  } = this.props;
         | 
| 375 | 
            +
                  const { verticalVisibleRange, percentScrolled } = easyStore;
         | 
| 376 | 
            +
                  const xScroll = percentScrolled * (width - scrollHandleWidth);
         | 
| 377 | 
            +
                  return (
         | 
| 378 | 
            +
                    <Draggable
         | 
| 379 | 
            +
                      bounds="parent"
         | 
| 380 | 
            +
                      zIndex={105}
         | 
| 381 | 
            +
                      handle=".handle"
         | 
| 382 | 
            +
                      position={{ x: xScroll, y: 0 }}
         | 
| 383 | 
            +
                      axis="x"
         | 
| 384 | 
            +
                      // onStart={this.onStart}
         | 
| 385 | 
            +
                      onStop={handleDragStop}
         | 
| 386 | 
            +
                      onDrag={handleDrag}
         | 
| 387 | 
            +
                      onStart={handleDragStart}
         | 
| 388 | 
            +
                    >
         | 
| 389 | 
            +
                      <div
         | 
| 390 | 
            +
                        style={{
         | 
| 391 | 
            +
                          height: minimapTracksPartialHeight || 0,
         | 
| 392 | 
            +
                          // height: "100%",
         | 
| 393 | 
            +
                          border: "none",
         | 
| 394 | 
            +
                          top: "0px",
         | 
| 395 | 
            +
                          position: "absolute",
         | 
| 396 | 
            +
                          zIndex: "10"
         | 
| 397 | 
            +
                        }}
         | 
| 398 | 
            +
                      >
         | 
| 399 | 
            +
                        {/* left hand side drag handle */}
         | 
| 400 | 
            +
                        <Draggable
         | 
| 401 | 
            +
                          bounds={{
         | 
| 402 | 
            +
                            left: -xScroll,
         | 
| 403 | 
            +
                            right: scrollHandleWidth - minSliderSize
         | 
| 404 | 
            +
                          }}
         | 
| 405 | 
            +
                          zIndex={105}
         | 
| 406 | 
            +
                          position={{ x: 0, y: 0 }}
         | 
| 407 | 
            +
                          axis="x"
         | 
| 408 | 
            +
                          onStart={(e, { x }) => {
         | 
| 409 | 
            +
                            this.x = x;
         | 
| 410 | 
            +
                          }}
         | 
| 411 | 
            +
                          onStop={(e, { x }) => {
         | 
| 412 | 
            +
                            const deltaX = x - this.x;
         | 
| 413 | 
            +
             | 
| 414 | 
            +
                            const newSliderSize = scrollHandleWidth - deltaX;
         | 
| 415 | 
            +
                            //user is resizing to the left so we need to update the scroll percentage so the slider does not jump
         | 
| 416 | 
            +
                            const newScrollPercent = Math.min(
         | 
| 417 | 
            +
                              1,
         | 
| 418 | 
            +
                              (xScroll + deltaX) / (width - newSliderSize)
         | 
| 419 | 
            +
                            );
         | 
| 420 | 
            +
                            onSizeAdjust(newSliderSize, newScrollPercent);
         | 
| 421 | 
            +
                          }}
         | 
| 422 | 
            +
                        >
         | 
| 423 | 
            +
                          {/* caret component */}
         | 
| 424 | 
            +
                          <div
         | 
| 425 | 
            +
                            style={{
         | 
| 426 | 
            +
                              height: minimapTracksPartialHeight || 0,
         | 
| 427 | 
            +
                              // height: "100%",
         | 
| 428 | 
            +
                              border: "none",
         | 
| 429 | 
            +
                              cursor: "ew-resize",
         | 
| 430 | 
            +
                              opacity: "1",
         | 
| 431 | 
            +
                              top: "0px",
         | 
| 432 | 
            +
                              position: "absolute",
         | 
| 433 | 
            +
                              zIndex: "10",
         | 
| 434 | 
            +
                              width: 2,
         | 
| 435 | 
            +
                              background: "black"
         | 
| 436 | 
            +
                            }}
         | 
| 437 | 
            +
                            className="minimapCaret"
         | 
| 438 | 
            +
                          />
         | 
| 439 | 
            +
                        </Draggable>
         | 
| 440 | 
            +
                        {/* the actual handle component */}
         | 
| 441 | 
            +
                        <div
         | 
| 442 | 
            +
                          className="handle alignmentMinimapScrollHandle"
         | 
| 443 | 
            +
                          dataname="scrollGroup"
         | 
| 444 | 
            +
                          style={{
         | 
| 445 | 
            +
                            height: minimapTracksPartialHeight || 0,
         | 
| 446 | 
            +
                            border: "none",
         | 
| 447 | 
            +
                            cursor: "move",
         | 
| 448 | 
            +
             | 
| 449 | 
            +
                            zIndex: "10",
         | 
| 450 | 
            +
                            width: scrollHandleWidth,
         | 
| 451 | 
            +
                            background: "transparent"
         | 
| 452 | 
            +
                          }}
         | 
| 453 | 
            +
                        >
         | 
| 454 | 
            +
                          {/* this is the vertical scroll position display element */}
         | 
| 455 | 
            +
                          <div
         | 
| 456 | 
            +
                            className="verticalScrollDisplay"
         | 
| 457 | 
            +
                            style={{
         | 
| 458 | 
            +
                              height:
         | 
| 459 | 
            +
                                (verticalVisibleRange.end -
         | 
| 460 | 
            +
                                  verticalVisibleRange.start +
         | 
| 461 | 
            +
                                  1) *
         | 
| 462 | 
            +
                                laneHeight,
         | 
| 463 | 
            +
                              zIndex: "-10",
         | 
| 464 | 
            +
                              background: "#fbfb2873",
         | 
| 465 | 
            +
                              borderTop: "2px solid yellow",
         | 
| 466 | 
            +
                              borderBottom: "2px solid yellow",
         | 
| 467 | 
            +
                              position: "relative",
         | 
| 468 | 
            +
                              top: verticalVisibleRange.start * laneHeight
         | 
| 469 | 
            +
                            }}
         | 
| 470 | 
            +
                          />
         | 
| 471 | 
            +
                        </div>
         | 
| 472 | 
            +
                        {/* right hand side drag handle */}
         | 
| 473 | 
            +
                        <Draggable
         | 
| 474 | 
            +
                          bounds={{
         | 
| 475 | 
            +
                            right: minSliderSize + width - xScroll,
         | 
| 476 | 
            +
                            left: minSliderSize
         | 
| 477 | 
            +
                          }}
         | 
| 478 | 
            +
                          zIndex={105}
         | 
| 479 | 
            +
                          position={{ x: scrollHandleWidth, y: 0 }}
         | 
| 480 | 
            +
                          axis="x"
         | 
| 481 | 
            +
                          onStart={(e, { x }) => {
         | 
| 482 | 
            +
                            this.x = x;
         | 
| 483 | 
            +
                          }}
         | 
| 484 | 
            +
                          onStop={(e, { x }) => {
         | 
| 485 | 
            +
                            const deltaX = this.x - x;
         | 
| 486 | 
            +
                            const newSliderSize = scrollHandleWidth - deltaX;
         | 
| 487 | 
            +
                            //user is resizing to the right so we need to update the scroll percentage so the slider does not jump
         | 
| 488 | 
            +
                            const newScrollPercent = xScroll / (width - newSliderSize);
         | 
| 489 | 
            +
                            onSizeAdjust(newSliderSize, newScrollPercent);
         | 
| 490 | 
            +
                          }}
         | 
| 491 | 
            +
                        >
         | 
| 492 | 
            +
                          <div
         | 
| 493 | 
            +
                            style={{
         | 
| 494 | 
            +
                              height: minimapTracksPartialHeight || 0,
         | 
| 495 | 
            +
                              // height: "100%",
         | 
| 496 | 
            +
                              border: "none",
         | 
| 497 | 
            +
                              cursor: "ew-resize",
         | 
| 498 | 
            +
                              opacity: "1",
         | 
| 499 | 
            +
                              top: "0px",
         | 
| 500 | 
            +
                              // right: 0,
         | 
| 501 | 
            +
                              position: "absolute",
         | 
| 502 | 
            +
                              zIndex: "10",
         | 
| 503 | 
            +
                              width: 2,
         | 
| 504 | 
            +
                              background: "black"
         | 
| 505 | 
            +
                            }}
         | 
| 506 | 
            +
                            className="minimapCaret"
         | 
| 507 | 
            +
                          />
         | 
| 508 | 
            +
                        </Draggable>
         | 
| 509 | 
            +
                      </div>
         | 
| 510 | 
            +
                    </Draggable>
         | 
| 511 | 
            +
                  );
         | 
| 512 | 
            +
                }
         | 
| 513 | 
            +
              }
         | 
| 514 | 
            +
            );
         | 
| 515 | 
            +
             | 
| 516 | 
            +
            export function getTrimmedRangesToDisplay({ trimmedRange, seqLen }) {
         | 
| 517 | 
            +
              if (!trimmedRange) return [];
         | 
| 518 | 
            +
              const inverted = invertRange(trimmedRange, seqLen);
         | 
| 519 | 
            +
              return splitRangeIntoTwoPartsIfItIsCircular(inverted, seqLen);
         | 
| 520 | 
            +
            }
         | 
| @@ -0,0 +1,134 @@ | |
| 1 | 
            +
            import React from "react";
         | 
| 2 | 
            +
            import { DataTable, withSelectedEntities } from "@teselagen/ui";
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            class Mismatches extends React.Component {
         | 
| 5 | 
            +
              UNSAFE_componentWillMount() {
         | 
| 6 | 
            +
                const { alignmentData, mismatches } = this.props;
         | 
| 7 | 
            +
                // const { alignmentId, alignments } = this.props;
         | 
| 8 | 
            +
                const mismatchList = this.getMismatchList(alignmentData, mismatches);
         | 
| 9 | 
            +
                // const mismatchListAll = this.getMismatchList(alignmentId, alignments);
         | 
| 10 | 
            +
                const schema = {
         | 
| 11 | 
            +
                  fields: [{ path: "mismatches", type: "number" }]
         | 
| 12 | 
            +
                };
         | 
| 13 | 
            +
                this.setState({ mismatchList, schema });
         | 
| 14 | 
            +
              }
         | 
| 15 | 
            +
             | 
| 16 | 
            +
              getGapMap = sequence => {
         | 
| 17 | 
            +
                const gapMap = [0]; //a map of position to how many gaps come before that position [0,0,0,5,5,5,5,17,17,17, ]
         | 
| 18 | 
            +
                sequence.split("").forEach(char => {
         | 
| 19 | 
            +
                  if (char === "-") {
         | 
| 20 | 
            +
                    gapMap[Math.max(0, gapMap.length - 1)] =
         | 
| 21 | 
            +
                      (gapMap[Math.max(0, gapMap.length - 1)] || 0) + 1;
         | 
| 22 | 
            +
                  } else {
         | 
| 23 | 
            +
                    gapMap.push(gapMap[gapMap.length - 1] || 0);
         | 
| 24 | 
            +
                  }
         | 
| 25 | 
            +
                });
         | 
| 26 | 
            +
                return gapMap;
         | 
| 27 | 
            +
              };
         | 
| 28 | 
            +
             | 
| 29 | 
            +
              getMismatchList = (alignmentData, mismatches) => {
         | 
| 30 | 
            +
                // getMismatchList = (alignmentId, alignments) => {
         | 
| 31 | 
            +
                // let mismatchListAll = [];
         | 
| 32 | 
            +
                // skip first sequence/ref seq, since there will be no mismatches
         | 
| 33 | 
            +
                // for (let trackI = 1; trackI < alignments[alignmentId].alignmentTracks.length; trackI++) {
         | 
| 34 | 
            +
                const mismatchList = [];
         | 
| 35 | 
            +
                // const trackName = alignmentData.name;
         | 
| 36 | 
            +
                // const editedTrackName = trackName.slice(trackName.indexOf("_") + 1);
         | 
| 37 | 
            +
             | 
| 38 | 
            +
                let getGaps = () => ({
         | 
| 39 | 
            +
                  gapsBefore: 0,
         | 
| 40 | 
            +
                  gapsInside: 0
         | 
| 41 | 
            +
                });
         | 
| 42 | 
            +
                const gapMap = this.getGapMap(alignmentData.sequence);
         | 
| 43 | 
            +
                getGaps = rangeOrCaretPosition => {
         | 
| 44 | 
            +
                  if (typeof rangeOrCaretPosition !== "object") {
         | 
| 45 | 
            +
                    return {
         | 
| 46 | 
            +
                      gapsBefore: gapMap[Math.min(rangeOrCaretPosition, gapMap.length - 1)]
         | 
| 47 | 
            +
                    };
         | 
| 48 | 
            +
                  }
         | 
| 49 | 
            +
                  const { start, end } = rangeOrCaretPosition;
         | 
| 50 | 
            +
                  const toReturn = {
         | 
| 51 | 
            +
                    gapsBefore: gapMap[start],
         | 
| 52 | 
            +
                    gapsInside:
         | 
| 53 | 
            +
                      gapMap[Math.min(end, gapMap.length - 1)] -
         | 
| 54 | 
            +
                      gapMap[Math.min(start, gapMap.length - 1)]
         | 
| 55 | 
            +
                  };
         | 
| 56 | 
            +
                  return toReturn;
         | 
| 57 | 
            +
                };
         | 
| 58 | 
            +
             | 
| 59 | 
            +
                const gapsBeforeSequence = getGaps(0).gapsBefore;
         | 
| 60 | 
            +
                for (let mismatchI = 0; mismatchI < mismatches.length; mismatchI++) {
         | 
| 61 | 
            +
                  const mismatchEnd = mismatches[mismatchI].end;
         | 
| 62 | 
            +
                  const mismatchStart = mismatches[mismatchI].start;
         | 
| 63 | 
            +
                  const mismatchDifference = mismatchEnd - mismatchStart;
         | 
| 64 | 
            +
                  // display 'position' as 1-based but store 'start' & 'end' as 0-based
         | 
| 65 | 
            +
                  if (mismatchDifference === 0) {
         | 
| 66 | 
            +
                    mismatchList.push({
         | 
| 67 | 
            +
                      mismatches: mismatchStart + 1 - gapsBeforeSequence,
         | 
| 68 | 
            +
                      start: mismatchStart - gapsBeforeSequence,
         | 
| 69 | 
            +
                      end: mismatchStart - gapsBeforeSequence
         | 
| 70 | 
            +
                    });
         | 
| 71 | 
            +
                  } else {
         | 
| 72 | 
            +
                    for (let innerI = 0; innerI <= mismatchDifference; innerI++) {
         | 
| 73 | 
            +
                      mismatchList.push({
         | 
| 74 | 
            +
                        mismatches: mismatchStart + innerI + 1 - gapsBeforeSequence,
         | 
| 75 | 
            +
                        start: mismatchStart + innerI - gapsBeforeSequence,
         | 
| 76 | 
            +
                        end: mismatchStart + innerI - gapsBeforeSequence
         | 
| 77 | 
            +
                      });
         | 
| 78 | 
            +
                    }
         | 
| 79 | 
            +
                  }
         | 
| 80 | 
            +
                }
         | 
| 81 | 
            +
                return mismatchList;
         | 
| 82 | 
            +
              };
         | 
| 83 | 
            +
             | 
| 84 | 
            +
              render() {
         | 
| 85 | 
            +
                const { mismatchList, schema } = this.state;
         | 
| 86 | 
            +
                let tableOfMismatches;
         | 
| 87 | 
            +
                if (mismatchList.length === 0) {
         | 
| 88 | 
            +
                  tableOfMismatches = null;
         | 
| 89 | 
            +
                } else {
         | 
| 90 | 
            +
                  tableOfMismatches = (
         | 
| 91 | 
            +
                    <DataTable
         | 
| 92 | 
            +
                      maxHeight={168}
         | 
| 93 | 
            +
                      formName={"mismatchesTable"}
         | 
| 94 | 
            +
                      isSimple
         | 
| 95 | 
            +
                      compact
         | 
| 96 | 
            +
                      noRouter
         | 
| 97 | 
            +
                      // onRowSelect={this.handleMismatchClick}
         | 
| 98 | 
            +
                      schema={schema}
         | 
| 99 | 
            +
                      entities={mismatchList}
         | 
| 100 | 
            +
                    />
         | 
| 101 | 
            +
                  );
         | 
| 102 | 
            +
                }
         | 
| 103 | 
            +
             | 
| 104 | 
            +
                return (
         | 
| 105 | 
            +
                  <div style={{ maxHeight: 180.8, overflowY: "scroll" }}>
         | 
| 106 | 
            +
                    {/* <div style={{ fontSize: 15, textAlign: "center" }}><b>Positions of Mismatches</b></div> */}
         | 
| 107 | 
            +
                    <div
         | 
| 108 | 
            +
                      style={{
         | 
| 109 | 
            +
                        // margin: 10,
         | 
| 110 | 
            +
                        display: "flex",
         | 
| 111 | 
            +
                        flexDirection: "column",
         | 
| 112 | 
            +
                        alignItems: "center"
         | 
| 113 | 
            +
                      }}
         | 
| 114 | 
            +
                    >
         | 
| 115 | 
            +
                      <div style={{ width: 100, margin: 4 }}>
         | 
| 116 | 
            +
                        {/* <div style={{
         | 
| 117 | 
            +
                                                paddingBottom: 10,
         | 
| 118 | 
            +
                                                textOverflow: "ellipsis",
         | 
| 119 | 
            +
                                                overflowY: "auto",
         | 
| 120 | 
            +
                                                whiteSpace: "nowrap",
         | 
| 121 | 
            +
                                                fontSize: 13,
         | 
| 122 | 
            +
                                                textAlign: "center"
         | 
| 123 | 
            +
                                            }}>
         | 
| 124 | 
            +
                                                <b>{mismatchList[0].name}</b>
         | 
| 125 | 
            +
                                            </div> */}
         | 
| 126 | 
            +
                        {tableOfMismatches}
         | 
| 127 | 
            +
                      </div>
         | 
| 128 | 
            +
                    </div>
         | 
| 129 | 
            +
                  </div>
         | 
| 130 | 
            +
                );
         | 
| 131 | 
            +
              }
         | 
| 132 | 
            +
            }
         | 
| 133 | 
            +
             | 
| 134 | 
            +
            export default withSelectedEntities("mismatchesTable")(Mismatches);
         |