@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,271 @@
|
|
|
1
|
+
import { isPositionWithinRange } from "@teselagen/range-utils";
|
|
2
|
+
import assign from "lodash/assign";
|
|
3
|
+
import React from "react";
|
|
4
|
+
import areNonNegativeIntegers from "validate.io-nonnegative-integer-array";
|
|
5
|
+
import { getOverlapsOfPotentiallyCircularRanges } from "@teselagen/range-utils";
|
|
6
|
+
import getXStartAndWidthOfRangeWrtRow from "./getXStartAndWidthOfRangeWrtRow";
|
|
7
|
+
import pureNoFunc from "../utils/pureNoFunc";
|
|
8
|
+
import { connectToEditor } from "../withEditorProps";
|
|
9
|
+
|
|
10
|
+
let snipStyle = {
|
|
11
|
+
height: "100%",
|
|
12
|
+
// background: 'black',
|
|
13
|
+
position: "absolute",
|
|
14
|
+
width: "2px"
|
|
15
|
+
};
|
|
16
|
+
let snipConnectorStyle = {
|
|
17
|
+
height: "2px",
|
|
18
|
+
// background: 'black',
|
|
19
|
+
position: "absolute",
|
|
20
|
+
top: -1
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
// var cursor = getCursorForRow(caretPosition, row, bpsPerRow, snipStyle, charWidth, true);
|
|
24
|
+
|
|
25
|
+
function getSnipForRow(
|
|
26
|
+
isTopStrand,
|
|
27
|
+
isHovered,
|
|
28
|
+
snipPosition,
|
|
29
|
+
row,
|
|
30
|
+
sequenceLength,
|
|
31
|
+
bpsPerRow,
|
|
32
|
+
snipStyle,
|
|
33
|
+
charWidth,
|
|
34
|
+
index
|
|
35
|
+
) {
|
|
36
|
+
if (!isPositionWithinRange(snipPosition, row)) return;
|
|
37
|
+
|
|
38
|
+
const { xStart } = getXStartAndWidthOfRangeWrtRow({
|
|
39
|
+
range: { start: snipPosition, end: snipPosition },
|
|
40
|
+
row,
|
|
41
|
+
charWidth,
|
|
42
|
+
sequenceLength
|
|
43
|
+
});
|
|
44
|
+
|
|
45
|
+
const newCursorStyle = assign({}, snipStyle, {
|
|
46
|
+
left: xStart
|
|
47
|
+
});
|
|
48
|
+
const cursorEl = (
|
|
49
|
+
<div
|
|
50
|
+
key={index}
|
|
51
|
+
className={`veRowViewCutsite snip ${
|
|
52
|
+
isTopStrand ? "topStrandSnip" : "bottomStrandSnip"
|
|
53
|
+
} ${isHovered ? "snipHovered" : ""} snipPosition-${snipPosition}`}
|
|
54
|
+
style={newCursorStyle}
|
|
55
|
+
/>
|
|
56
|
+
);
|
|
57
|
+
return cursorEl;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
function getSnipConnector(
|
|
61
|
+
isHovered,
|
|
62
|
+
snipRange,
|
|
63
|
+
row,
|
|
64
|
+
sequenceLength,
|
|
65
|
+
bpsPerRow,
|
|
66
|
+
snipConnectorStyle,
|
|
67
|
+
charWidth,
|
|
68
|
+
index
|
|
69
|
+
) {
|
|
70
|
+
//tnr: we basically need to first determine what the range start and end are..
|
|
71
|
+
// var _snipRange = {
|
|
72
|
+
// ...snipRange,
|
|
73
|
+
// end: norm(snipRange.end-1,sequenceLength)
|
|
74
|
+
// }
|
|
75
|
+
//then mask the range by the row
|
|
76
|
+
|
|
77
|
+
const overlaps = getOverlapsOfPotentiallyCircularRanges(
|
|
78
|
+
snipRange,
|
|
79
|
+
{ ...row, end: row.end + 1 },
|
|
80
|
+
sequenceLength
|
|
81
|
+
);
|
|
82
|
+
return overlaps.map(function (overlap, index2) {
|
|
83
|
+
let { xStart, width } = getXStartAndWidthOfRangeWrtRow({
|
|
84
|
+
range: overlap,
|
|
85
|
+
row,
|
|
86
|
+
charWidth,
|
|
87
|
+
sequenceLength
|
|
88
|
+
});
|
|
89
|
+
width -= charWidth;
|
|
90
|
+
//the second logical operator catches the special case where we're at the very end of the sequence..
|
|
91
|
+
const newCursorStyle = assign({}, snipConnectorStyle, {
|
|
92
|
+
left: xStart,
|
|
93
|
+
width
|
|
94
|
+
});
|
|
95
|
+
const cursorEl = (
|
|
96
|
+
<div
|
|
97
|
+
key={index + index2}
|
|
98
|
+
className={`veRowViewCutsite snipConnector ${
|
|
99
|
+
isHovered ? "snipHovered" : ""
|
|
100
|
+
} `}
|
|
101
|
+
style={newCursorStyle}
|
|
102
|
+
/>
|
|
103
|
+
);
|
|
104
|
+
return cursorEl;
|
|
105
|
+
});
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
function Cutsites(props) {
|
|
109
|
+
const {
|
|
110
|
+
annotationRanges,
|
|
111
|
+
charWidth,
|
|
112
|
+
bpsPerRow,
|
|
113
|
+
row,
|
|
114
|
+
sequenceLength,
|
|
115
|
+
topStrand,
|
|
116
|
+
hoveredAnnotation
|
|
117
|
+
} = props;
|
|
118
|
+
const snips = [];
|
|
119
|
+
const snipConnectors = [];
|
|
120
|
+
Object.keys(annotationRanges)
|
|
121
|
+
.sort((a) =>
|
|
122
|
+
annotationRanges[a].annotation.id === hoveredAnnotation ? 1 : -1
|
|
123
|
+
)
|
|
124
|
+
.forEach(function (key) {
|
|
125
|
+
const annotationRange = annotationRanges[key];
|
|
126
|
+
let { annotation } = annotationRange;
|
|
127
|
+
if (!annotation) {
|
|
128
|
+
annotation = annotationRange;
|
|
129
|
+
}
|
|
130
|
+
let {
|
|
131
|
+
topSnipPosition,
|
|
132
|
+
bottomSnipPosition,
|
|
133
|
+
upstreamBottomSnip,
|
|
134
|
+
upstreamTopSnip,
|
|
135
|
+
upstreamTopBeforeBottom,
|
|
136
|
+
topSnipBeforeBottom
|
|
137
|
+
} = annotation;
|
|
138
|
+
topSnipPosition = topSnipPosition && Number(topSnipPosition);
|
|
139
|
+
bottomSnipPosition = bottomSnipPosition && Number(bottomSnipPosition);
|
|
140
|
+
upstreamTopSnip = upstreamTopSnip && Number(upstreamTopSnip);
|
|
141
|
+
upstreamBottomSnip = upstreamBottomSnip && Number(upstreamBottomSnip);
|
|
142
|
+
const isHovered = annotation.id === hoveredAnnotation;
|
|
143
|
+
snipStyle = {
|
|
144
|
+
...snipStyle,
|
|
145
|
+
background: annotation.restrictionEnzyme.color
|
|
146
|
+
};
|
|
147
|
+
snipConnectorStyle = {
|
|
148
|
+
...snipConnectorStyle,
|
|
149
|
+
background: annotation.restrictionEnzyme.color
|
|
150
|
+
};
|
|
151
|
+
|
|
152
|
+
let newSnip;
|
|
153
|
+
let newConnector;
|
|
154
|
+
const snipRange = {};
|
|
155
|
+
|
|
156
|
+
if (areNonNegativeIntegers([bottomSnipPosition, topSnipPosition])) {
|
|
157
|
+
if (topStrand) {
|
|
158
|
+
newSnip = getSnipForRow(
|
|
159
|
+
true,
|
|
160
|
+
isHovered,
|
|
161
|
+
topSnipPosition,
|
|
162
|
+
row,
|
|
163
|
+
sequenceLength,
|
|
164
|
+
bpsPerRow,
|
|
165
|
+
snipStyle,
|
|
166
|
+
charWidth,
|
|
167
|
+
key + "downstream"
|
|
168
|
+
);
|
|
169
|
+
if (newSnip) {
|
|
170
|
+
snips.push(newSnip);
|
|
171
|
+
}
|
|
172
|
+
} else {
|
|
173
|
+
newSnip = getSnipForRow(
|
|
174
|
+
false,
|
|
175
|
+
isHovered,
|
|
176
|
+
bottomSnipPosition,
|
|
177
|
+
row,
|
|
178
|
+
sequenceLength,
|
|
179
|
+
bpsPerRow,
|
|
180
|
+
snipStyle,
|
|
181
|
+
charWidth,
|
|
182
|
+
key + "downstream"
|
|
183
|
+
);
|
|
184
|
+
if (newSnip) {
|
|
185
|
+
snips.push(newSnip);
|
|
186
|
+
}
|
|
187
|
+
if (topSnipBeforeBottom) {
|
|
188
|
+
snipRange.start = topSnipPosition;
|
|
189
|
+
snipRange.end = bottomSnipPosition;
|
|
190
|
+
} else {
|
|
191
|
+
snipRange.start = bottomSnipPosition;
|
|
192
|
+
snipRange.end = topSnipPosition;
|
|
193
|
+
}
|
|
194
|
+
newConnector = getSnipConnector(
|
|
195
|
+
isHovered,
|
|
196
|
+
snipRange,
|
|
197
|
+
row,
|
|
198
|
+
sequenceLength,
|
|
199
|
+
bpsPerRow,
|
|
200
|
+
snipConnectorStyle,
|
|
201
|
+
charWidth,
|
|
202
|
+
key + "downstreamConnector"
|
|
203
|
+
);
|
|
204
|
+
snipConnectors.push(newConnector);
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
if (areNonNegativeIntegers([upstreamBottomSnip, upstreamTopSnip])) {
|
|
208
|
+
if (topStrand) {
|
|
209
|
+
newSnip = getSnipForRow(
|
|
210
|
+
true,
|
|
211
|
+
isHovered,
|
|
212
|
+
upstreamTopSnip,
|
|
213
|
+
row,
|
|
214
|
+
sequenceLength,
|
|
215
|
+
bpsPerRow,
|
|
216
|
+
snipStyle,
|
|
217
|
+
charWidth,
|
|
218
|
+
key + "upstream"
|
|
219
|
+
);
|
|
220
|
+
if (newSnip) {
|
|
221
|
+
snips.push(newSnip);
|
|
222
|
+
}
|
|
223
|
+
} else {
|
|
224
|
+
newSnip = getSnipForRow(
|
|
225
|
+
false,
|
|
226
|
+
isHovered,
|
|
227
|
+
upstreamBottomSnip,
|
|
228
|
+
row,
|
|
229
|
+
sequenceLength,
|
|
230
|
+
bpsPerRow,
|
|
231
|
+
snipStyle,
|
|
232
|
+
charWidth,
|
|
233
|
+
key + "upstream"
|
|
234
|
+
);
|
|
235
|
+
if (newSnip) {
|
|
236
|
+
snips.push(newSnip);
|
|
237
|
+
}
|
|
238
|
+
if (upstreamTopBeforeBottom) {
|
|
239
|
+
snipRange.start = upstreamTopSnip;
|
|
240
|
+
snipRange.end = upstreamBottomSnip;
|
|
241
|
+
} else {
|
|
242
|
+
snipRange.start = upstreamBottomSnip;
|
|
243
|
+
snipRange.end = upstreamTopSnip;
|
|
244
|
+
}
|
|
245
|
+
newConnector = getSnipConnector(
|
|
246
|
+
isHovered,
|
|
247
|
+
snipRange,
|
|
248
|
+
row,
|
|
249
|
+
sequenceLength,
|
|
250
|
+
bpsPerRow,
|
|
251
|
+
snipConnectorStyle,
|
|
252
|
+
charWidth,
|
|
253
|
+
key + "upstreamConnector"
|
|
254
|
+
);
|
|
255
|
+
snipConnectors.push(newConnector);
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
});
|
|
259
|
+
return (
|
|
260
|
+
<div>
|
|
261
|
+
{snips}
|
|
262
|
+
{snipConnectors}
|
|
263
|
+
</div>
|
|
264
|
+
);
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
export default pureNoFunc(
|
|
268
|
+
connectToEditor(({ hoveredAnnotation }) => ({
|
|
269
|
+
hoveredAnnotation
|
|
270
|
+
}))(Cutsites)
|
|
271
|
+
);
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import AnnotationPositioner from "../AnnotationPositioner";
|
|
2
|
+
import AnnotationContainerHolder from "../AnnotationContainerHolder";
|
|
3
|
+
import React from "react";
|
|
4
|
+
import pureNoFunc from "../../utils/pureNoFunc";
|
|
5
|
+
|
|
6
|
+
import "./style.css";
|
|
7
|
+
|
|
8
|
+
import getXStartAndWidthOfRangeWrtRow from "../getXStartAndWidthOfRangeWrtRow";
|
|
9
|
+
import { getOverlapsOfPotentiallyCircularRanges } from "@teselagen/range-utils";
|
|
10
|
+
|
|
11
|
+
function DeletionLayers(props) {
|
|
12
|
+
const {
|
|
13
|
+
charWidth,
|
|
14
|
+
row,
|
|
15
|
+
sequenceLength,
|
|
16
|
+
deletionLayerClicked,
|
|
17
|
+
deletionLayerRightClicked,
|
|
18
|
+
deletionLayers = {},
|
|
19
|
+
deletionLineHeight = 6
|
|
20
|
+
} = props;
|
|
21
|
+
|
|
22
|
+
const deletionLayersToUse = Object.keys(deletionLayers).map(function (key) {
|
|
23
|
+
return deletionLayers[key];
|
|
24
|
+
});
|
|
25
|
+
if (!deletionLayersToUse.length) return null;
|
|
26
|
+
return (
|
|
27
|
+
<AnnotationContainerHolder
|
|
28
|
+
className="veRowViewDeletionLayers"
|
|
29
|
+
containerHeight={deletionLineHeight}
|
|
30
|
+
>
|
|
31
|
+
{deletionLayersToUse
|
|
32
|
+
.sort(function (deletionLayer) {
|
|
33
|
+
return deletionLayer.inBetweenBps ? 1 : 0;
|
|
34
|
+
})
|
|
35
|
+
.map(function (deletionLayer, index) {
|
|
36
|
+
const rangeSpansSequence =
|
|
37
|
+
deletionLayer.start === deletionLayer.end + 1 ||
|
|
38
|
+
(deletionLayer.start === 0 &&
|
|
39
|
+
deletionLayer.end === sequenceLength - 1);
|
|
40
|
+
const { /* className = "", style = {}, */ color } = deletionLayer;
|
|
41
|
+
const overlaps = getOverlapsOfPotentiallyCircularRanges(
|
|
42
|
+
deletionLayer,
|
|
43
|
+
row,
|
|
44
|
+
sequenceLength
|
|
45
|
+
);
|
|
46
|
+
return overlaps.map(function (overlap) {
|
|
47
|
+
const { xStart, width } = getXStartAndWidthOfRangeWrtRow({
|
|
48
|
+
range: overlap,
|
|
49
|
+
row,
|
|
50
|
+
charWidth,
|
|
51
|
+
sequenceLength
|
|
52
|
+
});
|
|
53
|
+
const deletionStart = overlap.start === deletionLayer.start;
|
|
54
|
+
const deletionEnd = overlap.end === deletionLayer.end;
|
|
55
|
+
|
|
56
|
+
return [
|
|
57
|
+
<AnnotationPositioner
|
|
58
|
+
height={deletionLineHeight}
|
|
59
|
+
width={width}
|
|
60
|
+
key={index}
|
|
61
|
+
top={0}
|
|
62
|
+
// className={classnames() }
|
|
63
|
+
left={
|
|
64
|
+
xStart + (deletionLayer.inBetweenBps ? charWidth / 1.2 : 0)
|
|
65
|
+
}
|
|
66
|
+
>
|
|
67
|
+
<g
|
|
68
|
+
className="clickable"
|
|
69
|
+
onClick={function (event) {
|
|
70
|
+
deletionLayerClicked({ annotation: deletionLayer, event });
|
|
71
|
+
}}
|
|
72
|
+
onContextMenu={function (event) {
|
|
73
|
+
deletionLayerRightClicked({
|
|
74
|
+
annotation: deletionLayer,
|
|
75
|
+
event
|
|
76
|
+
});
|
|
77
|
+
}}
|
|
78
|
+
>
|
|
79
|
+
<rect
|
|
80
|
+
fill={color}
|
|
81
|
+
x="0"
|
|
82
|
+
y="0"
|
|
83
|
+
height={deletionLineHeight}
|
|
84
|
+
width={width}
|
|
85
|
+
/>
|
|
86
|
+
{rangeSpansSequence && deletionStart && (
|
|
87
|
+
<rect
|
|
88
|
+
fill="blue"
|
|
89
|
+
x="0"
|
|
90
|
+
y="0"
|
|
91
|
+
height={deletionLineHeight}
|
|
92
|
+
width={4}
|
|
93
|
+
/>
|
|
94
|
+
)}
|
|
95
|
+
{rangeSpansSequence && deletionEnd && (
|
|
96
|
+
<rect
|
|
97
|
+
fill="blue"
|
|
98
|
+
x={width - 4}
|
|
99
|
+
y="0"
|
|
100
|
+
height={deletionLineHeight}
|
|
101
|
+
width={4}
|
|
102
|
+
/>
|
|
103
|
+
)}
|
|
104
|
+
</g>
|
|
105
|
+
</AnnotationPositioner>
|
|
106
|
+
];
|
|
107
|
+
});
|
|
108
|
+
})}
|
|
109
|
+
</AnnotationContainerHolder>
|
|
110
|
+
);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
export default pureNoFunc(DeletionLayers);
|
|
@@ -0,0 +1,327 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { onlyUpdateForKeys } from "recompose";
|
|
3
|
+
import withHover from "../helperComponents/withHover";
|
|
4
|
+
import getXStartAndWidthOfRowAnnotation from "./getXStartAndWidthOfRowAnnotation";
|
|
5
|
+
import IntervalTree from "node-interval-tree";
|
|
6
|
+
import getYOffset from "../CircularView/getYOffset";
|
|
7
|
+
import { reduce, values, startCase, filter, clamp } from "lodash";
|
|
8
|
+
import { getRangeLength } from "@teselagen/range-utils";
|
|
9
|
+
import { doesLabelFitInAnnotation } from "./utils";
|
|
10
|
+
import getAnnotationNameAndStartStopString from "../utils/getAnnotationNameAndStartStopString";
|
|
11
|
+
|
|
12
|
+
const BUFFER_WIDTH = 6; //labels shouldn't be less than 6px from eachother on the same line
|
|
13
|
+
|
|
14
|
+
function Labels(props) {
|
|
15
|
+
let {
|
|
16
|
+
annotationRanges = {},
|
|
17
|
+
bpsPerRow,
|
|
18
|
+
charWidth,
|
|
19
|
+
rangeMax,
|
|
20
|
+
onlyShowLabelsThatDoNotFit,
|
|
21
|
+
annotationHeight,
|
|
22
|
+
textWidth = 6,
|
|
23
|
+
editorName,
|
|
24
|
+
labelLineIntensity,
|
|
25
|
+
isProtein,
|
|
26
|
+
noRedux,
|
|
27
|
+
readOnly,
|
|
28
|
+
noLabelLine
|
|
29
|
+
} = props;
|
|
30
|
+
|
|
31
|
+
if (annotationRanges.length === 0) {
|
|
32
|
+
return null;
|
|
33
|
+
}
|
|
34
|
+
const warningMessage = null;
|
|
35
|
+
// if (Object.keys(annotationRanges).length > 50) {
|
|
36
|
+
// warningMessage = (
|
|
37
|
+
// <span style={{ color: "red" }}>
|
|
38
|
+
// <br />
|
|
39
|
+
// Warning: Only the first 50 cutsites will be displayed. Filter the
|
|
40
|
+
// cutsites you wish to see using the filter tool <br />
|
|
41
|
+
// </span>
|
|
42
|
+
// );
|
|
43
|
+
// }
|
|
44
|
+
|
|
45
|
+
const rowLength = bpsPerRow * charWidth;
|
|
46
|
+
// let counter = 0;
|
|
47
|
+
let maxAnnotationYOffset = 0;
|
|
48
|
+
const annotationsSVG = [];
|
|
49
|
+
const rowCenter = rowLength / 2;
|
|
50
|
+
const iTree = new IntervalTree(rowCenter);
|
|
51
|
+
|
|
52
|
+
annotationRanges = values(
|
|
53
|
+
reduce(
|
|
54
|
+
annotationRanges,
|
|
55
|
+
(accum, annotationRange) => {
|
|
56
|
+
const identifier =
|
|
57
|
+
annotationRange.annotation.annotationTypePlural +
|
|
58
|
+
"--" +
|
|
59
|
+
annotationRange.id;
|
|
60
|
+
if (
|
|
61
|
+
// annotationRange.annotation.annotationTypePlural === "parts" ||
|
|
62
|
+
!accum[identifier] ||
|
|
63
|
+
getRangeLength(accum[identifier], rangeMax) <
|
|
64
|
+
getRangeLength(annotationRange, rangeMax)
|
|
65
|
+
) {
|
|
66
|
+
accum[identifier] = annotationRange;
|
|
67
|
+
return accum;
|
|
68
|
+
} else {
|
|
69
|
+
return accum;
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
{}
|
|
73
|
+
)
|
|
74
|
+
);
|
|
75
|
+
|
|
76
|
+
filter(annotationRanges, (r) => {
|
|
77
|
+
if (onlyShowLabelsThatDoNotFit) {
|
|
78
|
+
//tnrtodo: more work needs to be done here to make this actually configurable
|
|
79
|
+
//check if annotation name will fit
|
|
80
|
+
if (
|
|
81
|
+
r.annotation.annotationTypePlural === "cutsites" ||
|
|
82
|
+
(r.annotation.annotationTypePlural === "primers" && r.annotation.bases)
|
|
83
|
+
) {
|
|
84
|
+
//we don't want to filter out any cutsite labels
|
|
85
|
+
return true;
|
|
86
|
+
}
|
|
87
|
+
return !doesLabelFitInAnnotation(
|
|
88
|
+
r.annotation.name,
|
|
89
|
+
{ range: r },
|
|
90
|
+
charWidth
|
|
91
|
+
);
|
|
92
|
+
}
|
|
93
|
+
return true;
|
|
94
|
+
}).forEach(function (annotationRange, index) {
|
|
95
|
+
const pluralType = annotationRange.annotation.annotationTypePlural;
|
|
96
|
+
let annotation = annotationRange.annotation;
|
|
97
|
+
if (!annotation) {
|
|
98
|
+
annotation = annotationRange;
|
|
99
|
+
}
|
|
100
|
+
const annotationLength =
|
|
101
|
+
(
|
|
102
|
+
annotation.name ||
|
|
103
|
+
(annotation.restrictionEnzyme && annotation.restrictionEnzyme.name) ||
|
|
104
|
+
""
|
|
105
|
+
).length * textWidth;
|
|
106
|
+
let { xStart, width } = getXStartAndWidthOfRowAnnotation(
|
|
107
|
+
annotationRange,
|
|
108
|
+
bpsPerRow,
|
|
109
|
+
charWidth
|
|
110
|
+
);
|
|
111
|
+
|
|
112
|
+
xStart =
|
|
113
|
+
annotation.annotationTypePlural === "cutsites"
|
|
114
|
+
? xStart
|
|
115
|
+
: xStart + width / 2;
|
|
116
|
+
|
|
117
|
+
const xStartOriginal = xStart;
|
|
118
|
+
let xEnd = xStart + annotationLength;
|
|
119
|
+
|
|
120
|
+
if (xEnd > rowLength) {
|
|
121
|
+
xStart = xStart - (xEnd - rowLength);
|
|
122
|
+
xEnd = rowLength;
|
|
123
|
+
}
|
|
124
|
+
xEnd += BUFFER_WIDTH;
|
|
125
|
+
const yOffset = getYOffset(iTree, xStart, xEnd);
|
|
126
|
+
iTree.insert(xStart, xEnd, {
|
|
127
|
+
...annotationRange,
|
|
128
|
+
yOffset
|
|
129
|
+
});
|
|
130
|
+
|
|
131
|
+
if (yOffset > maxAnnotationYOffset) {
|
|
132
|
+
maxAnnotationYOffset = yOffset;
|
|
133
|
+
}
|
|
134
|
+
const height = yOffset * annotationHeight;
|
|
135
|
+
annotationsSVG.push(
|
|
136
|
+
<DrawLabel
|
|
137
|
+
id={annotation.id}
|
|
138
|
+
key={"cutsiteLabel" + index}
|
|
139
|
+
{...{
|
|
140
|
+
readOnly,
|
|
141
|
+
editorName,
|
|
142
|
+
annotation,
|
|
143
|
+
noLabelLine,
|
|
144
|
+
className: `${annotationRange.annotation.labelClassName || ""} ${
|
|
145
|
+
labelClassNames[pluralType]
|
|
146
|
+
} veLabel `,
|
|
147
|
+
isProtein,
|
|
148
|
+
xStartOriginal,
|
|
149
|
+
onClick: annotationRange.onClick,
|
|
150
|
+
onDoubleClick: annotationRange.onDoubleClick,
|
|
151
|
+
onRightClick: annotationRange.onRightClick,
|
|
152
|
+
height,
|
|
153
|
+
xStart,
|
|
154
|
+
xEnd,
|
|
155
|
+
textWidth,
|
|
156
|
+
labelLineIntensity,
|
|
157
|
+
noRedux
|
|
158
|
+
}}
|
|
159
|
+
/>
|
|
160
|
+
);
|
|
161
|
+
});
|
|
162
|
+
if (!annotationsSVG.length) return null;
|
|
163
|
+
const containerHeight = (maxAnnotationYOffset + 1) * annotationHeight;
|
|
164
|
+
return (
|
|
165
|
+
<div
|
|
166
|
+
width="100%"
|
|
167
|
+
style={{
|
|
168
|
+
position: "relative",
|
|
169
|
+
height: containerHeight,
|
|
170
|
+
display: "block"
|
|
171
|
+
}}
|
|
172
|
+
className="veRowViewLabelsContainer"
|
|
173
|
+
>
|
|
174
|
+
{annotationsSVG}
|
|
175
|
+
{warningMessage}
|
|
176
|
+
</div>
|
|
177
|
+
);
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
export default onlyUpdateForKeys([
|
|
181
|
+
"annotationRanges",
|
|
182
|
+
"bpsPerRow",
|
|
183
|
+
"charWidth",
|
|
184
|
+
"annotationHeight",
|
|
185
|
+
"spaceBetweenAnnotations",
|
|
186
|
+
"onClick",
|
|
187
|
+
"onRightClick",
|
|
188
|
+
"onDoubleClick",
|
|
189
|
+
"textWidth",
|
|
190
|
+
"editorName"
|
|
191
|
+
])(Labels);
|
|
192
|
+
|
|
193
|
+
const DrawLabel = withHover(
|
|
194
|
+
class DrawLabelInner extends React.Component {
|
|
195
|
+
render() {
|
|
196
|
+
const {
|
|
197
|
+
hovered,
|
|
198
|
+
className,
|
|
199
|
+
annotation,
|
|
200
|
+
onClick,
|
|
201
|
+
noLabelLine,
|
|
202
|
+
onDoubleClick,
|
|
203
|
+
onRightClick,
|
|
204
|
+
height,
|
|
205
|
+
xStartOriginal,
|
|
206
|
+
xStart,
|
|
207
|
+
onMouseLeave,
|
|
208
|
+
isProtein,
|
|
209
|
+
onMouseOver,
|
|
210
|
+
editorName,
|
|
211
|
+
labelLineIntensity,
|
|
212
|
+
textWidth,
|
|
213
|
+
readOnly
|
|
214
|
+
} = this.props;
|
|
215
|
+
let heightToUse = height;
|
|
216
|
+
let bottom = 0;
|
|
217
|
+
if (hovered) {
|
|
218
|
+
try {
|
|
219
|
+
const line = this.n;
|
|
220
|
+
const isRowView = document
|
|
221
|
+
.querySelector(`.veEditor.${editorName} .veRowView`)
|
|
222
|
+
.contains(line);
|
|
223
|
+
|
|
224
|
+
const el = line
|
|
225
|
+
.closest(".veRowItem")
|
|
226
|
+
|
|
227
|
+
.querySelector(
|
|
228
|
+
annotation.annotationTypePlural === "cutsites"
|
|
229
|
+
? isRowView
|
|
230
|
+
? ".cutsiteLabelSelectionLayer"
|
|
231
|
+
: ".veRowViewAxis"
|
|
232
|
+
: `[data-id="${annotation.id}"].veRowView${startCase(
|
|
233
|
+
annotation.annotationTypePlural.slice(0, -1)
|
|
234
|
+
)}`
|
|
235
|
+
);
|
|
236
|
+
const annDims = el.getBoundingClientRect();
|
|
237
|
+
const lineDims = line.getBoundingClientRect();
|
|
238
|
+
const heightDiff =
|
|
239
|
+
annDims.bottom - lineDims.bottom - annDims.height / 2;
|
|
240
|
+
heightToUse = height + heightDiff;
|
|
241
|
+
bottom = -heightDiff;
|
|
242
|
+
} catch (e) {
|
|
243
|
+
window.veDebugLabels && console.error(`err computing label line:`, e);
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
const truncateLabelIfNeeded = (annotationText, xLeftCoord) => {
|
|
248
|
+
const numberOfCharsToChop =
|
|
249
|
+
xLeftCoord < 0 ? Math.ceil(Math.abs(xLeftCoord) / textWidth) + 2 : 0;
|
|
250
|
+
return numberOfCharsToChop > 0
|
|
251
|
+
? annotationText.slice(0, -numberOfCharsToChop) + ".."
|
|
252
|
+
: annotationText;
|
|
253
|
+
};
|
|
254
|
+
const titleText = getAnnotationNameAndStartStopString(annotation, {
|
|
255
|
+
isProtein,
|
|
256
|
+
readOnly
|
|
257
|
+
});
|
|
258
|
+
const labelText = annotation.name || annotation.restrictionEnzyme.name;
|
|
259
|
+
return (
|
|
260
|
+
<div>
|
|
261
|
+
<div
|
|
262
|
+
{...{ onMouseLeave, onMouseOver }}
|
|
263
|
+
className={className + " veLabelText ve-monospace-font"}
|
|
264
|
+
onClick={function (event) {
|
|
265
|
+
onClick && onClick({ event, annotation });
|
|
266
|
+
event.stopPropagation();
|
|
267
|
+
}}
|
|
268
|
+
onDoubleClick={function (event) {
|
|
269
|
+
if (onDoubleClick) {
|
|
270
|
+
onDoubleClick({ event, annotation });
|
|
271
|
+
event.stopPropagation();
|
|
272
|
+
}
|
|
273
|
+
}}
|
|
274
|
+
onContextMenu={function (event) {
|
|
275
|
+
onRightClick({ event, annotation });
|
|
276
|
+
event.stopPropagation();
|
|
277
|
+
}}
|
|
278
|
+
title={titleText}
|
|
279
|
+
style={{
|
|
280
|
+
cursor: "pointer",
|
|
281
|
+
position: "absolute",
|
|
282
|
+
bottom: height,
|
|
283
|
+
...(hovered && { textDecoration: "underline" }),
|
|
284
|
+
...(annotation.annotationTypePlural !== "cutsites" && {
|
|
285
|
+
fontStyle: "normal"
|
|
286
|
+
}),
|
|
287
|
+
left: clamp(xStart, 0, Number.MAX_VALUE),
|
|
288
|
+
whiteSpace: "nowrap",
|
|
289
|
+
color:
|
|
290
|
+
annotation.annotationTypePlural === "parts"
|
|
291
|
+
? "#ac68cc"
|
|
292
|
+
: annotation.labelColor,
|
|
293
|
+
zIndex: 10
|
|
294
|
+
}}
|
|
295
|
+
>
|
|
296
|
+
{truncateLabelIfNeeded(labelText, xStart)}
|
|
297
|
+
</div>
|
|
298
|
+
|
|
299
|
+
{!noLabelLine && (
|
|
300
|
+
<div
|
|
301
|
+
ref={(n) => {
|
|
302
|
+
if (n) this.n = n;
|
|
303
|
+
}}
|
|
304
|
+
className="veLabelLine"
|
|
305
|
+
style={{
|
|
306
|
+
zIndex: 50,
|
|
307
|
+
position: "absolute",
|
|
308
|
+
left: xStartOriginal,
|
|
309
|
+
bottom,
|
|
310
|
+
height: Math.max(heightToUse, 3),
|
|
311
|
+
width: hovered ? 2 : 1,
|
|
312
|
+
opacity: hovered ? 1 : labelLineIntensity
|
|
313
|
+
// background: "black"
|
|
314
|
+
}}
|
|
315
|
+
/>
|
|
316
|
+
)}
|
|
317
|
+
</div>
|
|
318
|
+
);
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
);
|
|
322
|
+
|
|
323
|
+
const labelClassNames = {
|
|
324
|
+
cutsites: "veCutsiteLabel",
|
|
325
|
+
parts: "vePartLabel",
|
|
326
|
+
features: "veFeatureLabel"
|
|
327
|
+
};
|