-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·1265 lines (1138 loc) · 58.6 KB
/
index.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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>Cyberinfrastructure Integration Research Center</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<link rel="stylesheet" href="fonts/font-awesome/css/font-awesome.min.css">
<!-- Montserrat Sans -->
<link href='https://fonts.googleapis.com/css?family=Montserrat:400, 700' rel='stylesheet' type='text/css'>
<!-- Lato Font -->
<link href='https://fonts.googleapis.com/css?family=Lato:300,700' rel='stylesheet' type='text/css'>
<!-- Stylesheet -->
<link href="css/style.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="js/respond.min.js"></script>
<![endif]-->
<link href="//www.iu.edu/favicon.ico" rel="icon" />
<link href="//www.iu.edu/favicon.ico" rel="shortcut icon" />
<!-- Include Stylesheets -->
<link href="css/brand.css" rel="stylesheet" type="text/css" media="screen" />
<style>
#branding-bar, #footer .row{
max-width: none !important;
}
</style>
</head>
<body class="blue">
<div id="branding-bar-v1" itemscope="itemscope" itemtype="http://schema.org/CollegeOrUniversity">
<div class="bar">
<div class="container">
<div class="unit whole">
<h1 class="campus"><a href="https://www.iu.edu/" title="Indiana University"><img alt=" " height="73" src="//assets.uits.iu.edu/image/trident-tab.gif" width="64"> <span class="show-on-desktop" itemprop="name sourceOrganization provider">Indiana University</span> <span class="show-on-tablet" itemprop="name sourceOrganization provider">Indiana University</span> <span class="show-on-mobile" itemprop="name sourceOrganization provider">Indiana University</span></a></h1>
</div>
</div>
</div>
</div>
<div id="navbar" class="navbar navbar-inverse">
<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 scroll" href="#home">
<!--
<img class="img-responsive" src="img/IU_Science_Gateways_Research_Center_Logo.png" width="30%"/> -IU_Science_Gateways_Research_Center_Logo.jpg SGRC-web-horiz-72ppi.png IU_Science_Gateways_Research_Center -->
<!-- <img class="img-responsive" src="img/IU_Science_Gateways_Research_Center_Logo.png" style="width: 250px; height: 80px;padding-top:3px;">-->
<img class="img-responsive" src="img/CIRC_logo.png" style="width: 250px; height: 60px;padding-top:8px;">
</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<!--
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">COLORS<i class="fa fa-caret-down"></i></a>
<ul class="dropdown-menu">
<li><a href="company-blue.html">Blue</a></li>
<li><a href="company-green.html">Green</a></li>
</ul>
</li>
-->
<li><a class="scroll hidden" href="#home"></a></li>
<li><a class="scroll" href="#centerName">Name</a></li>
<li><a class="scroll" href="#mission">Mission</a></li>
<li><a class="scroll" href="#projects">Projects</a></li>
<li><a class="scroll" href="#publications">Publications</a></li>
<li><a class="scroll" href="#operations">Gateway Operations</a></li>
<li><a class="scroll" href="#team">Team</a></li>
<li><a class="scroll" href="#contact">Contact</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<!-- All Page Modals -->
<div class="modals">
<div class="modal fade" id="contact-form" tabindex="-1" role="dialog">
<div class="wrapper">
<div class="container text-center">
<a class="close" data-dismiss="modal" href=""><i class="icon-remove"></i></a>
<h1 class="text-center">Contact Us</h1>
<form role="form">
<div class="form-group">
<label for="exampleInputName"><i class="icon-tag"></i></label>
<input type="text" class="form-control" id="exampleInputName" placeholder="Full Name" required>
<div class="clearfix"></div>
</div>
<div class="form-group">
<label for="exampleInputEmail1"><i class="icon-inbox"></i></label>
<input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email" required>
<div class="clearfix"></div>
</div>
<div class="form-group textarea">
<label for="exampleInputMessage"><i class="icon-pencil"></i></label>
<textarea rows="6" class="form-control" id="exampleInputMessage" placeholder="Write Message" required></textarea>
<div class="clearfix"></div>
</div>
<button type="submit" class="btn">SEND MESSAGE</button>
</form>
</div>
</div><!-- /.content -->
</div><!-- /.modal -->
</div><!-- /.modals -->
<!-- Home Section -->
<div id="home" class="section">
<div class="parallax"><img src="img/sgrc-banner.png"></div>
<div class="row">
<div class="col-md-offset-2 col-md-8 col-sm-8 col-xs-12 full">
<!--
<div class="logo"><i class="fa fa-compass"></i></div>
-->
<h3 class="welcome">
<div class="welcome-text">
The Cyberinfrastructure Integration Research Center (formerly, <a href="#centerName">the Science Gateways Research Center</a>) researches, develops, and operates science gateways in collaboration with many clients and partners. Contact us for help building science gateways and deploying advanced software cyberinfrastructure for your community.
</div>
</h3>
<div class="call-to-action">
<a class="btn scroll" href="#mission" style="background: rgba( 255,255, 255, 0.2); font-weight: bold;"><i class="fa fa-angle-down"></i>LEARN MORE</a>
</div>
</div>
</div>
</div><!-- /.container -->
<div class="row section gray" id="centerName">
<div class="container">
<div class="content">
<div class="text-center">
<h2 class="title breathing-space"> The Science Gateways Research Center Is Now the Cyberinfrastructure Integration Research Center </h2>
<p class="description">
The Science Gateways Research Center has a new name. Now known as the Cyberinfrastructure Integration Research Center (CIRC), the name better reflects its new and broader mission to broaden and enhance the use of advanced cyberinfrastructure, including large supercomputers, grids of smaller computers, and advanced data sources.
</p>
<p class="description">
CIRC’s core mission is to accelerate research, discovery and collaboration through the creation, integration and operation of user-centric cyberinfrastructure that benefits scientific communities. This includes science gateways, which are designed to help entire communities of researchers use high-performance computing resources and advanced cyberinfrastructures to pursue common scientific goals. CIRC has developed science gateways under the NSF-funded <a href="https://scigap.org">Science Gateways Platform as a service (SciGaP)</a> project. The CIRC team participates in the <a href="https://sciencegateways.org">Science Gateways Community Institute</a> and the <a href="https://www.xsede.org/ecosystem/science-gateways">XSEDE Science Gateways program</a>, both NSF-funded projects that work with scientific collaborators to develop gateways for their communities, which CIRC bases on its SciGaP platform.
</p>
<p class="description">
Science gateways are only a part of the research cyberinfrastructure stack. Campus bridging is another key element. This includes the bridging of campuses to larger-scale research ecosystems like XSEDE, and it also includes bridging within campuses, between centrally managed research computing facilities and the scientists, engineers, and scholars who need to use them. CIRC participates in XSEDE’s Cyberinfrastructure Resource Integration group, which helps campus research computing providers set up new computing resources, integrate them into the national ecosystem, and understand how to reach research and scholarly communities on their campuses.
</p>
<p class="description">
CIRC is also concerned with what happens to the results of computational science and data analysis after a science gateway or campus computing resources are used. CIRC, in collaboration with the Pervasive Technology Institute’s <a href="https://pti.iu.edu/centers/d2i/index.html">Data to Insight Center</a>, is working with the Research Data Alliance to develop digital object architecture implementations that help make scientific data easier to find and more accessible, interoperable and reusable (FAIR).
</p>
<p class="description">
CIRC’s expanded portfolio of services, founded on core open-source software for science gateways, expertise in computing systems, and expertise in FAIR data, gives it a full stack of capabilities to support research organizations at Indiana University and beyond.
</p>
</div>
</div>
</div>
</div>
<div id="mission" class="section gray">
<div class="container">
<div class="content">
<div class="row" style="padding-bottom:40px;">
<div class="col-md-5 col-xs-12" style="text-align: center;">
<img src="img/mission.png" width="70%">
</div>
<div class="col-md-7 col-sm-8 col-xs-12 valign">
<h2 class="title">Mission</h2>
<div class="row">
<p class="description">
We develop and use open source software to create user tools and environments that help scientific communities do what they could not otherwise do. Cyberinfrastructure software systems must be designed and developed strategically, not just from the requirements of scientists but from deeper understanding of core principles of cloud-scale distributed systems.
</p>
</div>
<h2 class="title">Values</h2>
<div class="row">
<p class="description">
The Cyberinfrastructure Integration Research Center’s core principle is that producing world-class eScience systems requires a cooperative balance between understanding the needs and goals of scientific collaborators, undertaking core eScience research ourselves, and understanding how to operate science gateway software at scale. Open community software that follows the Apache Software Foundation principles is central to this mission.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-3 col-sm-6 col-xs-12">
<div class="service">
<div class="icon-wrapper">
<span class="circle"><i class="fa fa-expand"></i></span>
</div>
<h3>Scientific Collaboration</h3>
<p>Provides software development assistance and consultation service required for scientific collaborations by mediators for scientific and scholarly communities </p>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<div class="service">
<div class="icon-wrapper">
<span class="circle"><i class="fa fa-rocket"></i></span>
</div>
<h3>Operations and Support</h3>
<p>The only way to truly understand deeper problems and subtle issues in distributed cyberinfrastructure systems is to run it yourself. The CIRC operates Apache Airavata as a cloud-based Platform as a Service for its collaborators.</p>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<div class="service">
<div class="icon-wrapper">
<span class="circle"><i class="fa fa-gear"></i></span>
</div>
<h3>Open Community Software</h3>
<p>The CIRC believes that open source software must be coupled to an inclusive, open community governance model. We champion the Apache Software Foundation’s principles of meritocratic project governance within the eScience community. </p>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<div class="service">
<div class="icon-wrapper">
<span class="circle"><i class="fa fa-eye"></i></span>
</div>
<h3>eScience Research</h3>
<p>The CIRC has a core mission to undertake eScience research in scientific cyberinfrastructure and to educate students in modern cloud architectures to prepare them for the modern workforce.</p>
</div>
</div>
</div>
</div><!-- /.content -->
</div>
</div>
<div id="projects" class="section gray" style="background: #fff;">
<div class="container">
<div class="content">
<div class="row single">
<div class="col-md-offset-2 col-md-8 col-xs-12">
<h2 class="text-center">Apache Airavata</h2>
<p>Apache Airavata is a framework for building scientific gateways to manage complex computations, proving to be the heart and soul of the Research Center deployed in multiple projects, growing its community and helping scientists each day.</p>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-12 col-xs-12">
<img src="img/airavata-logo.png" class="pull-right" width="100%">
</div>
<div class="col-md-8 col-sm-12 col-xs-12">
<h5>Course</h5>
<p>Apache Airavata is taught as a part of Indiana University Computer Science Topics in Systems (CSCI-B 649) track. The foundation Science Gateway Architecture course is taught every Fall and an Advanced course every Spring.</p>
<a class="btn color" href="http://airavata.apache.org/learning.html" target="_blank">MORE DETAILS</a>
<h5>Work with us</h5>
<p>If you are a student, developer, designer, architect, scientist, engineer and would like to contribute to open source and Apache Airavata you can checkout the website and ask on mailing lists.</p>
<a class="btn color" href="http://airavata.apache.org/development.html" target="_blank">MORE DETAILS</a>
</div>
</div>
</div><!-- /.content -->
<!--
<div class="content" style="margin-top:50px;">
<div class="text-center">
<h2 class="title"> Distributed Computing Research & Open Source Software Projects </h2>
</div>
<div class="row">
<div class="col-md-2 col-sm-2 col-xs-12"></div>
<div class="col-md-8 col-sm-8 col-xs-12">
<p class="description">We work to simplify the usage experience of computational resources for users through nationally funded grid projects. The Science Gateways Group does this in particular by implementing open source software to support science gateway projects.
</p>
</div>
<div class="col-md-2 col-sm-2 col-xs-12"></div>
</div>
</div> /.content -->
<!--
<div id="grid" class="row masonry-grid effect-2">
<li class="col-md-4 col-sm-4 col-xs-12 item">
<a data-toggle="modal" href="#modal1" class="image">
<img src="img/sintel-bedroom.png" alt="sintel bedroom">
<span class="overlay"><span class="valign"></span><i class="fa fa-search"></i></span>
</a>
<div class="description">
<h2>SciGaP award and contributions to Apache Airavata</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
<div class="clearfix"></div>
</div>
</li>
<li class="col-md-4 col-sm-4 col-xs-12 item">
<a data-toggle="modal" href="#modal4" class="image">
<img src="img/sintel-bamboo-2.jpg" alt="ishtar alley">
<span class="overlay"><span class="valign"></span><i class="fa fa-search"></i></span>
</a>
<div class="description">
<h2>Data Science Projects</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
<div class="clearfix"></div>
</div>
</li>
<li class="col-md-4 col-sm-4 col-xs-12 item">
<a data-toggle="modal" href="#modal2" class="image">
<img src="img/sintel-snowscape.jpg" alt="sintel snowscape">
<span class="overlay"><span class="valign"></span><i class="fa fa-search"></i></span>
</a>
<div class="description">
<h2>Meta Scheduling Project</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
<div class="clearfix"></div>
</div>
</li>
<li class="col-md-4 col-sm-4 col-xs-12 item">
<a data-toggle="modal" href="#modal3" class="image">
<img src="img/sintel-wallpaper-ishtar.jpg" alt="sintel wallpaper ishtar">
<span class="overlay"><span class="valign"></span><i class="fa fa-search"></i></span>
</a>
<div class="description">
<h2>Effient use of Cloud & BigData Technologies by Scientific Community </h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
<div class="clearfix"></div>
</div>
</li>
<li class="col-md-4 col-sm-4 col-xs-12 item">
<a data-toggle="modal" href="#modal6" class="image">
<img src="img/sintel-town-concept.jpg" alt="sintel town concept">
<span class="overlay"><span class="valign"></span><i class="fa fa-search"></i></span>
</a>
<div class="description">
<h2>Another Project</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
<div class="clearfix"></div>
</div>
</li>
<li class="col-md-4 col-sm-4 col-xs-12 item">
<a data-toggle="modal" href="#modal5" class="image">
<img src="img/ishtar-alley.png" alt="ishtar alley">
<span class="overlay"><span class="valign"></span><i class="fa fa-search"></i></span>
</a>
<div class="description">
<h2>Also this project</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
<div class="clearfix"></div>
</div>
</li>
</div>
-->
</div>
</div>
<div class="row section gray" id="publications">
<div class="container">
<div class="content">
<div class="text-center">
<h2 class="title breathing-space"> Publications and Presentations </h2>
</div>
<div class="row">
<div class="col-md-12 col-xs-12">
<p>We recommend the following publications to get an overview of our center activities. Thank you for citing our work.
</p>
<p>
<ul class="list-group">
<li class="list-group-item">
Marru, Suresh, Marlon Pierce, Sudhakar Pamidighantam, and Chathuri Wimalasena. "Apache Airavata as a laboratory: architecture and case study for component-based gateway middleware." In Proceedings of the 1st Workshop on The Science of Cyberinfrastructure: Research, Experience, Applications and Models, pp. 19-26. ACM, 2015. <a href="http://dl.acm.org/citation.cfm?id=2753529" target="_blank">Link</a>
</li>
<li class="list-group-item">
Pierce, Marlon E., Suresh Marru, Lahiru Gunathilake, Don Kushan Wijeratne, Raminder Singh, Chathuri Wimalasena, Shameera Ratnayaka, and Sudhakar Pamidighantam. "Apache Airavata: design and directions of a science gateway framework." Concurrency and Computation: Practice and Experience 27, no. 16 (2015): 4282-4291. <a href="http://onlinelibrary.wiley.com/doi/10.1002/cpe.3534/full" target="_blank">Link</a>
</li>
<li class="list-group-item">
Pierce, Marlon, Suresh Marru, Borries Demeler, Raminderjeet Singh, and Gary Gorbet. "The apache airavata application programming interface: overview and evaluation with the UltraScan science gateway." In Proceedings of the 9th Gateway Computing Environments Workshop, pp. 25-29. IEEE Press, 2014. <a href="http://dl.acm.org/citation.cfm?id=2690894" target="_blank">Link</a>
</li>
<li class="list-group-item">
Pierce, Marlon E., Suresh Marru, and Chris Mattmann. "Patching It Up, Pulling It Forward." Journal of Open Research Software 3, no. 1 (2015). <a href="http://openresearchsoftware.metajnl.com/articles/10.5334/jors.bz/" target="_blank">Link</a>
</li>
<li class="list-group-item">
Nakandala, Supun, Sudhakar Pamidighantam, Shameera Yodage, Nipurn Doshi, Eroma Abeysinghe, Chathuri Peli Kankanamalage, Suresh Marru, and Marlon Pierce. "Anatomy of the SEAGrid Science Gateway." In Proceedings of the XSEDE16 Conference on Diversity, Big Data, and Science at Scale, p. 40. ACM, 2016. <a href="http://dl.acm.org/citation.cfm?id=2949591" target="_blank">Link</a>
</li>
</ul>
</p>
<p>Follow our Google Scholars profiles to get our latest publications.
</p>
<p>
<ul class="list-group">
<li class="list-group-item">
<a href="https://scholar.google.com/citations?user=jAIppVwAAAAJ&hl=en&oi=ao" target="_blank">Marlon Pierce</a>
</li>
<li class="list-group-item">
<a href="https://scholar.google.com/citations?user=FVWrKb0AAAAJ&hl=en" target="_blank">Suresh Marru </a>
</li>
<li class="list-group-item">
<a href="https://scholar.google.com/citations?user=xlNkBCQAAAAJ&hl=en" target="_blank">Sudhakar Pamidighantam</a>
</li>
<li class="list-group-item">
<a href="https://scholar.google.com/citations?user=Oo7xqRIAAAAJ&hl=en" target="_blank">Jun Wang </a> ( See note on profile)
</li>
<li class="list-group-item">
<a href="https://scholar.google.com/citations?user=kd4wQl0AAAAJ&hl=en" target="_blank">Eroma Abeysinghe </a>
</li>
<li class="list-group-item">
<a href="https://scholar.google.com/citations?user=-K_aQnUAAAAJ&hl=en" target="_blank">Eric Coulter</a>
</li>
</ul>
</p>
</div>
</div>
</div>
</div><!-- /.container -->
</div>
<div id="operations" class="section dark">
<div class="container">
<div class="content">
<div class="text-center">
<h2 class="title">Gateway Operations</h2>
</div>
<div class="row">
<div class="col-md-2 col-sm-2 col-xs-12"></div>
<div class="col-md-8 col-sm-8 col-xs-12">
<p class="description">We have been working with scientific communities to easily use scientific applications deployed across a wide range of supercomputers, campus clusters, and computing cloud.
</p>
</div>
<div class="col-md-2 col-sm-2 col-xs-12"></div>
</div>
</div>
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<ul class="row">
<li class="col-md-3 col-sm-6 col-xs-12">
<a href="http://seagrid.org" target="_blank" class="thumbnail">
<img src="img/seagrid-logo.png" alt="...">
</a>
</li>
<li class="col-md-3 col-sm-6 col-xs-12">
<a href="http://ultrascan.uthscsa.edu/" target="_blank" class="thumbnail">
<img src="img/ultrascan-logo.png" alt="...">
</a>
</li>
<li class="col-md-3 col-sm-6 col-xs-12">
<a href="https://dreg.dnasequence.org/" target="_blank" class="thumbnail">
<img src="img/dreg-logo.png" alt="...">
</a>
</li>
<li class="col-md-3 col-sm-6 col-xs-12">
<a href="http://geo-gateway.org" target="_blank" class="thumbnail">
<img src="img/geogateway-logo.png" style="background:#aaa;" alt="geogateway-logo">
</a>
</li>
</ul>
</div>
<div class="item">
<ul class="row">
<li class="col-md-3 col-sm-6 col-xs-12">
<a href="https://ampgateway.org/" target="_blank" class="thumbnail">
<img src="img/amp-header-logo.png" alt="...">
</a>
</li>
<!--
<li class="col-md-3 col-sm-6 col-xs-12">
<a href="http://www.bioteam.net/" target="_blank" class="thumbnail">
<img src="img/bioteam-logo.png" alt="BioTeam">
</a>
</li>
<li class="col-md-3 col-sm-6 col-xs-12">
<a href="https://www.phylo.org/" target="_blank" class="thumbnail">
<img src="img/cipres-logo.gif" alt="...">
</a>
</li>
<li class="col-md-3 col-sm-6 col-xs-12">
<a href="http://www.oscer.ou.edu/" target="_blank" class="thumbnail">
<img src="img/oscer-logo.jpeg" width="50%" alt="...">
</a>
</li>
-->
<li class="col-md-3 col-sm-6 col-xs-12">
<a href="https://gateway.simvascular.org/" target="_blank" class="thumbnail">
<img src="img/SimV.png" alt="...">
</a>
</li>
<li class="col-md-3 col-sm-6 col-xs-12">
<a href="https://www.searchsra.org/" target="_blank" class="thumbnail">
<img src="img/searchSRA.png" width="100%" alt="...">
</a>
</li>
<li class="col-md-3 col-sm-6 col-xs-12">
<a href="https://cybergateway.iu.edu/" target="_blank" class="thumbnail">
<!--<a href="https://cybergateway.uits.iu.edu/iugateway/" target="_blank" class="thumbnail">-->
<div class="cybergateway">IU Cybergateway</div>
</a>
</li>
</ul>
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" data-slide="prev">
<i class="fa fa-angle-left"></i>
</a>
<a class="right carousel-control" href="#carousel-example-generic" data-slide="next">
<i class="fa fa-angle-right"></i>
</a>
<div class="col-md-12 text-center breathing-space">
<a class="btn color" href="collaborations.html" target="_blank">View list of Clients and Collaborators</a>
</div>
</div>
</div>
</div>
<div id="team" class="section">
<div class="container">
<div class="content">
<div class="text-center">
<h2 class="title">Meet the Team</h2>
</div>
<div class="row">
<div class="col-sm-offset-1 col-sm-10 col-xs-12">
<p class="description">CIRC employees are researchers, scientists and students as both graduate research assistants and hourly employees. We welcome you to become involved as well. Interested students should engage with the Apache Airavata community through the developer mailing list to demonstrate their software design skills and development abilities.
<!--We have created a number of products that range from full scale <span class="highlight">web apps</span> to simple <span class="highlight">website designs</span>. Check out all our previous work to get an idea of what we can do!-->
</p>
</div>
<div class="col-md-2 col-sm-2 col-xs-12"></div>
</div>
<div class="row">
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="mailto:marpierc@iu.edu" class="portrait-wrapper">
<img class="portrait" src="img/marlon.jpg">
<span class="overlay"><span class="valign"></span><i class="fa fa-envelope"></i></span>
</a>
<div class="text-center">
<h3>Marlon Pierce</h3>
<p>marpierc@iu.edu</p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="mailto:smarru@iu.edu" class="portrait-wrapper">
<img class="portrait" src="img/suresh.jpg">
<span class="overlay"><span class="valign"></span><i class="fa fa-envelope"></i></span>
</a>
<div class="text-center">
<h3>Suresh Marru</h3>
<p>smarru@iu.edu</p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="mailto:pamidigs@iu.edu" class="portrait-wrapper">
<img class="portrait" src="img/sudhakar.jpg">
<span class="overlay"><span class="valign"></span><i class="fa fa-envelope"></i></span>
</a>
<div class="text-center">
<h3>Sudhakar Pamidighantam</h3>
<p>pamidigs@iu.edu</p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="mailto:eabeysin@iu.edu" class="portrait-wrapper">
<img class="portrait" src="img/eroma.jpg">
<span class="overlay"><span class="valign"></span><i class="fa fa-envelope"></i></span>
</a>
<div class="text-center">
<h3>Eroma Abeysinghe</h3>
<p>eabeysin@iu.edu</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="mailto:wang208@iu.edu" class="portrait-wrapper">
<img class="portrait" src="img/jun.jpg">
<span class="overlay"><span class="valign"></span><i class="fa fa-envelope"></i></span>
</a>
<div class="text-center">
<h3>Jun Wang</h3>
<p>wang208@iu.edu</p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="mailto:machrist@iu.edu" class="portrait-wrapper">
<img class="portrait" src="img/marcus.jpg">
<span class="overlay"><span class="valign"></span><i class="fa fa-envelope"></i></span>
</a>
<div class="text-center">
<h3>Marcus Christie</h3>
<p>machrist@iu.edu</p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="mailto:dwannipu@iu.edu" class="portrait-wrapper">
<img class="portrait" src="img/dimuthu.jpg">
<span class="overlay"><span class="valign"></span><i class="fa fa-envelope"></i></span>
</a>
<div class="text-center">
<h3>Dimuthu Upeksha</h3>
<p>dwannipu@iu.edu</p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="mailto:rquick@iu.edu" class="portrait-wrapper">
<img class="portrait" src="img/Rob_quick.png">
<span class="overlay"><span class="valign"></span><i class="fa fa-envelope"></i></span>
</a>
<div class="text-center">
<h3>Robert Quick</h3>
<p>rquick@iu.edu</p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="mailto:isjarana@iu.edu" class="portrait-wrapper">
<img class="portrait" src="img/Isuru.jpg">
<span class="overlay"><span class="valign"></span><i class="fa fa-envelope"></i></span>
</a>
<div class="text-center">
<h3>Isuru Ranawaka</h3>
<p>isjarana@iu.edu</p>
</div>
</div>
</div>
</div>
<div class="row">
<h2 class="col-md-12 text-center breathing-space">Students</h2>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="https://www.linkedin.com/in/dinuka-de-silva-b3521276" target="_blank" class="portrait-wrapper">
<img class="portrait" src="img/Dinuka-image.png">
<span class="overlay"><span class="valign"></span><i class="fa fa-linkedin"></i></span>
</a>
<div class="text-center">
<h3>Dinuka De Silva</h3>
<p></p>
</div>
</div>
</div>
</div>
<!--
<div class="row">
<div class="col-sm-12 text-center breathing-space">
<h2>Advisory Board</h2>
<p>The CIRC Advisory Board reviews CIRC activities and provides strategic direction for the center.</p>
</div>
</div>
<div class="row">
<div class="col-sm-4 col-xs-12">
<div class="wrapper">
<a href="mailto:gannon@iu.edu" class="portrait-wrapper">
<img class="portrait" src="img/dennis.jpg">
<span class="overlay"><span class="valign"></span><i class="fa fa-envelope"></i></span>
</a>
<div class="text-center">
<h3>Dennis Gannon</h3>
<p>Professor Emeritus of Computer Science, </br> Indiana University</p>
</div>
</div>
</div>
<div class="col-sm-4 col-xs-12">
<div class="wrapper">
<a href="http://www.soic.indiana.edu/faculty-research/directory/profile.html?profile_id=443" class="portrait-wrapper">
<img class="portrait" src="img/raj-acharya.jpg">
<span class="overlay"><span class="valign"></span><i class="fa fa-envelope"></i></span>
</a>
<div class="text-center">
<h3>Raj Acharya</h3>
<p>Dean, School of Informatics and Computing, </br> Indiana University</p>
</div>
</div>
</div>
<div class="col-sm-4 col-xs-12">
<div class="wrapper">
<a href="mailto:kkd@ou.edu" class="portrait-wrapper">
<img class="portrait" src="img/kelvin.jpg">
<span class="overlay"><span class="valign"></span><i class="fa fa-envelope"></i></span>
</a>
<div class="text-center">
<h3>Kelvin Droegemeier</h3>
<p>Vice President for Research, </br>
University of Oklahoma</p>
</div>
</div>
</div>
</div>
-->
<div class="row">
<h2 class="col-md-12 text-center breathing-space">Alumni</h2>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="https://www.linkedin.com/in/thejaka-kanewala" target="_blank" class="">
<span class="overlay"><span class="valign"></span><i class="fa fa-linkedin"></i></span>
</a>
<div class="text-center">
<h3>Thejaka Amila Kanewala</h3>
<p></p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="https://www.linkedin.com/in/glahiru/" target="_blank" class="">
<span class="overlay"><span class="valign"></span><i class="fa fa-linkedin"></i></span>
</a>
<div class="text-center">
<h3>Lahiru Gunathilake</h3>
<p></p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="hhttps://www.linkedin.com/in/webdevengineer" target="_blank" class="">
<span class="overlay"><span class="valign"></span><i class="fa fa-linkedin"></i></span>
</a>
<div class="text-center">
<h3>Nipurn Doshi</h3>
<p></p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="https://www.linkedin.com/in/raminderjsingh" target="_blank" class="">
<span class="overlay"><span class="valign"></span><i class="fa fa-linkedin"></i></span>
</a>
<div class="text-center">
<h3>Raminder Singh</h3>
<p></p>
</div>
</div>
</div>
</div>
<div class="row" style="margin-top:40px;">
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="https://www.linkedin.com/in/saminda-wijeratne-b4a0986a" target="_blank" class="">
<span class="overlay"><span class="valign"></span><i class="fa fa-linkedin"></i></span>
</a>
<div class="text-center">
<h3>Saminda Wijeratne</h3>
<p></p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="https://www.linkedin.com/in/chathuri-peli-kankanamalage" target="_blank" class="">
<span class="overlay"><span class="valign"></span><i class="fa fa-linkedin"></i></span>
</a>
<div class="text-center">
<h3>Chathuri Wimalasena</h3>
<p></p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="https://www.linkedin.com/in/heshan" target="_blank" class="">
<span class="overlay"><span class="valign"></span><i class="fa fa-linkedin"></i></span>
</a>
<div class="text-center">
<h3>Heshan Suriyaarachchi</h3>
<p></p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="https://www.linkedin.com/in/viknes-balasubramanee-6355a736" target="_blank" class="">
<span class="overlay"><span class="valign"></span><i class="fa fa-linkedin"></i></span>
</a>
<div class="text-center">
<h3>Viknes Balasubramanee</h3>
<p></p>
</div>
</div>
</div>
</div>
<div class="row" style="margin-top:40px;">
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="https://www.linkedin.com/in/shameerarathnayaka" target="_blank" class="">
<span class="overlay"><span class="valign"></span><i class="fa fa-linkedin"></i></span>
</a>
<div class="text-center">
<h3>Shameera Rathnayaka</h3>
<p></p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="https://www.linkedin.com/in/vaglomangirish" target="_blank" class="">
<span class="overlay"><span class="valign"></span><i class="fa fa-linkedin"></i></span>
</a>
<div class="text-center">
<h3>Mangirish Wagle</h3>
<p></p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="https://www.linkedin.com/in/hrushikeshdhumal" target="_blank" class="">
<span class="overlay"><span class="valign"></span><i class="fa fa-linkedin"></i></span>
</a>
<div class="text-center">
<h3>Hrushikesh Dhumal</h3>
<p></p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="https://www.linkedin.com/in/scnakandala" target="_blank" class="">
<span class="overlay"><span class="valign"></span><i class="fa fa-linkedin"></i></span>
</a>
<div class="text-center">
<h3>Supun Nakandala</h3>
<p></p>
</div>
</div>
</div>
</div>
<div class="row" style="margin-top:40px;">
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="https://www.linkedin.com/in/abhijitkaranjkar" target="_blank" class="">
<span class="overlay"><span class="valign"></span><i class="fa fa-linkedin"></i></span>
</a>
<div class="text-center">
<h3>Abhijit Karanjkar</h3>
<p></p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="https://www.linkedin.com/in/ajinkya-dhamnaskar-1b2468105" target="_blank" class="">
<span class="overlay"><span class="valign"></span><i class="fa fa-linkedin"></i></span>
</a>
<div class="text-center">
<h3>Ajinkya Dhamnaskar</h3>
<p></p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="https://www.linkedin.com/in/anuj-bhandar-aaba77aa" target="_blank" class="">
<span class="overlay"><span class="valign"></span><i class="fa fa-linkedin"></i></span>
</a>
<div class="text-center">
<h3>Anuj Bhandar</h3>
<p></p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="https://www.linkedin.com/in/ameyaadvankar/" target="_blank" class="">
<span class="overlay"><span class="valign"></span><i class="fa fa-linkedin"></i></span>
</a>
<div class="text-center">
<h3>Ameya Advankar</h3>
<p></p>
</div>
</div>
</div>
</div>
<div class="row" style="margin-top:40px;">
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="https://www.linkedin.com/in/gouravshenoy" target="_blank" class="">
<span class="overlay"><span class="valign"></span><i class="fa fa-linkedin"></i></span>
</a>
<div class="text-center">
<h3>Gourav Ganesh Shenoy</h3>
<p></p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="https://www.linkedin.com/in/tilaks/" target="_blank" class="">
<span class="overlay"><span class="valign"></span><i class="fa fa-linkedin"></i></span>
</a>
<div class="text-center">
<h3>Sneha Tilak</h3>
<p></p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="https://www.linkedin.com/in/eldhomathulla/" target="_blank" class="">
<span class="overlay"><span class="valign"></span><i class="fa fa-linkedin"></i></span>
</a>
<div class="text-center">
<h3>Eldho Mathulla</h3>
<p></p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="https://www.linkedin.com/in/sachinkariyattin/" target="_blank" class="">
<span class="overlay"><span class="valign"></span><i class="fa fa-linkedin"></i></span>
</a>
<div class="text-center">
<h3>Sachin Kariyattin</h3>
<p></p>
</div>
</div>
</div>
</div>
<div class="row" style="margin-top:40px;">
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="wrapper">
<a href="https://www.linkedin.com/in/stephen-paul-adithela-9b8793114/" target="_blank" class="">
<span class="overlay"><span class="valign"></span><i class="fa fa-linkedin"></i></span>