-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpeople.html
971 lines (872 loc) · 40.3 KB
/
people.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Nagarajan Lab @ Genome Institute of Singapore</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Nagarajan Lab Webpage" />
<meta name="author" content="Niranjan Nagarajan" />
<!-- css -->
<link href="css/bootstrap.min.css" rel="stylesheet" />
<link href="css/fancybox/jquery.fancybox.css" rel="stylesheet">
<link href="css/jcarousel.css" rel="stylesheet" />
<link href="css/flexslider.css" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet" />
<!-- Theme skin -->
<link href="skins/default.css" rel="stylesheet" />
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div id="wrapper">
<!-- start header -->
<header>
<div class="navbar navbar-default navbar-static-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"><span>N</span>agarajan Lab</a>
</div>
<div class="navbar-collapse collapse ">
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li class="dropdown">
<a href="research_overview.html" class="dropdown-toggle " data-toggle="dropdown" data-hover="dropdown" data-delay="0" data-close-others="false">Research <b class=" icon-angle-down"></b></a>
<ul class="dropdown-menu">
<li><a href="computational_genomics.html">Computational Genomics</a></li>
<li><a href="microbiome_studies.html">Microbiome Studies</a></li>
<li><a href="personalized_cancer_omics.html">Personalized Cancer Omics</a></li>
</ul>
</li>
<li><a href="publications.html">Publications</a></li>
<li><a href="software.html">Software</a></li>
<li class="active"><a href="people.html">People</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</div>
</header>
<!-- end header -->
<section id="inner-headline">
<div class="container">
<div class="row">
<div class="col-lg-12">
<ul class="breadcrumb">
<li><a href="#"><i class="fa fa-home"></i></a><i class="icon-angle-right"></i></li>
<li>People</a></li>
</ul>
</div>
</div>
</div>
</section>
<!-- add page specific text here -->
<section id="content">
<div class="container">
<ul class="nav nav-tabs">
<li class="active"><a href="#Current" data-toggle="tab"><i class="icon-briefcase"></i> Current Members</a></li>
<li><a href="#Former" data-toggle="tab">Former Members</a></li>
<li><a href="#Interns" data-toggle="tab">Interns</a></li>
<li><a href="#Jobs" data-toggle="tab">Open Positions</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="Current">
<div class="row">
<div class="col-xs-12 col-lg-6">
<img src="img/people/niranjan.jpg" height="140" width="140" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Niranjan Nagarajan (Principal Investigator)</b></li>
<li>B.A. in Computer Sci. & Mathematics (<a href="http://www.owu.edu">Ohio Wesleyan</a>, 2000)</li>
<li>Ph.D. in <a href="http://www.cs.cornell.edu">Comp. Sci.</a> (<a href="http://www.cornell.edu">Cornell Univ.</a>, 2006; Advisor: <a href="http://www.maths.usyd.edu.au/u/uri/">Uri Keich</a>)</li>
<li>Postdoctoral Fellowship in <a href="http://www.cbcb.umd.edu">CBCB</a> (UMD, Advisor: <a href="http://www.cbcb.umd.edu/~mpop/">Mihai Pop</a>)</li>
<li>Profiles: <a href="https://scholar.google.com/citations?user=s65iHisAAAAJ&hl=en">Google Scholar</a>, <a href="https://sg.linkedin.com/in/niranjan-nagarajan-765151ba">LinkedIn</a></li>
</ul>
</div>
<div class="col-xs-12 col-lg-6">
<img src="img/people/minghao.jpg" height="140" width="140" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Minghao Chia (Research Fellow)</b></li>
<li>B.S. Biomedical Science (<a href="https://www.ucl.ac.uk/">UCL</a>, 2013)</li>
<li>Ph.D in Cell Fate and Gene Regulation (<a href="https://www.crick.ac.uk/">The Francis Crick Institute</a>, 2019) </li>
<li>Profiles: <a href="https://www.researchgate.net/scientific-contributions/2115132278_Minghao_Chia">ResearchGate</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-lg-6">
<img src="img/people/kernrei_new.jpg" height="140" width="140" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Kern Rei Chng (Programme Manager)</b></li>
<li>Ph.D. (<a href="http://www.nus.edu.sg/">NUS</a>, 2012)</li>
<li>Profiles: <a href="http://scholar.google.com.sg/citations?user=85kC0PsAAAAJ&hl=en">Google Scholar</a></li>
</ul>
</div>
<div class="col-xs-12 col-lg-6">
<img src="img/people/Karrie.jpg" height="140" width="140" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Karrie Ko (Graduate Student)</b></li>
<li>MD (<a href="https://www.duke-nus.edu.sg/">Duke-NUS Medical School</a>)</li>
<li>FRCPath, FRCPA</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-lg-6">
<img src="img/people/nok.jpg" height="140" width="140" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Suphavilai Chayaporn (Post Doctoral Fellow)</b></li>
<li>B.S. in Computer Sci. (<a href="http://www.ku.ac.th/">Kasetsart Univ.</a>, 2011)</li>
<li>M.S. in Computer Sci. (<a href="http://cs.iupui.edu/">Purdue Univ.</a>, 2014)</li>
<li>Ph.D. in Computer Sci. (<a href="http://www.comp.nus.edu.sg/">NUS SoC</a>, 2019) </li>
<li>Profiles: <a href="https://scholar.google.com/citations?user=7J6wO9AAAAAJ&hl=en">Google Scholar</a></li>
</ul>
</div>
<div class="col-xs-12 col-lg-6">
<img src="img/people/amanda.jpg" height="140" width="140" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Ng Hui Qi Amanda (Senior Research Officer)</b></li>
<li>B.S. (Hons.) in Biological Sci. (<a href="http://www.ntu.edu.sg/Pages/home.aspx">NTU</a>, 2013)</li>
<li>Profiles: <a href="https://www.linkedin.com/in/amanda-ng-193b8783/">LinkedIn</a>, <a href="https://www.researchgate.net/profile/Amanda_Ng11">ResearchGate</a> </li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-lg-6">
<img src="img/people/Samantha.jpg" height="140" width="140" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Kwah Junmei Samantha (Research Officer)</b></li>
<li>B.S. (Hons.) in Biological Sci. (<a href="http://www.ntu.edu.sg/Pages/home.aspx">NTU</a>, 2013)</li>
</ul>
</div>
<div class="col-xs-12 col-lg-6">
<img src="img/people/aarthi.jpg" height="140" width="140" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Aarthi Ravikrishnan (Post Doctoral Fellow)</b></li>
<li>Ph.D. in Computational Systems Biology (<a href="https://www.iitm.ac.in/">Indian Inst. of Tech. Madras</a>, 2019)</li>
<li>Profiles: <a href="http://scholar.google.com/citations?user=Y8zV7tYAAAAJ&hl=en">Google Scholar</a>, <a href="https://sg.linkedin.com/in/aarthi-ravikrishnan-85811549">LinkedIn</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-lg-6">
<img src="img/people/hanrong.jpg" height="140" width="140" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Hanrong Chen (Research Fellow)</b></li>
<li>B.A. Physics & Mathematics (<a href="https://www.cornell.edu/">Cornell Univ.</a>, 2011)</li>
<li>Ph.D. Applied Physics (<a href="https://www.harvard.edu/">Harvard Univ.</a>, 2018)</li>
<li>Postdoctoral Researcher (<a href="https://www.upenn.edu/">Univ. of Pennsylvania</a>, 2020)</li>
<li>Profiles: <a href="https://www.linkedin.com/in/hanrong-chen-0a432a45/">LinkedIn</a></li>
</ul>
</div>
<div class="col-xs-12 col-lg-6">
<img src="img/people/nazri.jpeg" height="140" width="140" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Ahmad Nazri Mohamed Naim (Senior Research Officer)</b></li>
<li>B.S. (Hons.) in Biotech. (<a href="https://www.utas.edu.au/">Univ. of Tasmania</a>, 2007)</li>
<li>Profiles: <a href="https://www.linkedin.com/in/ahmadnazri/">LinkedIn</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-lg-6">
<img src="img/people/eliza.jpg" height="140" width="140" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Eliza Ho (Research Officer)</b></li>
<li>B.S. (Hons.) in Biotech.(<a href="https://www.uq.edu.au/">Univ. of Queensland</a>)</li>
</ul>
</div>
<div class="col-xs-12 col-lg-6">
<img src="img/people/km.png" height="140" width="140" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Lim Kar Mun (Research Officer)</b></li>
<li>B.S. (Hons.) in Science (Life Sciences) (<a href="http://www.nus.edu.sg/">NUS</a>, 2018)</li>
<li>Profiles: <a href="https://www.linkedin.com/in/karmun-lim-7ab26b168/">LinkedIn</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-lg-6">
<img src="img/people/alkaff.jpg" height="140" width="140" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>A Alkaff Ahamed (Bioinformatics Specialist)</b></li>
<li>B.Tech. in Info. Tech. (<a href="https://www.srmist.edu.in/">SRM Inst.of Sci. and Tech. </a>, 2019)</li>
<li>Profiles: <a href="https://www.linkedin.com/in/a-alkaff-ahamed-5756b4155/">LinkedIn</a></li>
</ul>
</div>
<div class="col-xs-12 col-lg-6">
<img src="img/people/rafael.jpeg" height="140" width="140" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Rafael Peres Da Silva (Graduate Student)</b></li>
<li>M.S. in Biophysics (<a href="https://biof.ufrj.br/ ">Federal Univ. of Rio de Janeiro</a>, 2017)</li>
<li>Ph.D. in Computer Sci. (<a href="http://www.comp.nus.edu.sg/">NUS SoC</a>, 2018-Present)</li>
<li>Profiles: <a href="https://scholar.google.com/citations?user=w12iyzIAAAAJ&hl">Google Scholar</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-lg-6">
<img src="img/people/sylvain.jpg" height="140" width="140" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Sylvain Jun-Zhe Riondet (Graduate Student)</b></li>
<li>M.S. in Electrical Eng. (<a href="http://www.insa-strasbourg.fr/en/">INSA Strasbourg</a>, 2015)</li>
<li>Ph.D. in Computer Sci. (<a href="http://www.comp.nus.edu.sg/">NUS SoC</a>, 2018-Present)</li>
</ul>
</div>
<div class="col-xs-12 col-lg-6">
<img src="img/people/jsebastian.jpg" height="140" width="140" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Jean-Sebastien Gounot (Post-Doctoral Fellow)</b></li>
<li>Ph.D. (<a href="http://en.unistra.fr/">Strasbourg Univ.</a>, 2018)</li>
<li>Profiles: <a href="https://www.linkedin.com/in/jsgounot/">LinkedIn</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-lg-6">
<img src="img/people/jonT.jpg" height="140" width="140" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Jonathan J.Y. Teo (Research Fellow)</b></li>
<li>B.A. in Physics and Biophysics (<a href="https://www.jhu.edu/">Johns Hopkins Univ.</a>, 2012)</li>
<li>Ph.D. in Computational Bio. (<a href="http://www.mit.edu/">MIT</a>, 2019)</li>
<li>Profiles: <a href="https://www.linkedin.com/in/jonathanjyteo/">LinkedIn</a></li>
</ul>
</div>
</div>
<!-- <div class="row">
add new people
</div> -->
</div>
<div class="tab-pane" id="Former">
<!-- <div class="row"> -->
<div class="row">
<div class="col-xs-12 col-sm-6 col-lg-6">
<img src="img/people/song.jpg" height="100" width="100" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Gao Song (Graduate Student)</b></li>
<li>Current Position: <a href="https://www.sahmri.com/our-research/themes/heart-health/theme/our-team/dr-song-gao" target="_blank">EMBL Australia post-doctoral researcher</a></li>
</ul>
</div>
<div class="col-xs-12 col-sm-6 col-lg-6">
<img src="img/people/juntao.jpg" height="100" width="100" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Li Juntao (Research Fellow)</b></li>
<li>Current Position: <a href="https://sg.linkedin.com/in/juntao-li-02316820" target="_blank">Biostatistician (Lundbeck, Singapore)</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-6 col-lg-6 ">
<img src="img/people/esther.png" height="100" width="100" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Boey Jia Hui Esther (Research Officer)</b><li>
<li>Current Position: <a href="https://www.linkedin.com/in/esther-boey-278b4751/" target="_blank">Delta Electronics</a></li>
</ul>
</div>
<div class="col-xs-12 col-sm-6 col-lg-6">
<img src="img/people/burton.jpg" height="100" width="100" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Burton Chia (Bioinformatics Analyst)</b></li>
<li>Current Position: <a href="https://sg.linkedin.com/in/burton-chia-50936832" target="_blank"> Bioinformatics Analyst (NCCS)</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-6 col-lg-6">
<img src="img/people/andreas.jpg" height="100" width="100" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Andreas Wilm (Research Associate)</b></li>
<li>Current Position: <a href="https://scholar.google.com/citations?user=V8Ueo9cAAAAJ" target="_blank">Cloud Solution Architect (Microsoft)</a></li>
</ul>
</div>
<!-- </div> -->
<!-- <div class="row"> -->
<div class="col-xs-12 col-sm-6 col-lg-6">
<img src="img/people/vinutha.jpg" height="100" width="100" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Vinutha Kukkillaya (Bioinformatics Specialist)</b></li>
<li>Current Position: <a href="https://" target="_blank"></a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-6 col-lg-6">
<img src="img/people/sun_miao.jpg" height="100" width="100" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Sun Miao (Research Fellow)</b></li>
<li>Current Position: <a href="https://sg.linkedin.com/in/miao-sun-38982422">Bioinformatics Scientist (Human Longevity)</a></li>
</ul>
</div>
<div class="col-xs-12 col-sm-6 col-lg-6">
<img src="img/people/davide.jpg" height="100" width="100" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Davide Verzotto (Post-doctoral Fellow)</b></li>
<li>Current Position: <a href="https://" target="_blank"></a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-6 col-lg-6">
<img src="img/people/Tannistha.jpg" height="100" width="100" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Tannistha (Staff Scientist)</b></li>
<li>Current Position: </li>
</ul>
</div>
<div class="col-xs-12 col-sm-6 col-lg-6">
<img src="img/people/guangxi.jpg" height="100" width="100" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Wu Guangxi (Post-doctoral Fellow)</b></li>
<li>Current Position: <a href="https://www.linkedin.com/in/guangxi-wu-bb35a750/">ORISE Fellow (USDA-ARS)</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-6 col-lg-6">
<img src="img/people/tarini.jpg" height="100" width="100" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Tarini Ghosh (Post-doctoral Fellow)</b> </li>
<li>Current Position:<a href="https://" target="_blank"></a></li>
</ul>
</div>
<div class="col-xs-12 col-sm-6 col-lg-6">
<img src="img/people/shenyang.jpg" height="100" width="100" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Shen Yang (Staff Scientist)</b> </li>
<li>Current Position:<a href="https://" target="_blank"></a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-6 col-lg-6">
<img src="img/people/jayce.jpg" height="100" width="100" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Jayce Koh (Bioinformatic Specialist)</b> </li>
<li>Current Position:<a href="https://" target="_blank">Bioinformatic Specialist (SRC-Data Hub, GIS)</a></li>
</ul>
</div>
<div class="col-xs-12 col-sm-6 col-lg-6">
<img src="img/people/nathaniel.jpg" height="100" width="100" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Nathaniel Tay (Research Officer)</b> </li>
<li>Current Position:<a href="https://" target="_blank">Duke-NUS Graduate Student</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-6 col-lg-6">
<img src="img/people/denis.jpg" height="100" width="100" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Denis Bertrand (Staff Scientist)</b> </li>
<li>Current Position:<a href="https://" target="_blank"></a></li>
</ul>
</div>
<div class="col-xs-12 col-sm-6 col-lg-6">
<img src="img/people/cx.jpg" height="100" width="100" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Tong Chengxuan (Bioinformatics Specialist)</b> </li>
<li>Current Position:<a href="https://www.linkedin.com/in/chengxuan-tong-8331a2158/" >NTU Graduate Student</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-6 col-lg-6">
<img src="img/people/jonK.jpg" height="100" width="100" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Jonathan Kang (Research Fellow)</b> </li>
<li>Current Position:<a href="https://" target="_blank"></a></li>
</ul>
</div>
<div class="col-xs-12 col-sm-6 col-lg-6">
<img src="img/people/eileen.jpeg" height="100" width="100" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Eileen Png (Research Associate)</b> </li>
<li>Current Position:<a href="https://" target="_blank"></a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-6 col-lg-6">
<img src="img/people/chenhao.jpg" height="100" width="100" class="pull-left" alt="" />
<ul style="list-style-type:none">
<li><b>Li Chenhao (Research Associate)</b> </li>
<li>Current Position:<a href="https://" target="_blank"></a></li>
</ul>
</div>
</div>
<!-- </div> -->
</div>
<div class="tab-pane" id="Interns">
<!-- <div class="row"> -->
<div class="row">
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/jessica.jpg" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b><a href="https://www.linkedin.com/in/jessicaque/" target="_blank">Jessica Que</a></b></li>
<li>BS in Univ. of British Columbia</li>
</ul>
</div>
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/siqi.jpg" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b>Wang Siqi</b></li>
<li>BS in Nanyang Tech. Univ.</li>
</ul>
</div>
<!-- </div> -->
<!-- <div class="row"> -->
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/grace.jpg" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b><a href="http://cgs.csail.mit.edu/team/" target="_blank">Grace Yeo</a></b></li>
<li>BS in Johns Hopkins; PhD in MIT</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/scholar.jpg" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b>Sibyl Drissler</b></li>
<li>BS in Univ. of British Columbia</li>
</ul>
</div>
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/ankica.jpg" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b>Ankica Gogić</b></li>
<li>MS in Univ. of Zagreb</li>
</ul>
</div>
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/janja.jpg" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b><a href="https://www.linkedin.com/in/janja-paliska-ba9414aa/" target="_blank">Janja Paliska</a></b></li>
<li>MS in Univ. of Zagreb</li>
</ul>
</div>
</div>
<!-- </div> -->
<!-- <div class="row"> -->
<div class="row">
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/mirta.jpg" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b><a href="https://www.linkedin.com/in/mdvornicic/" target="_blank">Mirta Dvornicic</a></b></li>
<li>MS in Univ. of Zagreb</li>
</ul>
</div>
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/vanessa.jpg" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b><a href="https://www.linkedin.com/in/vanessa-%25C5%25BEupanovi%25C4%2587-7556a554/" target="_blank">Vanessa Županović</a></b></li>
<li>MS in Univ. of Zagreb</li>
</ul>
</div>
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/zia.jpg" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b><a href="https://www.linkedin.com/in/seyed-ziaeddin-alborzi-a2aaa238/" target="_blank">Ziaeddin Alborzi</a></b></li>
<li>PhD in IRIA (France)</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/senthil.jpg" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b>Senthil Muthiah</b></li>
<li>PhD in UMD</li>
</ul>
</div>
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/anja.png" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b><a href="https://www.linkedin.com/in/anja-kiesel-04441988/" target="_blank">Anja Kiesel</a></b></li>
<li>PhD in Gene Center Munich</li>
</ul>
</div>
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/Ivan_Sovic.png" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b><a href="https://www.linkedin.com/in/isovic/" target="_blank">Ivan Sović</a></b></li>
<li>MS in Univ. of Zagreb</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/filip.jpg" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b><a href="https://www.linkedin.com/in/fhrenic/" target="_blank">Filip Hrenić</a></b></li>
<li>M.S. in Univ. of Zagreb</li>
</ul>
</div>
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/vedrana.jpg" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b><a href="https://www.linkedin.com/in/vedrana-vazdar-2ab2a591/" target="_blank">Vedrana Vazdar</a></b></li>
<li>M.S. in Univ. of Zagreb</li>
</ul>
</div>
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/scholar.jpg" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b>Kenneth Lim Kun Ming</b></li>
<li>B.S. in National Univ. of Singapore</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/Camille.JPG" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b><a href="https://www.linkedin.com/in/camille-de-cevins-471a992b/" target="_blank">Camille de Cevins</a></b></li>
<li>M.S. in Université Paris Saclay</li>
</ul>
</div>
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/Jim.jpg" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b>Jim Shaw</b></li>
<li>B.S. in Univ. of British Columbia</li>
</ul>
</div>
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/Koonhan.jpg" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b><a href="https://www.linkedin.com/in/koon-han-ong-b2149493/" target="_blank">Ong Koon Han</a></b></li>
<li>BAcc in Singapore Management Univ.</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/JingChong.jpg" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b>Tan Jing Chong</b></li>
<li>BA in Univ. of Cambridge</li>
</ul>
</div>
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/Jonathan.jpg" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b>Jonathan Ng</b></li>
<li>M.S. in National Univ. of Singapore</li>
</ul>
</div>
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/Tamar.JPG" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b><a href="https://www.linkedin.com/in/tamar-av-shalom-8b7aa3121" target="_blank">Tamar Av-Shalom</a></b></li>
<li>B.S. in Univ. of British Columbia</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/Manesh.jpg" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b><a href="https://www.linkedin.com/in/manesh-narayan-k/" target="_blank">Manesh Narayan K</a></b></li>
<li>M.S. in Birla Inst. of Tech. and Sc., Pilani </li>
</ul>
</div>
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/Lorna Tu.JPG" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b>Lorna Tu</b></li>
<li>B.S. in Univ. of British Columbia</li>
</ul>
</div>
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/aanchal.jpg" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b><a href="https://sites.google.com/iiitd.ac.in/aanchalmongia" target="_blank">Aanchal Mongia</a></b></li>
<li>Ph.D. in Indraprastha Inst. of Info. Tech. Delhi </li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/gerald.JPG" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b><a href="https://www.linkedin.com/in/gerald-tan-13274a195/" target="_blank">Gerald Tan</a></b></li>
<li>B.S. in National Univ. of Singapore</li>
</ul>
</div>
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/maanasa.png" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b><a href="https://www.linkedin.com/in/maanasanatrajan/" target="_blank">Maanasa Natrajan</a></b></li>
<li>B.S. in Drexel Univ. </li>
</ul>
</div>
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/scholar.jpg" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b>Michael Zhang</a></b></li>
<li>B.S. in Univ. of British Columbia</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/cheyenne.JPG" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b><a href="https://www.linkedin.com/in/cheyenne-kohqe/" target="_blank">Cheyenne Koh Qi En</a></b></li>
<li>Dip. in Biomedical Science in Ngee Ann Poly.</li>
</ul>
</div>
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/amira.jpeg" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b><a href="https://www.linkedin.com/in/amirayeo" target="_blank">Nurul Amira Yeo</a></b></li>
<li>Dip. in Biomedical Science (Biomedical Research Specialisation) in Ngee Ann Poly. </li>
</ul>
</div>
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/ain.jpeg" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b>Nur ‘Ain Binte Zainul Abdeen</a></b></li>
<li>Dip. in Biomedical Sciences at Republic Poly. (2018 - present)</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/luqman.jpg" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b>Luqman AL- Hakim Bin Mohd Najib Mohidu</b></li>
<li>Dip. in Biomedical Sciences at Republic Poly.</li>
</ul>
</div>
<div class="col-xs-12 col-sm-4 col-lg-4">
<img src="img/people/jiaxi.jpg" height="70" width="70" class="pull-left">
<ul style="list-style-type:none">
<li><b>Wu Jiaxi</b></li>
<li>M.Eng in Imperial College London. </li>
</ul>
</div>
</div>
<!-- </div> -->
</div>
<div class="tab-pane" id="Jobs">
<div class="row">
<div class="col-sm-4">
<h6>SPLASH Graphical Abstract (Aw et al, 2016)</h6><img src="img/graphical abstracts/SPLASH graphical abstract.jpg" heigh="400" width="400">
<h6>PARTE Graphical Abstract (Wan et al, 2012)</h6><img src="img/graphical abstracts/PARTE graphical abstract.jpg" heigh="400" width="400">
</div>
<div class="col-sm-8">
<h4>1. Post-doctoral Fellowship in RNA Structural
Genomics</h4>
We are seeking highly qualified computational
scientists with expertise/interest in RNA structure
and biology. The Nagarajan Lab, in collaboration
with the Wan Lab at the Genome Institute of
Singapore are looking for applicants to direct
collaborative projects involving the development of
new algorithms and the analyis of novel
high-throughput, genome-scale RNA structure
datasets. Successfull candidates will work in a
highly inter-disciplinary environment to apply
cutting edge techniques in computational and
experimental genomics for achieving breakthrough
discoveries that significantly advance human health
and well-being.<br>
<br>RNA structure is fundamental to its function in
almost every cellular process and for understanding
disease biology. We have developed new approaches to
probe RNA secondary and tertiary structure
genome-wide [1-4] and are applying these for a range
of applications including (i) identification of new
targets for developing antibiotics against extremely
drug-resistant pathogens (ii) understanding
host-microbial interactions in diseases and (iii)
identifying structural switches that control gene
regulation during stem-cell differentiation and
oncogenesis. We are seeking exceptional researchers
who will join us in leveraging this unique
opportunity for significant basic and translational
advances in RNA genomics.<br>
<br>
<h6>References</h6>
<ol>
<li>Kertesz M*, Wan Y*, Mazor E, Rinn JL, Nutter RC, Chang HY, Segal E "Genome-wide measurement of RNA secondary structure in yeast." Nature 2010 Sep 2 ; 467(7311) : 103-7</li>
<li>Wan Y, Qu K, Ouyang Z, Kertesz M, Li J, Tibshirani R, Makino DL, Nutter RC, Segal E, Chang HY "Genome-wide measurement of RNA folding energies." Mol Cell 2012 Oct 26 ; 48(2) : 169-81 Epub 2012 Sep 13</li>
<li>Wan Y.*, Qu K.*, Zhang QF, Manor O, Ouyang Z, Zhang J, Snyder MP, Segal E and Chang HY "Landscape and variation of RNA secondary structure across the human transcriptome." Nature 2014 ; 505, 706–709</li>
<li>Aw JG, Shen Y, Wilm A, Sun M, Lim XN, Boon KL, Tapsin S, Chan YS, Tan CP, Sim AY, Zhang T, Susanto TT, Fu Z, Nagarajan N#, Wan Y# "In Vivo Mapping of Eukaryotic RNA Interactomes Reveals Principles of Higher-Order Organization and Regulation." Mol Cell 2016 May 19 ; 62(4) : 603-17 Epub 2016 May 12</li>
</ol>
<br>
<h6>Qualifications</h6>
<ul>
<li>PhD in Computational Biology/Computer Science/Applied Mathematics/Genomics</li>
<li>Strong analytical and programming skills (C/C++, perl/python, UNIX environment). Candidates with significant experience in RNA structure prediction will be strongly preferred.</li>
</ul>
<br>
<b>How To Apply:</b> E-mail cover letter, research statement, curriculum vitae, and contact details of at least three referees to Niranjan Nagarajan (<a href="mailto:[email protected]">[email protected]</a>) and Wan Yue (<a href="mailto:[email protected]">[email protected]</a>)
</div>
</div>
<hr>
<div class="row">
<div class="col-sm-4">
<h6>Eczema Model (Chng et al, 2016)</h6><img src="img/graphical abstracts/AD Model.jpg" heigh="400" width="400">
<h6><i>Malassezia</i> Phylogeny (Wu et al, 2015)</h6><img src="img/graphical abstracts/Malassezia Phylogeny.jpg" heigh="400" width="400">
</div>
<div class="col-sm-8">
<h4>2. Post-doctoral Fellowship in Skin Microbiome
Studies</h4> We are looking for genomics researchers
with a keen interest in studying the role of
microbes in skin diseases. The Nagarajan lab in the
Genome Institute of Singapore, in collaboration with
the Epithelial Biology group in the Institute of
Medical Biology are seeking candidates to lead
multiple projects studying the role of the
microbiome in inflammatory diseases of the skin
(e.g. eczema, psoriasis etc.). Successful candidates
will have the opportunity to design new studies in
close interaction with doctors and domain experts,
applying nextgen omics and analytical approaches to
understand the complex host-microbiome interactions
that lead to skin disease [1].<br>
<br>The role that microbes play on human skin is
still poorly understood despite characterization of
the diversity of habitats and niches that they
occupy [2]. This is particularly the case for skin
diseases which can affect a large proportion of the
population and have a significant impact on their
quality of life. We recently conducted a
metagenome-wide association study for eczema,
identifying key microbes and their likely functional
roles [1]. We are interested in extending this work
in several directions including (i) characterizing
the utility of pre-/probiotic therapies (ii)
developing in vitro and in silico models for
host-microbiome interactions [3] and (iii) studying the
role of fungi (e.g. Malassezia) on human skin [4].<br>
<br>
<h6>References</h6>
<ol>
<li>Chng KR, Tay ASL, Li C, Ng AHQ, Wang J, Suri BK, Matta AS, McGovern N, Janela B, Wong XFC, Sio YY, Au BV, Wilm A, De Sessions PF, Lim TC, Tang MBY, Ginhoux F, Connolly JE, Lane EB, Chew FT, Common JEA#, Nagarajan N# "Whole metagenome profiling reveals skin microbiome-dependent susceptibility to atopic dermatitis flare" Nature Microbiology 2016 1:16106 doi:10.1038/nmicrobiol.2016.106</li>
<li>Oh, J. et al. "Biogeography and individuality shape function in the human skin metagenome." Nature 2014 514, 59–64</li>
<li>Li C, Lim KM, Chng KR, Nagarajan N# "Predicting microbial interactions through computational approaches." Methods 2016 Jun 1 ; 102 : 12-9 Epub 2016 Mar 26</li>
<li>Wu G, Zhao H, Li C, Rajapakse MP, Wong WC, Xu J, Saunders CW, Reeder NL, Reilman RA, Scheynius A, Sun S, Billmyre BR, Li W, Averette AF, Mieczkowski P, Heitman J, Theelen B, Schröder MS, De Sessions PF, Butler G, Maurer-Stroh S, Boekhout T, Nagarajan N#, Dawson TL# "Genus-Wide Comparative Genomics of Malassezia Delineates Its Phylogeny, Physiology, and Niche Adaptation on Human Skin." PLoS Genet 2015 Nov ; 11(11) : e1005614 Epub 2015 Nov 5</li>
</ol>
<br>
<h6>Qualifications</h6>
<ul>
<li>PhD in Computational Biology/Computer Science/Applied Mathematics/Genomics</li>
<li>Strong analytical and programming skills (C/C++, perl/python, UNIX environment). Candidates with significant experience in Microbiome Studies or Skin Biology will be strongly preferred.</li>
</ul>
<br>
<b>How To Apply:</b> E-mail cover letter, research statement, curriculum vitae, and contact details of at least three referees to Niranjan Nagarajan (<a href="mailto:[email protected]">[email protected]</a>)
</div>
</div>
</div>
</div>
</section>
<!-- start footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-3">
<div class="widget">
<h5 class="widgetheading">Get in touch with us</h5>
<address>
<strong>Nagarajan Lab</strong><br>
Genome Building<br>
# 02-01<br>
60 Biopolis Street<br>
Singapore 138672 </address>
<p>
<i class="fa fa-phone"></i> (65) 6808-8071<br>
<i class="fa fa-envelope"></i> [email protected]
</p>
</div>
</div>
<div class="col-lg-3">
<div class="widget">
<h5 class="widgetheading">Related Links</h5>
<ul class="link-list">
<li><a href="https://www.a-star.edu.sg/gis/our-people/faculty-staff">Niranjan Nagarajan's GIS page</a>
</li>
<li><a href="https://www.a-star.edu.sg/gis">Genome Institute of Singapore</a>
</li>
<li><a href="https://www.comp.nus.edu.sg">School of Computing (NUS)</a>
</li>
<li><a href="https://www.a-star.edu.sg/gis/our-science/microbial-genomics">Microbial Genomics @ GIS</a>
</li>
<li><a href="https://www.a-star.edu.sg/gis/our-science/computational-biology-and-data-sciences">Computational Biology and Data Sciences @ GIS</a>
</li>
</ul>
</div>
</div>
<div class="col-lg-3">
<div class="widget">
<h5 class="widgetheading">Collaborators</h5>
<ul class="link-list">
<li><a href="https://www.a-star.edu.sg/sris/research/principal-investigators">Dr. Tom Dawson</a>
</li>
<li><a href="https://www.a-star.edu.sg/sris/research/principal-investigators">Dr. John Common</a>
</li>
<li><a href="http://pharmacy.nus.edu.sg/profile_ericchan/">Dr. Eric Chan</a>
</li>
<li><a href="https://www.ttsh.com.sg/Patients-and-Visitors/Pages/Find-Specialist-Details.aspx?specialist=Young-Barnaby-Edward">Dr. Barnaby Young</a>
</li>
<li><a href="https://www.a-star.edu.sg/gis/our-people/faculty-staff">Dr. Yue Wan</a>
</li>
</ul>
</div>
</div>
<div class="col-lg-3">
<div class="widget">
<h5 class="widgetheading">Group Photos</h5>
<a href="https://www.flickriver.com/photos/188291673@N06/"><img src="https://www.flickriver.com/badge/user/all/recent/shuffle/medium-horiz/6cafd2/333333/[email protected]" border="0" alt="" title=""/></a>
<div class="clear">
</div>
</div>
</div>
</div>
</div>
<div id="sub-footer">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="copyright">
<p>
<span>© Niranjan Nagarajan 2016 All rights reserved. Designed by </span><a href="http://bootstraptaste.com" target="_blank">Bootstraptaste</a>
</p>
</div>
</div>
<div class="col-lg-6">
<ul class="social-network">
<li><a href="https://twitter.com/niranjantw" data-placement="top" title="Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://sg.linkedin.com/in/niranjan-nagarajan-765151ba" data-placement="top" title="Linkedin"><i class="fa fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</footer>
</div>
<a href="#" class="scrollup"><i class="fa fa-angle-up active"></i></a>
<!-- javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/jquery.js"></script>
<script src="js/jquery.easing.1.3.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.fancybox.pack.js"></script>
<script src="js/jquery.fancybox-media.js"></script>
<script src="js/google-code-prettify/prettify.js"></script>
<script src="js/portfolio/jquery.quicksand.js"></script>
<script src="js/portfolio/setting.js"></script>
<script src="js/jquery.flexslider.js"></script>
<script src="js/animate.js"></script>
<script src="js/custom.js"></script>
</body>
</html>