-
Notifications
You must be signed in to change notification settings - Fork 0
/
concluding-session.html
932 lines (698 loc) · 36.1 KB
/
concluding-session.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<!-- Mobile Specific Metas
================================================== -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="-1">
<meta http-equiv="CACHE-CONTROL" content="NO-CACHE">
<!-- Site Title -->
<title>Centenary celebration</title>
<!--Favicon-->
<link rel="shortcut icon" href="images/logo-tab.png" type="image/x-icon">
<link rel="icon" href="images/logo-tab.png" type="image/x-icon">
<!-- CSS
================================================== -->
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Template styles-->
<link rel="stylesheet" href="css/style.css">
<!-- Responsive styles-->
<link rel="stylesheet" href="css/responsive.css">
<!-- FontAwesome -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Animation -->
<link rel="stylesheet" href="css/animate.css">
<!-- Colorbox -->
<link rel="stylesheet" href="css/colorbox.css">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<style> @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap'); </style>
<style type="text/css">
.table-bordered>tbody>tr>td
{
border: 1px solid #837f7f;
}
</style>
</head>
<body>
<div class="body-inner">
<!-- Header start -->
<header id="header" class="header header-transparent fixed-top">
<div class="container">
<div class="row">
<div class="navbar-header">
<div class="logo">
<a href="index.html">
<img src="images/logo-dark.png" alt="" class="img-responsive">
</a>
</div><!-- logo end -->
</div><!-- Navbar header end -->
<div class="site-nav-inner">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<nav class="collapse navbar-collapse navbar-responsive-collapse pull-right">
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">About Us <i class="fa fa-angle-down"></i></a>
<ul class="dropdown-menu" role="menu">
<li><a href="overview.html">Overview</a> </li>
<li><a href="https://biochem.iisc.ac.in/faculty.php" target="_blank">Faculty Profile</a> </li>
<li><a href="latest-news.html">Latest News</a> </li>
</ul>
</li><!-- Speakers li end -->
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Event <i class="fa fa-angle-down"></i></a>
<ul class="dropdown-menu" role="menu">
<!-- <li><a href="opening-lecture.html">Opening Lecture</a> </li> -->
<li><a href="formal-inauguration.html">Formal Inauguration</a> </li>
<li><a href="international-conference.html">International Conference</a> </li>
<li><a href="concluding-session.html">Concluding Session</a> </li>
</ul>
</li><!-- Speakers li end -->
<li><a href="speakers.html">Speakers</a> </li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Gallery <i class="fa fa-angle-down"></i></a>
<ul class="dropdown-menu" role="menu">
<li><a href="alumni-meet.html">Alumni Meet</a> </li>
<li><a href="memories-forever.html">Memories Forever</a> </li>
<li><a href="centenary-inauguration-gallery.html">Centenary Inauguration</a> </li>
</ul>
</li><!-- Speakers li end -->
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Alumni <i class="fa fa-angle-down"></i></a>
<ul class="dropdown-menu" role="menu">
<li><a href="alumni-activities.html">Alumni Activities</a></li>
<li><a href="list-of-alumini.html">List of Alumni</a></li>
</ul>
</li><!-- About li end -->
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Get Involved <i class="fa fa-angle-down"></i></a>
<ul class="dropdown-menu" role="menu">
<li><a href="reminiscence.html">Reminiscence</a></li>
<li><a href="volunteer.html">Volunteer</a></li>
<li><a href="feedback.html">Feedback</a></li>
</ul>
</li><!-- Speakers li end -->
<li><a href="contact-us.html">Contact Us</a></li>
</ul>
</nav><!--/ Collapse end -->
</div><!--/ Site nav inner end -->
</div><!--/ Row end -->
</div><!--/ Container end -->
</header><!--/ Header end -->
<div id="page-banner-area" class="page-banner-area" style="background-image:url(images/banner/banner3.jpg)">
<!-- Subpage title start -->
<div class="page-banner-title">
<div class="text-center">
<h2>Concluding Session</h2>
</div>
</div><!-- Subpage title end -->
</div><!-- Page Banner end -->
<section id="main-container" class="main-container">
<div class="container-box">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h2 class="schedule-date" style="font-family: 'Roboto', sans-serif; color:black">BC Centenary: A Celebration of Excellence in Research and Teaching <br>
1921 – 2021<br> Online meeting: December 10 - 12, 2021 <br>(Time zone : IST)</h2>
<div class="panel-group panel-classic" id="accordionA">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title" style="font-family: 'Roboto', sans-serif; font-size:20px;">
<a data-toggle="collapse" data-parent="#accordionA, #accordionB" href="#collapseOne">
FIRST DAY – 10 December 2021</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse">
<div class="panel-body">
<div class="schedule-listing bg" style="font-family: 'Roboto', sans-serif;">
<div class="schedule-slot-info-content" style="margin-left: 0px;">
<p style="font-family: 'Roboto', sans-serif;"><b>3:40 pm - 4 pm : WELCOME <br> Prof. P.N. RANGARAJAN, Chair, Dept. of Biochemistry, IISc <br> Release of Reminiscences book<br> Prof. GOVINDAN RANGARAJAN, Director, IISc</b></p>
<div class="white-box block animated fadeInDown ">
<div class="row">
<div class="col-sm-12">
<table class="table table-bordered" width="100%">
<thead>
<tbody>
<tr style="font-family: 'Roboto', sans-serif;">
<td colspan="3">
<h3 style="padding: 10px;font-family: 'Roboto', sans-serif;">SESSION 1 – Synthetic Biology</h3>
</td>
</tr>
<tr style="font-family: 'Roboto', sans-serif; background-color: #3a4169;">
<td width="20%" style=" padding: 10px;"> Chair </td>
<td colspan="2" width="60%"> Patrick D'Silva</td>
<!-- <td width="20%"><img width="153" height="160" src="event/4.jpg"></td> -->
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%"><p style="font-size: 20px;"><b>4 - 4:30 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>John Bowman, Monash University</b><br>Why all eukaryotes have homeodomain genes</p></td>
<td width="20%"><img width="153" height="160" src="event/1.jpg"></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif; background-color: #e1dfdf; color: black;">
<td width="20%"><p style="font-size: 20px;"><b>4:30 - 5 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Irene Coin, University of Leipzig</b><br>Genetically encoded chemical tools for protein studies in the live cell</p></td>
<td width="20%"><img width="153" height="160" src="event/3.jpg"></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%"><p style="font-size: 20px;"><b>5 - 5:30 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Sarah Teichmann, Wellcome Sanger Institute</b><br>Mapping The Human Body One Cell At A Time</p></td>
<td width="20%"><img width="153" height="160" src="event/2.jpg"></td>
</tr>
</tbody>
</table>
</div>
<div class="col-sm-12">
<table class="table table-bordered" width="100%">
<thead>
<tbody>
<tr style="font-family: 'Roboto', sans-serif;">
<td colspan="3"><h3 style="padding: 10px;font-family: 'Roboto', sans-serif;">BC Alumni / Student talks - I <br>(10 min each)</h3></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%">Chairs</td>
<td width="70%" colspan="2"> Saravanan Palani and Debabrata Laha</td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%"><p style="font-size: 20px;"><b>5:30 - 7 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Manoj Thakur, BC, IISc</b><br>A Novel ATPase Associated with Holliday Junction Resolution in <i>Mycobacterium tuberculosis</i></p></td>
<td width="20%"><img width="153" height="160" src="event/5.jpg"></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif; background-color: #e1dfdf; color: black;">
<td width="20%"><p style="font-size: 20px;"><b>5:30 - 7 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Mitali Singh, Institut Pasteur, Paris</b><br>Argonaute navigating the balance between protein translation and small RNA synthesis</p></td>
<td width="20%"><img width="153" height="160" src="event/6.jpg"></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%"><p style="font-size: 20px;"><b>5:30 - 7 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Devanjan Sinha, BHU</b><br>Human Mitochondrial Presequence Translocases: From Machineries to Mechanisms</p></td>
<td width="20%"><img width="153" height="160" src="event/7.jpg"></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif; background-color: #e1dfdf; color: black;">
<td width="20%"><p style="font-size: 20px;"><b>5:30 - 7 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Lekha E Manjunath, BC, IISc</b><br>Stop codon readthrough in <i>MTCH2</i> mRNA and its role in mitochondrial physiology</p></td>
<td width="20%"><img width="153" height="160" src="event/8.jpg"></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%"><p style="font-size: 20px;"><b>5:30 - 7 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Anubhav Dhar, BC, IISc</b><br>Unravelling the spatio-temporal regulation of cell division proteins</p></td>
<td width="20%"><img width="153" height="160" src="event/9.jpg"></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif; background-color: #e1dfdf; color: black;">
<td width="20%"><p style="font-size: 20px;"><b>5:30 - 7 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Naga Jyothi Pullagurla, BC, IISc</b><br>Decoding the molecular basis of inositol phosphate homeostasis in plants</p></td>
<td width="20%"><img width="153" height="160" src="event/10.jpg"></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<table class="table table-bordered" width="100%">
<thead>
<tbody>
<tr style="font-family: 'Roboto', sans-serif;">
<td colspan="3">
<h3 style="padding: 10px;font-family: 'Roboto', sans-serif;">SESSION 2 – Cellular Biochemistry</h3>
</td>
</tr>
<tr style="font-family: 'Roboto', sans-serif; background-color: #3a4169; padding: 10px;">
<td width="20%">Chair</td>
<td width="60%" colspan="2"> D.N. Rao</td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%"><p style="font-size: 20px;"><b>7 - 7:30 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Hemalatha Balaram, JNCASR</b><br>Metabolism in the malaria parasite, Plasmodium: essentiality of enzymes and pathways involved in fumarate anaplerosis across life stages</p></td>
<td width="20%"><img width="153" height="160" src="event/11.jpg"></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif; background-color: #e1dfdf; color: black;">
<td width="20%"><p style="font-size: 20px;"><b>7:30 - 8 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>AP Naren, Cedars-Sinai Medical Center</b><br>From Macromolecular Complexes to Personalized Medicine in Cystic Fibrosis: Targeting Protein Interactions</p></td>
<td width="20%"><img width="153" height="160" src="event/12.jpg"></td>
</tr>
</tbody>
</table>
</div>
<div class="col-sm-12">
<table class="table table-bordered" width="100%">
<thead>
<tbody>
<tr style="font-family: 'Roboto', sans-serif;">
<td colspan="3"><h3 style="padding: 10px;font-family: 'Roboto', sans-serif;background-color: #c60018; color: white;">8 - 9 pm: PLENARY TALK 1</h3></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%">Chair</td>
<td width="60%" colspan="2"> K. Muniyappa</td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%"><p style="font-size: 20px;"><b>8 - 9 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Makkuni Jayaram, University of Texas</b><br>The Bright and Dark Sides of Water: Promoting CRISPR Locus Assembly and Disrupting Site-Specific DNA Recombination</p></td>
<td width="20%"><img width="153" height="160" src="event/13.jpg"></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<table class="table table-bordered" width="100%">
<thead>
<tbody>
<tr style="font-family: 'Roboto', sans-serif;">
<td colspan="3"><h3 style="padding: 10px;font-family: 'Roboto', sans-serif;background-color: #c60018; color: white;">9 - 10 pm: PLENARY TALK 2</h3></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%">Chair</td>
<td width="60%" colspan="2"> D.N. Rao</td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%"><p style="font-size: 20px;"><b>9 - 10 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Chaitan Khosla, Stanford University</b><br>Mechanistic Principles of Assembly-Line Polyketide Biosynthesis</p></td>
<td width="20%"><img width="153" height="160" src="event/14.jpg"></td>
</tr>
</tbody>
</table>
</div>
</div>
</div><!-- Slot listing 1 end -->
</div><!-- Col end -->
</div>
</div>
</div>
</div><!--/ Panel 1 end-->
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title" style="font-family: 'Roboto', sans-serif;font-size:20px;">
<a data-toggle="collapse" class="collapsed" data-parent="#accordionA, #accordionB" href="#collapseTwo" style="font-family: 'Roboto', sans-serif;">SECOND DAY – 11 December 2021</a>
</h4>
</div>
<div id="collapseTwo" class="panel-collapse collapse">
<div class="panel-body">
<div class="row">
<div class="col-md-12">
<div class="white-box block animated fadeInDown ">
<div class="row">
<div class="col-sm-12">
<table class="table table-bordered" width="100%">
<thead>
<tbody>
<tr style="font-family: 'Roboto', sans-serif;">
<td colspan="3">
<h3 style="padding: 10px;font-family: 'Roboto', sans-serif;">SESSION 3 – Reproductive Biology & Human Health</h3>
</td>
</tr>
<tr style="font-family: 'Roboto', sans-serif; background-color: #3a4169; padding: 10px;">
<td width="20%"><p><b>Chair</b></p></td>
<td width="60%" colspan="2"> P. I. Rajyaguru</td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%"><p style="font-size: 20px;"><b>4 - 4:30 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Polani B. Seshagiri, IISc</b><br>Embryonic steps towards development and differentiation of blastocysts</p></td>
<td width="20%"><img width="153" height="160" src="event/15.jpg"></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif; background-color: #e1dfdf; color: black;">
<td width="20%"><p style="font-size: 20px;"><b>4:30 - 5 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Selvaraj Nataraja, Astellas Pharma</b><br>Bench to Bedside: Translating Reproductive Research to Therapeutics in Women’s Health</p></td>
<td width="20%"><img width="153" height="160" src="event/16.jpg"></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%"><p style="font-size: 20px;"><b>5 - 5:30 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Surendra Sharma, Women and Infants Hospital-Brown University </b> <br>Our arduous research journey from preeclampsia to Alzheimer’s disease</b></p></td>
<td width="20%"><img width="153" height="160" src="event/17.jpg"></td>
</tr>
</tbody>
</table>
</div>
<div class="col-sm-12">
<table class="table table-bordered" width="100%">
<thead>
<tbody>
<tr style="font-family: 'Roboto', sans-serif;">
<td colspan="3"><h3 style="padding: 10px;font-family: 'Roboto', sans-serif;">BC Alumni / Student talks - II <br>(10 min each)</h3></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%">Chairs</td>
<td width="60%" colspan="2"> Mahipal Ganji and BICS Representative</td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%"><p style="font-size: 20px;"><b>5:30 - 7 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Swati Saha, University of Delhi</b><br>Investigating epigenetic regulatory mechanisms in <i>Leishmania donovani</i></p></td>
<td width="20%"><img width="153" height="160" src="event/18.jpg"></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif; background-color: #e1dfdf; color: black;">
<td width="20%"><p style="font-size: 20px;"><b>5:30 - 7 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Trishna Dey, BC, IISc</b><br>A novel methanol-free, glutamate-inducible yeast expression system</p></td>
<td width="20%"><img width="153" height="160" src="event/19.jpg"></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%"><p style="font-size: 20px;"><b>5:30 - 7 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Amrisha Bhosle, Broad Institute</b><br>Title to be announced</p></td>
<td width="20%"><img width="153" height="160" src="event/20.jpg"></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif; background-color: #e1dfdf; color: black;">
<td width="20%"><p style="font-size: 20px;"><b>5:30 - 7 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Deepash Kothiwal, Harvard Medical School</b><br>Understanding the multi-level regulation of eukaryotic transcription: Insights from cohesin and RNA Pol II</p></td>
<td width="20%"><img width="153" height="160" src="event/21.jpg"></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%"><p style="font-size: 20px;"><b>5:30 - 7 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Raju Roy, BC, IISc</b><br>RGG-motif protein Sbp1 is required for Processing body (P-body) disassembly </p></td>
<td width="20%"><img width="153" height="160" src="event/22.jpg"></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif; background-color: #e1dfdf; color: black;">
<td width="20%"><p style="font-size: 20px;"><b>5:30 - 7 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Abhinav Banerjee, BC, IISc</b><br>Scoping the DNA microcosm</p></td>
<td width="20%"><img width="153" height="160" src="event/23.jpg"></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<table class="table table-bordered" width="100%">
<thead>
<tbody>
<tr style="font-family: 'Roboto', sans-serif;">
<td colspan="3">
<h3 style="padding: 10px;font-family: 'Roboto', sans-serif;">SESSION 4– Genome Biology</h3>
</td>
</tr>
<tr style="font-family: 'Roboto', sans-serif; background-color: #3a4169; padding: 10px;">
<td width="20%">Chair</td>
<td width="60%" colspan="2"> Shikha Laloraya</td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%"><p style="font-size: 20px;"><b>7 - 7:30 pm</b></p></td>
<td width="60%"> <p style="font-size: 20px;"><b>Harinder Singh, University of Pittsburgh</b><br>Nature of combinatorial interactions of transcription factors underpinning the decoding of mammalian regulatory DNA</b></p></td>
<td width="20%"><img width="153" height="160" src="event/24.jpg"></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif; background-color: #e1dfdf; color: black;">
<td width="20%"><p style="font-size: 20px;"><b>7:30 - 8 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Rachel Green, Johns Hopkins School of Medicine</b><br>Colliding ribosomes function as key triggers for cellular stress response pathways</p></td>
<td width="20%"><img width="153" height="160" src="event/25.jpg"></td>
</tr>
</tbody>
</table>
</div>
<div class="col-sm-12">
<table class="table table-bordered" width="100%">
<thead>
<tbody>
<tr style="font-family: 'Roboto', sans-serif;">
<td colspan="3"><h3 style="padding: 10px;font-family: 'Roboto', sans-serif;background-color: #c60018; color: white;">8 - 9 pm: PLENARY TALK 3</h3></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%">Chair</td>
<td width="60%" colspan="2"> Nagasuma Chandra</td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%"><p style="font-size: 20px;"><b>8 - 9 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Janet Thornton, European Molecular Biology Laboratory (EMBL-EBI)</b><br>Computational Enzymology: Enzyme Flexibility, Transformations and Mechanisms</p></td>
<td width="20%"><img width="153" height="160" src="event/26.jpg"></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<table class="table table-bordered" width="100%">
<thead>
<tbody>
<tr style="font-family: 'Roboto', sans-serif;">
<td colspan="3"><h3 style="padding: 10px;font-family: 'Roboto', sans-serif;background-color: #c60018; color: white;">9 - 10 pm: PLENARY TALK 4</h3></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%">Chair</td>
<td width="60%" colspan="2"> Sandeep Eswarappa</td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%"><p style="font-size: 20px;"><b>9 - 10 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Vishva M. Dixit, Genentech</b><br>Why so Many Ways to Die? The non-canonical Inflammasome Pathway</p></td>
<td width="20%"><img width="153" height="160" src="event/27.jpg"></td>
</tr>
</tbody>
</table>
</div>
</div>
</div><!-- Slot listing 1 end -->
</div><!-- Col end -->
</div>
</div>
</div>
</div><!--/ Panel 2 end-->
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" class="collapsed" data-parent="#accordionA, #accordionB" href="#collapseThree" style="font-family: 'Roboto', sans-serif;font-size:20px;">THIRD DAY – 12 December 2021</a>
</h4>
</div>
<div id="collapseThree" class="panel-collapse collapse">
<div class="panel-body">
<div class="row">
<div class="col-md-12">
<div class="white-box block animated fadeInDown ">
<div class="row">
<div class="col-sm-12">
<table class="table table-bordered" width="100%">
<thead>
<tbody>
<tr style="font-family: 'Roboto', sans-serif;">
<td colspan="3">
<h3 style="padding: 10px;font-family: 'Roboto', sans-serif;">BC alumni talk – III</h3>
</td>
</tr>
<tr style="font-family: 'Roboto', sans-serif; background-color: #3a4169; padding: 10px;">
<td width="20%">Chair</td>
<td width="60%" colspan="2"> C. Jayabaskaran</td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%"><p style="font-size: 20px;"><b>4 - 4:30 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>G Sudarshan, Institut Curie, Paris </b><br>Insights into the structural and functional roles of tubulin posttranslational glycylation in mammalian cilia and flagella</p></td>
<td width="20%"><img width="153" height="160" src="event/28.jpg"></td>
</tr>
</tbody>
</table>
</div>
<div class="col-sm-12">
<table class="table table-bordered" width="100%">
<thead>
<tbody>
<tr style="font-family: 'Roboto', sans-serif;">
<td colspan="3"><h3 style="padding: 10px;font-family: 'Roboto', sans-serif;">BC Alumni / Student talks - IV <br>(10 min each)</h3></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%">Chairs</td>
<td width="60%" colspan="2">Kesavardana Sannula and BICS representative </td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%"><p style="font-size: 20px;"><b>5:30 - 7 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Satpal Singh, BC, IISc</b><br>The Enigma of Taxol Production by Taxol-Producing Endophytic Fungi: Lessons Learnt at the Laboratory of Secondary Metabolism</p></td>
<td width="20%"><img width="153" height="160" src="event/29.jpg"></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif; background-color: #e1dfdf; color: black;">
<td width="20%"><p style="font-size: 20px;"><b>5:30 - 7 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Anujith Kumar, Manipal University</b><br>Atypical Role of Antioxidant Enzyme SOD2 in Neural Lineage Specification</p></td>
<td width="20%"><img width="153" height="160" src="event/30.jpg"></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%"><p style="font-size: 20px;"><b>5:30 - 7 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Mridula Nambiar, IISER Pune</b><br>Centromeric repression of recombination during meiosis - the how and the why</p></td>
<td width="20%"><img width="153" height="160" src="event/31.jpg"></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif; background-color: #e1dfdf; color: black;">
<td width="20%"><p style="font-size: 20px;"><b>5:30 - 7 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Kumar Somyajit, University of Southern Denmark</b><br>Metabolic control of human DNA replication dynamics in health and disease</p></td>
<td width="20%"><img width="153" height="160" src="event/32.jpg"></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%"><p style="font-size: 20px;"><b>5:30 - 7 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Sharath B, BC, IISc</b><br>SARS-CoV-2 molecular mimicry in driving host cell death and inflammation</p></td>
<td width="20%"><img width="153" height="160" src="event/33.jpg"></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<table class="table table-bordered" width="100%">
<thead>
<tbody>
<tr style="font-family: 'Roboto', sans-serif;">
<td colspan="3">
<h3 style="padding: 10px;font-family: 'Roboto', sans-serif;">SESSION 5 - Immunology</h3>
</td>
</tr>
<tr style="font-family: 'Roboto', sans-serif; background-color: #3a4169; padding: 10px;">
<td width="20%">Chair</td>
<td width="60%" colspan="2"> Dipankar Nandi</td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%"><p style="font-size: 20px;"><b>5:45 – 6:15 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Sarah Gaffen, University of Pittsburgh </b><br>IL-17 signaling in autoimmunity versus fungal immunity</p></td>
<td width="20%"><img width="153" height="160" src="event/34.jpg"></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif; background-color: #e1dfdf; color: black;">
<td width="20%"><p style="font-size: 20px;"><b>6:15 -6:45 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Ali Ellebedy, Washington University </b><br>B cell response to SARS-CoV-2</p></td>
<td width="20%"><img width="153" height="160" src="event/35.jpg"></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%"><p style="font-size: 20px;"><b>6:45 – 7 pm pm</b></p></td>
<td width="60%" colspan="2">BREAK</td>
</tr>
</tbody>
</table>
</div>
<div class="col-sm-12">
<table class="table table-bordered" width="100%">
<thead>
<tbody>
<tr style="font-family: 'Roboto', sans-serif;">
<td colspan="3"><h3 style="padding: 10px;font-family: 'Roboto', sans-serif;">SESSION 6 : Translational / Disease Biology</h3></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%">Chair</td>
<td width="60%" colspan="2"> N. Ganesh</td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%"><p style="font-size: 20px;"><b>7 – 7:30 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>VR Prasad, Albert Einstein College of Medicine</b><br>Extrinsic regulation of ESCRT factors, HIV-1 release and Replication Fitness by a b Chemokine</p></td>
<td width="20%"><img width="153" height="160" src="event/36.jpg"></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif; background-color: #e1dfdf; color: black;">
<td width="20%"><p style="font-size: 20px;"><b>7:30 - 8 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Sandeep Burma, UT Southwestern Medical Center </b><br>DNA Damage, Senescence, and Cancer</p></td>
<td width="20%"><img width="153" height="160" src="event/37.jpg"></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<table class="table table-bordered" width="100%">
<thead>
<tbody>
<tr style="font-family: 'Roboto', sans-serif;">
<td colspan="3"><h3 style="padding: 10px;font-family: 'Roboto', sans-serif;background-color: #c60018; color: white;">8 - 9 pm: PLENARY TALK 5</h3></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%">Chair</td>
<td width="60%" colspan="2"> S. Mahadevan and P.N. Rangarajan</td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%"><p style="font-size: 20px;"><b>8 - 9 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>James Westwood, Virginia Tech</b><br>The parasitic plant dodder (<i>Cuscuta</i>) uses RNAs to manipulate its hosts</p></td>
<td width="20%"><img width="153" height="160" src="event/38.jpg"></td>
</tr>
</tbody>
</table>
</div>
<div class="col-sm-12">
<table class="table table-bordered" width="100%">
<thead>
<tbody>
<tr style="font-family: 'Roboto', sans-serif;">
<td colspan="3"><h3 style="padding: 10px;font-family: 'Roboto', sans-serif;background-color: #c60018; color: white;">9 - 10 pm: PLENARY TALK 6</h3></td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%">Chair</td>
<td width="60%" colspan="2"> Sathees Raghavan</td>
</tr>
<tr style="font-family: 'Roboto', sans-serif;">
<td width="20%"><p style="font-size: 20px;"><b>9 - 10 pm</b></p></td>
<td width="60%"><p style="font-size: 20px;"><b>Maria Jasin, Memorial Sloan Kettering, New York</b><br>Protecting the genome by homologous recombination </p></td>
<td width="20%"><img width="153" height="160" src="event/39.jpg"></td>
</tr>
</tbody>
</table>
</div>
</div>
<p style="font-size: 20px;"><b>10 - 10:15 pm - Vote of thanks by Dipankar Nandi,BICS President </b></p>
</div><!-- Slot listing 1 end -->
</div><!-- Col end -->
</div>
</div>
</div>
</div><!--/ Panel 3 end-->
</div>
</div>
</div>
</div><!-- Content row end -->
</div><!-- Conatiner end -->
</section><!-- Main container end -->
<footer id="footer" class="footer text-center">
<div class="container">
<div class="row">
<div class="col-md-12">
<img src="images/logo-dark.png" alt="footer logo" />
<div class="footer-social">
<ul>
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-google-plus"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#"><i class="fa fa-instagram"></i></a></li>
</ul>
</div><!-- Footer social end -->
<div class="footer-menu">
<ul class="nav unstyled">
<li><a href="overview.html">Overview</a></li>
<li><a href="#">Faculty Profile</a></li>
<li><a href="speakers.html">Speakers</a></li>
<li><a href="volunteer.html">Volunteers</a></li>
<li><a href="feedback.html">Feedback</a></li>
<li><a href="contact-us.html">Contacts</a></li>
</ul>
</div><!-- Footer menu end -->
<div class="copyright-info">
<span>Copyright © 2019 Department of Biochemistry. All Rights Reserved.</span>
</div><!-- Copyright info end -->
</div><!-- Content col end -->
</div><!-- Content row end -->
</div><!-- Container end -->
<div class="footer-pattern"></div> <!-- Footer pattern image -->
<div id="back-to-top" data-spy="affix" data-offset-top="10" class="back-to-top affix">
<button class="btn btn-primary" title="Back to Top">
<i class="fa fa-angle-up"></i>
</button>
</div>
</footer><!-- Footer end -->
<!-- Javascript Files
================================================== -->
<!-- initialize jQuery Library -->
<script type="text/javascript" src="js/jquery.js"></script>
<!-- Bootstrap jQuery -->
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<!-- Counter -->
<script type="text/javascript" src="js/jquery.counterup.min.js"></script>
<!-- Waypoints -->
<script type="text/javascript" src="js/waypoints.min.js"></script>
<!-- Color box -->
<script type="text/javascript" src="js/jquery.colorbox.js"></script>
<!-- Smoothscroll -->
<script type="text/javascript" src="js/smoothscroll.js"></script>
<!-- Template custom -->
<script type="text/javascript" src="js/custom.js"></script>
</div><!-- Body inner end -->
</body>
</html>