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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
|
/* Javascript for OpenPCR
*
* http://openpcr.org
* Copyright (c) 2011 OpenPCR
*/
/*
* This code is generally broken up into 3 sections, each having to do with the 3 main pages of the OpenPCR interface
* 1. Home screen + initialization
* 2. Form screen, entering the PCR protocol
* 3. Running screen, displaying live information from OpenPCR
* Extra. Buttons
*/
/**************
* Home screen*
***************/
// declare the appUpdater variable
var appUpdater;
/* init()
* Called when the app is loaded.
* Checks to see if OpenPCR is plugged in (gets the device path if it is) and checks to see if there is an Air update available
*/
function init()
{
// get the location of OpenPCR (can be null)
var deviceLocation = pluggedIn();
// if OpenPCR is plugged in
if (deviceLocation != null)
{
// get the path for OpenPCR
var devicePath = new air.File();
devicePath.nativePath = deviceLocation;
// store the path to a window variable for later use
window.path = devicePath;
running(window.path);
}
// Application Updater code
setApplicationNameAndVersion();
appUpdater = new air.ApplicationUpdaterUI();
// App updater config file
appUpdater.configurationFile = new air.File("app:/config/update-config.xml");
appUpdater.addEventListener(air.ErrorEvent.ERROR, onError);
appUpdater.initialize();
// Display the list of Saved Experiments on the home page
listExperiments();
// get ready to validate the OpenPCR form
$("#pcrForm").validate();
}
/* listExperiments()
* Updates the list of Saved Experiments on the home page.
* Grabs all the files in the Experiments folder and lists them alphabetically
*
*/
function listExperiments()
{
// Start a drop down menu
presetsHTML = "<select id='dropdown'>";
// look for "Experiments" directory
searchDir = air.File.applicationStorageDirectory.resolvePath("Experiments");
// create the "Experiments" directory if one doesn't exist already
searchDir.createDirectory();
// get a list of all files in the folder
window.experimentList = searchDir.getDirectoryListing();
// Loop through and add each filename as "option" values for the drop down
var presetsList = "";
for (var f = 0; f < window.experimentList.length; f++)
{
if (window.experimentList[f].isDirectory) {
// if the file is a directory, don't add it to the list
if (window.experimentList[f].name !="." && window.experimentList[f].name !="..") {}
} else {
// get the filename
fileName = window.experimentList[f].name;
// take off the .pcr extension
var experimentName = fileName.substring(0, fileName.indexOf('.pcr'));
// if the file was type .pcr, add the filename as an option for the drop down
if (fileName.length != experimentName.length && experimentName != "")
{
presetsHTML += '<option value="' + f + '">' + experimentName + "</option>";
}
}
}
// if blank, add a "No Saved Experiments" item
if (presetsHTML == "<select id='dropdown'>")
{
presetsHTML += '<option value=1>-none-</option>';
}
// close the drop down HTML tags
presetsHTML += "</select>";
// update the HTML on the page
$("#reRun").html(presetsHTML);
}
/* listSubmit()
* Loads the selected experiment in the list on the home page
*/
function listSubmit()
{
// what is selected in the drop down menu?
experimentID = $("#dropdown").val();
// load the selected experiment
loadExperiment(experimentID);
}
/* pluggedIn()
* Checks that a volume named "OpenPCR" is mounted on the computer
* Sets up 2 listeners (MOUNT and UNMOUNT) and then checks to see if OpenPCR is already mounted
* Returns: deviceLocation (null if not plugged in)
*/
function pluggedIn()
{
var volInfo = air.StorageVolumeInfo.storageVolumeInfo;
// wait for a USB device to be plugged in
volInfo.addEventListener(air.StorageVolumeChangeEvent.STORAGE_VOLUME_MOUNT, function(e)
{
// if the name is OpenPCR, then set the window variable pluggedIn to "true". otherwise do nothing
//alert(e.storageVolume.name);
var pattern = /OPENPCR/;
// if the nativePath contains "OpenPCR"
if (pattern.test(e.rootDirectory.nativePath) || pattern.test(e.storageVolume.name))
{
// re-set the path to OpenPCR
// hack alert! windows doesn't keep good track of the device path, so storing the drive name (i.e. E:) just in case
window.mountDirectory = e.rootDirectory.nativePath;
var deviceLocation = e.rootDirectory.nativePath;
var devicePath = new air.File();
devicePath.nativePath = deviceLocation;
// store the path to a window variable for later use
window.path = devicePath;
//window.path=deviceLocation.nativePath;
// update the UI
if($("#Unplugged").is(':visible'))
{
// if the "Unplugged" button is visible, switch it to "Start"
$("#Unplugged").hide();
$("#Start").show();
}
// and next time we check the status, make sure it shows plugged in
window.pluggedIn=true;
// and, set the running page to be normal
$("#runningUnplugged").hide();
$("#runningPluggedIn").show();
}
else
{
// otherwise it isn't OpenPCR that was plugged in
}
});
// wait for a USB device to be unplugged
volInfo.addEventListener(air.StorageVolumeChangeEvent.STORAGE_VOLUME_UNMOUNT, function(e)
{
// air doesn't store the name of what was unplugged, so does the nativePath match OpenPCR?
nativePath = e.rootDirectory.nativePath;
// if the device unplugged contained "OpenPCR"
var pattern = /OPENPCR/;
if (pattern.test(nativePath) || nativePath == window.mountDirectory)
{
if($("#Start").is(':visible'))
{
// if the "Start" button is visible, hide it and show "Unplugged" instead
$("#Start").hide();
$("#Unplugged").show();
}
// and next time we check the status, make sure it shows unplugged
window.pluggedIn=false;
// and, change the running screen to tell the user OpenPCR is unplugged
$("#runningUnplugged").show();
$("#runningPluggedIn").hide();
}
else
{
// otherwise it isn't OpenPCR that was unplugged
}
});
// Get a list of the current Volumes mounted on the computer
var volumesList = air.StorageVolumeInfo.storageVolumeInfo.getStorageVolumes();
// look in the list for a Volume named "OpenPCR"
var pattern = /OPENPCR/;
for (var i = 0; i < volumesList.length; i++)
{
var directory = volumesList[i].rootDirectory.nativePath;
if (pattern.test(volumesList[i].name))
{
var deviceLocation = directory;
window.mountDirectory = directory;
alert(directory);
}
}
// if device is not plugged in...
if (deviceLocation == null)
{
window.pluggedIn=false;
// and put a message over the Running screen
}
// otherwise, make sure the "Start" button is correclty displayed and the Running screen is correctly displayed
else
{
window.pluggedIn=true;
}
return deviceLocation;
}
/* loadExperiment();
* loads the experiment with the given experimentID
*/
function loadExperiment(experimentID)
{
// Now we've made all the modifications needed, display the Form page
sp2.showPanel(1);
// clear the experiment form
clearForm();
// given an experiment ID, get the path for that ID
experimentPath = window.experimentList[experimentID];
// if the experiment id doesn't exist, exit and do nothing (why would this happen?)
if (experimentPath == null) { return 0; }
// read in the file
experimentJSON = JSON.parse(readFile(experimentPath));
// loads filen into the Form and moves onto Form page
experimentToHTML(experimentJSON);
// update the buttons to make sure everything is ready to re-run an experiment
reRunButtons();
}
/* newExperiment()
* This function is called when the "New Experiment" button is clicked on the Home page
* This function brings up a blank experiment
*/
function newExperiment()
{
// clear the experiment form
clearForm();
// set up the blank experiment
var experimentJSON =
{
"name": "New Experiment",
"steps": [
{ "type": "cycle",
"count": "",
"steps" : [
{ "type": "step",
"name": "Denaturing",
"time": "",
"temp": ""
},
{ "type": "step",
"name": "Annealing",
"time": "",
"temp": ""
},
{ "type": "step",
"name": "Extending",
"time": "",
"temp": ""
}
]
},
{ "type": "step",
"name": "Final Hold",
"temp": "4",
"time": 0
}
],
"lidtemp": 110
};
experimentToHTML(experimentJSON);
// set interface to have the right buttons
newExperimentButtons();
// Now we've made all the modifications needed, display the Form page
sp2.showPanel(1);
}
/**************
* Form screen*
***************/
/* startOrUnplugged(display)
* Determines whether to display the "Start" or "Unplugged" button on the Form page.
* Input: CSS display status of the button
* Returns: nothing
*/
function startOrUnplugged(display)
{
//pick the Start or Unplugged button based on whether the device is plugged in or not
// if plugged in then
if (window.pluggedIn==true)
{
// then we definitely want to hide the "Unplugged" button
$("#Unplugged").hide();
// and maybe want to show/hide the "Start" button, whatever was submitted as the "display" var
$("#Start").css("display", display)
// and, change the running screen to plugged in
$("#runningUnplugged").hide();
$("#runningPluggedIn").show();
}
else
{
// else, device is unplugged
// then we definitely want to hide the "Start" button
$("#Start").hide();
// and maybe want to show/hide the "Unplugged" button, whatever was submitted as the "display" var
$("#Unplugged").css("display", display)
// change the running screen to unplugged
$("#runningUnplugged").show();
$("#runningPluggedIn").hide();
}
}
/* reRunButtons()
* puts Form buttons in the state they should be immediately following loading an experiment
*/
function reRunButtons()
{
// Hide the Delete button
$('#deleteButton').hide();
// Start with the edit button shown
$("#editButton").show();
// Start with the edit buttons hidden
$(".edit").hide();
// hide the lid temp fields
$("#lidContainer").hide();
// all fields locked
$("input").attr("readonly","readonly");
// and 'More options' hidden
$('#OptionsButton').hide();
// Hide the Save button
$('#Save').hide();
// Hide the Cancel button
$('#Cancel').hide();
// Hide the SaveEdits button
$('#SaveEdits').hide();
// Show the Start/Unplugged button
startOrUnplugged("inline");
$('#singleTemp').hide();
// pre and post containers should take care of themselves
}
/* newExperimentButtons()
* puts Form buttons in the state they should be for a new experiment
*/
function newExperimentButtons()
{
// Hide the Delete button
$('#deleteButton').hide();
// Start with the edit button hidden
$("#editButton").hide();
// Start with the edit buttons hidden
$(".edit").hide();
// lid temp hidden
$("#lidContainer").hide();
// all fields editable
$("input").attr("readonly","");
// and 'More options' shown
$('#OptionsButton').show();
// Show the Save button
$('#Save').show();
// Hide the Cancel button
$('#Cancel').hide();
// Hide the SaveEdits button
$('#SaveEdits').hide();
// Show the Start/Unplugged button
startOrUnplugged("inline");
$('#singleTemp').hide();
// make sure the "More options" button says so
$('#OptionsButton').html("More options");
}
/* writeoutExperiment
* Reads out all the variables from the OpenPCR form into a JSON object to "Save" the experiment
* Separate function is used to write out the experiment to the device
*/
function writeoutExperiment()
{
// grab the Experiment Name
experimentName = document.getElementById("ExperimentName").innerHTML;
// grab the pre cycle variables if any exist
preArray = [];
$("#preContainer .textinput").each(function(index, elem)
{
//just throw them in an array for now
if ($(this) != null) preArray.push($(this).val());
});
// grab the cycle variables
cycleArray = [];
$("#cycleContainer .textinput").each(function(index, elem)
{
//just throw them in an array for now
cycleArray.push($(this).val());
});
// grab the post cycle variables if any exist
postArray = [];
$("#postContainer .textinput").each(function(index, elem)
{
//just throw them in an array for now
postArray.push($(this).val());
});
// grab the final hold steps if any exist
holdArray = [];
$("#holdContainer .textinput").each(function(index, elem)
{
//just throw them in an array for now
holdArray.push($(this).val());
});
// grab the lid temp
$("#lidContainer .textinput").each(function(index, elem)
{
lidTemp = $(this).val();
});
// Push variables into an experiment JSON object
var experimentJSON = new Object();
// Experiment name
experimentJSON.name = experimentName;
experimentJSON.steps = [];
experimentJSON.lidtemp = lidTemp;
// Pre Steps
// every step will have 2 elements in preArray (temp,time)
preLength = (preArray.length)/2;
for (a=0 ; a < preLength; a++)
{
experimentJSON.steps.push(
{ "type": "step",
"name": "Initial Step",
"temp": preArray.shift(),
"time": preArray.shift()
});
}
// Cycle and cycle steps
// the cycle will be a # of cycles as the first element, then temp/time pairs after that
count = cycleArray.shift(),
if ( cycleArray.length > 0 && count > 0 )
{
experimentJSON.steps.push(
{
"type": "cycle",
// add the number of cycles
"count": count,
"steps": []
});
// then add the cycles
current = experimentJSON.steps.length-1;
// every step will have 2 elements in cycleArray (Time and temp)
cycleLength = (cycleArray.length)/2;
for (a=0 ; a < cycleLength; a++)
{
experimentJSON.steps[current].steps.push(
{
"type": "step",
"name": "Step",
"temp": cycleArray.shift(),
"time": cycleArray.shift()
});
}
}
// every step will have 2 elements in preArray (Time and temp)
// a better way to do this would be for a=0, postArray!=empty, a++
postLength = (postArray.length)/2;
for (a=0 ; a < postLength; a++)
{
experimentJSON.steps.push(
{ "type": "step",
"name": "Final Step",
"temp": postArray.shift(),
"time": postArray.shift()
});
}
// Final Hold step
if (holdArray.length > 0)
{
experimentJSON.steps.push(
{ "type": "step",
"name": "Final Hold",
"time": 0,
"temp": holdArray.shift()
});
}
// return the experiment JSON object
return experimentJSON;
}
/* Save(name)
* Writes out the current window.experiment to the app:/Experiments directory
* Input: name, name of the file to be written out (add .pcr extension)
*/
function Save(name)
{
// create the filename
fileName = name + ".pcr";
// grab the current experiment and update window.experiment
pcrProgram = writeoutExperiment();
// update the name of the experiment
pcrProgram.name = name;
// turn the pcrProgram into a string
pcrProgram = JSON.stringify(pcrProgram, null, '\t');
// set the destination folder for the file
fileDestination = air.File.applicationStorageDirectory.resolvePath("Experiments");
// create the "My Presets" directory if one doesn't exist already
fileDestination.createDirectory();
// set the filename
fileDestination = fileDestination.resolvePath(fileName);
// write out the file
var fileStream = new window.runtime.flash.filesystem.FileStream();
fileStream.open(fileDestination, window.runtime.flash.filesystem.FileMode.WRITE);
fileStream.writeUTFBytes(pcrProgram);
fileStream.close();
// show a confirmation screen
$('#save_confirmation_dialog').dialog('open');
// then close it after 1 second
setTimeout(function(){$('#save_confirmation_dialog').dialog('close');}, 750);
}
/* experimentToHTML(inputJSON)
* Takes a given experiment JSON object and loads it into the OpenPCR interface
*/
function experimentToHTML(inputJSON)
{
// store the experiment to the JSON. This can be modified using the interface buttons, sent to OpenPCR, or saved
window.experiment = inputJSON;
// clear the Form
clearForm();
// Update the experiment name
var experimentName = inputJSON.name;
// only use the first 20 chars of the experimentName
experimentName = experimentName.slice(0,18);
$("#ExperimentName").html(experimentName);
// for every .steps in the experiment, convert it to HTML
var experimentHTML = "";
// break the rest of the experiment up into "pre cycle" (0), "cycle" (1), and "post cycle" (2) sections
var count = 0;
// add the lid temperature div but hide it
$('#lidContainer').hide();
// max temp 120, min temp 0 (off)
$('#lidTemp').html('<span class="title">Heated Lid</span>' + '<input type="text" name="lid_temp" id="lid_temp" class="required integer textinput" maxlength="3" min="0" max="120" value="' + inputJSON.lidtemp + '">');
// 4 possibile DIVs
// pre-steps, cycle steps, post-steps, and final hold step
// Add the experiment to the page
for (i=0; i < inputJSON.steps.length; i++)
{
// pre-cycle to start
if (count==0 & inputJSON.steps[i].type == "step" && inputJSON.steps[i].time != 0)
// if it's for pre-cycle, and not a final hold (0 time)
{
// show the preContainer div
$('#preContainer').show();
$('#preSteps').append(stepToHTML(inputJSON.steps[i]))
}
else if (count==0 && inputJSON.steps[i].type == "cycle")
// if it's cycle, put the cycle in the Cycle container
{
$('#cycleContainer').show();
$('#cycleSteps').append(stepToHTML(inputJSON.steps[i]));
count=1;
}
else if (count==1 && inputJSON.steps[i].type == "step" && inputJSON.steps[i].time != 0)
// if it's post (but not a final hold), put the steps in the Post container
{
$('#postContainer').show();
$('#postSteps').append(stepToHTML(inputJSON.steps[i]));
}
else if (inputJSON.steps[i].type == "step" && inputJSON.steps[i].time == 0)
// if it's the final hold (time = 0), put it in the final hold container
{
$('#holdContainer').show();
$('#holdSteps').append(stepToHTML(inputJSON.steps[i]));
}
}
}
/* stepToHTML(step)
* Turns a step into HTML. However, this HTML doesn't have a container div/fieldset
* If the step is a cycle, it will return html with all the cycles represented.
* If the step is a single step, html with just one cycle is returned
*/
function stepToHTML(step)
{
stepHTML = "";
// if cycle
if (step.type=="cycle")
{
// printhe "Number of Cycles" div
// max 99 cycles
stepHTML += '<label for="number_of_cycles"></label><div><span class="title">Number of Cycles:</span><input type="text" name="number_of_cycles" id="number_of_cycles" class="required number textinput" maxlength="2" min="0" max="99" value="' + step.count + '"></div><br />';
// steps container
// print each individual step
for (a=0; a<step.steps.length; a++)
{
// make the js code a little easier to read
step_number = a;
step_name = step.steps[a].name;
step_temp = step.steps[a].temp;
step_time = step.steps[a].time;
// print HTML for the step
// min,max temp = -20, 105
// min,max time = 0, 6000, 1 decimal point
stepHTML += '<div class="step"><span id="step' + step_number + '_name" class="title">' + step_name + ' </span><a class="edit deleteStepButton"><img src="images/minus.png" height="30"></a><table><tr><th><label for="step' + step_number + '_temp">temp:</label> <div class="step' + step_number + '_temp"><input type="text" style="font-weight:normal;" class="required number textinput" name="step' + step_number + '_temp" id="step' + step_number + '_temp" value="' + step_temp + '" maxlength="4" min="-20" max="120" ></div><span htmlfor="openpcr_temp" generated="true" class="units">°C</span> </th><th><label for="step' + step_number + '_time">time:</label> <div class=""><input type="text" class="required number textinput" style="font-weight:normal;" name="step' + step_number + '_time" id="step' + step_number + '_time" value="' + step_time + '" maxlength="4" min="0" max="6000" ></div><span htmlfor="openpcr_time" generated="true" class="units">sec</span></th></tr></table></div>';
}
}
// if single step
else if (step.type=="step")
{
// make the js code a little easier to read
step_number = new Date().getTime();
step_name = step.name;
step_time = step.time;
step_temp = step.temp;
// main HTML, includes name and temp
stepHTML += '<div class="step"><span id="' + step_number + '" class="title">' + step_name + ' </span><a class="edit deleteStepButton"><img src="images/minus.png" height="30"></a><table cellspacing="20"><tr><th><label>temp:</label> <div><input type="text" style="font-weight:normal;" class="required number textinput" value="'+ step_temp + '" maxlength="4" name="temp_' + step_number + '" min="0" max="120" ></div><span htmlfor="openpcr_temp" generated="true" class="units">°C</span> </th>';
// if the individual step has 0 time (or blank?) time, then it is a "hold" step and doesn't have a "time" component
if (step_time != 0)
{
stepHTML += '<th><label>time:</label> <div class=""><input type="text" class="required number textinput" style="font-weight:normal;" value="' + step_time + '" name="time_' + step_number + '" maxlength="4" min="0" max="6000"></div><span htmlfor="openpcr_time" generated="true" class="units">sec</span></th>';
}
}
else alert("Error #1986");
stepHTML += '</tr></table></div>';
return stepHTML;
}
/* stepToString(inputJSON)
* Takes a JSON object and turns it into a string
* This is used to load an experiment into the OpenPCR device
*/
function stepToString(inputJSON)
{
var stepString = "";
// if single step return something like (1[300|95|Denaturing])
if (inputJSON.type=="step")
{
stepString += "[" + inputJSON.time + "|" + inputJSON.temp + "|" + inputJSON.name.slice(0,13) + "]";
}
// if cycle return something like (35,[60|95|Step A],[30|95|Step B],[30|95|Step C])
else if (inputJSON.type=="cycle")
{
// add the number of Cycles
stepString += "(";
stepString += inputJSON.count;
for (a=0; a<inputJSON.steps.length; a++)
{
stepString += "[" + inputJSON.steps[a].time + "|" + inputJSON.steps[a].temp + "|" + inputJSON.steps[a].name.slice(0,13) + "]";
}
// close the stepString string
stepString += ")";
}
//alert(stepString);
return stepString;
}
/* clearForm()
* Reset all elements on the Forms page
*/
function clearForm()
{
// empty everything
$('#preSteps').empty();
$('#cycleSteps').empty();
$('#postSteps').empty();
$('#holdSteps').empty();
$('#lidTemp').empty();
// hide everything
$('#preContainer').hide();
$('#cycleContainer').hide();
$('#postContainer').hide();
$('#holdContainer').hide();
$('#lidContainer').hide();
// reset the size of the DIV to 700 px
//defaultHeight = "700";
//$(".SlidingPanelsContent").height(defaultHeight);
//$(".SlidingPanels").height(defaultHeight);
}
/* disableEnterKey(e)
* The Enter/Return key doesn't do anything right now
*/
function disableEnterKey(e)
{
var key;
if(window.event)
key = window.event.keyCode; //IE
else
key = e.which; //firefox
return (key != 13);
}
function startPCR()
{
// check if the form is validated
if (false == ($("#pcrForm").validate().form()))
{ return 0;} // if the form is not valid, show the errors
// command_id will be a random ID, stored to the window for later use
window.command_id=Math.floor(Math.random()*65534);
// command id can't be 0
// where is OpenPCR
var devicePath = window.path;
// name of the output file written to OpenPCR
var controlFile = devicePath.resolvePath("CONTROL.TXT");
// grab all the variables from the form in JSON format
pcrProgram = writeoutExperiment();
// now parse it out
// Start with the signature
var parsedProgram = "s=ACGTC";
// Command
parsedProgram += "&c=start";
// Contrast
parsedProgram += "&t=50";
// Command id
parsedProgram += "&d=" + window.command_id;
// Lid Temp NO DECIMALS. Not handeled by UI currently, but just making sure it doesn't make it to OpenPCR
parsedProgram += "&l=" + Math.round(pcrProgram.lidtemp);
// Name
parsedProgram += "&n=" + pcrProgram.name
// get all the variables from the pre-cycle, cycle, and post-cycle steps
parsedProgram +="&p=";
window.lessthan20steps = 0;
for (i=0; i < pcrProgram.steps.length; i++)
{
if (pcrProgram.steps[i].type == "step")
// if it's a step, stepToString will return something like [300|95|Denaturing]
// then this loop needs to figure out when to add [1( and )]
{
// if the previous element wasn't a step (i.e. null or cycle)
if (typeof pcrProgram.steps[i-1] == 'undefined' || pcrProgram.steps[i-1].type == "cycle")
{
parsedProgram += "(1";
}
parsedProgram += stepToString(pcrProgram.steps[i]);
// if the next element isn't a step (i.e. null or cycle)
if (typeof pcrProgram.steps[i+1] == 'undefined' || pcrProgram.steps[i+1].type != "step")
{
parsedProgram += ")";
}
}
else if (pcrProgram.steps[i].type == "cycle")
// if it's a cycle add the prefix for the number of steps, then each step
{
// for example, this should return (35[30,95,Denaturing][60,55,Annealing][60,72,Extension])
parsedProgram += stepToString(pcrProgram.steps[i]);
window.lessthan20steps = pcrProgram.steps[i].steps.length;
}
}
// verify that there are no more than 16 top level steps
air.trace(pcrProgram.steps.length + " : top level steps" );
if (pcrProgram.steps.length > 16)
{
alert("OpenPCR can handle a maximum of 16 top-level steps, you have " + stepCount + " steps");
}
air.trace( window.lessthan20steps + " : cycle level steps" );
// verify the cycle step has no more than 20 steps
if ( window.lessthan20steps > 16)
{
alert("OpenPCR can handle a maximum of 20 cycle steps, you have " + window.cycleStepCount + " steps");
}
// and check that the total overall is less than 30
var totalSteps = window.lessthan20steps + pcrProgram.steps.length;
if ( totalSteps > 30)
{
alert("OpenPCR can handle a maximum of 30 total steps, you have " + totalSteps + " steps");
}
// check that the entire protocol isn't >252 bytes
if (parsedProgram.length > 252)
{
alert("Oops, OpenPCR can't handle protocols longer than 252 characters, and this protocol is " + parsedProgram.length + " characters. The fix? You can try trimming down the name of your protocol or removing unnecessary steps");
return 0;
}
//debug
air.trace(parsedProgram);
// go to the Running dashboard
sp2.showPanel(2);
$("#ex2_p3").hide();
// go to the top of the page
scrollTo(0,0);
//hide the home button on the running page
$("#homeButton").hide();
$('#starting').dialog('open');
// write out the file to the OpenPCR device
var fileStream = new window.runtime.flash.filesystem.FileStream();
fileStream.open(controlFile, window.runtime.flash.filesystem.FileMode.WRITE);
fileStream.writeUTFBytes(parsedProgram);
fileStream.close();
// then close windows it after 1 second
setTimeout(function(){$('#starting').dialog('close');}, 5000);
setTimeout(function(){$('#ex2_p3').show();}, 5000);
// also, reset the command_id_counter
window.command_id_counter = 0;
// load the OpenPCR Running page
//running(path);
}
/*****************
* Running screen *
******************/
/* running(path)
* Controls the "running" page of OpenPCR. Reads updates from the running.pcr control file on OpenPCR continuously
* Input: path, the location of the running.pcr control file
*/
function running(path)
{
// Find the STATUS.TXT file containing the current OpenPCR data
window.runningFile = path;
window.runningFile = window.runningFile.resolvePath("STATUS.TXT");
// refresh the running page every 1000 ms
window.updateRunningPage = setInterval(updateRunning,1000);
}
/* updateRunning()
* Updates the Running page variables
*/
function updateRunning()
{
updateFile = readDevice(window.runningFile);
if (updateFile==null || updateFile=="")
{
//window.command_id_counter++;
}
else
{
air.trace(updateFile + '\n\n');
// split on &
var splitonAmp = updateFile.split("&");
// split on =
var status = new Array();
for(i=0;i<splitonAmp.length;i++)
{
var data = splitonAmp[i].split("=");
if(isNaN(parseFloat(data[1])))
{
// not a number
status[data[0]]=data[1];
}
else
{
// a number
status[data[0]]=parseFloat(data[1]);
}
}
// make sure the status isn't blank
// if command id in the running file doesn't match, check again 50 times and then quit if there is still no match
if (status["d"]!=window.command_id)
{
if (window.command_id_counter > 50)
{
//alert("OpenPCR command_id does not match running file, window.command_id_counter =" + window.command_id_counter + " . This error should not appear\nstatus"+status["d"]+"\nwindow:"+window.command_id);
// quit
//air.NativeApplication.nativeApplication.exit();
}
window.command_id_counter++;
// debug
air.trace("command_id_counter " + window.command_id_counter);
}
// if app command id matches the device command id, reset the counter
if (status["d"]==window.command_id)
{
window.command_id_counter = 0;
air.trace(window.command_id_counter);
}
if (status["s"]=="running" || status["s"]=="lidwait")
{
//debug
air.trace(status["s"] + "\n");
// preset name
var prog_name = status["n"];
$("#runningHeader").html(prog_name);
if (status["s"]=="lidwait")
{
// if the lid is heating say so
$("#progressbar").hide();
$("#timeRemaining").html("");
$("#minutesRemaining").html("Lid is heating");
}
if (status["s"]=="running")
{
$("#progressbar").show();
$("#timeRemaining").html("Time remaining:");
// otherwise, if running set variable for percentComplete
// never display less than 2% for UI purposes
var percentComplete = 100 * status["e"]/(status["e"]+status["r"]);
if (percentComplete < 2)
{ percentComplete = 2; }
// Progress bar
$("#progressbar").progressbar({ value: percentComplete});
// Time Remaining
var secondsRemaining = status["r"];
if (secondsRemaining == 0)
{
timeRemaining='<span style="color:#04B109;">Done!</span>';
}
else
{
var timeRemaining = humanTime(secondsRemaining);
}
$("#minutesRemaining").html(timeRemaining);
}
// Current step name
var current_step = status["p"];
$("#currentStep").html(current_step);
// Current step time remaining
// var step_seconds_remaining = status["step_seconds_remaining"];
// $("#stepSecondsRemaining").html(step_seconds_remaining);
// Current cycle #
var current_cycle = status["c"];
$("#cycleNumber").html(current_cycle);
// Total # of cycles
var total_cycles = status["u"];
$("#totalCycles").html(total_cycles);
// Current temp
var block_temp = status["b"].toFixed(1);
air.trace(status["b"]);
$("#blockTemp").html(block_temp);
// Current lid temp
var lid_temp = status["l"];
$("#lidTemperature").html(lid_temp);
// For the debugger, write all 8 vars out to the history file
//writeCSV(document.getElementById("runningHeader").innerHTML, document.getElementById("minutesRemaining").innerHTML, 1, document.getElementById("cycleNumber").innerHTML, document.getElementById("totalCycles").innerHTML, document.getElementById("blockTemp").innerHTML, document.getElementById("lidTemp").innerHTML, document.getElementById("progressbar").innerHTML);
writeCSV(prog_name, status["e"], secondsRemaining, 1, current_cycle, total_cycles, block_temp, lid_temp);
}
else if (status["s"]=="complete")
{
// if the status of OpenPCR comes back as "complete"
// show the "Home" button
$("#homeButton").show();
// hide the cancel button
$("#cancelButton").hide();
// show the completed message
timeRemaining='<span style="color:#04B109;">Done!</span>';
// hide "Time remaining" span
$("#timeRemaining").hide();
// update the "current temp"
var block_temp = status["b"];
$("#blockTemp").html(block_temp);
// update the lid temp
var lid_temp = status["l"];
$("#lidTemperature").html(lid_temp);
// replace the "cycle # of total#" span with "PCR took..."
$("#cycleNumOfNum").html("PCR took " + humanTime(status["e"]));
// i.e. hide the "Holding for 10 sec", just show "Holding"
$("#stepRemaining").hide();
// Current step name
var current_step = status["p"];
$("#currentStep").html(current_step);
}
else if (status["status"]=="stopped")
{
// nothing, this shouldn't be a status that is read in
}
else if (status["status"]=="error")
{
// error
alert("Error");
}
}
}
/* readDevice()
* Checks the OS (Mac or PC) and runs the appropriate middleman app (NCC) to grab info off the USB drive
*/
function readDevice(filePath)
{
if (filePath.exists)
{
// are native processes supported?
if (air.NativeProcess.isSupported)
{
var nativeProcessStartup = new air.NativeProcessStartupInfo();
nativeProcess = new air.NativeProcess();
// setup arguments
var args = new air.Vector["<String>"]();
// PC or Mac?
if (air.Capabilities.os.toLowerCase().indexOf("win") > -1)
{
processName = air.File.applicationDirectory.resolvePath("ncc.exe");
//alert("win");
}
else if (air.Capabilities.os.toLowerCase().indexOf("mac") > -1)
{
// in application directory
processName = air.File.applicationDirectory.resolvePath("ncc");
//processName = new air.File("/bin/cat");
//alert("mac");
}
else
{
alert("Error #810 - Hmmm, Mac or PC?");
}
nativeProcessStartup.executable = processName;
// add the path as an argument
args.push(filePath.nativePath);
nativeProcessStartup.arguments = args;
nativeProcess.addEventListener(air.ProgressEvent.STANDARD_OUTPUT_DATA,outputHandler);
// start the process
nativeProcess.start(nativeProcessStartup);
}
else
{
alert("NativeProcess not supported");
}
// will return the value of the outputHandler if it's NULL or blank
if (window.deviceFile!=null || window.deviceFile!="")
{ return window.deviceFile; }
}
else
{
// otherwise do nothing if the file doesn't exist
//alert("File doesn't exist");
}
}
/* outputHandler()
* Grabs stdout from the middleman USB app, used in readDevice()
*/
function outputHandler(event)
{
window.deviceFile = nativeProcess.standardOutput.readUTFBytes(nativeProcess.standardOutput.bytesAvailable);
}
/* readFile()
* Opens a given filestream and reads it into a varaiable
* (If the file does not exist, should be an error!)
*/
function readFile(filePath)
{
stream = new air.FileStream();
if (filePath.exists) {
stream.open(filePath, air.FileMode.READ);
// get the file and put it in a variable
theFile = stream.readUTFBytes(stream.bytesAvailable);
stream.close();
return theFile;
}
else
{
// if the file is not found, nothing
air.trace(filePath.name+ " not found");
}
// what's this for?
window.nativeWindow.visible = true;
}
/* StopPCR()
* This function is called when the Stop button (Running page) is clicked and confirmed
* Or when the "Return to home screen" button is clicked
* Returns: boolean
*/
function stopPCR() {
// Stop reading the STATUS.TXT file
// Clear the values in the Running page
$("#runningHeader").html("");
$("#progressbar").progressbar({ value: "0"});
$("#minutesRemaining").html("");
// Create the string to write out
var stopPCR = 's=ACGTC&c=stop';
// contrast
stopPCR += '&t=50';
// increment the window.command id and send the new command to the device
window.command_id++;
stopPCR += '&d='+ window.command_id;
air.trace(stopPCR);
// Write out the STOP command to CONTROL.TXT
// name of the output file
var file = window.path.resolvePath("CONTROL.TXT");
// write out all the variables, command id + PCR settings
var fileStream = new window.runtime.flash.filesystem.FileStream();
fileStream.open(file, window.runtime.flash.filesystem.FileMode.WRITE);
fileStream.writeUTFBytes(stopPCR);
fileStream.close();
// go back to the Form page
sp2.showPanel(1);
return false;
}
/* humanTime()
* Input: seconds (integer)
* Returns: time in a human friendly format, i.e. 2 hours, 10 minutes, 1 hour, 10 minutes, 1 hour, 1 minute, 60 minutes, 1 minute
*/
function humanTime(secondsRemaining)
{
var timeRemaining="";
var minutesRemaining = Math.floor(secondsRemaining/60);
var hoursRemaining = Math.floor(minutesRemaining/60);
if (hoursRemaining>0)
{
timeRemaining+= hoursRemaining + " hour";
if (hoursRemaining>1)
{
timeRemaining+="s ";
}
else {timeRemaining+=" ";}
timeRemaining+= "<br />";
minutesRemaining-=(hoursRemaining)*60;
}
if (minutesRemaining>1)
{
timeRemaining+=minutesRemaining + " minutes";
}
else if (minutesRemaining==1)
{
timeRemaining+= "1 minute";
}
else if (secondsRemaining<=60)
{
// should say "less than a minute" but font is too big
timeRemaining+= "1 minute";
}
else if (secondsRemaining==0)
{
timeRemaining = "Done!";
}
return timeRemaining;
}
/**************
* Buttons *
***************/
/* "About" button on the OpenPCR Home page
* Displays about info
*/
$('#About').live('click', function(){
$('#about_dialog').dialog('open');
});
/* "Home" button on the OpenPCR Form page
* Goes Home
*/
$('#Home').live('click', function(){
stopPCR();
listExperiments();
sp2.showPanel(0);
setTimeout(clearForm,500);
});
/* "Start" button on the OpenPCR Form page
* Sends an experiment to OpenPCR and switches to the Running page
*/
$('#Start').live('click', function(){
startPCR();
});
/* "Save" button on the OpenPCR Form
* Ask for a "name" and save the protocol to name.pcr in the user's Experiments folder
*/
$('#Save').live('click', function(){
// Save Dialog
// check if the form is validated
if (false == ($("#pcrForm").validate().form()))
{ return 0; // if not, don't do anything
}
// otherwise, the form is valid. Open the "Save" dialog box
$('#save_form').dialog('open');
});
/* "Save" on the OpenPCR Form in EDIT MODE
* This will overwrite the old experiment with the edited settings
*/
$('#SaveEdits').live('click', function(){
// check if the form is validated
if (false == ($("#pcrForm").validate().form()))
{
return 0; // if not, don't do anything
}
// Grab the Experiment name, could also do this by reading from the experiments list on the homepage
name = document.getElementById("ExperimentName").innerHTML;
// Save the file, overwriting the existing file
Save(name);
// re-load the experiment with the new settings
loadExperiment(experimentID);
});
/* "Cancel" button on the OpenPCR Form in EDIT MODE
* This will cancel any changes made to the form and re-load the experiment as it was last saved
*/
$('#Cancel').live('click', function(){
// what is selected in the drop down menu on the front page?
experimentID = $("#dropdown").val();
// clear the form
clearForm();
// load the selected experiment
loadExperiment(experimentID);
});
/* "Edit" button on the OpenPCR Form with a saved experiment
*/
$('#editButton').live('click', function(){
editButton();
});
/* "Delete" button on the OpenPCR Form in EDIT MODE
*/
$('#deleteButton').live('click', function(){
$('#delete_dialog').dialog('open');
});
/* "+ Add Step" button on the OpenPCR Form
* Add a new blank step to the end of the presets
*/
$('#addStepButton').live('click', function() {
var location = $(this).parent().attr("id");
addStep(location);
});
/* "- Delete Step" on the OpenPCR Form
* Delete the step
*/
$('.deleteStepButton').live('click', function() {
$(this).parent().slideUp('slow', function() {
// after animation is complete, remove parent step
$(this).remove();
//// if the length is now 0, hide the whole div
});
});
/* "More options" button on the OpenPCR Form
* Display a bunch of options
*/
$('#OptionsButton').live('click', function() {
$(".edit").toggle();
$("#preContainer").show();
$("#postContainer").show();
$("#lidContainer").show();
// get current state
buttonText = document.getElementById("OptionsButton").innerHTML;
// if we're hiding the options and there are no pre-steps or post-steps, hide those sections appropriately
if (buttonText == 'Less options' && $("#preSteps").html() == "")
{
// hide pre steps
$("#preContainer").hide();
}
if (buttonText == 'Less options' && $("#postSteps").html() == "")
{
// hide post steps
$("#postContainer").hide();
}
// flip the Options button text between "More options" and "Less options"
var buttonText = (buttonText != 'More options' ? 'More options' : 'Less options' );
$('#OptionsButton').html(buttonText);
});
// Presets page
/* editButton()
* Function that is called when the "Edit" button is pressed on a "Saved Preset" page. Makes the "Save preset" and "Cancel" buttons
* show up, "Add" and "Subtract" steps buttons, and makes all fields editable
* Returns: nothing
*/
function editButton()
{
// Show the Delete button
$('#deleteButton').show();
// Start with the Edit button hidden
$("#editButton").hide();
// show the edit buttons
$(".edit").show();
// show the lid temp fields
$("#lidContainer").show();
// all fields editable
$("input").attr("readonly","");
// and 'More options' hidden
$('#OptionsButton').hide();
// hide the Save button
$('#Save').hide();
// show the Cancel button
$('#Cancel').show();
// show the SaveEdits button
$('#SaveEdits').show();
// Hide the Start/Unplugged button
startOrUnplugged("none");
// show the Single Temp mode button
$('#singleTemp').show();
// show the Add Step buttons
$("#preContainer").show();
$("#postContainer").show();
}
/* deleteCurrentExperiment()
* Deletes the currently loaded experiment (whatever was last selected in the list)
* Called by the delete dialog box
*/
function deleteCurrentExperiment()
{
// delete the currently loaded Experiment file
// given an ID, get the path for that ID
experimentPath = window.experimentList[experimentID];
// delete the file
var file = experimentPath;
file.deleteFile();
// show a confirmation screen
$('#delete_confirmation_dialog').dialog('open');
// then close it after 1 second
setTimeout(function(){$('#delete_confirmation_dialog').dialog('close');}, 750);
//
}
/* addStep()
* Add the HTML for a blank step to the desired css selector div
*/
function addStep(location)
{
// first off, if the location is cycleContainer, we really want to modify stepsContainer
if (location == "cycleContainer")
{
location = "cycleSteps";
}
// add to HTML
if (location=="preSteps") { step_name="Initial Step" }
if (location=="postSteps") { step_name="Final Step" }
if (location=="cycleSteps") { step_name="Step" }
step_number = new Date().getTime();;
var step = '<div class="step"><span class="title">' + step_name + ' </span><a class="edit deleteStepButton"><img src="images/minus.png" height="30"></a><table cellspacing="20"><tr><th><label>temp</label> <div><input type="text" style="font-weight:normal;" class="required number textinput" value="" name="temp_' + step_number + '" maxlength="4" min="0" max="120" ></div><span htmlfor="openpcr_temp" generated="true" class="units">°C</span> </th><th><label>time</label> <div class=""><input type="text" class="required number textinput" style="font-weight:normal;" value="" name="time_' + step_number + '" maxlength="4" min="0" max="1000"></div><span htmlfor="openpcr_time" generated="true" class="units">sec</span></th></tr></table></div>';
// append a new step to location
$('#' + location).append(step);
// make sure the form elements are editable
$("input").attr("readonly","");
//// make the window bigger
// make all the delete buttons shown
// and if there are any other parts of a "step" that are hide/show, they need to be included here
$(".edit").show();
}
function addInitialStep()
{
// add the step to the preContainer
addStep("preSteps");
}
function addFinalStep()
{
// add the step to the postContainer
addStep("postSteps");
}
/* deleteStep()
* Delete the parent step
*/
function deleteStep()
{
// doesn't do anything right now. The delete step button should reference here
}
// JQUERY UI stuffs
$(function(){
// About Dialog
$('#about_dialog').dialog({
autoOpen: false,
width: 300,
modal: true,
draggable: false,
resizable: false,
buttons:
{
"OK": function() {
$(this).dialog("close");
}
}
});
// Save Dialog
$('#save_form').dialog({
autoOpen: false,
width: 300,
modal: true,
draggable: false,
resizable: false,
position: 'center',
buttons:
{
"Cancel": function() {
$(this).dialog("close");
$("#name").val("");
},
"Save": function() {
// grab the name from the form
name = $("#name").val();
// save the current experiment as the given name
Save(name);
// update the experiment name in the UI
$("#ExperimentName").html(name);
// close the dialog window
$(this).dialog("close");
}
}
});
// Save Confirmation Dialog
$('#save_confirmation_dialog').dialog({
autoOpen: false,
width: 300,
modal: true,
draggable: false,
resizable: false
});
// Delete Dialog
$('#delete_dialog').dialog({
autoOpen: false,
width: 300,
modal: true,
draggable: false,
resizable: false,
buttons:
{
"No": function() {
$(this).dialog("close");
},
"Yes": function() {
// delete the current selected experiment
deleteCurrentExperiment();
// Since the experiment was deleted, go to the home screen
// refresh the list of Presets
listExperiments();
// Home screen
sp2.showPanel(0);
// close this window
$(this).dialog("close");
}
}
});
// Delete Confirmation Dialog
$('#delete_confirmation_dialog').dialog({
autoOpen: false,
width: 300,
modal: true,
draggable: false,
resizable: false
});
// Stop Dialog
$('#stop_dialog').dialog({
autoOpen: false,
width: 300,
modal: true,
draggable: false,
resizable: false,
buttons: {
"No": function() {
$(this).dialog("close");
},
"Yes": function() {
$(this).dialog("close");
stopPCR();
}
}
});
// Dialog Link
$('#stop_link').click(function(){
$('#stop_dialog').dialog('open');
return false;
});
// Starting dialog
$('#starting').dialog({
autoOpen: false,
width: 300,
modal: true,
draggable: false,
resizable: false,
});
//hover states on the static widgets
$('#dialog_link, ul#icons li').hover(
function() { $(this).addClass('ui-state-hover'); },
function() { $(this).removeClass('ui-state-hover'); }
);
});
// Enter/Return Key clicks "Save" on dialog
$('#save_form').live('keyup', function(e){
if (e.keyCode == 13) {
$(':button:contains("Save")').click();
}
});
// Debugging function
/* writeCSV(a,b,c,d,e,f,g,h)
* Writes out current status to the histor file in comma delimited format
* Can load this into Excel and see ramp times, etc
* This should be commented out in actual releases
*/
function writeCSV(a,b,c,d,e,f,g,h)
{
// take in all 8 variables and write them to a new line in the history file
fileDestination = air.File.applicationStorageDirectory.resolvePath("history.txt");
// write out the file
var fileStream = new window.runtime.flash.filesystem.FileStream();
fileStream.open(fileDestination, window.runtime.flash.filesystem.FileMode.APPEND);
fileStream.writeUTFBytes(a + "," + b + "," + c + "," + d + "," + e + "," + f + "," + g + "," + h + "\n");
fileStream.close();
}
|