Newer
Older
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
<meta name="generator" content="pdoc 0.7.4" />
<title>pk_gui API documentation</title>
<meta name="description" content="pk_GUI is a tool to compare, optimize, and visualize
two compartment models of perfusion kinetics" />
<link href='https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css' rel='stylesheet'>
<link href='https://cdnjs.cloudflare.com/ajax/libs/10up-sanitize.css/8.0.0/sanitize.min.css' rel='stylesheet'>
<link href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/github.min.css" rel="stylesheet">
<style>.flex{display:flex !important}body{line-height:1.5em}#content{padding:20px}#sidebar{padding:30px;overflow:hidden}.http-server-breadcrumbs{font-size:130%;margin:0 0 15px 0}#footer{font-size:.75em;padding:5px 30px;border-top:1px solid #ddd;text-align:right}#footer p{margin:0 0 0 1em;display:inline-block}#footer p:last-child{margin-right:30px}h1,h2,h3,h4,h5{font-weight:300}h1{font-size:2.5em;line-height:1.1em}h2{font-size:1.75em;margin:1em 0 .50em 0}h3{font-size:1.4em;margin:25px 0 10px 0}h4{margin:0;font-size:105%}a{color:#058;text-decoration:none;transition:color .3s ease-in-out}a:hover{color:#e82}.title code{font-weight:bold}h2[id^="header-"]{margin-top:2em}.ident{color:#900}pre code{background:#f8f8f8;font-size:.8em;line-height:1.4em}code{background:#f2f2f1;padding:1px 4px;overflow-wrap:break-word}h1 code{background:transparent}pre{background:#f8f8f8;border:0;border-top:1px solid #ccc;border-bottom:1px solid #ccc;margin:1em 0;padding:1ex}#http-server-module-list{display:flex;flex-flow:column}#http-server-module-list div{display:flex}#http-server-module-list dt{min-width:10%}#http-server-module-list p{margin-top:0}.toc ul,#index{list-style-type:none;margin:0;padding:0}#index code{background:transparent}#index h3{border-bottom:1px solid #ddd}#index ul{padding:0}#index h4{font-weight:bold}#index h4 + ul{margin-bottom:.6em}@media (min-width:200ex){#index .two-column{column-count:2}}@media (min-width:300ex){#index .two-column{column-count:3}}dl{margin-bottom:2em}dl dl:last-child{margin-bottom:4em}dd{margin:0 0 1em 3em}#header-classes + dl > dd{margin-bottom:3em}dd dd{margin-left:2em}dd p{margin:10px 0}.name{background:#eee;font-weight:bold;font-size:.85em;padding:5px 10px;display:inline-block;min-width:40%}.name:hover{background:#e0e0e0}.name > span:first-child{white-space:nowrap}.name.class > span:nth-child(2){margin-left:.4em}.inherited{color:#999;border-left:5px solid #eee;padding-left:1em}.inheritance em{font-style:normal;font-weight:bold}.desc h2{font-weight:400;font-size:1.25em}.desc h3{font-size:1em}.desc dt code{background:inherit}.source summary,.git-link-div{color:#666;text-align:right;font-weight:400;font-size:.8em;text-transform:uppercase}.source summary > *{white-space:nowrap;cursor:pointer}.git-link{color:inherit;margin-left:1em}.source pre{max-height:500px;overflow:auto;margin:0}.source pre code{font-size:12px;overflow:visible}.hlist{list-style:none}.hlist li{display:inline}.hlist li:after{content:',\2002'}.hlist li:last-child:after{content:none}.hlist .hlist{display:inline;padding-left:1em}img{max-width:100%}.admonition{padding:.1em .5em;margin-bottom:1em}.admonition-title{font-weight:bold}.admonition.note,.admonition.info,.admonition.important{background:#aef}.admonition.todo,.admonition.versionadded,.admonition.tip,.admonition.hint{background:#dfd}.admonition.warning,.admonition.versionchanged,.admonition.deprecated{background:#fd4}.admonition.error,.admonition.danger,.admonition.caution{background:lightpink}</style>
<style media="screen and (min-width: 700px)">@media screen and (min-width:700px){#sidebar{width:30%}#content{width:70%;max-width:100ch;padding:3em 4em;border-left:1px solid #ddd}pre code{font-size:1em}.item .name{font-size:1em}main{display:flex;flex-direction:row-reverse;justify-content:flex-end}.toc ul ul,#index ul{padding-left:1.5em}.toc > ul > li{margin-top:.5em}}</style>
<style media="print">@media print{#sidebar h1{page-break-before:always}.source{display:none}}@media print{*{background:transparent !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important}a[href]:after{content:" (" attr(href) ")";font-size:90%}a[href][title]:after{content:none}abbr[title]:after{content:" (" attr(title) ")"}.ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}@page{margin:0.5cm}p,h2,h3{orphans:3;widows:3}h1,h2,h3,h4,h5,h6{page-break-after:avoid}}</style>
</head>
<body>
<main>
<article id="content">
<header>
<h1 class="title">Module <code>pk_gui</code></h1>
</header>
<section id="section-intro">
<p>pk_GUI is a tool to compare, optimize, and visualize
two compartment models of perfusion kinetics</p>
<details class="source">
<summary>
<span>Expand source code</span>
</summary>
<pre><code class="python">#!/usr/bin/env python
# coding: utf-8
"""pk_GUI is a tool to compare, optimize, and visualize
two compartment models of perfusion kinetics"""
### import everything
import glob
import pathlib
import os
import tkinter as tk
from tkinter import Button, Label, ttk, Frame, StringVar, Scale, Grid, Entry, Tk
import numpy as np
import matplotlib.pyplot as plt
from scipy.integrate import solve_ivp
from matplotlib.backends.backend_tkagg import (
FigureCanvasTkAgg, NavigationToolbar2Tk)
# Implement the default Matplotlib key bindings.
from matplotlib.backend_bases import key_press_handler
from matplotlib.figure import Figure
from pk_two_comp import pk_two_comp as pk2c
class StartPage():
"""The StartPage class is the first page of the pk_GUI application.
It has 4 buttons: Compare, Optimize, Visualize, and Exit Application.
Each button will create a new window leading to the specified action.
Exit will exit the whole application.
"""
def __init__(self, root):
"""Initializing the class with tkinter window object root
Parameters
----------
root : tkinter object
The Window which will show the application
Attributes
-----------
optimize_btn : tkinter button
Clicking on the button leads to the optimizer application
compare_btn : tkinter button
Clicking on the button leads to the compare application.
visualize_btn : tkinter button
Clicking on the button leads to the vizualize application.
quitMainWindow : tkinter button
Clicking ont he button closes and exits the application.
"""
self.root = root
self.root.title('PK Optimizer Tool')
# Calculating the center
width = self.root.winfo_reqwidth()
height = self.root.winfo_reqheight()
wids = self.root.winfo_screenwidth()
heights = self.root.winfo_screenheight()
xval = (wids/2) - (width/2)
yval = (heights/2) - (height/2)
self.root.geometry('+%d+%d' % (xval, yval))
# Making buttons
self.label = Label(self.root,
text="Please choose what application you'd like to explore: ",
width=30, wraplength=200)
self.label.grid(column=1, row=0, sticky='nwes')
self.compare_btn = Button(
self.root, text="Compare!", command=self.compare)
self.compare_btn.grid(column=1, row=1, sticky='nwes')
self.optimize_btn = Button(
self.root, text="Optimize!", command=self.optimize)
self.optimize_btn.grid(column=1, row=2, sticky='nwes')
self.visualize_btn = Button(
self.root, text="Visualize!", command=self.visualize)
self.visualize_btn.grid(column=1, row=3, sticky='nwes')
self.quit = Button(
self.root, text="Exit Application", command=self.on_cancel)
self.quit.grid(column=1, row=4, sticky='nwes')
def compare(self):
"""Opens compare function."""
my_gui = PkCompare(self)
def optimize(self):
"""Opens optimizer function."""
my_gui = PkOptimize(self)
def visualize(self):
"""Opens visualize function."""
my_gui = PkVisualize(self)
def on_cancel(self):
"""Exits and closes window"""
self.root.destroy()
class PkOptimize(tk.Toplevel):
"""Initializes the pk_optimize application GUI"""
def __init__(self, parent): # , master_root):
"""Initializes the pk_optimize application GUI
User selects a dataset from the dropdown box.
Pressing the load button will plot the data selected.
Once data is loaded, give your initial guesses for parameter values.
Press Optimize button, and the optimal values will be outputted.
Attributes
-----------
wd : path
Absolute path name to current directory. Defaults to ./Data
filename : string
Name of the data file you'd like to access
time : double[]
list of all timepoints
aorta : double[]
concentration of tracer in aorta (input function)
myo : double[]
concentration of tracer in myocardial tissue (conc_isf)
Flow : double
Flow is the flow of plasma through the blood vessel in mL/(mL*min). Defaults to 1/60.
Vp : double
Vp is the volume of plasma in mL. Defaults to 0.05.
Visf : double
Visf is the volume of interstitial fluid in mL. Defaults to 0.15.
PS : double
PS is the permeability-surface area constant in mL/(g*min). Defaults to 1/60.
ymax : int
Magnitude of Gamma-var peak.
tmax : double
Time of which highest peak in Gamma-var appears
alpha : double
Scale factor
delay : double
Delay to start Gamma-var curve.
"""
super().__init__(name='pk Optimizer tool')
self.parent = parent
# Making mainfraim to center the window to the screen
mainframe = ttk.Frame(self)
#mainframe.grid(column=0, row=0, sticky=(N, W, E, S))
mainframe.columnconfigure(0, weight=1)
mainframe.rowconfigure(0, weight=1)
# Calculating the center
width = 1100
height = 600
wids = self.winfo_screenwidth()
heights = self.winfo_screenheight()
xval = (wids/2) - (width/2)
yval = (heights/2) - (height/2)
self.geometry('+%d+%d' % (xval, yval))
self.pk = pk2c()
self.geometry('1100x600')
self.frame1 = Frame(self)
self.frame2 = Frame(self, padx=10)
self.frame3 = Frame(self)
self.frame4 = Frame(self)
self.frame5 = Frame(self)
self.frame1.grid(column=0, row=1)
self.frame2.grid(column=0, row=0)
self.frame3.grid(column=2, row=1)
self.frame4.grid(column=2, row=0)
self.frame5.grid(column=1, row=0)
if os.path.basename(os.path.normpath(pathlib.Path().absolute())) != 'Data':
os.chdir(pathlib.Path('Data').absolute())
# Get lists of files
self.filenames = glob.glob('*.{}'.format('csv'))
# Combobox creation
self.chosen_file = tk.StringVar()
self.file_combobox = ttk.Combobox(
self.frame5, width=20, textvariable=self.chosen_file)
# Adding combobox drop down list
self.file_combobox['values'] = self.filenames
self.file_combobox.grid(column=0, row=1)
self.file_combobox.current(0)
# Creating blank canvas to plot input function on
self.fig1 = plt.figure(figsize=(4.5, 4.5), dpi=100)
plt.ylabel("Mass of Tracer (mg)")
plt.xlabel("Time (sec)")
self.canvas1 = FigureCanvasTkAgg(self.fig1, master=self.frame2)
self.canvas1.get_tk_widget().grid(row=0, column=0)
self.canvas1.draw()
# Creating blank canvas to plot output function on
self.fig2 = plt.figure(figsize=(4.5, 4.5), dpi=100)
plt.ylabel("Mass of Tracer (mg)")
plt.xlabel("Time (sec)")
self.canvas2 = FigureCanvasTkAgg(self.fig2, master=self.frame4)
self.canvas2.get_tk_widget().grid(row=0, column=0)
self.canvas2.draw()
# Creating a bunch of labels and input boxes for initial guesses for parameters
self.ymax_lbl = Label(self.frame1, text="ymax guess: ")
self.ymax_lbl.grid(column=0, row=0)
self.tmax_lbl = Label(self.frame1, text="tmax guess: ")
self.tmax_lbl.grid(column=0, row=1)
self.alpha_lbl = Label(self.frame1, text="alpha guess: ")
self.alpha_lbl.grid(column=0, row=2)
self.delay_lbl = Label(self.frame1, text="delay guess: ")
self.delay_lbl.grid(column=0, row=3)
self.ymax_input = Entry(self.frame1, width=50)
self.ymax_input.grid(column=1, row=0)
self.tmax_input = Entry(self.frame1, width=50)
self.tmax_input.grid(column=1, row=1)
self.alpha_input = Entry(self.frame1, width=50)
self.alpha_input.grid(column=1, row=2)
self.delay_input = Entry(self.frame1, width=50)
self.delay_input.grid(column=1, row=3)
self.ymax_opt_lbl = Label(self.frame1)
self.ymax_opt_lbl.grid(column=2, row=0)
self.tmax_opt_lbl = Label(self.frame1)
self.tmax_opt_lbl.grid(column=2, row=1)
self.alpha_opt_lbl = Label(self.frame1)
self.alpha_opt_lbl.grid(column=2, row=2)
self.delay_opt_lbl = Label(self.frame1)
self.delay_opt_lbl.grid(column=2, row=3)
self.flow_lbl = Label(self.frame3, text="flow guess: ")
self.flow_lbl.grid(column=0, row=0)
self.visf_lbl = Label(self.frame3, text="visf guess: ")
self.visf_lbl.grid(column=0, row=1)
self.baseline_lbl = Label(self.frame3, text="baseline guess: ")
self.baseline_lbl.grid(column=0, row=2)
self.flow_input = Entry(self.frame3, width=50)
self.flow_input.grid(column=1, row=0)
self.visf_input = Entry(self.frame3, width=50)
self.visf_input.grid(column=1, row=1)
self.baseline_input = Entry(self.frame3, width=50)
self.baseline_input.grid(column=1, row=2)
self.flow_opt_lbl = Label(self.frame3)
self.flow_opt_lbl.grid(column=2, row=0)
self.visf_opt_lbl = Label(self.frame3)
self.visf_opt_lbl.grid(column=2, row=1)
self.baseline_opt_lbl = Label(self.frame3)
self.baseline_opt_lbl.grid(column=2, row=2)
# Creating buttons to load data and perform optimization
self.load_btn_text = tk.StringVar()
self.load_btn = Button(
master=self.frame5, textvariable=self.load_btn_text, command=self.load_data)
self.load_btn_text.set("Load")
self.load_btn.grid(column=0, row=2)
self.opt_btn_text = tk.StringVar()
self.opt_btn = Button(
master=self.frame5, textvariable=self.opt_btn_text, command=self.perform_opt)
self.opt_btn_text.set("Perform Optimization")
self.opt_btn.grid(column=0, row=3)
# Creating button to go back to main page
self.back_btn = Button(
master=self.frame5, text="Go Back", command=self.go_back)
self.back_btn.grid(column=0, row=4)
# #-------------------------------------------------------------
# #-------------------------------------------------------------
# #-------------------------------------------------------------
def load_data(self):
"""Loads in the data selected in the combobox."""
file = self.file_combobox.get()
self.pk.get_data(file)
self.fig1.add_subplot(111).plot(self.pk.time, self.pk.aorta, 'bo')
plt.ylabel("Mass of Tracer (mg)")
plt.xlabel("Time (sec)")
self.fig1.canvas.draw()
self.fig2.add_subplot(111).plot(self.pk.time, self.pk.myo, 'ro')
plt.ylabel("Mass of Tracer (mg)")
plt.xlabel("Time (sec)")
self.canvas2.draw_idle()
def perform_opt(self):
"""Performs the optimization using the values taken from input boxes as inital guesses."""
# Performs function fitting, outputs optimized parameters in opt
opt = self.pk.inputFuncFit([self.ymax_input.get(), self.tmax_input.get(),
self.alpha_input.get(), self.delay_input.get()])
# Shows opt in new labels
self.ymax_opt_lbl.configure(text=opt[0])
self.tmax_opt_lbl.configure(text=opt[1])
self.alpha_opt_lbl.configure(text=opt[2])
self.delay_opt_lbl.configure(text=opt[3])
# Plots fitted gamma_var curve
self.fig1.add_subplot(111).plot(np.arange(0, 25, 0.01),
self.pk.gamma_var(np.arange(0, 25, 0.01),
opt[0], opt[1], opt[2], opt[3]), 'k-')
self.canvas1.draw_idle()
# Performs function fitting, outputs optimized parameters in opt
opt = self.pk.outputFuncFit([self.flow_input.get(),
self.visf_input.get(), self.baseline_input.get()])
# Shows opt in new labels
self.flow_opt_lbl.configure(text=opt[0])
self.visf_opt_lbl.configure(text=opt[1])
self.baseline_opt_lbl.configure(text=opt[2])
# Plots fitted gamma_var curve
deriv_sol = solve_ivp(self.pk.derivs, [0, 30],
[0, 0], t_eval=self.pk.time)
fit_myo = deriv_sol.y[0] + deriv_sol.y[1]
self.fig2.add_subplot(111).plot(self.pk.time, fit_myo + opt[2], 'm-')
self.canvas2.draw_idle()
def go_back(self):
"""Closes the optimize application and leads you to the start page"""
self.destroy()
class PkCompare(tk.Toplevel):
"""Initializes the pkCompare application GUI"""
def __init__(self, parent): # , master_root):
"""Initializes the pk_compare application GUI
User can select a dataset from the dropdown menu and plot it.
Plotting multiple datasets will overlay them.
Navigation bar is provided to zoom in/out of the plot.
"""
super().__init__(name='pk Optimizer tool')
self.parent = parent
self.legend = []
# Making mainfraim to center the window to the screen
mainframe = ttk.Frame(self)
#mainframe.grid(column=0, row=0, sticky=(N, W, E, S))
mainframe.columnconfigure(0, weight=1)
mainframe.rowconfigure(0, weight=1)
width = 1100
height = 500
wids = self.winfo_screenwidth()
heights = self.winfo_screenheight()
xval = (wids/2) - (width/2)
yval = (heights/2) - (height/2)
self.geometry('+%d+%d' % (xval, yval))
self.pk = pk2c()
self.geometry('1100x500')
self.frame1 = Frame(self)
self.frame2 = Frame(self, padx=10)
self.frame3 = Frame(self)
self.frame4 = Frame(self)
self.frame5 = Frame(self)
self.frame6 = Frame(self)
self.frame7 = Frame(self)
self.frame1.grid(column=0, row=2)
self.frame2.grid(column=0, row=1)
self.frame3.grid(column=2, row=2)
self.frame4.grid(column=2, row=1)
self.frame5.grid(column=1, row=1)
self.frame6.grid(column=0, row=0)
self.frame7.grid(column=2, row=0)
if os.path.basename(os.path.normpath(pathlib.Path().absolute())) != 'Data':
os.chdir(pathlib.Path('Data').absolute())
# Get lists of files
self.filenames = glob.glob('*.{}'.format('csv'))
# Combobox creation
self.chosen_file = tk.StringVar()
self.file_combobox = ttk.Combobox(
self.frame5, width=20, textvariable=self.chosen_file)
# Adding combobox drop down list
self.file_combobox['values'] = self.filenames
self.file_combobox.grid(column=0, row=1)
self.file_combobox.current(0)
# Creating blank canvas to plot input function on
self.fig1 = plt.figure(figsize=(4.5, 4.5), dpi=100)
plt.ylabel("Mass of Tracer (mg)")
plt.xlabel("Time (sec)")
self.canvas1 = FigureCanvasTkAgg(self.fig1, master=self.frame2)
self.canvas1.get_tk_widget().grid(row=0, column=0)
self.canvas1.draw()
toolbar = NavigationToolbar2Tk(self.canvas1, self.frame6)
toolbar.update()
# Creating blank canvas to plot output function on
self.fig2 = plt.figure(figsize=(4.5, 4.5), dpi=100)
plt.ylabel("Mass of Tracer (mg)")
plt.xlabel("Time (sec)")
self.canvas2 = FigureCanvasTkAgg(self.fig2, master=self.frame4)
self.canvas2.get_tk_widget().grid(row=0, column=0)
self.canvas2.draw()
toolbar = NavigationToolbar2Tk(self.canvas2, self.frame7)
toolbar.update()
# Creating buttons to load data and perform optimization
self.load_btn_text = tk.StringVar()
self.load_btn = Button(
master=self.frame5, textvariable=self.load_btn_text, command=self.load_data)
self.load_btn_text.set("Load")
self.load_btn.grid(column=0, row=2)
# Creating button to go back to main page
self.back_btn = Button(
master=self.frame5, text="Go Back", command=self.go_back)
self.back_btn.grid(column=0, row=4)
# #-------------------------------------------------------------
# #-------------------------------------------------------------
# #-------------------------------------------------------------
def load_data(self):
"""Loads in the data selected in the combobox."""
file = self.file_combobox.get()
self.legend.append(file)
self.pk.time = []
self.pk.aorta = []
self.pk.myo = []
self.pk.get_data(file)
self.fig1.add_subplot(111).plot(self.pk.time, self.pk.aorta)
plt.ylabel("Mass of Tracer (mg)")
plt.xlabel("Time (sec)")
self.fig1.canvas.draw()
self.fig2.add_subplot(111).plot(self.pk.time, self.pk.myo)
plt.ylabel("Mass of Tracer (mg)")
plt.xlabel("Time (sec)")
self.canvas2.draw_idle()
plt.legend(self.legend)
def go_back(self):
"""Exits the compare window and goes back to the start page."""
self.destroy()
# ====================================================================
class PkVisualize(tk.Toplevel):
"""Initializes the pkVisualize application GUI"""
def __init__(self, parent): # , master_root):
"""Initializes the pk_visualize application GUI
User can select a dataset from the dropdown menu and load it.
Plotting multiple datasets will overlay them.
Navigation bar is provided to zoom in/out of the plot.
Using the sliders to change parameter values will result in different
Cin and Cout curves. You must hit plot after every change to see it.
"""
super().__init__(name='pk Optimizer tool')
self.parent = parent
# Making mainfraim to center the window to the screen
mainframe = ttk.Frame(self)
mainframe.columnconfigure(0, weight=1)
mainframe.rowconfigure(0, weight=1)
# Calculating the center
width = 1280
height = 500
wids = self.winfo_screenwidth()
heights = self.winfo_screenheight()
xval = (wids/2) - (width/2)
yval = (heights/2) - (height/2)
self.geometry('+%d+%d' % (xval, yval))
self.pk = pk2c()
self.geometry('1280x500')
self.frame1 = Frame(self)
self.frame2 = Frame(self)
self.frame3 = Frame(self)
self.frame4 = Frame(self)
self.frame5 = Frame(self)
self.frame1.grid(column=1, row=0)
self.frame2.grid(column=1, row=1)
self.frame3.grid(column=2, row=1)
self.frame4.grid(column=3, row=0)
self.frame5.grid(column=3, row=1)
if os.path.basename(os.path.normpath(pathlib.Path().absolute())) != 'Data':
os.chdir(pathlib.Path('Data').absolute())
# Get lists of files
self.filenames = glob.glob('*.{}'.format('csv'))
# Combobox creation
self.chosen_file = tk.StringVar()
self.file_combobox = ttk.Combobox(
self.frame3, width=20, textvariable=self.chosen_file)
# Adding combobox drop down list
self.file_combobox['values'] = self.filenames
self.file_combobox.grid(column=1, row=0)
self.file_combobox.current(0)
# Creating blank canvas to plot input function on
self.fig1 = plt.figure(figsize=(4.5, 4.5), dpi=100)
plt.ylabel("Mass of Tracer (mg)")
plt.xlabel("Time (sec)")
# Creating blank canvas to plot output function on
self.fig2 = plt.figure(figsize=(4.5, 4.5), dpi=100)
plt.ylabel("Mass of Tracer (mg)")
plt.xlabel("Time (sec)")
self.canvas1 = FigureCanvasTkAgg(self.fig1, master=self.frame2)
self.canvas1.get_tk_widget().grid(row=0, column=0)
self.canvas1.draw()
toolbar = NavigationToolbar2Tk(self.canvas1, self.frame1)
toolbar.update()
self.canvas2 = FigureCanvasTkAgg(self.fig2, master=self.frame5)
self.canvas2.get_tk_widget().grid(row=0, column=0)
self.canvas2.draw()
toolbar = NavigationToolbar2Tk(self.canvas2, self.frame4)
toolbar.update()
# Creating a bunch of labels and input boxes for initial guesses for parameters
self.ymax_lbl = Label(self.frame3, text="ymax: ")
self.ymax_lbl.grid(column=0, row=1)
self.tmax_lbl = Label(self.frame3, text="tmax: ")
self.tmax_lbl.grid(column=0, row=2)
self.alpha_lbl = Label(self.frame3, text="alpha: ")
self.alpha_lbl.grid(column=0, row=3)
self.delay_lbl = Label(self.frame3, text="delay: ")
self.delay_lbl.grid(column=0, row=4)
self.ymax_slider = Scale(
self.frame3, from_=10, to=500, orient='horizontal', length=250, resolution=1)
self.ymax_slider.set(250)
self.ymax_slider.grid(column=1, row=1)
self.tmax_slider = Scale(
self.frame3, from_=0.0, to=20, orient='horizontal', length=250, resolution=0.5)
self.tmax_slider.set(6)
self.tmax_slider.grid(column=1, row=2)
self.alpha_slider = Scale(
self.frame3, from_=0, to=10, orient='horizontal', length=250, resolution=0.25)
self.alpha_slider.set(2)
self.alpha_slider.grid(column=1, row=3)
self.delay_slider = Scale(
self.frame3, from_=0, to=10, orient='horizontal', length=250, resolution=1)
self.delay_slider.set(0)
self.delay_slider.grid(column=1, row=4)
self.flow_lbl = Label(self.frame3, text="flow:")
self.flow_lbl.grid(column=0, row=6)
self.visf_lbl = Label(self.frame3, text="visf:")
self.visf_lbl.grid(column=0, row=7)
self.baseline_lbl = Label(self.frame3, text="baseline: ")
self.baseline_lbl.grid(column=0, row=8)
self.flow_slider = Scale(
self.frame3, from_=0, to=.1, orient='horizontal', length=250, resolution=0.0025)
self.flow_slider.set(0.03)
self.flow_slider.grid(column=1, row=6)
self.visf_slider = Scale(
self.frame3, from_=0, to=10, length=250, orient='horizontal', resolution=0.1)
self.visf_slider.set(2)
self.visf_slider.grid(column=1, row=7)
self.baseline_slider = Scale(
self.frame3, from_=20, to=80, length=250, orient='horizontal', resolution=1)
self.baseline_slider.set(50)
self.baseline_slider.grid(column=1, row=8)
# Creating buttons to load data and perform optimization
self.load_btn_text = tk.StringVar()
self.load_btn = Button(
master=self.frame3, textvariable=self.load_btn_text, command=self.load_data, padx=15)
self.load_btn_text.set("Load")
self.load_btn.grid(column=2, row=0)
self.opt_btn_text = tk.StringVar()
self.opt_btn = Button(
master=self.frame3, textvariable=self.opt_btn_text, command=self.plot)
self.opt_btn_text.set("Plot")
self.opt_btn.grid(column=2, row=3)
# Creating button to go back to main page
self.back_btn = Button(
master=self.frame3, text="Go Back", command=self.go_back)
self.back_btn.grid(column=1, row=9)
# #-------------------------------------------------------------
# #-------------------------------------------------------------
# #-------------------------------------------------------------
def plot(self):
"""Plots Cin and Cout curve using parameters given from sliders."""
file = self.file_combobox.get()
self.pk.get_data(file)
self.pk.ymax = self.ymax_slider.get()
self.pk.tmax = self.tmax_slider.get()
self.pk.alpha = self.alpha_slider.get()
self.pk.delay = self.delay_slider.get()
self.fig1.add_subplot(111).plot(np.arange(0, 25, 0.01),
self.pk.gamma_var(np.arange(0, 25, 0.01),
self.ymax_slider.get(),
self.tmax_slider.get(),
self.alpha_slider.get(),
self.delay_slider.get()), 'k-')
self.fig1.canvas.draw()
self.pk.flow = self.flow_slider.get()
self.pk.visf = self.visf_slider.get()
self.pk.baseline = self.baseline_slider.get()
# Plots fitted gamma_var curve
deriv_sol = solve_ivp(self.pk.derivs, [0, 30],
[0, 0], t_eval=self.pk.time)
fit_myo = deriv_sol.y[0] + deriv_sol.y[1]
self.fig2.add_subplot(111).plot(
self.pk.time, fit_myo + self.pk.baseline, 'm-')
self.canvas2.draw_idle()
def load_data(self):
"""Loads in the data selected in the combobox."""
file = self.file_combobox.get()
self.pk.get_data(file)
self.fig1.add_subplot(111).plot(self.pk.time, self.pk.aorta, 'bo')
plt.ylabel("Mass of Tracer (mg)")
plt.xlabel("Time (sec)")
self.fig1.canvas.draw()
self.fig2.add_subplot(111).plot(self.pk.time, self.pk.myo, 'ro')
plt.ylabel("Mass of Tracer (mg)")
plt.xlabel("Time (sec)")
self.canvas2.draw_idle()
def go_back(self):
"""Exits the compare window and goes back to the start page."""
self.destroy()
# =================================================================================================
if __name__ == "__main__":
MainWindow = Tk()
gui = StartPage(MainWindow)
MainWindow.mainloop()
# In[ ]:</code></pre>
</details>
</section>
<section>
</section>
<section>
</section>
<section>
</section>
<section>
<h2 class="section-title" id="header-classes">Classes</h2>
<dl>
<dt id="pk_gui.PkCompare"><code class="flex name class">
<span>class <span class="ident">PkCompare</span></span>
<span>(</span><span>parent)</span>
</code></dt>
<dd>
<section class="desc"><p>Initializes the pkCompare application GUI</p>
<p>Initializes the pk_compare application GUI
User can select a dataset from the dropdown menu and plot it.
Plotting multiple datasets will overlay them.
Navigation bar is provided to zoom in/out of the plot.</p></section>
<details class="source">
<summary>
<span>Expand source code</span>
</summary>
<pre><code class="python">class PkCompare(tk.Toplevel):
"""Initializes the pkCompare application GUI"""
def __init__(self, parent): # , master_root):
"""Initializes the pk_compare application GUI
User can select a dataset from the dropdown menu and plot it.
Plotting multiple datasets will overlay them.
Navigation bar is provided to zoom in/out of the plot.
"""
super().__init__(name='pk Optimizer tool')
self.parent = parent
self.legend = []
# Making mainfraim to center the window to the screen
mainframe = ttk.Frame(self)
#mainframe.grid(column=0, row=0, sticky=(N, W, E, S))
mainframe.columnconfigure(0, weight=1)
mainframe.rowconfigure(0, weight=1)
width = 1100
height = 500
wids = self.winfo_screenwidth()
heights = self.winfo_screenheight()
xval = (wids/2) - (width/2)
yval = (heights/2) - (height/2)
self.geometry('+%d+%d' % (xval, yval))
self.pk = pk2c()
self.geometry('1100x500')
self.frame1 = Frame(self)
self.frame2 = Frame(self, padx=10)
self.frame3 = Frame(self)
self.frame4 = Frame(self)
self.frame5 = Frame(self)
self.frame6 = Frame(self)
self.frame7 = Frame(self)
self.frame1.grid(column=0, row=2)
self.frame2.grid(column=0, row=1)
self.frame3.grid(column=2, row=2)
self.frame4.grid(column=2, row=1)
self.frame5.grid(column=1, row=1)
self.frame6.grid(column=0, row=0)
self.frame7.grid(column=2, row=0)
if os.path.basename(os.path.normpath(pathlib.Path().absolute())) != 'Data':
os.chdir(pathlib.Path('Data').absolute())
# Get lists of files
self.filenames = glob.glob('*.{}'.format('csv'))
# Combobox creation
self.chosen_file = tk.StringVar()
self.file_combobox = ttk.Combobox(
self.frame5, width=20, textvariable=self.chosen_file)
# Adding combobox drop down list
self.file_combobox['values'] = self.filenames
self.file_combobox.grid(column=0, row=1)
self.file_combobox.current(0)
# Creating blank canvas to plot input function on
self.fig1 = plt.figure(figsize=(4.5, 4.5), dpi=100)
plt.ylabel("Mass of Tracer (mg)")
plt.xlabel("Time (sec)")
self.canvas1 = FigureCanvasTkAgg(self.fig1, master=self.frame2)
self.canvas1.get_tk_widget().grid(row=0, column=0)
self.canvas1.draw()
toolbar = NavigationToolbar2Tk(self.canvas1, self.frame6)
toolbar.update()
# Creating blank canvas to plot output function on
self.fig2 = plt.figure(figsize=(4.5, 4.5), dpi=100)
plt.ylabel("Mass of Tracer (mg)")
plt.xlabel("Time (sec)")
self.canvas2 = FigureCanvasTkAgg(self.fig2, master=self.frame4)
self.canvas2.get_tk_widget().grid(row=0, column=0)
self.canvas2.draw()
toolbar = NavigationToolbar2Tk(self.canvas2, self.frame7)
toolbar.update()
# Creating buttons to load data and perform optimization
self.load_btn_text = tk.StringVar()
self.load_btn = Button(
master=self.frame5, textvariable=self.load_btn_text, command=self.load_data)
self.load_btn_text.set("Load")
self.load_btn.grid(column=0, row=2)
# Creating button to go back to main page
self.back_btn = Button(
master=self.frame5, text="Go Back", command=self.go_back)
self.back_btn.grid(column=0, row=4)
# #-------------------------------------------------------------
# #-------------------------------------------------------------
# #-------------------------------------------------------------
def load_data(self):
"""Loads in the data selected in the combobox."""
file = self.file_combobox.get()
self.legend.append(file)
self.pk.time = []
self.pk.aorta = []
self.pk.myo = []
self.pk.get_data(file)
self.fig1.add_subplot(111).plot(self.pk.time, self.pk.aorta)
plt.ylabel("Mass of Tracer (mg)")
plt.xlabel("Time (sec)")
self.fig1.canvas.draw()
self.fig2.add_subplot(111).plot(self.pk.time, self.pk.myo)
plt.ylabel("Mass of Tracer (mg)")
plt.xlabel("Time (sec)")
self.canvas2.draw_idle()
plt.legend(self.legend)
def go_back(self):
"""Exits the compare window and goes back to the start page."""
self.destroy()</code></pre>
</details>
<h3>Ancestors</h3>
<ul class="hlist">
<li>tkinter.Toplevel</li>
<li>tkinter.BaseWidget</li>
<li>tkinter.Misc</li>
<li>tkinter.Wm</li>
</ul>
<h3>Methods</h3>
<dl>
<dt id="pk_gui.PkCompare.go_back"><code class="name flex">
<span>def <span class="ident">go_back</span></span>(<span>self)</span>
</code></dt>
<dd>
<section class="desc"><p>Exits the compare window and goes back to the start page.</p></section>
<details class="source">
<summary>
<span>Expand source code</span>
</summary>
<pre><code class="python">def go_back(self):
"""Exits the compare window and goes back to the start page."""
self.destroy()</code></pre>
</details>
</dd>
<dt id="pk_gui.PkCompare.load_data"><code class="name flex">
<span>def <span class="ident">load_data</span></span>(<span>self)</span>
</code></dt>
<dd>
<section class="desc"><p>Loads in the data selected in the combobox.</p></section>
<details class="source">
<summary>
<span>Expand source code</span>
</summary>
<pre><code class="python">def load_data(self):
"""Loads in the data selected in the combobox."""
file = self.file_combobox.get()
self.legend.append(file)
self.pk.time = []
self.pk.aorta = []
self.pk.myo = []
self.pk.get_data(file)
self.fig1.add_subplot(111).plot(self.pk.time, self.pk.aorta)
plt.ylabel("Mass of Tracer (mg)")
plt.xlabel("Time (sec)")
self.fig1.canvas.draw()
self.fig2.add_subplot(111).plot(self.pk.time, self.pk.myo)
plt.ylabel("Mass of Tracer (mg)")
plt.xlabel("Time (sec)")
self.canvas2.draw_idle()
plt.legend(self.legend)</code></pre>
</details>
</dd>
</dl>
</dd>
<dt id="pk_gui.PkOptimize"><code class="flex name class">
<span>class <span class="ident">PkOptimize</span></span>
<span>(</span><span>parent)</span>
</code></dt>
<dd>
<section class="desc"><p>Initializes the pk_optimize application GUI</p>
<p>Initializes the pk_optimize application GUI
User selects a dataset from the dropdown box.
Pressing the load button will plot the data selected.
Once data is loaded, give your initial guesses for parameter values.
Press Optimize button, and the optimal values will be outputted.</p>
<h2 id="attributes">Attributes</h2>
<dl>
<dt><strong><code>wd</code></strong> : <code>path</code></dt>
<dd>Absolute path name to current directory. Defaults to ./Data</dd>
<dt><strong><code>filename</code></strong> : <code>string</code></dt>
<dd>Name of the data file you'd like to access</dd>
<dt><strong><code>time</code></strong> : <code>double</code>[]</dt>
<dd>list of all timepoints</dd>
<dt><strong><code>aorta</code></strong> : <code>double</code>[]</dt>
<dd>concentration of tracer in aorta (input function)</dd>
<dt><strong><code>myo</code></strong> : <code>double</code>[]</dt>
<dd>concentration of tracer in myocardial tissue (conc_isf)</dd>
<dt><strong><code>Flow</code></strong> : <code>double</code></dt>
<dd>Flow is the flow of plasma through the blood vessel in mL/(mL*min). Defaults to 1/60.</dd>
<dt><strong><code>Vp</code></strong> : <code>double</code></dt>
<dd>Vp is the volume of plasma in mL. Defaults to 0.05.</dd>
<dt><strong><code>Visf</code></strong> : <code>double</code></dt>
<dd>Visf is the volume of interstitial fluid in mL. Defaults to 0.15.</dd>
<dt><strong><code>PS</code></strong> : <code>double</code></dt>
<dd>PS is the permeability-surface area constant in mL/(g*min). Defaults to 1/60.</dd>
<dt><strong><code>ymax</code></strong> : <code>int</code></dt>
<dd>Magnitude of Gamma-var peak.</dd>
<dt><strong><code>tmax</code></strong> : <code>double</code></dt>
<dd>Time of which highest peak in Gamma-var appears</dd>
<dt><strong><code>alpha</code></strong> : <code>double</code></dt>
<dd>Scale factor</dd>
<dt><strong><code>delay</code></strong> : <code>double</code></dt>
<dd>Delay to start Gamma-var curve.</dd>
</dl></section>
<details class="source">
<summary>
<span>Expand source code</span>
</summary>
<pre><code class="python">class PkOptimize(tk.Toplevel):
"""Initializes the pk_optimize application GUI"""
def __init__(self, parent): # , master_root):
"""Initializes the pk_optimize application GUI
User selects a dataset from the dropdown box.
Pressing the load button will plot the data selected.
Once data is loaded, give your initial guesses for parameter values.
Press Optimize button, and the optimal values will be outputted.
Attributes
-----------
wd : path
Absolute path name to current directory. Defaults to ./Data
filename : string
Name of the data file you'd like to access
time : double[]
list of all timepoints
aorta : double[]
concentration of tracer in aorta (input function)
myo : double[]
concentration of tracer in myocardial tissue (conc_isf)
Flow : double
Flow is the flow of plasma through the blood vessel in mL/(mL*min). Defaults to 1/60.
Vp : double
Vp is the volume of plasma in mL. Defaults to 0.05.
Visf : double
Visf is the volume of interstitial fluid in mL. Defaults to 0.15.
PS : double
PS is the permeability-surface area constant in mL/(g*min). Defaults to 1/60.
ymax : int
Magnitude of Gamma-var peak.
tmax : double
Time of which highest peak in Gamma-var appears
alpha : double
Scale factor
delay : double
Delay to start Gamma-var curve.
"""
super().__init__(name='pk Optimizer tool')
self.parent = parent
# Making mainfraim to center the window to the screen
mainframe = ttk.Frame(self)
#mainframe.grid(column=0, row=0, sticky=(N, W, E, S))
mainframe.columnconfigure(0, weight=1)
mainframe.rowconfigure(0, weight=1)
# Calculating the center
width = 1100
height = 600
wids = self.winfo_screenwidth()
heights = self.winfo_screenheight()
xval = (wids/2) - (width/2)
yval = (heights/2) - (height/2)
self.geometry('+%d+%d' % (xval, yval))
self.pk = pk2c()
self.geometry('1100x600')
self.frame1 = Frame(self)
self.frame2 = Frame(self, padx=10)
self.frame3 = Frame(self)
self.frame4 = Frame(self)
self.frame5 = Frame(self)
self.frame1.grid(column=0, row=1)
self.frame2.grid(column=0, row=0)
self.frame3.grid(column=2, row=1)
self.frame4.grid(column=2, row=0)
self.frame5.grid(column=1, row=0)