forked from iGEM-QSF/igem-wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Journal.html
1192 lines (1097 loc) · 51.3 KB
/
Journal.html
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
<link rel="stylesheet" href="http://2014.igem.org/Team:Aalto-Helsinki/timeline.css?action=raw&ctype=text/css" type="text/css">
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<div class="splash" id="journalsplash">
<div class="row splashyla">
<div class="col-md-12">
<a href="http://2014.igem.org/"><img src="http://2014.igem.org/wiki/images/0/09/Aalto_Helsinki_Logov_iGEM.png" class="img-responsive igem-logo"></a>
</div>
</div>
<div class= "row splashesittely">
<div class="col-md-3">
</div>
<div class="col-md-6">
<h1>Journal</h1>
<p class="bigsplashtext">
The summer was full of exciting new experiences and a lot of hard work. You can browse through our sweat and tears here.
</p>
</div>
<div class="col-md-3">
</div>
</div>
<div class= "row splashala">
<div class ="col-md-12 transp scroller">
<a href="#There">
Scroll down to read more
<img src="http://2014.igem.org/wiki/images/3/3e/Aalto_Helsinki_Nuoli.png" class="img-responsive center-block transp nuoli">
</a>
</div>
</div>
<div class="splashalavalikko">
<a href="#There">There and Back Again</a><br>
<a href="#Safety">Safety</a><br>
<a href="#Timeline">Timeline</a><br>
</div>
<div class = "splashcopyright">
<p class="transp">
<a href="http://i-see-faces.deviantart.com/">Photo © Tanja Maria</a>
</p>
</div>
</div>
<script src="http://2014.igem.org/Team:Aalto-Helsinki/jquery-1.11.0.min.js?action=raw&ctype=text/js"></script>
<script src="http://2014.igem.org/Team:Aalto-Helsinki/bootstrap.min.js?action=raw&ctype=text/js"></script>
<script src="http://2014.igem.org/Team:Aalto-Helsinki/waypoints.min.js?action=raw&ctype=text/js"></script>
<div class="navbar navbar-default extrabar" data-spy="affix">
<nav>
<a id="There-submenu" class="active" href="#There">There and Back Again</a>
<a id="Safety-submenu" href="#Safety">Safety</a>
<a id="Timeline-submenu" href="#Timeline">Timeline</a>
</nav>
</div>
<div class="update There"></div>
<article>
<div class="link" id="There"></div>
<h2>There and Back Again<br>
<small>an iGEM team's tale by Aalto-Helsinki</small></h2>
<p>
In March, we had 9 students who were excited about a new field of science that was hardly known in Finland. No experience, some studies, but a lot of excitement.
</p>
<p>
In October, we had developed a genetically engineered machine from scratch, made a mathematical model and a simulation based on it, ran our own research lab for five months, designed web applications to make research easier, built a pitch explaining synthetic biology to the general public, figured out a new way to do business and built a massive wiki documenting all of this. How did that happen? Check it out here.
</p>
<p>
Our priorities during the summer were:
<ol>
<li>Have Fun</li>
<li>Learn New Things</li>
<li>Work Hard</li>
<li>Make Something New</li>
</ol>
</p>
<p>
We worked at least 8 hours a day from the middle of May until the end of August in Aalto University's science campus in Otaniemi. There was a huge learning hub/living room in the building adjacent to our lab, so we made it our HQ during the summer. Then we kept on working as much as possible in the autumn while continuing our studies. Some managed to pull off the same hours as before while still keeping up with their studies!
</p>
<blockquote>
It's a dangerous business, Frodo, going out your door. You step onto the road, and if you don't keep your feet, there's no knowing where you might be swept off to.
<cite>J.R.R. Tolkien, The Lord of the Rings</cite>
</blockquote>
</article>
<div class="update There"></div>
<div class="update Safety"></div>
<article>
<div class="link" id="Safety"></div>
<h2>Safety</h2>
<h3>General Safety Matters</h3>
<div class="row">
<div class="col-md-6 text-col-left">
<p>
All of our team members who worked in the lab have had safety training as a part of their studies. The training covered the following topics:
</p>
<ul>
<li>Personal protective wear: safety goggles, lab coats and gloves
</li>
<li>General safety: acting in case of an accident, where to find emergency showers and fire extinguishers, understanding safety labels
</li>
<li>Chemical safety: working with different chemicals and how to dispose of them
</li>
<li>GMO safety: putting all waste that has been in contact with bacteria (living or dead) to bacterial waste, aseptic working methods
</li>
</ul>
<p>
In our iGEM work we have only worked with non-toxic <i>E. coli</i> (K12 derivatives) and all the protein coding sequences that we have used in our project are non-hazardous. We did not create new protein coding sequences but instead we used sequences that are already available as Biobricks.
</p>
<h3>Our Laboratory</h3>
<p>
We got to work in the Bioprocess Technology lab of Aalto University. We had our own lab bench and we got to use all the instruments and equipment in the department. We also did some measurements in the labs of the VTT Technical Research Centre of Finland.
</p>
</div>
<div class="col-md-6 img-100">
<img src="http://2014.igem.org/wiki/images/7/78/Aalto_Helsinki_Lab_Apple.jpg" class="img-responsive"></img>
<div class="cpright">
<p class="kuvateksti">
Oskari, Martina and Minttu excited in the lab.
</p>
</div>
</div>
</div>
<br><br>
<div class="row row-eq-height margintop">
<div class="col-md-6 feat-left">
<img src="http://2014.igem.org/wiki/images/4/41/Aalto_Helsinki_Lab1.jpg" class="img-responsive"></img>
</div>
<div class="col-md-6 feat-right">
<img src="http://2014.igem.org/wiki/images/9/93/Aalto_Helsinki_Hohtavatbakut.jpg" class="img-responsive"></img>
</div>
</div>
<div class="row row-eq-height">
<div class="col-md-3 feat-left">
<img src="http://2014.igem.org/wiki/images/b/bf/Aalto_Helsinki_Tyhjalabra.jpg" class="img-responsive"></img>
</div>
<div class="col-md-3 feat-center">
<img src="http://2014.igem.org/wiki/images/8/89/Aalto_Helsinki_Pipetti.jpg" class="img-responsive"></img>
</div>
<div class="col-md-3 feat-center">
<img src="http://2014.igem.org/wiki/images/6/6c/Aalto_Helsinki_Nestetyppi.jpg" class="img-responsive"></img>
</div>
<div class="col-md-3 feat-right">
<img src="http://2014.igem.org/wiki/images/1/11/Aalto_Helsinki_Koeputket.jpg" class="img-responsive"></img>
</div>
</div>
<div class="cpright">
<p class ="kuvateksti">
<a href="http://www.dowdenphotos.com/">Photos © Stewart Dowden</a>
</p>
</div>
<h3>Lab Close-Ups</h3>
<div class="row row-eq-height">
<div class="col-md-4 feat-left">
<img src="http://2014.igem.org/wiki/images/a/af/Aalto_Helsinki_Gel_Action.jpg" class="img-responsive"></img>
</div>
<div class="col-md-4 feat-center">
<img src="http://2014.igem.org/wiki/images/9/9c/Aalto_Helsinki_Pinkitbakut1.jpg" class="img-responsive"></img>
</div>
<div class="col-md-4 feat-right">
<img src="http://2014.igem.org/wiki/images/7/71/Aalto_Helsinki_Gel_Hoht3.jpg" class="img-responsive"></img>
</div>
</div>
<div class="row row-eq-height">
<div class="col-md-3 feat-left">
<img src="http://2014.igem.org/wiki/images/d/d1/Aalto_Helsinki_Pipetting_Action.jpg" class="img-responsive"></img>
</div>
<div class="col-md-3 feat-center">
<img src="http://2014.igem.org/wiki/images/2/25/Aalto_Helsinki_Malja2.jpg" class="img-responsive"></img>
</div>
<div class="col-md-3 feat-center">
<img src="http://2014.igem.org/wiki/images/9/9e/Aalto_Helsinki_Vetokaappi2.jpg" class="img-responsive"></img>
</div>
<div class="col-md-3 feat-right">
<img src="http://2014.igem.org/wiki/images/b/b8/AaltoHelsinki_labplate.jpg" class="img-responsive"></img>
</div>
</div>
<h3>Our Office</h3>
<div class="row">
<div class="col-md-6 text-col-left">
<p>
We also needed a proper office space where we could work during the summer since not everyone was going to do lab work and our lab bench wasn’t that spacious either.
</p>
<p>
We managed to find the "Learning Hub Living Room" (Vuori Hub) in the building of Department of Materials Science and Engineering. Since it was summer, there weren't many people around to use the space and we made it our home. It was a comfortable place to work in!
</p>
</div>
<div class="col-md-6 img-100">
<img src="http://2014.igem.org/wiki/images/6/60/Aalto_Helsinki_Hubi2.jpg" class="img-responsive"></img>
<div class="cpright">
<p class ="kuvateksti">
Photo of Vuori Hub by <a href="http://www.dowdenphotos.com/">Stewart Dowden</a>
</p>
</div>
</div>
</div>
<div class="row row-eq-height">
<div class="col-md-4 feat-left">
<img src="http://2014.igem.org/wiki/images/c/c7/Aalto_Helsinki_Hub4.jpg" class="img-responsive"></img>
</div>
<div class="col-md-4 feat-center">
<img src="http://2014.igem.org/wiki/images/f/fa/Aalto_Helsinki_Hubi1.jpg" class="img-responsive"></img>
</div>
<div class="col-md-4 feat-right">
<img src="http://2014.igem.org/wiki/images/a/a6/Aalto_Helsinki_Hubi3.jpg" class="img-responsive"></img>
</div>
</div>
<div class="cpright">
<p class ="kuvateksti">
Photos of Vuori Hub.
</p>
</div>
</article>
<div class="update Safety"></div>
<div class="update Timeline"></div>
<article>
<div class="link" id="Timeline"></div>
<h2>Timeline</h2>
<h3>Thorough Documentation</h3>
<p>
Being the first team in Finland, we wanted to make sure that we documented everything we did as rigorously as possible.
</p>
<p>
We have our lab notebook in PDF files. From these you will be able to find everything that was done in the lab on a specific date.
</p>
<ul>
<li><a href="http://2014.igem.org/wiki/images/6/67/AaltoHelsinki_Lab_Notebook_May-June.pdf">May-June (lab)</a></li>
<li><a href="http://2014.igem.org/wiki/images/b/b2/AaltoHelsinki_Lab_Notebook_July.pdf">July (lab)</a></li>
<li><a href="http://2014.igem.org/wiki/images/f/fc/AaltoHelsinki_Lab_Notebook_August.pdf">August (lab)</a></li>
<li><a href="http://2014.igem.org/wiki/images/e/ee/AaltoHelsinki_Lab_Notebook_September-October.pdf">September-October (lab)</a></li>
</ul>
<br>
<p>
We borrowed a convention from the software development framework, Scrum. So, every day all the team members answered these three questions:
</p>
<ol>
<li>What did you do yesterday?</li>
<li>What will you do today?</li>
<li>What might stop you from doing what you want to do?</li>
</ol>
<p>
Each of us wrote the answers down on our online team chat tool (Flowdock). According to the answers, we then assembled a detailed description of every single working day during our official work months (from May 20th to the end of August). So if you really really want to read exactly what we did, here's 30 pages of text for you to check out:
</p>
<ul>
<li><a href="http://2014.igem.org/wiki/images/d/d2/Aalto_Helsinki_WorkLogMay-June.pdf">May-June (office)</a></li>
<li><a href="http://2014.igem.org/wiki/images/5/5d/Aalto_Helsinki_WorkLogJuly.pdf">July (office)</a></li>
<li><a href="http://2014.igem.org/wiki/images/d/d0/Aalto_Helsinki_WorkLogAugust.pdf">August (office)</a></li>
</ul>
<h3>The Actual Timeline</h3>
<p>
We gathered the highlights of our project to the timeline below so you can effortlessly skim through the story of Aalto-Helsinki Bioworks! Lab things are on the right side and everything else on the left.
</p>
<p>Timeline reference links:</p>
<ul>
<li><a href="#November">November</a></li>
<li><a href="#October">October</a></li>
<li><a href="#September">September</a></li>
<li><a href="#August">August</a></li>
<li><a href="#July">July</a></li>
<li><a href="#June">June</a></li>
<li><a href="#May">May</a></li>
<li><a href="#April">April</a></li>
<li><a href="#March">March</a></li>
<li><a href="#Beginning">The Beginning</a></li>
</ul>
</article>
<ul class="timeline">
<li class="month" id="November"><div class="tldate">November 2014</div></li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Best Wiki prize!</h4>
<p><small class="text-muted">3.11.2014</small></p>
</div>
<div class="tl-body">
<p>
Amazing!! This wiki won the prize for the best undergraduate wiki! We're so happy to bring a prize to home as the first-ever Finnish team. Good job everybody and big thanks to the people who have been helping us getting there!
</p>
</div>
<img src="http://2014.igem.org/wiki/images/thumb/1/10/Aaltohelsinki_prize.jpg/800px-Aaltohelsinki_prize.jpg" class="img-responsive">
</div>
</li>
<li class="month" id="October"><div class="tldate">October 2014</div></li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Giant Jamboree in Boston</h4>
<p><small class="text-muted">30.10.-3.11.2014</small></p>
</div>
<div class="tl-body">
<p>Flights from Helsinki to Boston on 27th October. A full week in Boston. Presenting our project in front of thousands of people.</p>
</div>
</div>
</li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Bootcamp Weekend</h4>
<p><small class="text-muted">25.10.2014</small></p>
</div>
<div class="tl-body">
<p>Perfecting everything and admiring our work. All is well and we can just relax before the Jamboree.</p>
</div>
</div>
</li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Presentation at HYBER Workshop</h4>
<p><small class="text-muted">24.10.2014</small></p>
</div>
<div class="tl-body">
<p>A presentation for HYBER Workshop in Långvik; great practice for the Giant Jamboree!</p>
</div>
</div>
</li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Furiously Finishing the Wiki</h4>
<p><small class="text-muted">8.10.-17.10.2014</small></p>
</div>
<div class="tl-body">
<p>Even though we had started developing the wiki early, the freeze deadline somehow snuck up on us. So little time, so many things to do. And finishing the wiki wasn't even the only thing we had to do before going to Boston!</p>
</div>
</div>
</li>
<li class="entry timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Lab Freeze</h4>
<p><small class="text-muted">14.10.2014</small></p>
</div>
<div class="tl-body">
<p>Unfortunately, due to time running out we had to freeze the lab work and we couldn't quite finish our wet lab project. Still, after almost five months of continuous work in the lab, we can be proud of what we've achieved and learned during this project!</p>
</div>
</div>
</li>
<li class="entry timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Our New Biobricks Were Sequenced</h4>
<p><small class="text-muted">9.10.2014</small></p>
</div>
<div class="tl-body">
<p>We didn’t have time to sequence our new Biobricks before sending them to iGEM HQ but we wanted to sequence them anyway, just in case. The sequences were confirmed to be ok! We were really happy about this since we did have some doubts about making parts with PCR on our own.</p>
</div>
</div>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Team Hoodies Arrived</h4>
<p><small class="text-muted"> 8.10.2014</small></p>
</div>
<div class="tl-body">
<p>Getting ready for the Giant Jamboree!</p>
</div>
<img src="http://2014.igem.org/wiki/images/a/ad/Aalto_Helsinki_Hoodie.jpg" class="img-responsive center-block" id="tlsmallimg">
</div>
</li>
<li class="entry timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Our Biobricks Started Their Journey to Boston</h4>
<p><small class="text-muted">6.10.2014</small></p>
</div>
<div class="tl-body">
<p>Finally our own Biobricks were ready to be sent to iGEM HQ. We put them in a box and wished them a safe journey.</p>
</div>
<img src="http://2014.igem.org/wiki/images/b/b3/AaltoHelsinki_shipment.JPG" class="img-responsive">
</div>
</li>
<li class="month" id="September"><div class="tldate">September 2014</div></li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Interview for the National Radio</h4>
<p><small class="text-muted">10.9.2014</small></p>
</div>
<div class="tl-body">
<p>Out of nowhere we were invited to be interviewed for the national radio YLE! We talked about our project and showed the interviewer our lab.
</p>
</div>
</div>
</li>
<li class="entry timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Problems in the Lab (Again)</h4>
<p><small class="text-muted">1.9.-30.9.2014</small></p>
</div>
<div class="tl-body">
<p>We had a lot of problems with one specific ligation. Every time we tried, only one of the inserts seemed to ligate with the backbone and moreover the PCR and restriction digestion results on the gel looked bizarre.</p>
<p>For the longest time we pondered what could be wrong with our protocols or parts but then with the help of a professor we figured out that the problem might be that we had repetitive sequences in both inserts. Apparently <em>E. coli</em> doesn't like having two similar sequences in the same plasmid and it splices the other one out.</p>
</div>
</div>
</li>
<li class="entry timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Juggling Between Lab and School</h4>
<p><small class="text-muted">8.9.2014</small></p>
</div>
<div class="tl-body">
<p>At this point everyone already had courses going but luckily the lab is right upstairs from the lecture halls so we could still continue working almost full time in the lab. We just needed to time everything perfectly so we could go listen to the lectures while we had incubations or PCRs running.</p>
</div>
</div>
</li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Presentation at VTT Technical Research Centre of Finland</h4>
<p><small class="text-muted">5.9.2014</small></p>
</div>
<div class="tl-body">
<p>We held a presentation about our project at VTT. It was the first time we presented ourselves to a real scientific audience and we got some really good feedback from the researchers.</p>
</div>
</div>
</li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Pitch Night</h4>
<p><small class="text-muted">4.9.2014</small></p>
</div>
<div class="tl-body">
<p>Pitch Night was part of the Thinkfest arranged by the University of Helsinki in celebration of the university's 375th anniversary. Oskari gave an inspiring speech about following your dreams and introduced our project to the audience which mostly consisted of middle-aged people.</p>
</div>
</div>
</li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Aalto Party</h4>
<p><small class="text-muted">2.9.2014</small></p>
</div>
<div class="tl-body">
<p>To kick off the academic year, Aalto University hosts a party every year during the first week of school. Despite the name, it's not really a party but more of an exhibition to show all the cool stuff the university has to offer. We were there to represent our team and to tell people about iGEM and our project.</p>
</div>
</div>
</li>
<li class="month" id="August"><div class="tldate">August 2014</div></li>
<li class="entry timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Another Round of Testing</h4>
<p><small class="text-muted">28.8.2014</small></p>
</div>
<div class="tl-body">
<p>We had another round of testing with a part of our prototype and the LED rig. The results seemed really promising!</p>
</div>
</div>
</li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Bowling</h4>
<p><small class="text-muted">26.8.2014</small></p>
</div>
<div class="tl-body">
<p>We planned to go to a room escape thing but when all the suitable times were booked, Minttu took us bowling instead.</p>
</div>
</div>
</li>
<li class="entry timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>The LED Rig Is Ready!</h4>
<p><small class="text-muted">22.8.2014</small></p>
</div>
<div class="tl-body">
<p>It’s like our bacteria got their own personalized disco!</p>
</div>
<img src="http://2014.igem.org/wiki/images/0/09/AaltoHelsinki_readyLEDrig.jpg" class="img-responsive">
</div>
<li class="entry timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>A Microscope That Can Almost Make You a Cup of Coffee</h4>
<p><small class="text-muted">21.8.2014</small></p>
</div>
<div class="tl-body">
<p>We got to try a super cool programmable microscope. We wanted to see if our cells produced any GFP but unfortunately it turned out that all our cells were already dead so there was no GFP to be detected.</p>
</div>
<img src="http://2014.igem.org/wiki/images/3/3f/AaltoHelsinki_supermicroscope.jpg" class="img-responsive center-block" id="tlsmallimg">
</div>
</li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>The Night of the Arts in Helsinki and More Pinball</h4>
<p><small class="text-muted">21.8.2014, 22.8.2014</small></p>
</div>
<div class="tl-body">
<p> We went to visit the observatory during the Night of the Arts event in Helsinki. There were also massive soap bubbles and a man with a whole band setup in a baby carriage.</p>
<p> The next day we went back to playing pinball and Crash Team Racing because it was so much fun last week.</p>
<img src="http://2014.igem.org/wiki/images/b/b1/Aalto_Helsinki_Pinball.jpg" class="img-responsive">
</div>
</div>
</li>
<li class="entry timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Testing Started!</h4>
<p><small class="text-muted">19.8.2014</small></p>
</div>
<div class="tl-body">
<p>We built the first part of the prototype and started testing!</p>
</div>
</div>
</li>
<li class="entry timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Our Synthesized Genes Arrived!</h4>
<p><small class="text-muted">18.8.2014</small></p>
</div>
<div class="tl-body">
<p>After a long while, our genes finally arrived. Now we could take them and other parts we had assembled and put the whole ingenious genetically engineered machine together.</p>
</div>
</div>
</li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Meeting at Heureka Science Center!</h4>
<p><small class="text-muted">18.8.2014</small></p>
</div>
<div class="tl-body">
<p>We met the event manager and event organizer of Heureka and came up with an idea of a synthetic biology weekend workshop we could organize in the spring.</p>
<p>They were very excited about us and everything we had to show and tell.</p>
<p>We hope to inspire young people to study synthetic biology in the future and let the older people know it exists.</p>
</div>
</div>
</li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Pinball Night</h4>
<p><small class="text-muted">14.8.2014</small></p>
</div>
<div class="tl-body">
<p>Lassi took us to play pinball. It was surprisingly fun. We played a ton of Crash Team Racing too.</p>
</div>
<img src="http://2014.igem.org/wiki/images/2/24/Aalto_Helsinki_CTR.jpg" class="img-responsive center-block" id="tlsmallimg">
</div>
</li>
<li class="entry timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Early Version of the LED Rig</h4>
<p><small class="text-muted">14.8.2014</small></p>
</div>
<div class="tl-body">
<p>Pietu had been busy making the LED rig inspired by Tabor Lab. This is what the early version looked like. The LED rig would be the tool to control our light sensitive bacteria.</p>
</div>
<img src="http://2014.igem.org/wiki/images/7/73/AaltoHelsinki_earlyLEDrig.jpg" class="img-responsive">
</div>
</li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>HYBER Took Interest in Us!</h4>
<p><small class="text-muted">8.8.2014</small></p>
</div>
<div class="tl-body">
<p>We met with The Academy of Finland's Center of Excellence HYBER 2014-2019. They wanted to support us and invited us to talk in workshop that would be arranged just before the Giant Jamboree.</p>
<p>In the evening Oskari took us to play laser tag! He was way better at it than anyone else.</p>
</div>
</div>
</li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>MIT Media Lab People Came to Visit Us</h4>
<p><small class="text-muted">7.8.2014</small></p>
</div>
<div class="tl-body">
<p>Marko Ahtisaari and Madeleine Abromowitz from MIT Media Lab came to visit our office and lab. We discussed about a possible pop-up media lab in Helsinki and threw some ideas in the air. We were also invited to go visit the actual MIT Media Lab in Boston when we go there for the Giant Jamboree.</p>
</div>
</div>
</li>
<li class="entry timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>The First Sequencing Results Arrived</h4>
<p><small class="text-muted">5.8.2014</small></p>
</div>
<div class="tl-body">
<p>We got our first sequencing results that were in confusing .ab1-files. Then it turned out that Geneious program makes analysing them incredibly easy. Most of the sequences looked good, some not so much.</p>
</div>
</div>
</li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Friday Sushi Lunch</h4>
<p><small class="text-muted">1.8.2014</small></p>
</div>
<div class="tl-body">
<p>Instead of staying in our HQ and eating in the cafeteria next to it, Laura took us to eat fancy sushi. It was delicious and fun.</p>
</div>
<img src="http://2014.igem.org/wiki/images/0/00/AaltoHelsinki_sushi.jpg" class="img-responsive">
</div>
</li>
<li class="month" id="July"><div class="tldate">July 2014</div></li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Building the Synthesizable Sequences</h4>
<p><small class="text-muted">31.7.2014</small></p>
</div>
<div class="tl-body">
<p>We assembled the sequences we wanted to synthesize. They included the lambda repressor <em>O</em><sub>R</sub> sites that we designed. We found out that the synthesizing costs the same for 0-1000 nucleotides, so we included a few surrounding BioBricks to save on lab time. (The <em>O</em><sub>R</sub> sites are fairly small.)</p>
</div>
</div>
</li>
<li class="entry timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>The First Ligations Were Sent to Be Sequenced</h4>
<p><small class="text-muted">28.7.2014</small></p>
</div>
<div class="tl-body">
<p>We had a number of ligations ready for assembling and it turned out there was a sequencing lab about 5 kilometers away.</p>
<p>We sealed 16 samples into tubes and sent them off. We were left eagerly awaiting to see if the work this far had succeeded.</p>
</div>
</div>
</li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Meeting with Tania</h4>
<p><small class="text-muted">22.7.2014</small></p>
</div>
<div class="tl-body">
<p> We met Tania, an ex-iGEMer from the <a href="http://2012.igem.org/Team:Amsterdam/team/members">2012 Amsterdam team.</a> It was a great meeting and we finally got some validation that we're doing some things right.</p>
<p>In the evening Martina took us geocaching! It is amazing what can be hidden completely in plain sight.</p>
</div>
</div>
</li>
<li class="entry timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>New Primers</h4>
<p><small class="text-muted">22.7.2014</small></p>
</div>
<div class="tl-body">
<p>The new primers designed by Lassi arrived and we tested them in amplifying the backbones with PCR. The primers bind to the RFP insert instead of the prefix and suffix which have a palindromic site and can cause troubles. In the end we didn't use PCR amplification of the backbones since we opted for multiplying the whole plasmids in bacteria and gel purifying them instead. However, we did submit the primers to the Registry and you can find them here <a href="http://parts.igem.org/Part:BBa_K1443003">BBa_K1443003</a> and <a href="http://parts.igem.org/Part:BBa_K1443004">BBa_K1443004</a>.</p>
</div>
<img src="http://2014.igem.org/wiki/images/2/2f/AaltoHelsinki_primers.jpg" class="img-responsive">
</div>
</li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Demo Day</h4>
<p><small class="text-muted">15.7.2014</small></p>
</div>
<div class="tl-body">
<p>We presented our idea to hundreds of people and held a booth for 6 hours.</p>
</div>
<img src="http://2014.igem.org/wiki/images/0/06/Aalto_Helsinki_Demoday.jpg" class="img-responsive">
</div>
</li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>A Movie Night with the Team</h4>
<p><small class="text-muted">14.7.2014</small></p>
</div>
<div class="tl-body">
<p>In the evening Mikko took us to watch the movies <i>The Skin I Live In</i>, <i>Scott Pilgrim vs. The World</i> and <i>The Grand Budapest Hotel</i>.</p>
</div>
</div>
</li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>The Gene Circuit Was Finished</h4>
<p><small class="text-muted">14.7.2014</small></p>
</div>
<div class="tl-body">
<p>We finished the gene circuit and now we could start designing the parts that would be synthesized.</p>
</div>
<img src="http://2014.igem.org/wiki/images/a/a5/Aalto_Helsinki_loop.png" class="img-responsive">
</div>
</li>
<li class="entry timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Working Hard in the Lab</h4>
<p><small class="text-muted">13.7.2014</small></p>
</div>
<div class="tl-body">
<p>We were working hard in the lab during July and got many new ligations done. At this point the lab had started to feel like a home already.</p>
</div>
<img src="http://2014.igem.org/wiki/images/a/aa/AaltoHelsinki_labbenchtop.jpg" class="img-responsive">
</div>
</li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Summer of Startups Tallinn Trip!</h4>
<p><small class="text-muted">10-11.7.2014</small></p>
</div>
<div class="tl-body">
<p>Summer of Startups took us to visit the startup people of Tallinn. We decided this was a practice trip for Boston, so we planned to have as much fun as possible. It was a great success and an unforgettable experience.</p>
</div>
<img src="http://2014.igem.org/wiki/images/f/f9/Aalto_Helsinki_Tallinna.jpg" class="img-responsive">
</div>
</li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Extensive Research on the Lambda Repressor</h4>
<p><small class="text-muted">8.7.2014</small></p>
</div>
<div class="tl-body">
<p> We found out that the lambda repressor system would be perfect for our three-way switch idea. We figured out how it worked and how to include it in our gene circuit.</p>
</div>
<img src="http://2014.igem.org/wiki/images/f/f6/Aalto_Helsinki_Dark_Science.jpg" class="img-responsive">
</div>
</li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>The "Fun Master" System Began</h4>
<p><small class="text-muted">4.7.2014</small></p>
</div>
<div class="tl-body">
<p>We decided we should do something (not iGEM-related) fun every week as a group. Each team member had their own week to plan an activity and pull the team to the mandatory weekly having-fun moment.</p>
<p>So, Otto surprised us with a fruit juicer and a ton of fresh fruit. We spent the early morning happily drinking smoothies while working intensely on our project.</p>
</div>
<img src="http://2014.igem.org/wiki/images/b/b4/Aalto_Helsinki_Friday_Juice.jpg" class="img-responsive center-block" id="tlsmallimg">
</div>
</li>
<li class="entry timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>A N00b in the Lab</h4>
<p><small class="text-muted">3.7.2014</small></p>
</div>
<div class="tl-body">
<p>As Niklas had never been in a lab before and he was eager to see what we do there, we took him in for the day and showed him all the cool stuff. He even got to try some pipetting (with water only, although it didn't seem to lessen his enthusiasm)!</p>
</div>
</div>
</li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>The First Team Member Chimera</h4>
<p><small class="text-muted">2.7.2014</small></p>
</div>
<div class="tl-body">
<p>Because chimera is a term both in gene technology and mythology, Laura decided (and others immediately agreed) that drawing a chimera for each member would be a cool idea. Everyone could decide three animals and a chimera would be drawn based on those.</p>
<p>To read more about the chimeras, head to <a href="http://2014.igem.org/Team:Aalto-Helsinki/Outreach#chimeras">"chimeras" section on the Outreach page</a>.</p>
<img src="http://2014.igem.org/wiki/images/b/b3/Aalto_Helsinki_Kimeerakollaasi.png" class="img-responsive"></img>
</div>
</div>
</li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Brian Is Born</h4>
<p><small class="text-muted">1.7.2014, 2.7.2014</small></p>
</div>
<div class="tl-body">
<p>We got the idea of explaining synthetic biology as turning bacteria into superheroes from a meeting with Micki Honkavaara. We started working on a new pitch based on that.</p>
<p>Pietu finished the pitch the next day and presented it at Summer of Startups. It seemed to go over very well. People finally understood what we were doing.</p>
</div>
</div>
</li>
<li class="month" id="June"><div class="tldate">June 2014</div></li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>BioBrick Seeker on the iGEM Help and Community Pages</h4>
<p><small class="text-muted">25.6.2014</small></p>
</div>
<div class="tl-body">
<p>Our BioBrick Seeker had been mentioned on the official help page for a while. We only noticed it now.</p>
<p>We also wrote a small advertisement text for the Community page and got the Seekers featured there.</p>
</div>
<img src="http://2014.igem.org/wiki/images/a/a7/Aalto_Helsinki_kasi_vectored_light.png" class="img-responsive center-block" id="tlsmallimg"></img>
</div>
</li>
<li class="entry timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>The First BioBrick Ligation Combo Worked</h4>
<p><small class="text-muted">24.6.2014</small></p>
</div>
<div class="tl-body">
<p>We even checked it with a gel.</p>
</div>
<img src="http://2014.igem.org/wiki/images/c/cd/AaltoHelsinki_ligationgel.jpg" class="img-responsive center-block" id="tlsmallimg">
</div>
</li>
<li class="entry timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>We Had Visitors in the Lab</h4>
<p><small class="text-muted">23.6.2014</small></p>
</div>
<div class="tl-body">
<p>The Summer of Startups people came to visit our lab and see what we’re actually doing.</p>
</div>
<img src="http://2014.igem.org/wiki/images/0/0a/AaltoHelsinki_SoSLab.JPG" class="img-responsive">
</div>
</li>
<li class="entry timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Backbones</h4>
<p><small class="text-muted">13.6.2014</small></p>
</div>
<div class="tl-body">
<p>We found out that the Registry provides BBa_J04450 parts in different backbones, which could be used as destination plasmids. The red fluorescent protein insert makes it easier to screen out the background.</p>
</div>
<img src="http://2014.igem.org/wiki/images/7/7f/AaltoHelsinki_RFPbackbone.JPG" class="img-responsive">
</div>
</li>
<li class="entry timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Gradient PCR</h4>
<p><small class="text-muted">12.6.2014</small></p>
</div>
<div class="tl-body">
<p>We kept getting weird results from PCR so we tried to solve the issue by doing a gradient PCR with different annealing temperatures. It seemed like 55 °C would be the answer to our problems.</p>
</div>
<img src="http://2014.igem.org/wiki/images/2/27/AaltoHelsinki_gradientPCR.jpg" class="img-responsive center-block" id="tlsmallimg">
</div>
</li>
<li class="entry timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>First Colony PCR: No Successful Ligations</h4>
<p><small class="text-muted">11.6.2014</small></p>
</div>
<div class="tl-body">
<p>We made our first colony PCR to test if the ligations seemed right. Unfortunately they didn’t. We decided to make linearized plasmid backbones to increase the efficiency.</p>
</div>
<img src="http://2014.igem.org/wiki/images/3/31/AaltoHelsinki_firstPCR.jpg" class="img-responsive center-block" id="tlsmallimg">
</div>
</li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>BioBrick Seeker Spreading</h4>
<p><small class="text-muted">10.6.2014</small></p>
</div>
<div class="tl-body">
<p>BioBrick Seeker received attention on Twitter. People really seemed to like the tool.</p>
</div>
<img src="http://2014.igem.org/wiki/images/9/93/AaltoHelsinki_seekertweet.png" class="img-responsive">
</div>
</li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Writing Sponsorship Applications</h4>
<p><small class="text-muted">9.6.2014</small></p>
</div>
<div class="tl-body">
<p>We were trying to advertise ourselves and get some kind of financial help and support for this project. It felt really difficult and time consuming. We also took some new pictures, a new group photo, for example.</p>
</div>
<img src="http://2014.igem.org/wiki/images/7/73/Aalto_Helsinki_Team.jpg" class="img-responsive"></img>
</div>
</li>
<li class="entry timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Trouble in the Lab</h4>
<p><small class="text-muted">9.6.2014</small></p>
</div>
<div class="tl-body">
<p>The backbones didn't seem to be working right and the negative control kept growing. Not good.</p>
<p>The reason seemed to be that we hadn’t gel purified the backbone and it kept religating with itself.</p>
</div>
</div>
</li>
<li class="entry timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>The Ligation Calculator</h4>
<p><small class="text-muted">5.6.2014</small></p>
</div>
<div class="tl-body">
<p>We made a ligation calculator to help us estimate the amounts of different plasmids to be digested. The calculator calculates how many microliters of miniprepped plasmid is needed to be digested in order to pipet 4 ul of each digestion mix to the ligation mix. Insert-plasmid ratio as well as vector mass fields could be changed if needed. Taking these two variables into account, the appropriate molar amount and then the mass amount of inserts are calculated using the information of their lengths. This tiny little excel tool really saved time in the lab during the summer.</p>
</div>
<img src="http://2014.igem.org/wiki/images/4/4d/AaltoHelsinki_ligationcalculator.png" class="img-responsive">
</div>
</li>
<li class="month" id="May"><div class="tldate">May 2014</div></li>
<li class="entry timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Precipitation of the Cell Membranes</h4>
<p><small class="text-muted">30.5.2014</small></p>
</div>
<div class="tl-body">
<p>This process would be repeated about 50 times during the summer, but this was the first.<a href="http://www.youtube.com/watch?v=TI_EuzNIaPg"><img src="http://2014.igem.org/wiki/images/f/f5/Aalto_Helsinki_Cell_Membrane_Video.png" class="img-responsive"></a>.</p>
</div>
</div>
</li>
<li class="entry">
<div class="timeline-panel">
<div class="tl-heading">
<h4>The First Version of BioBrick Seeker</h4>
<p><small class="text-muted">30.5.2014</small></p>
</div>
<div class="tl-body">
<p>It started from the mild inconvenience of searching for BioBricks from four different excel sheets in the lab. At this point, the Registry pages didn't yet have the updated info about part availability either. With the tool we could search through this year's distribution effortlessly. Because it was so useful for us, we decided to share it to others, too.</p>
</div>
</div>
</li>
<li class="entry timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>The First BioBrick Transformation in Finland</h4>
<p><small class="text-muted">27.5.2014</small></p>
</div>
<div class="tl-body">
<p>Cooool. There it was!</p>
</div>
<img src="http://2014.igem.org/wiki/images/3/30/Aalto_Helsinki_First_Transformation.jpg" class="img-responsive">
</div>
</li>