-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
3046 lines (2598 loc) · 220 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>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-119048537-7"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-119048537-7');
</script>
<meta charset="utf-8">
<meta name="description" content="PredHPI an integrated web server platform for the prediction and visualization of host-pathogen interactions">
<meta name="author" content="Cristian Loaiza">
<!-- App Favicon -->
<link rel="shortcut icon" href="assets/images/favicon.ico">
<!-- App title -->
<title>PredHPI</title>
<!-- Plugins css-->
<link href="assets/plugins/multiselect/css/multi-select.css" rel="stylesheet" type="text/css" />
<!-- form Uploads -->
<link href="assets/plugins/fileuploads/css/dropify.min.css" rel="stylesheet" type="text/css" />
<!-- Custom box css -->
<link href="assets/plugins/custombox/css/custombox.min.css" rel="stylesheet">
<!-- Switchery css -->
<link href="assets/plugins/switchery/switchery.min.css" rel="stylesheet" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<!-- App CSS -->
<link href="assets/css/style.css" rel="stylesheet" type="text/css" />
<!-- Modernizr js -->
<script src="assets/js/modernizr.min.js"></script>
<!-- View Port-->
<meta content="width=device-width, initial-scale=1" name="viewport">
<style>
.card-box{
background-color: #F5F5F5;
}
b.normal {
font-weight: normal;
}
</style>
</head>
<body>
<header id="topnav" >
<div class="topbar-custom">
<div class="container">
<div class="row" style='background-image: url("assets/images/gallery/network.png");background-color: #d0d0d0;height: 110px;'>
<div align="left" class="col-sm-8 col-xs-12">
<a href="https://www.usu.edu" target="_blank"><img src='assets/images/gallery/usulogo.png'></a>
<a href="http://bioinfo.usu.edu" target="_blank" ><h6 style="font-size: 14px;">Kaundal Bioinformatics Laboratory</h6></a>
</div>
<div align="right" class="col-sm-4 col-xs-12">
<a href="http://bioinfo.usu.edu/PredHPI"><img src='assets/images/gallery/favicon.png'></a>
</div>
</div>
</div>
</div>
<div class="navbar-custom" >
<div class="container">
<div id="navigation">
<ul class="navigation-menu" >
<li>
<a href="index.html" style="font-size: 18px;"><i class="zmdi zmdi-device-hub" style="font-size: 25px;"></i> <span> Submit </span> </a>
</li>
<li>
<a href="about.html" style="font-size: 18px;"><i class="zmdi zmdi-grid" style="font-size: 25px;"></i> <span> About </span> </a>
</li>
<li>
<a href="help.html" style="font-size: 18px;"><i class="zmdi zmdi-info" style="font-size: 25px;"></i> <span> Help </span> </a>
</li>
<li>
<a href="faq.html" style="font-size: 18px;"><i class="zmdi zmdi-help" style="font-size: 25px;"></i><span> FAQ </span> </a>
</li>
</ul>
</div>
</div>
</div>
</header>
<!-- ============================================================== -->
<!-- Start right Content here -->
<!-- ============================================================== -->
<div class="wrapper" style='margin-top: 180px;'>
<div class="container">
<!-- Modal Interolog -->
<div class="modal fade" id="interologModal" tabindex="-1" role="dialog" aria-labelledby="interologModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">About Interolog prediction</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>Interolog, can be defined as the process to search homologous of unknown interacting proteins into protein-protein interaction databases. Initially this server will Diamond-Blast your input sequences against the Diamond databases representations of the PPI databases, after that will try to match those hits using SQL.</p>
<hr>
<p>You can provide two different datasets, named as the Host Dataset and the Pathogen Dataset. The service receives either nucleotides or proteins sequences in FASTA format. You can choose nucleotide sequences for one Dataset and protein sequences for the other(or viceversa), also you can use for both a single type of sequences, however, wherever you choose for one dataset you need to stick to it for the entire dataset. The webserver itself decide based on your sequences which type they are.</p>
<hr>
<p>If you want to run this for only one dataset, you can deactivate one of the Host or Pathogen panels (by clicking the button next to the Dataset title). Depending of which of the panels you deactivate your search will change. If you decide to choose running as an "Only Host" query, you will search your sequences against column interactor_A of the PPI databases; or if you select the "Only Pathogen" option, you will do it against column interactor_B <a target="_blank" href="https://github.com/HUPO-PSI/miTab/blob/master/PSI-MITAB27Format.md">(See PSI-MITAB standard definition)</a></p>
<hr>
<p>Default values for initial blast are evalue of 1e-10, identity of 30% and coverage of 30%. These values will produce a large result set. Consider to increase or decrease those values to adjust it to your particular interest.</p>
<!--<p>Default values for initial blast are evalue of 2e-161, identity of 69% and coverage of 74%; This values have been taken from the <a target="_blank" href="http://hpidb.igbb.msstate.edu/">HPIDB website</a> in which they manually obtain those blast values to generate a set of interolog predicted interactions. Consider to increase or decrease those values to adjust it to your particular interest.</p>-->
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="ppiDbModal" tabindex="-1" role="dialog" aria-labelledby="ppiDbModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">About PPI Databases</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>The International Molecular Exchange Consortium <a target="_blank" href="https://www.imexconsortium.org">(IMEX)</a> had the initiative to cluster the largest public interaction data providers. From those we have selected five (HPIDB, MINT, DIP, BioGRID and IntAct) as we think are the most comprehensive. Moreover two other resources outside IMEX were included, VirHostNet and STRING. VirHostNet is one of the most complete resources for Vir-Host interactions. STRING is the largest repository of protein-protein interaction, in the service only the experimental interaction of STRING were included. Dataset used in the benchmark of the PredHPI manuscript were finally included. </p>
<hr>
<p>Summary of the databases version running on this service:</p>
<p><a target="_blank" href="http://hpidb.igbb.msstate.edu/">HPIDB</a> have 19,395 sequences with 62,653 interactions.</p>
<p><a target="_blank" href="https://mint.bio.uniroma2.it/">MINT</a> have 24,226 sequences with 123,890 interactions.</p>
<p><a target="_blank" href="http://dip.mbi.ucla.edu/dip/">DIP</a> have 20,532 sequences with 76,881 interactions.</p>
<p><a target="_blank" href="https://thebiogrid.org/">BioGRID</a> have 50,096 sequences with 1,530,395 interactions.</p>
<p><a target="_blank" href="https://www.ebi.ac.uk/intact/">IntAct</a> have 93,869 sequences with 843,123 interactions.</p>
<p><a target="_blank" href="http://virhostnet.prabi.fr/">VirHostNet</a> have 8,932 sequences with 34,760 interactions.</p>
<p><a target="_blank" href="https://string-db.org/">STRING</a> have 130,820 sequences with 2,028,129 interactions.</p>
<p><a target="_blank" href="https://www.ncbi.nlm.nih.gov/genome/viruses/retroviruses/hiv-1/interactions/">HIV-1 Human Interaction Database</a> have 3,882 sequences with 16,215 interactions.</p>
<p>ArabHPI (<a target="_blank" href="http://signal.salk.edu/interactome/index.html">PPIN-2</a>, <a target="_blank" href="http://bar.utoronto.ca/ATIN/ArabidopsisInteractome.html">ATIN</a>) have 659 sequences with 982 interactions.</p>
<p><a target="_blank" href="http://www.phisto.org/">PHISTO</a> have 12,747 sequences with 62,347 interactions.</p>
<hr>
<p>Please notice that can be overlapping data between databases, network visualization will handle this with an additional edge with a different color for each overlap interaction.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="no-fastaHost" tabindex="-1" role="dialog" aria-labelledby="nofastaHostModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header" style="background-color: #ff5d48; color: #ffffff;">
<h5 class="modal-title" id="nofastaHostModalLabel" >Error</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>Please upload a valid FASTA file or paste a valid sequence in the text area for Host.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="no-fastaPathogen" tabindex="-1" role="dialog" aria-labelledby="nofastaPathogenModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header" style="background-color: #ff5d48; color: #ffffff;">
<h5 class="modal-title" id="nofastaPathogenModalLabel" >Error</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>Please upload a valid FASTA file or paste a valid sequence in the text area for Pathogen.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="no-fastaBoth" tabindex="-1" role="dialog" aria-labelledby="nofastaBothModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header" style="background-color: #ff5d48; color: #ffffff;">
<h5 class="modal-title" id="nofastaBothModalLabel" >Error</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>Please upload a valid FASTA file or paste a valid sequence in the text area for both datasets (Pathogen & Host).</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="max-fastaHost" tabindex="-1" role="dialog" aria-labelledby="maxfastaHostModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header" style="background-color: #ff5d48; color: #ffffff;">
<h5 class="modal-title" id="maxfastaHostModalLabel" >Error</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>Max number of sequences for Host dataset was exceeded.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="max-fastaPathogen" tabindex="-1" role="dialog" aria-labelledby="maxfastaPathogenModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header" style="background-color: #ff5d48; color: #ffffff;">
<h5 class="modal-title" id="maxfastaPathogenModalLabel" >Error</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>Max number of sequences for Pathogen dataset was exceeded. </p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="max-fastaBoth" tabindex="-1" role="dialog" aria-labelledby="maxfastaBothModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header" style="background-color: #ff5d48; color: #ffffff;">
<h5 class="modal-title" id="maxfastaBothModalLabel" >Error</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>Max number of sequences for Both dataset was exceeded. </p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="wr-all-interolog" tabindex="-1" role="dialog" aria-labelledby="wr-all-interologModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header" style="background-color: #f1b53d; color: #ffffff;">
<h5 class="modal-title" id="wr-emailModalLabel" >Warning</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>There is a problem with the input provided.</p><p id="noEmail">Please check the email (you must provided a valid email).</br></p><p id="noIdentity">Please check your minimum identity percentage (valid number from 1 to 100).</br></p><p id="noCoverage">Please check your minimum coverage percentage (valid number from 1 to 100).</br></p><p id="noEvalue">Please check your evalue (valid number).</br></p> Also you can leave it blank (This will run with default values) to continue with the Interolog prediction service.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-warning" data-dismiss="modal">Ok</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="onInterologTask" tabindex="-1" role="dialog" aria-labelledby="onBlastTaskLabel" aria-hidden="true" data-backdrop="static" data-keyboard="false" data-animation="fadein" >
<div class="modal-dialog" role="document" style="padding-top: 15%;">
<div class="modal-content">
<div class="modal-header" style="background-color: #1bb99a; color: #ffffff;">
<h5 class="modal-title" id="onBlastTaskLabel" >Please be patient, your query is being processed.....</h5>
</div>
<div class="modal-body" id="onBlastTaskModalBody">
<p id="interologSubmittionScreen">You have succesfully submitted a query to the Interolog prediction service at PredHPI.</p>
</div>
</div>
</div>
</div>
<!-- Domain Modal -->
<div class="modal fade" id="domainPredModal" tabindex="-1" role="dialog" aria-labelledby="domainPredModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">About Domain prediction</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>This process takes the aminoacid sequences provided by the user and use the software HMMER to find proteins domains in those sequences using the information avaliable at Pfam, then will make a search inside the DDI(Domain-Domain Interaction) databases using SQL, trying to find a match between the domains obtained.</p>
<hr>
<p>You can provide two different datasets, named as the Host Dataset and the Pathogen Dataset. The service receives aminoacid sequences in FASTA format. </p>
<hr>
<p>If you want to do the search for a single dataset you can deactivate one of the Dataset panels by clicking the button next to the Dataset name. Wherever Dataset you decide to use alone will not produce results representing a host pathogen (or a protein protein) interaction (this is only accomplished when you use both datasets). Any other scenario will produce a protein domain interaction. </p>
<hr>
<p>If you select the "No filters" option for the HMMScan you will increase your sensitivity but will take much longer. </p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="ddiDbModal" tabindex="-1" role="dialog" aria-labelledby="ddiDbModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">About DDI Databases</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>3DID is the default database due to its updating rate.</p>
<hr>
<p>Summary of the databases version running on this service:</p>
<p><a target="_blank" href="https://3did.irbbarcelona.org/">3DID</a> have 11,200 interactions.</p>
<p><a target="_blank" href="http://pcode.kaist.ac.kr/iddi/">IDDI</a> have 204,716 interactions.</p>
<hr>
<p>Results Ids are shown as the are presented on the queried Database. Ids on 3DID are as domains names and on IDDI are Pfam Id.</p>
<hr>
<p>The <a target="_blank" href="https://pfam.xfam.org/">Pfam</a> release used in this version is Pfam31.0.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="wr-all-domain" tabindex="-1" role="dialog" aria-labelledby="wr-all-domainModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header" style="background-color: #f1b53d; color: #ffffff;">
<h5 class="modal-title" id="wr-emailModalLabel" >Warning</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>There is a problem with the input provided.</p><p id="noEmailDomain">Please check the email (you must provided a valid email).</br></p><p id="noviterbi">Please check your viterbi p-value.</br></p><p id="noforward">Please check your forward pvalue.</br></p><p id="noMSV">Please check your MSV pvalue.</br></p><p id="noevaluedomain">Please check your evalue (valid number).</br></p><p id="nocoveragedomain">Please check your coverage value (domE) .</br></p> Also you can leave it blank (This will run with default values) to continue with the Domain prediction service.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-warning" data-dismiss="modal">Ok</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="onDomainPredTask" tabindex="-1" role="dialog" aria-labelledby="onDomainPredTaskLabel" aria-hidden="true" data-backdrop="static" data-keyboard="false" data-animation="fadein" >
<div class="modal-dialog" role="document" style="padding-top: 15%;">
<div class="modal-content">
<div class="modal-header" style="background-color: #1bb99a; color: #ffffff;">
<h5 class="modal-title" id="onDomainPredTaskLabel" >Please be patient, your query is being processed.....</h5>
</div>
<div class="modal-body" id="onDomainPredTaskModalBody">
<p id="domainSubmittionScreen">You have succesfully submitted a query to the Domain Host-pathogen interaction prediction service at PredHPI.</p>
</div>
</div>
</div>
</div>
<!-- GOSim Modal -->
<div class="modal fade" id="GOppiPredModal" tabindex="-1" role="dialog" aria-labelledby="GOppiPredModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">About GOppi prediction</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>This process takes the sequences provided by the user and use the software InterProScan to find the GO terms associated, then will use the R package GOSemSim to calculated the similarities between each of the GO terms, according to the overall similarity the protein pair would be interacting or not.</p>
<hr>
<p>You must provide two different datasets, named as the Host Dataset and the Pathogen Dataset. The service receives sequences in FASTA format. </p>
<hr>
<p>GOSemSim package will calculate a simmilarity matrix between the GO terms set of Host and Pathogen, then will combine those matrix values (pairwise similiarities between two GO terms) according to the strategy selected.</p>
<hr>
<p>Wang method is used in the GOSemSim to calculate the similarities, this is due the fact that ignore BP, CC and MF subontologies in the graph, allowing to make use of all the GO terms founded by InterProScan.</p>
<hr>
<p>Be aware of the dataset of GO used for your analysis, results can change dramatically between differents Dataset, uses the closest to the host specie analyzed.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="GOppiPredCombined" tabindex="-1" role="dialog" aria-labelledby="GOppiPredCombinedLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">About Combine Strategies</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>Semantic similarity is calculated for each pairwise combination of GO terms, some proteins can have several GO terms associated, thus is necesary to wrap those values into a single one. GOSemSim provides a series of combine methods from which in PredHPI are avaliable four (BMA, max, average, rcmax), Descriptions are taken from GOSemSim website, further information at (https://bioconductor.org/pacakges/devel/bioc/vignettes/GOSemSim.html#combine-methods).</p>
<p><b>BMA</b>: Best-match average strategy, calculates the average of all maximum similarities for each pairwise comparison.</p>
<p><b>max</b>: Maximum.</p>
<p><b>average</b>: Average.</p>
<p><b>rcmax</b>: Similarity among two set of GO terms form a matrix, rcmax method uses the maximum between rows average and columns average.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="wr-all-goSim" tabindex="-1" role="dialog" aria-labelledby="wr-all-goSimModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header" style="background-color: #f1b53d; color: #ffffff;">
<h5 class="modal-title" id="wr-emailModalLabel" >Warning</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>There is a problem with the input provided.</p><p id="noEmailGoSim">Please check the email (you must provided a valid email).</br></p><p id="noThresholdGoSim">Please check your Threshold value (you must provided a number from 0 to 1).</br></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-warning" data-dismiss="modal">Ok</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="onGOppiPredTask" tabindex="-1" role="dialog" aria-labelledby="onGOppiPredTaskLabel" aria-hidden="true" data-backdrop="static" data-keyboard="false" data-animation="fadein" >
<div class="modal-dialog" role="document" style="padding-top: 15%;">
<div class="modal-content">
<div class="modal-header" style="background-color: #1bb99a; color: #ffffff;">
<h5 class="modal-title" id="onGOppiPredTaskLabel" >Please be patient, your query is being processed.....</h5>
</div>
<div class="modal-body" id="onGOppiPredTaskModalBody">
<p id="gosimSubmittionScreen">You have succesfully submitted a query to the GOppi Host-pathogen interaction prediction service at PredHPI.</p>
</div>
</div>
</div>
</div>
<!-- end row -->
<!-- Phylo Profiling Modal -->
<div class="modal fade" id="phyloPredModal" tabindex="-1" role="dialog" aria-labelledby="phyloPredModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">About Phylo prediction</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>Protein protein interaction prediction based on the phylogenetic profiling consist in the aligning (Diamond-Blast) of these proteins into a wide-range of genomes, marking binaries presences (1) or absences (0) for each of the genomes in which the proteins were aligned.</p>
<hr>
<p>The vector with zeros and ones for each protein will be defined as the profiling pattern and if the two proteins shares a similar pattern then will be identified as interacting. The default thresholdPhylo of similarity have been defined as 0.5 (half-similarity), however we encouraged our users to play with this value.</p>
<hr>
<p>The genome pools used in this service have been generated from the Uniprot proteomes set (ftp://ftp.uniprot.org/pub/databases/uniprot/current_release/knowledgebase/reference_proteomes/) using the species in the Bioconductor Org.db annoation package and other models species manually added, complete list of the species present in the pools can be found at <a target="_blank" href="faq.html">faq</a></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="phyloPredPoolsModal" tabindex="-1" role="dialog" aria-labelledby="phyloPredPoolsModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">About Phylo Genome Pools</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p><b>BC18</b>: It means Bioconductor 18, which is the pool of genomes made from the 18 Bioconductor Org.DB species annotated.</p>
<p><b>UP82</b>: It means Uniprot 82, which is the pool of genomes made from model uniprot proteomes.</p>
<p>Complete list of the species present in the pools can be found at <a target="_blank" href="faq.html">faq</a></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="wr-all-phylo" tabindex="-1" role="dialog" aria-labelledby="wr-all-phyloModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header" style="background-color: #f1b53d; color: #ffffff;">
<h5 class="modal-title" id="wr-emailModalLabel" >Warning</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>There is a problem with the input provided.</p><p id="noEmailPhylo">Please check the email (you must provided a valid email).</br></p><p id="noIdentityPhylo">Please check your minimum identity percentage (valid number from 1 to 100).</br></p><p id="noCoveragePhylo">Please check your minimum coverage percentage (valid number from 1 to 100).</br></p><p id="noEvaluePhylo">Please check your evaluePhylo (valid number).</br></p> <p id="noThresholdPhylo">Please check your Threshold value (you must provided a number from 0 to 1).</br></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-warning" data-dismiss="modal">Ok</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="onphyloPredTask" tabindex="-1" role="dialog" aria-labelledby="onphyloPredTaskLabel" aria-hidden="true" data-backdrop="static" data-keyboard="false" data-animation="fadein" >
<div class="modal-dialog" role="document" style="padding-top: 15%;">
<div class="modal-content">
<div class="modal-header" style="background-color: #1bb99a; color: #ffffff;">
<h5 class="modal-title" id="onphyloPredTaskLabel" >Please be patient, your query is being processed.....</h5>
</div>
<div class="modal-body" id="onphyloPredTaskModalBody">
<p id="phyloSubmittionScreen">You have succesfully submitted a query to the Phylo-profiling Host-pathogen interaction prediction service at PredHPI.</p>
</div>
</div>
</div>
</div>
<div style="margin-top: 30px;"></div>
<div class="col-12" style="position: relative;top: 50%;left: 50%;transform: translate(-50%, 0%);">
<div class="card" style="background-color: #f4f4f4; ">
<ul class="nav nav-tabs m-b-10" id="myTabalt" role="tablist" style="font-size: 15.5px;" >
<li class="nav-item">
<a class="nav-link active show" id="interologTab-tab1" data-toggle="tab" href="#interologTab" role="tab" aria-controls="interologTab" aria-expanded="true" aria-selected="true" style="color:003366;">Interolog</a>
</li>
<li class="nav-item">
<a class="nav-link" id="domainTab-tab1" data-toggle="tab" href="#domainTab" role="tab" aria-controls="domainTab" aria-selected="false" style="color:003366;">Domain-based</a>
</li>
<li class="nav-item">
<a class="nav-link" id="goSimTab-tab1" data-toggle="tab" href="#goSimTab" role="tab" aria-controls="goSimTab" aria-selected="false" style="color:003366;">GOsim</a>
</li>
<li class="nav-item">
<a class="nav-link" id="phyloTab-tab1" data-toggle="tab" href="#phyloTab" role="tab" aria-controls="phyloTab" aria-selected="false" style="color:003366;">Phylo-profiling</a>
</li>
</ul>
<div class="tab-content" id="myTabaltContent">
<!-- Interolog Form -->
<div class="tab-pane fade in active show" id="interologTab" role="tabpanel" aria-labelledby="interologTab-tab">
<form id="interologForm" >
<div class="row">
<div class="col-12">
<div class="row">
<div class="col-6">
<div class="card" style="background-color: #f5f5f5;" >
<h6 class="card-header"><b class="text-muted2">I. Data input</b></h6>
<div class="card-box">
<h6><p class="text-muted2">Host <input type="checkbox" id="hostEnabledCheckBox" checked data-plugin="switchery" data-size="small" data-color="#039cfd"/></p></h6>
<p>Upload FASTA file:</p>
<span><input id="fileSqHost" type="file" data-height="60" /></span>
<p class="text-muted">Or Paste your FASTA sequence<button type="button" id="loadDemoDataHost" class="btn btn-link btn-sm waves-effect">(Load demo data)</button>Max:40,000 sequences
<textarea style="font-size: 12px;" class="form-control" id="textareaSqHost" rows="7" ></textarea></p>
<div style="margin-top: 37px"></div>
<h6><p class="text-muted2">Pathogen <input type="checkbox" id="pathogenEnabledCheckBox" checked data-plugin="switchery" data-size="small" data-color="#ff5d48"/></p></h6>
<p>Upload FASTA file:</p>
<span><input id="fileSqPathogen" type="file" data-height="60" /></span>
<p class="text-muted">Or Paste your FASTA sequence<button type="button" id="loadDemoDataPathogen" class="btn btn-link btn-sm waves-effect">(Load demo data)</button></b>
Max:10,000 sequences<textarea style="font-size: 12px;" class="form-control" id="textareaSqPathogen" rows="7" ></textarea>
</div>
</div>
</div>
<div class="col-6">
<div class="card" style="background-color: #f5f5f5">
<h6 class="card-header"><b class="text-muted2">II. Options</b></h6>
<div class="card-box" >
<div class="row">
<div class="col-md-12">
<h6 style="font-size: 14px"><p class="text-muted2">(a) Select Protein-Protein Interaction Databases <i class="zmdi zmdi-info-outline" style="font-size: 25px" data-toggle="modal" data-target="#ppiDbModal"></i></p></h6>
<div style="margin-top: 10px"></div>
<div class="form-group" >
<input id="checkboxHPIDB" type="checkbox" checked="">
<label for="checkboxHPIDB" style="padding-right: 15px;font-weight: normal;">
HPIDB
</label>
<input id="checkboxMINT" type="checkbox" >
<label for="checkboxMINT" style="padding-right: 15px;font-weight: normal;">
MINT
</label>
<input id="checkboxDIP" type="checkbox" >
<label for="checkboxDIP" style="padding-right: 15px;font-weight: normal;">
DIP
</label>
<input id="checkboxBioGRID" type="checkbox" >
<label for="checkboxBioGRID" style="padding-right: 15px;font-weight: normal;">
BioGRID
</label>
<input id="checkboxIntAct" type="checkbox" >
<label for="checkboxIntAct" style="padding-right: 15px;font-weight: normal;">
IntAct
</label>
<input id="checkboxVirHostNet" type="checkbox">
<label for="checkboxVirHostNet" style="padding-right: 15px;font-weight: normal;">
VirHostNet
</label>
<input id="checkboxSTRING" type="checkbox" checked="">
<label for="checkboxSTRING" style="padding-right: 15px;font-weight: normal;">
STRING
</label>
<input id="checkboxHIVncbi" type="checkbox" >
<label for="checkboxHIVncbi" style="padding-right: 15px;font-weight: normal;">
VIH-1 NCBI
</label>
<input id="checkboxArabHPI" type="checkbox" >
<label for="checkboxArabHPI" style="padding-right: 15px;font-weight: normal;">
ArabHPI
</label>
<input id="checkboxPHISTO" type="checkbox" >
<label for="checkboxPHISTO" style="padding-right: 15px;font-weight: normal;">
PHISTO
</label>
<input id="checkboxAll" type="checkbox" onclick="checkBoxes()">
<label for="checkboxAll" style="padding-right: 15px;font-weight: normal;">
All
</label>
</div>
</div><!-- end col -->
</div>
<div class ="row">
<div class="col-md-8">
<h6><p class="text-muted2" style="font-size: 14px;margin-bottom: 0px; padding-bottom: 0px;">(b) Alignment options</p></h6>
<b class="normal" >Host </b>
<div class="row" >
<div class="row" style="padding-left: 10px">
<div class="col-xs-12 col-md-6 col-lg-6 col-xl-3">
<div class="form-group">
<label style="font-weight: normal;font-size: 0.9em">E-value</label>
<input class="form-control" placeholder="1e-10" type="text" id="evalue">
</div>
</div>
<div class="col-xs-12 col-md-6 col-lg-6 col-xl-3">
<div class="form-group">
<label style="font-weight: normal;font-size: 0.9em" >Identity (%)</label>
<input class="form-control" id="tfIdentity" required="" type="text range" min="1" max="100" placeholder="30" >
</div>
</div>
<div class="col-xs-12 col-md-6 col-lg-6 col-xl-3">
<div class="form-group">
<label style="font-weight: normal;font-size: 0.9em">Coverage (%)</label>
<input class="form-control" id="tfCov" required="" type="text range" min="1" max="100" placeholder="30" >
</div>
</div>
</div>
</div>
<b class="normal">Pathogen </b>
<div class="row" >
<div class="row" style="padding-left: 10px">
<div class="col-xs-12 col-md-6 col-lg-6 col-xl-3">
<div class="form-group">
<label style="font-weight: normal;font-size: 0.9em">E-value</label>
<input class="form-control" placeholder="1e-10" type="text" id="evaluePatho">
</div>
</div>
<div class="col-xs-12 col-md-6 col-lg-6 col-xl-3">
<div class="form-group">
<label style="font-weight: normal;font-size: 0.9em">Identity (%)</label>
<input class="form-control" id="tfIdentityPatho" required="" type="text range" min="1" max="100" placeholder="30" >
</div>
</div>
<div class="col-xs-12 col-md-6 col-lg-6 col-xl-3">
<div class="form-group">
<label style="font-weight: normal;font-size: 0.9em">Coverage (%)</label>
<input class="form-control" id="tfCovPatho" required="" type="text range" min="1" max="100" placeholder="30" >
</div>
</div>
</div>
</div><!-- end col -->
</div>
<div class="col-md-3">
<h6><p class="text-muted2" style="font-size: 14px;margin-bottom: 0px; padding-bottom: 0px;">(c) Match Strategy</p></h6>
<select class="form-control select2" id="matchStrategyInterolog">
<option value="generalized">All-hits</option>
<option value="bm">Best-hit</option>
</select>
<h6 style="margin-top: 40px;"><p class="text-muted2" style="font-size: 14px;margin-bottom: 0px; padding-bottom: 0px;">(d) Algorithm</p></h6>
<div class="radio radio-info radio-inline">
<input id="blastRadio" value="optionBlast" name="radioInline" type="radio">
<label for="blastRadio"> BLAST </label>
</div>
<div class="radio radio-inline">
<input id="diamondRadio" value="option2" name="radioInline" checked="" type="radio">
<label for="diamondRadio"> DIAMOND </label>
</div>
</div>
</div>
</div>
</div>
<div class="card" style="margin-top: 54px;background-color: #f5f5f5;">
<h6 class="card-header"><b class="text-muted2">III. Submit</b></h6>
<div class="card-box">
<div class="form-group">
<label ">Email address (Optional)</label>
<input name="email" placeholder="Enter email" class="form-control" id="emailAddress" type="email" >
</div>
<div class="button-list">
<button class="btn btn-info" type="reset" id="resetInterologForm">Reset</button>
<button class="btn btn-success" type="button" id="runInterolog" >Interolog</button>
<i class="zmdi zmdi-info-outline" style="font-size: 25px" data-toggle="modal" data-target="#interologModal"></i>
</div>
</div>
</div>
</div><!-- end col -->
</div><!-- end col -->
</div>
</div>
</form>
</div>
<!-- Domain Form -->
<div class="tab-pane fade" id="domainTab" role="tabpanel" aria-labelledby="domainTab-tab">
<form id="domainPredForm" >
<div class="row">
<div class="col-12">
<div class="row">
<div class="col-6">
<div class="card" style="background-color: #f5f5f5;" >
<h6 class="card-header"><b class="text-muted2">I. Data input</b></h6>
<div class="card-box">
<h6><p class="text-muted2">Host <input type="checkbox" id="hostDomainEnabledCheckBox" checked data-plugin="switchery" data-size="small" data-color="#039cfd"/></p></h6>
<p>Upload FASTA file:</p>
<span><input id="fileDomainSqHost" type="file" data-height="60" /></span>
<p class="text-muted">Or Paste your FASTA sequence<button type="button" id="loadDomainDemoDataHost" class="btn btn-link btn-sm waves-effect">(Load demo data)</button>Max:10,000 sequences<textarea style="font-size: 12px;" class="form-control" id="textareaDomainSqHost" rows="7" ></textarea></p>
<div style="margin-top: 38px"></div>
<h6><p class="text-muted2">Pathogen <input type="checkbox" id="pathogenDomainEnabledCheckBox" checked data-plugin="switchery" data-size="small" data-color="#ff5d48"/></p></h6>
<p>Upload FASTA file:</p>
<input id="fileDomainSqPathogen" type="file" data-height="60" />
<p class="text-muted">Or Paste your FASTA sequence<button type="button" id="loadDomainDemoDataPathogen" class="btn btn-link btn-sm waves-effect">(Load demo data)</button>Max:5,000 sequences<textarea style="font-size: 12px;" class="form-control" id="textareaDomainSqPathogen" rows="7" ></textarea></p>
</div>
</div>
</div>
<div class="col-6">
<div class="card" style="background-color: #f5f5f5">
<h6 class="card-header"><b class="text-muted2">II. Options</b></h6>
<div class="card-box" >
<div class="row">
<div class="col-md-6">
<div class="form-group" >
<h6><p class="text-muted2" style="font-size: 14px">(a) Select Domain-Domain Interaction Databases <i class="zmdi zmdi-info-outline" style="font-size: 25px" data-toggle="modal" data-target="#ddiDbModal"></i></p></h6>
<div style="margin-top: 10px"></div>
<div class="radio radio-custom" style="margin-left: 15px">
<input id="checkbox3DID" type="radio" checked="">
<label for="checkbox3DID" style="padding-right: 15px;font-weight: normal;">
3DID
</label>
<input id="checkboxIDDI" type="radio" >
<label for="checkboxIDDI" style="padding-right: 15px;font-weight: normal;">
IDDI
</label>
</div>
</div>
</div>
<div class="col-md-6">
<h6><p class="text-muted2" style="font-size: 14px">(b) Reliability Score (IDDI only) </p></h6>
<div class="form-group">
<input class="form-control" disabled placeholder="0.329" type="text" id="iddiScore">
</div>
</div>
</div>
<h6><p class="text-muted2" style="font-size: 14px">(c) HMMScan (Hidden Markov Model) options</p></h6>
<b class="normal" >Host </b>
<div class="row" >
<div class="row" style="padding-left: 10px">
<div class="row" style="padding-left: 10px">
<div class="col-xs-12 col-md-6 col-lg-6 col-xl-3">
<div class="form-group">
<label style="font-weight: normal;font-size: 0.9em">E-value</label>
<input class="form-control" placeholder="1e-23" type="text" id="evalueDomain">
</div>
</div>
<div class="col-xs-12 col-md-6 col-lg-6 col-xl-3">
<div class="form-group">
<label style="font-weight: normal;font-size: 0.9em">Coverage (domE)</label>
<input class="form-control" id="tfCovDomain" required="" type="text range" min="1" max="100" placeholder="0.2" >
</div>
</div>
<div class="col-xs-12 col-md-6 col-lg-6 col-xl-3">
<div class="checkbox checkbox-custom">
<input id="checkboxAllHMMscan" type="checkbox" >
<label style="font-weight: normal;font-size: 0.9em" for="checkboxAllHMMscan" >
No Filters
</label>
</div>
</div>
</div>
</div>
</div>
<b class="normal" >Pathogen </b>
<div class="row" >
<div class="row" style="padding-left: 10px">
<div class="row" style="padding-left: 10px">
<div class="col-xs-12 col-md-6 col-lg-6 col-xl-3">
<div class="form-group">
<label style="font-weight: normal;font-size: 0.9em">E-value</label>
<input class="form-control" placeholder="1e-18" type="text" id="evalueDomainP">
</div>
</div>
<div class="col-xs-12 col-md-6 col-lg-6 col-xl-3">
<div class="form-group">
<label style="font-weight: normal;font-size: 0.9em">Coverage (domE)</label>
<input class="form-control" id="tfCovDomainP" required="" type="text range" min="1" max="100" placeholder="0.35" >
</div>
</div>
<div class="col-xs-12 col-md-6 col-lg-6 col-xl-3">
<div class="checkbox checkbox-custom">
<input id="checkboxAllHMMscanP" type="checkbox" >
<label style="font-weight: normal;font-size: 0.9em" for="checkboxAllHMMscanP" >
No Filters
</label>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="card" style="margin-top: 48px;background-color: #f5f5f5;">
<h6 class="card-header"><b class="text-muted2">III. Submit</b></h6>
<div class="card-box">
<div class="form-group">
<label >Email address (Optional)</label>
<input name="email" placeholder="Enter email" class="form-control" id="emailAddressDomain" type="email" >
</div>
<div class="button-list">
<button class="btn btn-info" type="reset" id="resetdomainPredForm">Reset</button>
<button class="btn btn-success" type="button" id="rundomainPred" > Domain-based</button>
<i class="zmdi zmdi-info-outline" style="font-size: 25px" data-toggle="modal" data-target="#domainPredModal"></i>
</div>
</div>
</div>
</div><!-- end row -->
</div>
</div><!-- end col -->
</div>
</form>
</div>
<!-- GO Sim Form -->
<div class="tab-pane fade" id="goSimTab" role="tabpanel" aria-labelledby="goSimTab-tab">
<form id="GOppiPredForm" >
<div class="row">
<div class="col-12">
<div class="row">
<div class="col-6">
<div class="card" style="background-color: #f5f5f5;" >
<h6 class="card-header"><b class="text-muted2">I. Data input</b></h6>
<div class="card-box">
<h6><p class="text-muted2">Host</b> </h6>
<p>Upload FASTA file:</p>
<span><input id="fileGoSimSqHost" type="file" data-height="60" /></span>
<p class="text-muted">Or Paste your FASTA sequence, Max:2,000 sequences<textarea style="font-size: 12px;" class="form-control" id="textareaGoSimSqHost" rows="7" ></textarea></p>
<div style="margin-top: 38px"></div>
<h6><p class="text-muted2">Pathogen</b> </h6>
<p>Upload FASTA file:</p>
<input id="fileGoSimSqPathogen" type="file" data-height="60" />
<p class="text-muted">Or Paste your FASTA sequence, Max:1,000 sequences<textarea style="font-size: 12px;" class="form-control" id="textareaGoSimSqPathogen" rows="7" ></textarea></p>
<button type="button" id="loadGoSimDemoData" class="btn btn-link btn-sm waves-effect">(Load demo data)</button>
</div>
</div>
</div><!-- end row -->
<div class="col-6">
<div class="card" style="background-color: #f5f5f5">
<h6 class="card-header"><b class="text-muted2">II. Options</b></h6>
<div class="card-box" >
<div class="col-md-12">
<div class="form-group">
<h6><p class="text-muted2" style="font-size: 14px;margin-bottom: 0px; padding-bottom: 0px;">(a) Dataset GO Similarity Calculation</p></h6>
<select class="form-control select2" id="orgDbDatabase">
<option value="org.At.tair.db">Arabidopsis thaliana</option>
<option value="org.Hs.eg.db">Human</option>
<option value="org.Sc.sgd.db">Yeast</option>
<option value="org.Dm.eg.db">Drosophila melanogaster</option>
<option value="org.EcK12.eg.db">Escherichilia coli K12</option>
<option value="org.Mm.eg.db">Mouse</option>
<option value="org.Ag.eg.db">Anopheles</option>
<option value="org.Bt.eg.db">Bovine</option>
<option value="org.Ce.eg.db">Worm</option>
<option value="org.Cf.eg.db">Canine</option>
<option value="org.Dm.eg.db">Fly</option>
<option value="org.Dr.eg.db">Zebrafish</option>
<option value="org.At.tair.db">Escherichilia coli Sakai</option>
<option value="org.Gg.eg.db">Chicken</option>
<option value="org.Mmu.eg.db">Rhesus</option>
<option value="org.Pf.plasmo.db">Malaria</option>
<option value="org.Pt.eg.db">Chimp</option>
<option value="org.Rn.eg.db">Rat</option>
<option value="org.Ss.eg.db">Pig</option>
<option value="org.Xl.eg.db">Xenopus</option>
</select>
</div>
<div class="form-group">
<h6><p class="text-muted2" style="font-size: 14px;margin-bottom: 0px; padding-bottom: 0px;">(b) Threshold (Min Similarity)</p></h6>
<input class="form-control" placeholder="0.5" type="text" id="thresholdGoSim">
</div>
<div class="form-group">
<h6><p class="text-muted2" style="font-size: 14px;margin-bottom: 0px; padding-bottom: 0px;">(c) Combine Strategy <i class="zmdi zmdi-info-outline" style="font-size: 25px" data-toggle="modal" data-target="#GOppiPredCombined"></i></p></h6>
<select class="form-control select2" id="selectCombine">
<option value="BMA" selected="selected">BMA</option>
<option value="max">max</option>
<option value="avg">average</option>
<option value="rcmax">rcmax</option>
</select>
</div>
</div>
</div>
</div>
<div class="card" style="margin-top: 129px;background-color: #f5f5f5;">
<h6 class="card-header"><b class="text-muted2">III. Submit</b></h6>
<div class="card-box">
<div class="form-group">
<label >Email address (Optional)</label>
<input name="email" placeholder="Enter email" class="form-control" id="emailAddressGoSim" type="email" >
</div>
<div class="button-list">
<button class="btn btn-info" type="reset" id="resetGOppiPredForm">Reset</button>
<button class="btn btn-success" type="button" id="runGOppiPred" >GOSim PPI</button>
<i class="zmdi zmdi-info-outline" style="font-size: 25px" data-toggle="modal" data-target="#GOppiPredModal"></i>