Source code for schrodinger.application.msv.gui.binding_site_aln_dialog_ui

# Form implementation generated from reading ui file '/Users/eltanawy/builds/2022-4/source/mmshare/python/modules/schrodinger/application/msv/gui/binding_site_aln_dialog.ui'
#
# Created by: PyQt6 UI code generator 6.3.1
#
# WARNING: Any manual changes made to this file will be lost when pyuic6 is
# run again.  Do not edit this file unless you know what you are doing.


from PyQt6 import QtCore, QtGui, QtWidgets


[docs]class Ui_Form(object):
[docs] def setupUi(self, Form): Form.setObjectName("Form") Form.resize(370, 204) self.verticalLayout_2 = QtWidgets.QVBoxLayout(Form) self.verticalLayout_2.setObjectName("verticalLayout_2") self.align_sel_seqs_only_layout = QtWidgets.QHBoxLayout() self.align_sel_seqs_only_layout.setObjectName("align_sel_seqs_only_layout") self.align_sel_res_only_cb = QtWidgets.QCheckBox(Form) self.align_sel_res_only_cb.setObjectName("align_sel_res_only_cb") self.align_sel_seqs_only_layout.addWidget(self.align_sel_res_only_cb) self.verticalLayout_2.addLayout(self.align_sel_seqs_only_layout) self.line = QtWidgets.QFrame(Form) self.line.setFrameShape(QtWidgets.QFrame.Shape.HLine) self.line.setFrameShadow(QtWidgets.QFrame.Shadow.Sunken) self.line.setObjectName("line") self.verticalLayout_2.addWidget(self.line) self.verticalLayout = QtWidgets.QVBoxLayout() self.verticalLayout.setObjectName("verticalLayout") self.mapping_dist_layout = QtWidgets.QHBoxLayout() self.mapping_dist_layout.setObjectName("mapping_dist_layout") self.mapping_dist_lbl = QtWidgets.QLabel(Form) self.mapping_dist_lbl.setObjectName("mapping_dist_lbl") self.mapping_dist_layout.addWidget(self.mapping_dist_lbl) self.verticalLayout.addLayout(self.mapping_dist_layout) self.horizontalLayout_2 = QtWidgets.QHBoxLayout() self.horizontalLayout_2.setObjectName("horizontalLayout_2") self.previously_aligned_cb = QtWidgets.QCheckBox(Form) self.previously_aligned_cb.setObjectName("previously_aligned_cb") self.horizontalLayout_2.addWidget(self.previously_aligned_cb) self.verticalLayout.addLayout(self.horizontalLayout_2) self.verticalLayout_2.addLayout(self.verticalLayout) self.retranslateUi(Form) QtCore.QMetaObject.connectSlotsByName(Form)
[docs] def retranslateUi(self, Form): _translate = QtCore.QCoreApplication.translate Form.setWindowTitle(_translate("Form", "Form")) self.align_sel_res_only_cb.setToolTip(_translate("Form", "Aligns structures based on selected residues in reference sequence (must have at least 3 reference sequence residues selected)")) self.align_sel_res_only_cb.setText(_translate("Form", "Align selected residues only (no detection)")) self.mapping_dist_lbl.setToolTip(_translate("Form", "Atom pairs greater than this distance are not considered in the alignment")) self.mapping_dist_lbl.setText(_translate("Form", "Ignore atom pairs farther apart than:")) self.previously_aligned_cb.setToolTip(_translate("Form", "Structures are prealigned - Protein Structure Alignment (SKA) will not be run")) self.previously_aligned_cb.setText(_translate("Form", "Entire structures were previously aligned"))