-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEstimationUI.py
172 lines (134 loc) · 5.85 KB
/
EstimationUI.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
"""
##########################################################################################
Improvised Version: DNA Cloud 3.14
Developers: Mihir Gohel, Natvar Prajapati, Shashank Upadhyay, Shivam Madlani, Vandan Bhuva
Mentor: Prof. Manish K Gupta
Website: www.guptalab.org/dnacloud
This file shows UI related to Cost Estimation, Memory Estimation and other details
##########################################################################################
Author: Aayush Kapadia,Suparshva Mehta
Project: DNA Cloud 3
Graduate Mentor: Dixita Limbachya
Mentor: Prof. Manish K Gupta
Website: www.guptalab.org/dnacloud
##########################################################################################
"""
import sys
from PyQt5.QtWidgets import *
from PyQt5.QtGui import *
from PyQt5.QtCore import *
import os
import SizeEstimation
class CostEstimation(QDialog):
def __init__(self, parent=None):
super(CostEstimation, self).__init__(parent)
self.setWindowTitle("Cost Estimator")
self.initUI()
def initUI(self):
self.costPerDNATitle = QLabel("Cost Per DNA ($) : ")
self.costPerDNA = QDoubleSpinBox()
self.costPerDNA.setRange(0, 100.00)
self.costPerDNA.setValue(1.00)
self.costTitle = QLabel("Cost ($) : ")
self.costValue = QLabel("0 $")
self.encodingType = QLabel("Encoding Type : ")
self.encodingValue = QComboBox()
encodings = ['Goldman', 'Golay']
self.encodingValue.addItems(encodings)
self.fileTarget = QLabel("Browse File")
self.browseButton = QPushButton("Browse")
self.layout = QGridLayout()
self.setLayout(self.layout)
self.layout.addWidget(self.fileTarget, 0, 0)
self.layout.addWidget(self.browseButton, 0, 1)
self.layout.addWidget(self.costPerDNATitle, 1, 0)
self.layout.addWidget(self.costPerDNA, 1, 1)
self.layout.addWidget(self.encodingType, 2, 0)
self.layout.addWidget(self.encodingValue, 2, 1)
self.layout.addWidget(self.costTitle, 3, 0)
self.layout.addWidget(self.costValue, 3, 1)
self.browseButton.clicked.connect(self.doBrowsing)
self.encodingValue.currentIndexChanged[int].connect(self.updateUi)
self.fileName = ''
def doBrowsing(self):
openfile = QFileDialog.getOpenFileName(self)[0]
if openfile == '' or (not openfile):
return
self.fileName = openfile
self.fileTarget.setText(openfile)
self.updateUi()
def updateUi(self):
if self.fileName == '' or (not self.fileName):
return
totDNABases = self.calculateDNABases(os.path.getsize(
self.fileName), self.encodingValue.currentText())
costVal = self.costPerDNA.value() * totDNABases
self.costValue.setText("%0.2f" % costVal)
def calculateDNABases(self, fileSize, encodingType):
return SizeEstimation.estimateNoOfDNABasesUsedForEncoding(encodingType, self.fileName, fileSize)
class MemoryEstimation(QDialog):
def __init__(self, parent=None):
super(MemoryEstimation, self).__init__(parent)
self.setWindowTitle("Storage Estimator")
self.initUI()
def initUI(self):
self.fileSizeTitle = QLabel("Storage of above file on Disk(Bytes) : ")
self.fileSize = QLabel("0")
self.memoryTitle = QLabel("Storage of Encoded file on Disk(Bytes) : ")
self.memoryValue = QLabel("0")
self.fileTarget = QLabel("Browse File")
self.browseButton = QPushButton("Browse")
self.encodingType = QLabel("Encoding Type : ")
self.encodingValue = QComboBox()
encodings = ['Goldman', 'Golay']
self.encodingValue.addItems(encodings)
self.layout = QGridLayout()
self.setLayout(self.layout)
self.layout.addWidget(self.fileTarget, 0, 0)
self.layout.addWidget(self.browseButton, 0, 1)
self.layout.addWidget(self.fileSizeTitle, 1, 0)
self.layout.addWidget(self.fileSize, 1, 1)
self.layout.addWidget(self.encodingType, 2, 0)
self.layout.addWidget(self.encodingValue, 2, 1)
self.layout.addWidget(self.memoryTitle, 3, 0)
self.layout.addWidget(self.memoryValue, 3, 1)
self.browseButton.clicked.connect(self.doBrowsing)
self.encodingValue.currentIndexChanged[int].connect(self.updateUi)
self.fileName = ''
def doBrowsing(self):
openfile = QFileDialog.getOpenFileName(self)[0]
if openfile == '' or (not openfile):
return
self.fileName = openfile
self.fileTarget.setText(openfile)
fileSize = os.path.getsize(openfile)
self.fileSize.setText(str(fileSize))
self.updateUi()
def updateUi(self):
if self.fileName == '' or (not self.fileName):
return
totDNABases = self.calculateDNABases(os.path.getsize(
self.fileName), self.encodingValue.currentText())
self.memoryValue.setText(str(totDNABases))
def calculateDNABases(self, fileSize, encodingType):
return SizeEstimation.estimateNoOfDNABasesUsedForEncoding(encodingType, self.fileName, fileSize)
class Version(QDialog):
def __init__(self, parent=None):
super(Version, self).__init__(parent)
self.setWindowTitle("Version")
self.initUI()
def initUI(self):
self.temp_display = QLabel("Version of DNA Cloud : 3.14")
self.layout = QGridLayout()
self.setLayout(self.layout)
self.layout.addWidget(self.temp_display, 0, 0)
class Email_Id(QDialog):
def __init__(self, parent=None):
super(Email_Id, self).__init__(parent)
self.setWindowTitle("Email ID")
self.initUI()
def initUI(self):
self.temp_display = QLabel("Email Id :- [email protected]")
self.layout = QGridLayout()
self.setLayout(self.layout)
self.layout.addWidget(self.temp_display, 0, 0)