@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,12 @@
|
|
|
1
|
+
import { getRangeLength } from "@teselagen/range-utils";
|
|
2
|
+
|
|
3
|
+
export default function getXStartAndWidthFromNonCircularRange(
|
|
4
|
+
range,
|
|
5
|
+
charWidth
|
|
6
|
+
) {
|
|
7
|
+
const rangeLength = getRangeLength(range);
|
|
8
|
+
return {
|
|
9
|
+
width: rangeLength * charWidth,
|
|
10
|
+
xStart: range.start * charWidth
|
|
11
|
+
};
|
|
12
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { normalizePositionByRangeLength } from "@teselagen/range-utils";
|
|
2
|
+
import { isNumber } from "lodash";
|
|
3
|
+
|
|
4
|
+
export default function getXStartAndWidthOfRangeWrtRow({
|
|
5
|
+
range,
|
|
6
|
+
row,
|
|
7
|
+
charWidth,
|
|
8
|
+
sequenceLength,
|
|
9
|
+
gapsBefore = 0,
|
|
10
|
+
gapsInside = 0
|
|
11
|
+
}) {
|
|
12
|
+
const xStart =
|
|
13
|
+
((!isNumber(gapsBefore) ? 0 : gapsBefore) +
|
|
14
|
+
normalizePositionByRangeLength(range.start - row.start, sequenceLength)) *
|
|
15
|
+
charWidth;
|
|
16
|
+
const obj = {
|
|
17
|
+
xStart,
|
|
18
|
+
width:
|
|
19
|
+
(gapsInside +
|
|
20
|
+
normalizePositionByRangeLength(
|
|
21
|
+
range.end + 1 - range.start,
|
|
22
|
+
sequenceLength + 1
|
|
23
|
+
)) *
|
|
24
|
+
charWidth
|
|
25
|
+
};
|
|
26
|
+
return obj;
|
|
27
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export default function getXStartAndWidthOfRowAnnotation(
|
|
2
|
+
range,
|
|
3
|
+
bpsPerRow,
|
|
4
|
+
charWidth,
|
|
5
|
+
gapsBefore = 0,
|
|
6
|
+
gapsInside = 0
|
|
7
|
+
) {
|
|
8
|
+
const startOffset = range.start % bpsPerRow;
|
|
9
|
+
const toReturn = {
|
|
10
|
+
startOffset,
|
|
11
|
+
xStart: (startOffset + gapsBefore) * charWidth,
|
|
12
|
+
width: getWidth(range, charWidth, gapsInside)
|
|
13
|
+
};
|
|
14
|
+
return toReturn;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export function getWidth(range, charWidth, gapsInside = 0) {
|
|
18
|
+
return (range.end + 1 - range.start + gapsInside) * charWidth;
|
|
19
|
+
}
|
|
@@ -0,0 +1,647 @@
|
|
|
1
|
+
import {
|
|
2
|
+
normalizePositionByRangeLength,
|
|
3
|
+
getSequenceWithinRange,
|
|
4
|
+
getOverlapsOfPotentiallyCircularRanges
|
|
5
|
+
} from "@teselagen/range-utils";
|
|
6
|
+
import { map, camelCase, startCase, startsWith, flatMap, assign, noop } from "lodash";
|
|
7
|
+
import { getComplementSequenceString } from "@teselagen/sequence-utils";
|
|
8
|
+
import React, { useMemo } from "react";
|
|
9
|
+
import pluralize from "pluralize";
|
|
10
|
+
import SelectionLayer from "./SelectionLayer";
|
|
11
|
+
import Sequence from "./Sequence";
|
|
12
|
+
import Axis from "./Axis";
|
|
13
|
+
import Orfs from "./Orfs";
|
|
14
|
+
import Translations from "./Translations";
|
|
15
|
+
import Labels from "./Labels";
|
|
16
|
+
import Cutsites from "./Cutsites";
|
|
17
|
+
import Caret from "./Caret";
|
|
18
|
+
import StackedAnnotations from "./StackedAnnotations";
|
|
19
|
+
import "./style.css";
|
|
20
|
+
import Chromatogram from "./Chromatograms/Chromatogram";
|
|
21
|
+
import { rowHeights } from "../RowView/estimateRowHeight";
|
|
22
|
+
import { getAllSelectionLayers } from "../utils/selectionLayer";
|
|
23
|
+
import { filter } from "lodash";
|
|
24
|
+
import { defaultCharWidth } from "../constants/rowviewContants";
|
|
25
|
+
import { CutsiteSelectionLayers } from "./CutsiteSelectionLayers";
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
function filterRanges(ranges, extraProps = {}) {
|
|
30
|
+
if (!ranges) return ranges;
|
|
31
|
+
if (extraProps.onlyForward) {
|
|
32
|
+
ranges = filter(ranges, (a) => a.annotation.forward);
|
|
33
|
+
}
|
|
34
|
+
if (extraProps.onlyReverse) {
|
|
35
|
+
ranges = filter(ranges, (a) => !a.annotation.forward);
|
|
36
|
+
}
|
|
37
|
+
return ranges;
|
|
38
|
+
}
|
|
39
|
+
function getPropsForType(props, type, pluralType, extraProps) {
|
|
40
|
+
const upperPluralType = startCase(pluralType);
|
|
41
|
+
const annotationRanges = filterRanges(props.row[pluralType], extraProps);
|
|
42
|
+
|
|
43
|
+
const toRet = {
|
|
44
|
+
annotationColor: props[pluralType + "Color"],
|
|
45
|
+
annotationHeight:
|
|
46
|
+
props[pluralType + "Height"] || rowHeights[pluralType].height,
|
|
47
|
+
spaceBetweenAnnotations:
|
|
48
|
+
props["spaceBetweenAnnotations" + upperPluralType] ||
|
|
49
|
+
rowHeights[pluralType].spaceBetweenAnnotations,
|
|
50
|
+
marginTop:
|
|
51
|
+
props[pluralType + "MarginTop"] || rowHeights[pluralType].marginTop,
|
|
52
|
+
marginBottom:
|
|
53
|
+
props[pluralType + "MarginBottom"] || rowHeights[pluralType].marginBottom,
|
|
54
|
+
annotationRanges,
|
|
55
|
+
showLabels:
|
|
56
|
+
props.annotationLabelVisibility &&
|
|
57
|
+
props.annotationLabelVisibility[pluralType],
|
|
58
|
+
onClick: props[type + "Clicked"],
|
|
59
|
+
onRightClick: props[type + "RightClicked"],
|
|
60
|
+
onDoubleClick: props[type + "DoubleClicked"]
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
return toRet;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
export default function RowItem(props) {
|
|
67
|
+
let {
|
|
68
|
+
noRedux,
|
|
69
|
+
charWidth = defaultCharWidth,
|
|
70
|
+
selectionLayer = { start: -1, end: -1 },
|
|
71
|
+
deletionLayers = {},
|
|
72
|
+
replacementLayers = {},
|
|
73
|
+
searchLayers = [],
|
|
74
|
+
rowTopComp,
|
|
75
|
+
rowBottomComp,
|
|
76
|
+
isProtein,
|
|
77
|
+
tickSpacing,
|
|
78
|
+
truncateLabelsThatDoNotFit = true,
|
|
79
|
+
aminoAcidNumbersHeight = rowHeights.aminoAcidNumbers.height,
|
|
80
|
+
cutsiteLabelHeight = rowHeights.cutsiteLabels.height,
|
|
81
|
+
sequenceHeight = rowHeights.sequence.height,
|
|
82
|
+
axisHeight = rowHeights.axis.height,
|
|
83
|
+
primerHeight = rowHeights.primers.height,
|
|
84
|
+
axisMarginTop = rowHeights.axis.marginTop,
|
|
85
|
+
width,
|
|
86
|
+
annotationVisibility = {},
|
|
87
|
+
annotationLabelVisibility = {},
|
|
88
|
+
additionalSelectionLayers = [],
|
|
89
|
+
caretPosition = -1,
|
|
90
|
+
row = {
|
|
91
|
+
sequence: "",
|
|
92
|
+
start: 0,
|
|
93
|
+
end: 0,
|
|
94
|
+
rowNumber: 0
|
|
95
|
+
},
|
|
96
|
+
readOnly,
|
|
97
|
+
isRowView,
|
|
98
|
+
emptyText,
|
|
99
|
+
alignmentType,
|
|
100
|
+
alignmentData,
|
|
101
|
+
sequenceLength = row.sequence.length,
|
|
102
|
+
chromatogramData,
|
|
103
|
+
fullSequence = "",
|
|
104
|
+
replacementLayerClicked = noop,
|
|
105
|
+
replacementLayerRightClicked = noop,
|
|
106
|
+
searchLayerClicked = noop,
|
|
107
|
+
backgroundRightClicked = noop,
|
|
108
|
+
selectionLayerRightClicked = noop,
|
|
109
|
+
searchLayerRightClicked = noop,
|
|
110
|
+
translationDoubleClicked = noop,
|
|
111
|
+
minHeight = 22,
|
|
112
|
+
bpsPerRow = sequenceLength,
|
|
113
|
+
editorName,
|
|
114
|
+
rowContainerStyle,
|
|
115
|
+
onScroll,
|
|
116
|
+
scrollData,
|
|
117
|
+
onlyShowLabelsThatDoNotFit,
|
|
118
|
+
labelLineIntensity,
|
|
119
|
+
isLinearView,
|
|
120
|
+
scalePct,
|
|
121
|
+
setScalePct,
|
|
122
|
+
extraAnnotationProps = {}
|
|
123
|
+
} = props;
|
|
124
|
+
|
|
125
|
+
const {
|
|
126
|
+
chromatogram: showChromatogram,
|
|
127
|
+
// orfLabels: showOrfLabel,
|
|
128
|
+
cutsites: showCutsites,
|
|
129
|
+
cutsitesInSequence: showCutsitesInSequence,
|
|
130
|
+
axis: showAxis,
|
|
131
|
+
axisNumbers: showAxisNumbers,
|
|
132
|
+
// yellowAxis: showYellowAxis,
|
|
133
|
+
aminoAcidNumbers: showAminoAcidNumbers,
|
|
134
|
+
dnaColors: showDnaColors,
|
|
135
|
+
fivePrimeThreePrimeHints,
|
|
136
|
+
reverseSequence: showReverseSequence,
|
|
137
|
+
sequence: showSequence,
|
|
138
|
+
height
|
|
139
|
+
} = annotationVisibility;
|
|
140
|
+
|
|
141
|
+
const { sequence = "", cutsites = [] } = row;
|
|
142
|
+
|
|
143
|
+
const reverseSequence = getComplementSequenceString(
|
|
144
|
+
(alignmentData && alignmentData.sequence) || sequence
|
|
145
|
+
);
|
|
146
|
+
const getGaps = useMemo(() => {
|
|
147
|
+
if (alignmentData) {
|
|
148
|
+
const gapMap = getGapMap(alignmentData.sequence);
|
|
149
|
+
//this function is used to calculate the number of spaces that come before or inside a range
|
|
150
|
+
return (rangeOrCaretPosition) => {
|
|
151
|
+
if (typeof rangeOrCaretPosition !== "object") {
|
|
152
|
+
return {
|
|
153
|
+
gapsBefore:
|
|
154
|
+
gapMap[Math.min(rangeOrCaretPosition, gapMap.length - 1)]
|
|
155
|
+
};
|
|
156
|
+
}
|
|
157
|
+
//otherwise it is a range!
|
|
158
|
+
const { start, end } = rangeOrCaretPosition;
|
|
159
|
+
const toReturn = {
|
|
160
|
+
gapsBefore: gapMap[start],
|
|
161
|
+
gapsInside:
|
|
162
|
+
gapMap[Math.min(end, gapMap.length - 1)] -
|
|
163
|
+
gapMap[Math.min(start, gapMap.length - 1)]
|
|
164
|
+
};
|
|
165
|
+
|
|
166
|
+
return toReturn;
|
|
167
|
+
};
|
|
168
|
+
} else {
|
|
169
|
+
return getGapsDefault;
|
|
170
|
+
}
|
|
171
|
+
}, [alignmentData]);
|
|
172
|
+
|
|
173
|
+
if (!row) {
|
|
174
|
+
return null;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
if (!width) {
|
|
178
|
+
width = bpsPerRow * charWidth;
|
|
179
|
+
}
|
|
180
|
+
if (isLinearView) {
|
|
181
|
+
width -= ((charWidth || 12) * bpsPerRow.toString().length) / 2;
|
|
182
|
+
}
|
|
183
|
+
charWidth = charWidth || width / Math.max(bpsPerRow, 1);
|
|
184
|
+
|
|
185
|
+
const rowStyle = {
|
|
186
|
+
position: "relative",
|
|
187
|
+
minHeight,
|
|
188
|
+
height,
|
|
189
|
+
width: width + "px"
|
|
190
|
+
};
|
|
191
|
+
|
|
192
|
+
const annotationCommonProps = {
|
|
193
|
+
noRedux,
|
|
194
|
+
editorName,
|
|
195
|
+
charWidth,
|
|
196
|
+
bpsPerRow,
|
|
197
|
+
getGaps,
|
|
198
|
+
isProtein,
|
|
199
|
+
readOnly,
|
|
200
|
+
sequenceLength,
|
|
201
|
+
isRowView,
|
|
202
|
+
row: { start: row.start, end: row.end }
|
|
203
|
+
};
|
|
204
|
+
|
|
205
|
+
const drawLabels = (type, noDraw, { filterOpts, ...extraProps } = {}) => {
|
|
206
|
+
if (noDraw) {
|
|
207
|
+
return null;
|
|
208
|
+
}
|
|
209
|
+
const pluralType = pluralize(type);
|
|
210
|
+
const ranges = filterRanges(
|
|
211
|
+
annotationLabelVisibility[pluralType] && annotationVisibility[pluralType]
|
|
212
|
+
? map(row[pluralType], (a) =>
|
|
213
|
+
assign(a, {
|
|
214
|
+
onClick: props[type + "Clicked"],
|
|
215
|
+
onRightClick: props[type + "RightClicked"],
|
|
216
|
+
onDoubleClick: props[type + "DoubleClicked"]
|
|
217
|
+
})
|
|
218
|
+
)
|
|
219
|
+
: [],
|
|
220
|
+
filterOpts
|
|
221
|
+
);
|
|
222
|
+
if (!ranges.length) return null;
|
|
223
|
+
return (
|
|
224
|
+
<Labels
|
|
225
|
+
{...annotationCommonProps}
|
|
226
|
+
onlyShowLabelsThatDoNotFit={onlyShowLabelsThatDoNotFit}
|
|
227
|
+
labelLineIntensity={labelLineIntensity}
|
|
228
|
+
rangeMax={bpsPerRow}
|
|
229
|
+
annotationRanges={ranges}
|
|
230
|
+
annotationHeight={cutsiteLabelHeight}
|
|
231
|
+
{...extraProps}
|
|
232
|
+
/>
|
|
233
|
+
);
|
|
234
|
+
};
|
|
235
|
+
|
|
236
|
+
const drawAnnotations = (type, extraProps = {}) => {
|
|
237
|
+
const {
|
|
238
|
+
CompOverride,
|
|
239
|
+
shouldShow,
|
|
240
|
+
noPlural,
|
|
241
|
+
alignmentType,
|
|
242
|
+
onlyForward,
|
|
243
|
+
onlyReverse,
|
|
244
|
+
...otherExtraProps
|
|
245
|
+
} = extraProps;
|
|
246
|
+
const pluralType = noPlural ? type : pluralize(type);
|
|
247
|
+
if (
|
|
248
|
+
shouldShow !== undefined
|
|
249
|
+
? !shouldShow
|
|
250
|
+
: !annotationVisibility[pluralType] ||
|
|
251
|
+
Object.keys(row[pluralType] || {}).length <= 0
|
|
252
|
+
) {
|
|
253
|
+
return null;
|
|
254
|
+
}
|
|
255
|
+
const CompToUse = CompOverride || StackedAnnotations;
|
|
256
|
+
return (
|
|
257
|
+
<CompToUse
|
|
258
|
+
truncateLabelsThatDoNotFit={truncateLabelsThatDoNotFit}
|
|
259
|
+
onlyShowLabelsThatDoNotFit={onlyShowLabelsThatDoNotFit}
|
|
260
|
+
type={type}
|
|
261
|
+
fullSequence={fullSequence}
|
|
262
|
+
containerClassName={camelCase("veRowView-" + pluralType + "Container")}
|
|
263
|
+
alignmentType={alignmentType}
|
|
264
|
+
{...annotationCommonProps}
|
|
265
|
+
{...getPropsForType(props, type, pluralType, extraProps)}
|
|
266
|
+
{...otherExtraProps}
|
|
267
|
+
/>
|
|
268
|
+
);
|
|
269
|
+
};
|
|
270
|
+
|
|
271
|
+
// a t g a t c a g g
|
|
272
|
+
// 0 1 2 3 4 5 6 8 9
|
|
273
|
+
//0 1 2 3 4 5 6 7 9
|
|
274
|
+
|
|
275
|
+
const deletionLayersToDisplay = flatMap(
|
|
276
|
+
{ ...replacementLayers, ...deletionLayers },
|
|
277
|
+
function (layer) {
|
|
278
|
+
if (layer.caretPosition > -1) {
|
|
279
|
+
return [];
|
|
280
|
+
}
|
|
281
|
+
const overlaps = getOverlapsOfPotentiallyCircularRanges(
|
|
282
|
+
layer,
|
|
283
|
+
row,
|
|
284
|
+
sequenceLength
|
|
285
|
+
);
|
|
286
|
+
return overlaps;
|
|
287
|
+
}
|
|
288
|
+
);
|
|
289
|
+
const deletionLayerStrikeThrough = deletionLayersToDisplay.length
|
|
290
|
+
? deletionLayersToDisplay.map(function (layer, index) {
|
|
291
|
+
const left = (layer.start - row.start) * charWidth;
|
|
292
|
+
const width = (layer.end - layer.start + 1) * charWidth;
|
|
293
|
+
return (
|
|
294
|
+
<div
|
|
295
|
+
key={"deletionLayer" + index}
|
|
296
|
+
className="ve_sequence_strikethrough"
|
|
297
|
+
style={{
|
|
298
|
+
left,
|
|
299
|
+
width,
|
|
300
|
+
top: 10,
|
|
301
|
+
height: 2,
|
|
302
|
+
position: "absolute",
|
|
303
|
+
background: "black"
|
|
304
|
+
}}
|
|
305
|
+
/>
|
|
306
|
+
);
|
|
307
|
+
})
|
|
308
|
+
: null;
|
|
309
|
+
|
|
310
|
+
const translationCommonProps = {
|
|
311
|
+
CompOverride: Translations,
|
|
312
|
+
showAminoAcidNumbers: showAminoAcidNumbers,
|
|
313
|
+
sequenceLength,
|
|
314
|
+
aminoAcidNumbersHeight
|
|
315
|
+
};
|
|
316
|
+
const partProps = {
|
|
317
|
+
getExtraInnerCompProps: function (annotationRange) {
|
|
318
|
+
const { annotation } = annotationRange;
|
|
319
|
+
const { color } = annotation;
|
|
320
|
+
const colorToUse = startsWith(color, "override_")
|
|
321
|
+
? color.replace("override_", "")
|
|
322
|
+
: "#ac68cc";
|
|
323
|
+
|
|
324
|
+
let extraProps = {};
|
|
325
|
+
if (typeof extraAnnotationProps["part"] === "function") {
|
|
326
|
+
extraProps = extraAnnotationProps["part"](annotation);
|
|
327
|
+
}
|
|
328
|
+
return {
|
|
329
|
+
textColor: colorToUse,
|
|
330
|
+
stroke: colorToUse,
|
|
331
|
+
...extraProps
|
|
332
|
+
};
|
|
333
|
+
},
|
|
334
|
+
alignmentType
|
|
335
|
+
};
|
|
336
|
+
|
|
337
|
+
return (
|
|
338
|
+
<div
|
|
339
|
+
style={rowContainerStyle}
|
|
340
|
+
onContextMenu={backgroundRightClicked}
|
|
341
|
+
onScroll={onScroll}
|
|
342
|
+
className="veRowItemWrapper"
|
|
343
|
+
>
|
|
344
|
+
{rowTopComp && rowTopComp}
|
|
345
|
+
<div className="veRowItem" style={rowStyle}>
|
|
346
|
+
{/* <div className="vespacer" /> */}
|
|
347
|
+
|
|
348
|
+
<SelectionLayer
|
|
349
|
+
className="veSearchLayerContainer"
|
|
350
|
+
customTitleStart="Search match"
|
|
351
|
+
// color="yellow"
|
|
352
|
+
// hideCarets
|
|
353
|
+
regions={searchLayers}
|
|
354
|
+
{...annotationCommonProps}
|
|
355
|
+
selectionLayerRightClicked={searchLayerRightClicked}
|
|
356
|
+
row={
|
|
357
|
+
alignmentData
|
|
358
|
+
? { start: 0, end: alignmentData.sequence.length - 1 }
|
|
359
|
+
: row
|
|
360
|
+
}
|
|
361
|
+
onClick={searchLayerClicked}
|
|
362
|
+
/>
|
|
363
|
+
<SelectionLayer
|
|
364
|
+
isDraggable
|
|
365
|
+
selectionLayerRightClicked={selectionLayerRightClicked}
|
|
366
|
+
{...annotationCommonProps}
|
|
367
|
+
row={
|
|
368
|
+
alignmentData
|
|
369
|
+
? { start: 0, end: alignmentData.sequence.length - 1 }
|
|
370
|
+
: row
|
|
371
|
+
}
|
|
372
|
+
regions={getAllSelectionLayers({
|
|
373
|
+
additionalSelectionLayers,
|
|
374
|
+
selectionLayer
|
|
375
|
+
})}
|
|
376
|
+
/>
|
|
377
|
+
{drawAnnotations("warning")}
|
|
378
|
+
{drawAnnotations("assemblyPiece")}
|
|
379
|
+
{drawAnnotations("lineageAnnotation")}
|
|
380
|
+
{drawLabels("part")}
|
|
381
|
+
{drawAnnotations("part", partProps)}
|
|
382
|
+
{drawAnnotations("orf", {
|
|
383
|
+
CompOverride: Orfs
|
|
384
|
+
})}
|
|
385
|
+
{charWidth > 4 &&
|
|
386
|
+
drawAnnotations("translation", {
|
|
387
|
+
...translationCommonProps,
|
|
388
|
+
onDoubleClick: translationDoubleClicked
|
|
389
|
+
})}
|
|
390
|
+
|
|
391
|
+
{showChromatogram && chromatogramData && (
|
|
392
|
+
<Chromatogram
|
|
393
|
+
chromatogramData={chromatogramData}
|
|
394
|
+
alignmentData={alignmentData}
|
|
395
|
+
scalePct={scalePct}
|
|
396
|
+
setScalePct={setScalePct}
|
|
397
|
+
{...annotationCommonProps}
|
|
398
|
+
/>
|
|
399
|
+
)}
|
|
400
|
+
|
|
401
|
+
{drawLabels("cutsite", !isRowView)}
|
|
402
|
+
{drawLabels("primer", false, {
|
|
403
|
+
filterOpts: { onlyForward: true }
|
|
404
|
+
})}
|
|
405
|
+
|
|
406
|
+
{drawAnnotations("primer", {
|
|
407
|
+
sequence: fullSequence,
|
|
408
|
+
isStriped: true,
|
|
409
|
+
annotationHeight: primerHeight,
|
|
410
|
+
onlyForward: true
|
|
411
|
+
})}
|
|
412
|
+
<div
|
|
413
|
+
className="veRowItemSequenceContainer"
|
|
414
|
+
style={{ position: "relative" }}
|
|
415
|
+
>
|
|
416
|
+
{showSequence && (
|
|
417
|
+
<Sequence
|
|
418
|
+
sequenceLength={sequenceLength}
|
|
419
|
+
cutsites={cutsites} //pass this in order to get children cutsites to re-render
|
|
420
|
+
showDnaColors={showDnaColors}
|
|
421
|
+
fivePrimeThreePrimeHints={fivePrimeThreePrimeHints}
|
|
422
|
+
scrollData={scrollData}
|
|
423
|
+
hideBps={charWidth < 7}
|
|
424
|
+
sequence={alignmentData ? alignmentData.sequence : row.sequence} //from alignment data and has "-"" chars in it
|
|
425
|
+
rowStart={row.start}
|
|
426
|
+
rowEnd={row.end}
|
|
427
|
+
height={sequenceHeight}
|
|
428
|
+
showCutsites={showCutsites}
|
|
429
|
+
charWidth={charWidth}
|
|
430
|
+
alignmentData={alignmentData}
|
|
431
|
+
{...annotationCommonProps}
|
|
432
|
+
>
|
|
433
|
+
{showCutsites && Object.keys(cutsites).length > 0 && (
|
|
434
|
+
<Cutsites
|
|
435
|
+
sequenceLength={sequenceLength}
|
|
436
|
+
annotationRanges={cutsites}
|
|
437
|
+
topStrand
|
|
438
|
+
{...annotationCommonProps}
|
|
439
|
+
/>
|
|
440
|
+
)}
|
|
441
|
+
{deletionLayerStrikeThrough}
|
|
442
|
+
</Sequence>
|
|
443
|
+
)}
|
|
444
|
+
{emptyText}
|
|
445
|
+
|
|
446
|
+
{showReverseSequence && (
|
|
447
|
+
<Sequence
|
|
448
|
+
scrollData={scrollData}
|
|
449
|
+
sequenceLength={sequenceLength}
|
|
450
|
+
fivePrimeThreePrimeHints={fivePrimeThreePrimeHints}
|
|
451
|
+
isReverse
|
|
452
|
+
cutsites={cutsites} //pass this in order to get children cutsites to re-render
|
|
453
|
+
showDnaColors={showDnaColors}
|
|
454
|
+
hideBps={charWidth < 7}
|
|
455
|
+
length={reverseSequence.length}
|
|
456
|
+
showCutsites={showCutsites}
|
|
457
|
+
rowStart={row.start}
|
|
458
|
+
rowEnd={row.end}
|
|
459
|
+
sequence={reverseSequence}
|
|
460
|
+
height={sequenceHeight}
|
|
461
|
+
charWidth={charWidth}
|
|
462
|
+
>
|
|
463
|
+
{showCutsites && Object.keys(cutsites).length > 0 && (
|
|
464
|
+
<Cutsites
|
|
465
|
+
topStrand={false}
|
|
466
|
+
annotationRanges={cutsites}
|
|
467
|
+
{...annotationCommonProps}
|
|
468
|
+
/>
|
|
469
|
+
)}
|
|
470
|
+
{deletionLayerStrikeThrough}
|
|
471
|
+
</Sequence>
|
|
472
|
+
)}
|
|
473
|
+
{showCutsites && showCutsitesInSequence && (
|
|
474
|
+
<CutsiteSelectionLayers
|
|
475
|
+
{...{
|
|
476
|
+
editorName,
|
|
477
|
+
cutsites,
|
|
478
|
+
annotationCommonProps,
|
|
479
|
+
showReverseSequence,
|
|
480
|
+
sequenceHeight,
|
|
481
|
+
alignmentData,
|
|
482
|
+
row
|
|
483
|
+
}}
|
|
484
|
+
></CutsiteSelectionLayers>
|
|
485
|
+
)}
|
|
486
|
+
</div>
|
|
487
|
+
|
|
488
|
+
{drawAnnotations("primer", {
|
|
489
|
+
sequence: fullSequence,
|
|
490
|
+
isStriped: true,
|
|
491
|
+
annotationHeight: primerHeight,
|
|
492
|
+
onlyReverse: true
|
|
493
|
+
})}
|
|
494
|
+
{drawLabels("primer", false, {
|
|
495
|
+
filterOpts: { onlyReverse: true }
|
|
496
|
+
})}
|
|
497
|
+
{drawLabels("feature")}
|
|
498
|
+
{drawAnnotations("feature")}
|
|
499
|
+
|
|
500
|
+
{map(replacementLayers, function (replacementLayer) {
|
|
501
|
+
if (!replacementLayer) return null;
|
|
502
|
+
const atCaret = replacementLayer.caretPosition > -1;
|
|
503
|
+
let normedCaretPos;
|
|
504
|
+
if (atCaret) {
|
|
505
|
+
normedCaretPos = normalizePositionByRangeLength(
|
|
506
|
+
replacementLayer.caretPosition,
|
|
507
|
+
sequenceLength
|
|
508
|
+
);
|
|
509
|
+
}
|
|
510
|
+
const insertedBpsLayer = {
|
|
511
|
+
...replacementLayer,
|
|
512
|
+
start: atCaret ? normedCaretPos : replacementLayer.start,
|
|
513
|
+
end:
|
|
514
|
+
(atCaret ? normedCaretPos : replacementLayer.start) +
|
|
515
|
+
replacementLayer.sequence.length
|
|
516
|
+
};
|
|
517
|
+
const { sequence } = insertedBpsLayer;
|
|
518
|
+
const layerRangeOverlaps = getOverlapsOfPotentiallyCircularRanges(
|
|
519
|
+
insertedBpsLayer,
|
|
520
|
+
row,
|
|
521
|
+
sequenceLength
|
|
522
|
+
);
|
|
523
|
+
return layerRangeOverlaps.map(function (layer, index) {
|
|
524
|
+
const isStart = layer.start === insertedBpsLayer.start;
|
|
525
|
+
const seqInRow = getSequenceWithinRange(
|
|
526
|
+
{
|
|
527
|
+
start: layer.start - insertedBpsLayer.start,
|
|
528
|
+
end: layer.end - insertedBpsLayer.start
|
|
529
|
+
},
|
|
530
|
+
sequence
|
|
531
|
+
);
|
|
532
|
+
const startOffset = layer.start - row.start;
|
|
533
|
+
const width = seqInRow.length * charWidth;
|
|
534
|
+
const height = sequenceHeight;
|
|
535
|
+
const bufferBottom = 4;
|
|
536
|
+
const bufferLeft = 2;
|
|
537
|
+
const arrowHeight = isStart ? 8 : 0;
|
|
538
|
+
return (
|
|
539
|
+
<Sequence
|
|
540
|
+
sequenceLength={sequenceLength}
|
|
541
|
+
isReplacementLayer
|
|
542
|
+
showDnaColors={showDnaColors}
|
|
543
|
+
key={index}
|
|
544
|
+
sequence={seqInRow}
|
|
545
|
+
startOffset={startOffset}
|
|
546
|
+
height={height}
|
|
547
|
+
length={seqInRow.length}
|
|
548
|
+
charWidth={charWidth}
|
|
549
|
+
>
|
|
550
|
+
<svg
|
|
551
|
+
style={{
|
|
552
|
+
left: startOffset * charWidth,
|
|
553
|
+
height: sequenceHeight,
|
|
554
|
+
position: "absolute"
|
|
555
|
+
}}
|
|
556
|
+
ref="rowViewTextContainer"
|
|
557
|
+
onClick={function (event) {
|
|
558
|
+
replacementLayerClicked({
|
|
559
|
+
annotation: replacementLayer,
|
|
560
|
+
event
|
|
561
|
+
});
|
|
562
|
+
}}
|
|
563
|
+
onContextMenu={function (event) {
|
|
564
|
+
replacementLayerRightClicked({
|
|
565
|
+
annotation: replacementLayer,
|
|
566
|
+
event
|
|
567
|
+
});
|
|
568
|
+
}}
|
|
569
|
+
className="rowViewTextContainer clickable"
|
|
570
|
+
width={Math.max(0, Number(width))}
|
|
571
|
+
height={Math.max(0, Number(height))}
|
|
572
|
+
>
|
|
573
|
+
<polyline
|
|
574
|
+
points={`${-bufferLeft},0 ${-bufferLeft},${-arrowHeight}, ${
|
|
575
|
+
charWidth / 2
|
|
576
|
+
},0 ${width},0 ${width},${
|
|
577
|
+
height + bufferBottom
|
|
578
|
+
} ${-bufferLeft},${height + bufferBottom} ${-bufferLeft},0`}
|
|
579
|
+
fill="none"
|
|
580
|
+
stroke="black"
|
|
581
|
+
strokeWidth="2px"
|
|
582
|
+
/>
|
|
583
|
+
</svg>
|
|
584
|
+
</Sequence>
|
|
585
|
+
);
|
|
586
|
+
});
|
|
587
|
+
})}
|
|
588
|
+
{/* <DeletionLayers
|
|
589
|
+
deletionLayerClicked={deletionLayerClicked}
|
|
590
|
+
deletionLayerRightClicked={deletionLayerRightClicked}
|
|
591
|
+
deletionLayers={deletionLayers}
|
|
592
|
+
{...annotationCommonProps}
|
|
593
|
+
/> */}
|
|
594
|
+
|
|
595
|
+
{drawAnnotations("primaryProteinSequence", {
|
|
596
|
+
...translationCommonProps,
|
|
597
|
+
noPlural: true
|
|
598
|
+
})}
|
|
599
|
+
{drawLabels("cutsite", isRowView)}
|
|
600
|
+
{showAxis && (
|
|
601
|
+
<Axis
|
|
602
|
+
scrollData={scrollData}
|
|
603
|
+
tickSpacing={tickSpacing}
|
|
604
|
+
showAxisNumbers={showAxisNumbers}
|
|
605
|
+
annotationHeight={axisHeight}
|
|
606
|
+
marginTop={axisMarginTop}
|
|
607
|
+
{...annotationCommonProps}
|
|
608
|
+
isLinearView={isLinearView}
|
|
609
|
+
/>
|
|
610
|
+
)}
|
|
611
|
+
{caretPosition > -1 && (
|
|
612
|
+
<Caret
|
|
613
|
+
caretPosition={caretPosition}
|
|
614
|
+
{...{ ...annotationCommonProps, ...{ getGaps: undefined } }}
|
|
615
|
+
row={
|
|
616
|
+
alignmentData
|
|
617
|
+
? { start: 0, end: alignmentData.sequence.length - 1 }
|
|
618
|
+
: row
|
|
619
|
+
}
|
|
620
|
+
/>
|
|
621
|
+
)}
|
|
622
|
+
</div>
|
|
623
|
+
{rowBottomComp && rowBottomComp}
|
|
624
|
+
</div>
|
|
625
|
+
);
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
function getGapMap(sequence) {
|
|
629
|
+
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, ]
|
|
630
|
+
sequence.split("").forEach((char) => {
|
|
631
|
+
if (char === "-") {
|
|
632
|
+
gapMap[Math.max(0, gapMap.length - 1)] =
|
|
633
|
+
(gapMap[Math.max(0, gapMap.length - 1)] || 0) + 1;
|
|
634
|
+
} else {
|
|
635
|
+
gapMap.push(gapMap[gapMap.length - 1] || 0);
|
|
636
|
+
// gapMap[gapMap.length] =
|
|
637
|
+
}
|
|
638
|
+
});
|
|
639
|
+
return gapMap;
|
|
640
|
+
}
|
|
641
|
+
// var a = getGapMap("---tagccc---tagasdfw--gg")
|
|
642
|
+
function getGapsDefault() {
|
|
643
|
+
return {
|
|
644
|
+
gapsBefore: 0,
|
|
645
|
+
gapsInside: 0
|
|
646
|
+
};
|
|
647
|
+
}
|