-
Notifications
You must be signed in to change notification settings - Fork 5
/
ProSAP_.py
115 lines (106 loc) · 4.79 KB
/
ProSAP_.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'ProSAP_.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
class Ui_Form(object):
def setupUi(self, Form):
Form.setObjectName("Form")
Form.setEnabled(True)
Form.resize(948, 638)
Form.setMinimumSize(QtCore.QSize(948, 638))
Form.setMaximumSize(QtCore.QSize(948, 638))
self.pushButtonPreprocess = QtWidgets.QPushButton(Form)
self.pushButtonPreprocess.setGeometry(QtCore.QRect(100, 230, 211, 51))
font = QtGui.QFont()
font.setFamily("Times New Roman")
font.setPointSize(13)
self.pushButtonPreprocess.setFont(font)
self.pushButtonPreprocess.setObjectName("pushButtonPreprocess")
self.pushButtonTPP = QtWidgets.QPushButton(Form)
self.pushButtonTPP.setGeometry(QtCore.QRect(360, 230, 211, 51))
font = QtGui.QFont()
font.setFamily("Times New Roman")
font.setPointSize(13)
self.pushButtonTPP.setFont(font)
self.pushButtonTPP.setObjectName("pushButtonTPP")
self.pushButtonITSA = QtWidgets.QPushButton(Form)
self.pushButtonITSA.setGeometry(QtCore.QRect(360, 340, 211, 51))
font = QtGui.QFont()
font.setFamily("Times New Roman")
font.setPointSize(13)
self.pushButtonITSA.setFont(font)
self.pushButtonITSA.setObjectName("pushButtonITSA")
self.pushButtonTPCA = QtWidgets.QPushButton(Form)
self.pushButtonTPCA.setGeometry(QtCore.QRect(620, 230, 211, 51))
font = QtGui.QFont()
font.setFamily("Times New Roman")
font.setPointSize(13)
self.pushButtonTPCA.setFont(font)
self.pushButtonTPCA.setObjectName("pushButtonTPCA")
self.label_2 = QtWidgets.QLabel(Form)
self.label_2.setGeometry(QtCore.QRect(600, 540, 331, 41))
font = QtGui.QFont()
font.setFamily("Times New Roman")
font.setPointSize(12)
self.label_2.setFont(font)
self.label_2.setObjectName("label_2")
self.label_3 = QtWidgets.QLabel(Form)
self.label_3.setGeometry(QtCore.QRect(600, 570, 331, 41))
font = QtGui.QFont()
font.setFamily("Times New Roman")
font.setPointSize(12)
self.label_3.setFont(font)
self.label_3.setObjectName("label_3")
self.pushButton2DTPP = QtWidgets.QPushButton(Form)
self.pushButton2DTPP.setGeometry(QtCore.QRect(100, 340, 211, 51))
font = QtGui.QFont()
font.setFamily("Times New Roman")
font.setPointSize(13)
self.pushButton2DTPP.setFont(font)
self.pushButton2DTPP.setObjectName("pushButton2DTPP")
self.widget = QtWidgets.QWidget(Form)
self.widget.setGeometry(QtCore.QRect(41, 50, 525, 58))
self.widget.setObjectName("widget")
self.horizontalLayout = QtWidgets.QHBoxLayout(self.widget)
self.horizontalLayout.setContentsMargins(0, 0, 0, 0)
self.horizontalLayout.setObjectName("horizontalLayout")
self.label = QtWidgets.QLabel(self.widget)
font = QtGui.QFont()
font.setFamily("Arial Black")
font.setPointSize(24)
self.label.setFont(font)
self.label.setObjectName("label")
self.horizontalLayout.addWidget(self.label)
self.label_4 = QtWidgets.QLabel(self.widget)
font = QtGui.QFont()
font.setFamily("Times New Roman")
font.setPointSize(16)
self.label_4.setFont(font)
self.label_4.setObjectName("label_4")
self.horizontalLayout.addWidget(self.label_4)
self.retranslateUi(Form)
QtCore.QMetaObject.connectSlotsByName(Form)
def retranslateUi(self, Form):
_translate = QtCore.QCoreApplication.translate
Form.setWindowTitle(_translate("Form", "Form"))
self.pushButtonPreprocess.setText(_translate("Form", "Preprocess"))
self.pushButtonTPP.setText(_translate("Form", "TPP Analysis"))
self.pushButtonITSA.setText(_translate("Form", "PISA/iTSA Analysis"))
self.pushButtonTPCA.setText(_translate("Form", "TPCA Analysis"))
self.label_2.setText(_translate("Form", "Author: Ji Hongchao, Lu Xue, Chris Tan"))
self.label_3.setText(_translate("Form", "E-mail: [email protected]"))
self.pushButton2DTPP.setText(_translate("Form", "2D-TPP Analysis"))
self.label.setText(_translate("Form", "ProSAP"))
self.label_4.setText(_translate("Form", "-- Protein Stability Analysis Pod"))
if __name__ == "__main__":
import sys
app = QtWidgets.QApplication(sys.argv)
Form = QtWidgets.QWidget()
ui = Ui_Form()
ui.setupUi(Form)
Form.show()
sys.exit(app.exec_())