Source code for schrodinger.application.msv.gui.dialogs.get_sequences_dialog_ui

# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file '/scr/buildbot/src/mmshare/python/modules/schrodinger/application/msv/gui/dialogs/get_sequences_dialog.ui'
#
# Created by: PyQt5 UI code generator 5.15.4
#
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
# run again.  Do not edit this file unless you know what you are doing.


from PyQt5 import QtCore, QtGui, QtWidgets


[docs]class Ui_GetSequencesDialog(object):
[docs] def setupUi(self, GetSequencesDialog): GetSequencesDialog.setObjectName("GetSequencesDialog") GetSequencesDialog.resize(307, 142) self.verticalLayout_2 = QtWidgets.QVBoxLayout(GetSequencesDialog) self.verticalLayout_2.setObjectName("verticalLayout_2") self.description_lbl = QtWidgets.QLabel(GetSequencesDialog) self.description_lbl.setWordWrap(True) self.description_lbl.setObjectName("description_lbl") self.verticalLayout_2.addWidget(self.description_lbl) self.gridLayout = QtWidgets.QGridLayout() self.gridLayout.setObjectName("gridLayout") self.sequence_id_le = QtWidgets.QLineEdit(GetSequencesDialog) self.sequence_id_le.setObjectName("sequence_id_le") self.gridLayout.addWidget(self.sequence_id_le, 1, 1, 1, 1) self.sequence_id_lbl = QtWidgets.QLabel(GetSequencesDialog) self.sequence_id_lbl.setObjectName("sequence_id_lbl") self.gridLayout.addWidget(self.sequence_id_lbl, 1, 0, 1, 1) self.database_lbl = QtWidgets.QLabel(GetSequencesDialog) self.database_lbl.setObjectName("database_lbl") self.gridLayout.addWidget(self.database_lbl, 0, 0, 1, 1) self.databases_lbl = QtWidgets.QLabel(GetSequencesDialog) self.databases_lbl.setObjectName("databases_lbl") self.gridLayout.addWidget(self.databases_lbl, 0, 1, 1, 1) self.verticalLayout_2.addLayout(self.gridLayout) self.local_server_cb = QtWidgets.QCheckBox(GetSequencesDialog) self.local_server_cb.setObjectName("local_server_cb") self.verticalLayout_2.addWidget(self.local_server_cb) self.retranslateUi(GetSequencesDialog) QtCore.QMetaObject.connectSlotsByName(GetSequencesDialog)
[docs] def retranslateUi(self, GetSequencesDialog): _translate = QtCore.QCoreApplication.translate GetSequencesDialog.setWindowTitle(_translate("GetSequencesDialog", "Get Sequences")) self.description_lbl.setText(_translate("GetSequencesDialog", "Enter a single sequence ID, or use commas to specify a list.")) self.sequence_id_lbl.setText(_translate("GetSequencesDialog", "Sequence ID:")) self.database_lbl.setText(_translate("GetSequencesDialog", "Database:")) self.databases_lbl.setText(_translate("GetSequencesDialog", "UniProt or Entrez (NCBI)")) self.local_server_cb.setText(_translate("GetSequencesDialog", "Use local server only"))