forked from a-pns/Hack24-Last_Minute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
6443 lines (4616 loc) · 595 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" prefix="og: http://ogp.me/ns#" class="wf-avenirnextwebfont-n4-active wf-active js"><head>
<!-- <base href="https://elifesciences.org" /> -->
<link rel="stylesheet" type="text/css" href="widget.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<meta charset="utf-8"><script type="text/javascript" src="https://bam.nr-data.net/1/c53c018d69?a=29775807&v=1071.385e752&to=NQQGNUZZWEACVhdZWQxOJQJAUVldTFQRRF8BDQE%3D&rst=107863&ref=https://elifesciences.org/articles/30051&ap=298&be=1105&fe=107848&dc=1696&af=err,xhr,ins&perf=%7B%22timing%22:%7B%22of%22:1520724943224,%22n%22:0,%22f%22:0,%22dn%22:1,%22dne%22:26,%22c%22:27,%22s%22:52,%22ce%22:142,%22rq%22:143,%22rp%22:1077,%22rpe%22:1676,%22dl%22:1094,%22di%22:1696,%22ds%22:1696,%22de%22:1696,%22dc%22:107847,%22l%22:107847,%22le%22:107852%7D,%22navigation%22:%7B%7D%7D&at=GUMFQw5DS04%3D&jsonp=NREUM.setToken"></script><script src="https://js-agent.newrelic.com/nr-1071.min.js"></script><script type="text/javascript" async="" src="https://www.google-analytics.com/analytics.js"></script><script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.16/webfont.js" crossorigin="anonymous"></script><script async="" src="https://www.googletagmanager.com/gtm.js?id=GTM-WVM8KG&l=gtmDataLayer"></script><script type="text/javascript">(window.NREUM||(NREUM={})).loader_config={xpid:"VQICUFJWCRACXVZVAgkHUQ=="};window.NREUM||(NREUM={}),__nr_require=function(t,n,e){function r(e){if(!n[e]){var o=n[e]={exports:{}};t[e][0].call(o.exports,function(n){var o=t[e][1][n];return r(o||n)},o,o.exports)}return n[e].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o<e.length;o++)r(e[o]);return r}({1:[function(t,n,e){function r(t){try{s.console&&console.log(t)}catch(n){}}var o,i=t("ee"),a=t(15),s={};try{o=localStorage.getItem("__nr_flags").split(","),console&&"function"==typeof console.log&&(s.console=!0,o.indexOf("dev")!==-1&&(s.dev=!0),o.indexOf("nr_dev")!==-1&&(s.nrDev=!0))}catch(c){}s.nrDev&&i.on("internal-error",function(t){r(t.stack)}),s.dev&&i.on("fn-err",function(t,n,e){r(e.stack)}),s.dev&&(r("NR AGENT IN DEVELOPMENT MODE"),r("flags: "+a(s,function(t,n){return t}).join(", ")))},{}],2:[function(t,n,e){function r(t,n,e,r,s){try{p?p-=1:o(s||new UncaughtException(t,n,e),!0)}catch(f){try{i("ierr",[f,c.now(),!0])}catch(d){}}return"function"==typeof u&&u.apply(this,a(arguments))}function UncaughtException(t,n,e){this.message=t||"Uncaught error with no additional information",this.sourceURL=n,this.line=e}function o(t,n){var e=n?null:c.now();i("err",[t,e])}var i=t("handle"),a=t(16),s=t("ee"),c=t("loader"),f=t("gos"),u=window.onerror,d=!1,l="nr@seenError",p=0;c.features.err=!0,t(1),window.onerror=r;try{throw new Error}catch(h){"stack"in h&&(t(8),t(7),"addEventListener"in window&&t(5),c.xhrWrappable&&t(9),d=!0)}s.on("fn-start",function(t,n,e){d&&(p+=1)}),s.on("fn-err",function(t,n,e){d&&!e[l]&&(f(e,l,function(){return!0}),this.thrown=!0,o(e))}),s.on("fn-end",function(){d&&!this.thrown&&p>0&&(p-=1)}),s.on("internal-error",function(t){i("ierr",[t,c.now(),!0])})},{}],3:[function(t,n,e){t("loader").features.ins=!0},{}],4:[function(t,n,e){function r(t){}if(window.performance&&window.performance.timing&&window.performance.getEntriesByType){var o=t("ee"),i=t("handle"),a=t(8),s=t(7),c="learResourceTimings",f="addEventListener",u="resourcetimingbufferfull",d="bstResource",l="resource",p="-start",h="-end",m="fn"+p,w="fn"+h,v="bstTimer",y="pushState",g=t("loader");g.features.stn=!0,t(6);var b=NREUM.o.EV;o.on(m,function(t,n){var e=t[0];e instanceof b&&(this.bstStart=g.now())}),o.on(w,function(t,n){var e=t[0];e instanceof b&&i("bst",[e,n,this.bstStart,g.now()])}),a.on(m,function(t,n,e){this.bstStart=g.now(),this.bstType=e}),a.on(w,function(t,n){i(v,[n,this.bstStart,g.now(),this.bstType])}),s.on(m,function(){this.bstStart=g.now()}),s.on(w,function(t,n){i(v,[n,this.bstStart,g.now(),"requestAnimationFrame"])}),o.on(y+p,function(t){this.time=g.now(),this.startPath=location.pathname+location.hash}),o.on(y+h,function(t){i("bstHist",[location.pathname+location.hash,this.startPath,this.time])}),f in window.performance&&(window.performance["c"+c]?window.performance[f](u,function(t){i(d,[window.performance.getEntriesByType(l)]),window.performance["c"+c]()},!1):window.performance[f]("webkit"+u,function(t){i(d,[window.performance.getEntriesByType(l)]),window.performance["webkitC"+c]()},!1)),document[f]("scroll",r,{passive:!0}),document[f]("keypress",r,!1),document[f]("click",r,!1)}},{}],5:[function(t,n,e){function r(t){for(var n=t;n&&!n.hasOwnProperty(u);)n=Object.getPrototypeOf(n);n&&o(n)}function o(t){s.inPlace(t,[u,d],"-",i)}function i(t,n){return t[1]}var a=t("ee").get("events"),s=t(18)(a,!0),c=t("gos"),f=XMLHttpRequest,u="addEventListener",d="removeEventListener";n.exports=a,"getPrototypeOf"in Object?(r(document),r(window),r(f.prototype)):f.prototype.hasOwnProperty(u)&&(o(window),o(f.prototype)),a.on(u+"-start",function(t,n){var e=t[1],r=c(e,"nr@wrapped",function(){function t(){if("function"==typeof e.handleEvent)return e.handleEvent.apply(e,arguments)}var n={object:t,"function":e}[typeof e];return n?s(n,"fn-",null,n.name||"anonymous"):e});this.wrapped=t[1]=r}),a.on(d+"-start",function(t){t[1]=this.wrapped||t[1]})},{}],6:[function(t,n,e){var r=t("ee").get("history"),o=t(18)(r);n.exports=r,o.inPlace(window.history,["pushState","replaceState"],"-")},{}],7:[function(t,n,e){var r=t("ee").get("raf"),o=t(18)(r),i="equestAnimationFrame";n.exports=r,o.inPlace(window,["r"+i,"mozR"+i,"webkitR"+i,"msR"+i],"raf-"),r.on("raf-start",function(t){t[0]=o(t[0],"fn-")})},{}],8:[function(t,n,e){function r(t,n,e){t[0]=a(t[0],"fn-",null,e)}function o(t,n,e){this.method=e,this.timerDuration=isNaN(t[1])?0:+t[1],t[0]=a(t[0],"fn-",this,e)}var i=t("ee").get("timer"),a=t(18)(i),s="setTimeout",c="setInterval",f="clearTimeout",u="-start",d="-";n.exports=i,a.inPlace(window,[s,"setImmediate"],s+d),a.inPlace(window,[c],c+d),a.inPlace(window,[f,"clearImmediate"],f+d),i.on(c+u,r),i.on(s+u,o)},{}],9:[function(t,n,e){function r(t,n){d.inPlace(n,["onreadystatechange"],"fn-",s)}function o(){var t=this,n=u.context(t);t.readyState>3&&!n.resolved&&(n.resolved=!0,u.emit("xhr-resolved",[],t)),d.inPlace(t,y,"fn-",s)}function i(t){g.push(t),h&&(x?x.then(a):w?w(a):(E=-E,O.data=E))}function a(){for(var t=0;t<g.length;t++)r([],g[t]);g.length&&(g=[])}function s(t,n){return n}function c(t,n){for(var e in t)n[e]=t[e];return n}t(5);var f=t("ee"),u=f.get("xhr"),d=t(18)(u),l=NREUM.o,p=l.XHR,h=l.MO,m=l.PR,w=l.SI,v="readystatechange",y=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"],g=[];n.exports=u;var b=window.XMLHttpRequest=function(t){var n=new p(t);try{u.emit("new-xhr",[n],n),n.addEventListener(v,o,!1)}catch(e){try{u.emit("internal-error",[e])}catch(r){}}return n};if(c(p,b),b.prototype=p.prototype,d.inPlace(b.prototype,["open","send"],"-xhr-",s),u.on("send-xhr-start",function(t,n){r(t,n),i(n)}),u.on("open-xhr-start",r),h){var x=m&&m.resolve();if(!w&&!m){var E=1,O=document.createTextNode(E);new h(a).observe(O,{characterData:!0})}}else f.on("fn-end",function(t){t[0]&&t[0].type===v||a()})},{}],10:[function(t,n,e){function r(t){var n=this.params,e=this.metrics;if(!this.ended){this.ended=!0;for(var r=0;r<d;r++)t.removeEventListener(u[r],this.listener,!1);if(!n.aborted){if(e.duration=a.now()-this.startTime,4===t.readyState){n.status=t.status;var i=o(t,this.lastSize);if(i&&(e.rxSize=i),this.sameOrigin){var c=t.getResponseHeader("X-NewRelic-App-Data");c&&(n.cat=c.split(", ").pop())}}else n.status=0;e.cbTime=this.cbTime,f.emit("xhr-done",[t],t),s("xhr",[n,e,this.startTime])}}}function o(t,n){var e=t.responseType;if("json"===e&&null!==n)return n;var r="arraybuffer"===e||"blob"===e||"json"===e?t.response:t.responseText;return h(r)}function i(t,n){var e=c(n),r=t.params;r.host=e.hostname+":"+e.port,r.pathname=e.pathname,t.sameOrigin=e.sameOrigin}var a=t("loader");if(a.xhrWrappable){var s=t("handle"),c=t(11),f=t("ee"),u=["load","error","abort","timeout"],d=u.length,l=t("id"),p=t(14),h=t(13),m=window.XMLHttpRequest;a.features.xhr=!0,t(9),f.on("new-xhr",function(t){var n=this;n.totalCbs=0,n.called=0,n.cbTime=0,n.end=r,n.ended=!1,n.xhrGuids={},n.lastSize=null,p&&(p>34||p<10)||window.opera||t.addEventListener("progress",function(t){n.lastSize=t.loaded},!1)}),f.on("open-xhr-start",function(t){this.params={method:t[0]},i(this,t[1]),this.metrics={}}),f.on("open-xhr-end",function(t,n){"loader_config"in NREUM&&"xpid"in NREUM.loader_config&&this.sameOrigin&&n.setRequestHeader("X-NewRelic-ID",NREUM.loader_config.xpid)}),f.on("send-xhr-start",function(t,n){var e=this.metrics,r=t[0],o=this;if(e&&r){var i=h(r);i&&(e.txSize=i)}this.startTime=a.now(),this.listener=function(t){try{"abort"===t.type&&(o.params.aborted=!0),("load"!==t.type||o.called===o.totalCbs&&(o.onloadCalled||"function"!=typeof n.onload))&&o.end(n)}catch(e){try{f.emit("internal-error",[e])}catch(r){}}};for(var s=0;s<d;s++)n.addEventListener(u[s],this.listener,!1)}),f.on("xhr-cb-time",function(t,n,e){this.cbTime+=t,n?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&"function"==typeof e.onload||this.end(e)}),f.on("xhr-load-added",function(t,n){var e=""+l(t)+!!n;this.xhrGuids&&!this.xhrGuids[e]&&(this.xhrGuids[e]=!0,this.totalCbs+=1)}),f.on("xhr-load-removed",function(t,n){var e=""+l(t)+!!n;this.xhrGuids&&this.xhrGuids[e]&&(delete this.xhrGuids[e],this.totalCbs-=1)}),f.on("addEventListener-end",function(t,n){n instanceof m&&"load"===t[0]&&f.emit("xhr-load-added",[t[1],t[2]],n)}),f.on("removeEventListener-end",function(t,n){n instanceof m&&"load"===t[0]&&f.emit("xhr-load-removed",[t[1],t[2]],n)}),f.on("fn-start",function(t,n,e){n instanceof m&&("onload"===e&&(this.onload=!0),("load"===(t[0]&&t[0].type)||this.onload)&&(this.xhrCbStart=a.now()))}),f.on("fn-end",function(t,n){this.xhrCbStart&&f.emit("xhr-cb-time",[a.now()-this.xhrCbStart,this.onload,n],n)})}},{}],11:[function(t,n,e){n.exports=function(t){var n=document.createElement("a"),e=window.location,r={};n.href=t,r.port=n.port;var o=n.href.split("://");!r.port&&o[1]&&(r.port=o[1].split("/")[0].split("@").pop().split(":")[1]),r.port&&"0"!==r.port||(r.port="https"===o[0]?"443":"80"),r.hostname=n.hostname||e.hostname,r.pathname=n.pathname,r.protocol=o[0],"/"!==r.pathname.charAt(0)&&(r.pathname="/"+r.pathname);var i=!n.protocol||":"===n.protocol||n.protocol===e.protocol,a=n.hostname===document.domain&&n.port===e.port;return r.sameOrigin=i&&(!n.hostname||a),r}},{}],12:[function(t,n,e){function r(){}function o(t,n,e){return function(){return i(t,[f.now()].concat(s(arguments)),n?null:this,e),n?void 0:this}}var i=t("handle"),a=t(15),s=t(16),c=t("ee").get("tracer"),f=t("loader"),u=NREUM;"undefined"==typeof window.newrelic&&(newrelic=u);var d=["setPageViewName","setCustomAttribute","setErrorHandler","finished","addToTrace","inlineHit","addRelease"],l="api-",p=l+"ixn-";a(d,function(t,n){u[n]=o(l+n,!0,"api")}),u.addPageAction=o(l+"addPageAction",!0),u.setCurrentRouteName=o(l+"routeName",!0),n.exports=newrelic,u.interaction=function(){return(new r).get()};var h=r.prototype={createTracer:function(t,n){var e={},r=this,o="function"==typeof n;return i(p+"tracer",[f.now(),t,e],r),function(){if(c.emit((o?"":"no-")+"fn-start",[f.now(),r,o],e),o)try{return n.apply(this,arguments)}catch(t){throw c.emit("fn-err",[arguments,this,t],e),t}finally{c.emit("fn-end",[f.now()],e)}}}};a("setName,setAttribute,save,ignore,onEnd,getContext,end,get".split(","),function(t,n){h[n]=o(p+n)}),newrelic.noticeError=function(t){"string"==typeof t&&(t=new Error(t)),i("err",[t,f.now()])}},{}],13:[function(t,n,e){n.exports=function(t){if("string"==typeof t&&t.length)return t.length;if("object"==typeof t){if("undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer&&t.byteLength)return t.byteLength;if("undefined"!=typeof Blob&&t instanceof Blob&&t.size)return t.size;if(!("undefined"!=typeof FormData&&t instanceof FormData))try{return JSON.stringify(t).length}catch(n){return}}}},{}],14:[function(t,n,e){var r=0,o=navigator.userAgent.match(/Firefox[\/\s](\d+\.\d+)/);o&&(r=+o[1]),n.exports=r},{}],15:[function(t,n,e){function r(t,n){var e=[],r="",i=0;for(r in t)o.call(t,r)&&(e[i]=n(r,t[r]),i+=1);return e}var o=Object.prototype.hasOwnProperty;n.exports=r},{}],16:[function(t,n,e){function r(t,n,e){n||(n=0),"undefined"==typeof e&&(e=t?t.length:0);for(var r=-1,o=e-n||0,i=Array(o<0?0:o);++r<o;)i[r]=t[n+r];return i}n.exports=r},{}],17:[function(t,n,e){n.exports={exists:"undefined"!=typeof window.performance&&window.performance.timing&&"undefined"!=typeof window.performance.timing.navigationStart}},{}],18:[function(t,n,e){function r(t){return!(t&&t instanceof Function&&t.apply&&!t[a])}var o=t("ee"),i=t(16),a="nr@original",s=Object.prototype.hasOwnProperty,c=!1;n.exports=function(t,n){function e(t,n,e,o){function nrWrapper(){var r,a,s,c;try{a=this,r=i(arguments),s="function"==typeof e?e(r,a):e||{}}catch(f){l([f,"",[r,a,o],s])}u(n+"start",[r,a,o],s);try{return c=t.apply(a,r)}catch(d){throw u(n+"err",[r,a,d],s),d}finally{u(n+"end",[r,a,c],s)}}return r(t)?t:(n||(n=""),nrWrapper[a]=t,d(t,nrWrapper),nrWrapper)}function f(t,n,o,i){o||(o="");var a,s,c,f="-"===o.charAt(0);for(c=0;c<n.length;c++)s=n[c],a=t[s],r(a)||(t[s]=e(a,f?s+o:o,i,s))}function u(e,r,o){if(!c||n){var i=c;c=!0;try{t.emit(e,r,o,n)}catch(a){l([a,e,r,o])}c=i}}function d(t,n){if(Object.defineProperty&&Object.keys)try{var e=Object.keys(t);return e.forEach(function(e){Object.defineProperty(n,e,{get:function(){return t[e]},set:function(n){return t[e]=n,n}})}),n}catch(r){l([r])}for(var o in t)s.call(t,o)&&(n[o]=t[o]);return n}function l(n){try{t.emit("internal-error",n)}catch(e){}}return t||(t=o),e.inPlace=f,e.flag=a,e}},{}],ee:[function(t,n,e){function r(){}function o(t){function n(t){return t&&t instanceof r?t:t?c(t,s,i):i()}function e(e,r,o,i){if(!l.aborted||i){t&&t(e,r,o);for(var a=n(o),s=h(e),c=s.length,f=0;f<c;f++)s[f].apply(a,r);var d=u[y[e]];return d&&d.push([g,e,r,a]),a}}function p(t,n){v[t]=h(t).concat(n)}function h(t){return v[t]||[]}function m(t){return d[t]=d[t]||o(e)}function w(t,n){f(t,function(t,e){n=n||"feature",y[e]=n,n in u||(u[n]=[])})}var v={},y={},g={on:p,emit:e,get:m,listeners:h,context:n,buffer:w,abort:a,aborted:!1};return g}function i(){return new r}function a(){(u.api||u.feature)&&(l.aborted=!0,u=l.backlog={})}var s="nr@context",c=t("gos"),f=t(15),u={},d={},l=n.exports=o();l.backlog=u},{}],gos:[function(t,n,e){function r(t,n,e){if(o.call(t,n))return t[n];var r=e();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(t,n,{value:r,writable:!0,enumerable:!1}),r}catch(i){}return t[n]=r,r}var o=Object.prototype.hasOwnProperty;n.exports=r},{}],handle:[function(t,n,e){function r(t,n,e,r){o.buffer([t],r),o.emit(t,n,e)}var o=t("ee").get("handle");n.exports=r,r.ee=o},{}],id:[function(t,n,e){function r(t){var n=typeof t;return!t||"object"!==n&&"function"!==n?-1:t===window?0:a(t,i,function(){return o++})}var o=1,i="nr@id",a=t("gos");n.exports=r},{}],loader:[function(t,n,e){function r(){if(!x++){var t=b.info=NREUM.info,n=l.getElementsByTagName("script")[0];if(setTimeout(u.abort,3e4),!(t&&t.licenseKey&&t.applicationID&&n))return u.abort();f(y,function(n,e){t[n]||(t[n]=e)}),c("mark",["onload",a()+b.offset],null,"api");var e=l.createElement("script");e.src="https://"+t.agent,n.parentNode.insertBefore(e,n)}}function o(){"complete"===l.readyState&&i()}function i(){c("mark",["domContent",a()+b.offset],null,"api")}function a(){return E.exists&&performance.now?Math.round(performance.now()):(s=Math.max((new Date).getTime(),s))-b.offset}var s=(new Date).getTime(),c=t("handle"),f=t(15),u=t("ee"),d=window,l=d.document,p="addEventListener",h="attachEvent",m=d.XMLHttpRequest,w=m&&m.prototype;NREUM.o={ST:setTimeout,SI:d.setImmediate,CT:clearTimeout,XHR:m,REQ:d.Request,EV:d.Event,PR:d.Promise,MO:d.MutationObserver};var v=""+location,y={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net",agent:"js-agent.newrelic.com/nr-1071.min.js"},g=m&&w&&w[p]&&!/CriOS/.test(navigator.userAgent),b=n.exports={offset:s,now:a,origin:v,features:{},xhrWrappable:g};t(12),l[p]?(l[p]("DOMContentLoaded",i,!1),d[p]("load",r,!1)):(l[h]("onreadystatechange",o),d[h]("onload",r)),c("mark",["firstbyte",s],null,"api");var x=0,E=t(17)},{}]},{},["loader",2,10,4,3]);</script>
<title>Extended low-resolution structure of a Leptospira antigen offers high bactericidal antibody accessibility amenable to vaccine design | eLife</title>
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
<meta name="format-detection" content="telephone=no">
<style>
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}header,main,nav,section{display:block}picture{display:inline-block;vertical-align:baseline}a{background-color:transparent}h1{font-size:2em;margin:.67em 0}img{border:0}button,input{font:inherit;margin:0}button{overflow:visible}button{text-transform:none}button{-webkit-appearance:button}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}button:-moz-focusring,input:-moz-focusring{outline:ButtonText dotted 1px}input{line-height:normal}input[type=checkbox]{box-sizing:border-box;padding:0}input[type=search]{-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}*,:after,:before{box-sizing:border-box}body,html{height:100%}body{background-color:#fff;color:#212121;text-rendering:optimizeLegibility}h1{font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-weight:700;font-size:36px;font-size:2.25rem;line-height:1.33333;font-size:36px;font-size:2.25rem;margin:0}h2{font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-weight:700;font-size:26px;font-size:1.625rem;line-height:1.15385;margin:0;padding-top:18px;padding-top:1.125rem;padding-bottom:24px;padding-bottom:1.5rem}p{font-family:Georgia,serif;font-size:16px;font-size:1rem;line-height:1.5;font-weight:400;margin:0;margin-bottom:24px;margin-bottom:1.5rem}a{color:#0288d1;text-decoration:none}ol,ul{margin-bottom:24px;margin-bottom:1.5rem;margin-top:0;padding-left:48px;padding-left:3rem}li{font-family:Georgia,serif;font-size:16px;font-size:1rem;line-height:1.5;font-weight:400}.hidden{display:none}.visuallyhidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.clearfix{zoom:1}.clearfix:after,.clearfix:before{content:"";display:table}.clearfix:after{clear:both}.global-inner:after{content:"";display:block;clear:both}main{border-top:1px solid #e0e0e0}img{max-height:100%;max-width:100%}input[type=checkbox]{margin-right:6px;margin-right:.375rem}::-webkit-input-placeholder{color:#bdbdbd}::-moz-placeholder{color:#bdbdbd}:-ms-input-placeholder{color:#bdbdbd}:-moz-placeholder{color:#bdbdbd}.button{border:none;border-radius:4px;color:#fff;display:inline-block;font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-size:14px;font-size:.875rem;line-height:1;font-weight:500;padding:17px 40px 16px;padding:1.0625rem 2.5rem 1rem;text-align:center;text-decoration:none;text-transform:uppercase}.button--default{background-color:#0288d1;border:1px solid #0288d1;color:#fff;padding:15px 36px 14px;padding:.9375rem 2.25rem .875rem}.button--extra-small{border-radius:3px;font-size:11px;font-size:.6875rem;line-height:2.1818181818;padding:0 6px;padding:0 .375rem;height:24px;height:1.5rem}.button--login{border-radius:3px;font-size:11px;font-size:.6875rem;line-height:2.1818181818;padding:0 6px;padding:0 .375rem;height:24px;height:1.5rem;background:url(/assets/patterns/img/icons/orcid.10f6112b.png) 3px 3px no-repeat #629f43;background:url(/assets/patterns/img/icons/orcid.b96370b9.svg) 3px 3px no-repeat #629f43;background-color:#629f43;border:1px solid #629f43;color:#fff;padding-left:23px;padding-left:1.4375rem}.date{font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-weight:400;font-size:11px;font-size:.6875rem;line-height:2.18182;letter-spacing:.5px;text-transform:uppercase;color:inherit;text-transform:capitalize}.doi{font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-weight:400;font-size:11px;font-size:.6875rem;line-height:2.18182;letter-spacing:.5px;text-transform:uppercase;color:#888}.doi a.doi__link{border-bottom:none;color:#888;text-decoration:none;text-transform:none}.doi--article-section{color:#212121;display:block;font-size:14px;font-size:.875rem;margin-bottom:24px;margin-bottom:1.5rem}.doi--article-section a.doi__link{color:#212121}.grid{list-style:none;margin:0;padding:0;margin-left:-1.6%;margin-right:-1.6%;zoom:1}.grid__item{float:left;padding-left:1.6%;padding-right:1.6%;width:100%;box-sizing:border-box}.main-menu .list-heading{padding-left:0;padding-right:0;padding-top:24px;padding-top:1.5rem;padding-bottom:24px;padding-bottom:1.5rem;text-align:center}.js .main-menu .list-heading{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.media-source__fallback_link{font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-size:14px;font-size:.875rem;text-decoration:none}.see-more-link{display:block;color:#212121;font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-size:16px;font-size:1rem;line-height:1.5;text-decoration:none}.speech-bubble{background-color:#0288d1;border:1px solid #0288d1;color:#fff;border-radius:3px;display:block;font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-size:14px;font-size:.875rem;line-height:2.57143;height:36px;height:2.25rem;padding:0;position:relative;text-align:center;text-decoration:none;width:42px;width:2.625rem}.speech-bubble[data-behaviour~=HypothesisOpener]{display:none}.speech-bubble:after{border-style:solid;border-width:20px;border-color:transparent;border-left-color:#0288d1;border-right-width:0;content:"";height:0;width:0;left:8px;position:absolute;top:8px;z-index:-1}.speech-bubble:after:hover{border-left-color:#0277bd}.speech-bubble:hover{background-color:#0277bd;border-color:#0277bd}.speech-bubble:hover:after{border-left-color:#0277bd}.speech-bubble--inline{margin-left:12px;margin-left:.75rem}.speech-bubble--small{display:inline-block;font-size:11px;font-size:.6875rem;line-height:1.27273;height:14px;height:.875rem;min-width:1em;padding-left:4px;padding-right:4px;width:auto}.speech-bubble--small:after{border-style:solid;border-width:3px;border-color:transparent;border-left-color:#0288d1;border-right-width:0;content:"";height:0;width:0;left:5px;top:10px}.speech-bubble--has-placeholder{font-family:Georgia,serif;font-size:48px;font-size:3rem;line-height:.75;padding-top:12px;padding-top:.75rem}.js .main-menu .to-top-link{display:none}.article-section--first{border:none;padding-top:0}.article-section--first .article-section__header:first-child h2{margin-top:0;padding-top:0}.article-section__header{position:relative}.article-section__header_text{color:#212121;margin:0;-ms-flex:1 0 80%;flex:1 0 80%;text-decoration:none}.article-section__body{font-family:Georgia,serif;font-size:16px;font-size:1rem;line-height:1.5;font-weight:400}.js .carousel-item__meta .meta{color:inherit}.js .carousel-item__meta .meta__type:hover{color:inherit}.compact-form__container{border:none;margin:0 auto;max-width:440px;max-width:27.5rem;padding:0;position:relative}.search-box__inner .compact-form__container{max-width:none}.compact-form__input{background-color:#fff;border:1px solid #e0e0e0;border-right:none;border-radius:3px;display:block;font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-size:16px;font-size:1rem;line-height:1.5;padding:11px 55px 11px 12px;padding:.6875rem 3.4375rem .6875rem .75rem;width:100%}.compact-form__submit{background:url(/assets/patterns/img/icons/arrow-forward.004934f6.png);background:url(/assets/patterns/img/icons/arrow-forward.663dc5c2.svg),linear-gradient(transparent,transparent);background-color:#0288d1;background-position:50% 50%;background-repeat:no-repeat;border:none;border-radius:0 3px 3px 0;color:#fff;height:48px;height:3rem;position:absolute;right:0;top:0;width:47px;width:2.9375rem}.compact-form__reset{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.contextual-data{font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-weight:400;font-size:11px;font-size:.6875rem;line-height:2.18182;letter-spacing:.5px;color:#888}.contextual-data__list{border-bottom:1px solid #e0e0e0;margin:0;padding:11px 0;padding:.6875rem 0;text-align:center}.contextual-data__item{display:inline-block;font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-weight:400;font-size:11px;font-size:.6875rem;line-height:2.18182;letter-spacing:.5px;text-transform:uppercase;color:#888;margin:0;padding:0 5px 0 0;padding:0 .3125rem 0 0}.contextual-data__item a{color:inherit}.contextual-data__item a:hover{color:#0288d1}.contextual-data__item__hypothesis_opener{display:none}.js .contextual-data__item__hypothesis_opener{color:#0288d1;display:inline-block}.contextual-data__cite_wrapper{border-bottom:1px solid #e0e0e0;padding-top:12px;padding-top:.75rem;padding-bottom:11px;padding-bottom:.6875rem;padding-left:0;padding-right:0;text-align:center}.contextual-data__cite{display:none}@media only screen and (min-width:56.25rem){.contextual-data{border-bottom:1px solid #e0e0e0;display:-ms-flexbox;display:flex}.contextual-data__list{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center;border-bottom:none;display:inline-block;text-align:left}.contextual-data__cite_wrapper{border-bottom:none;float:right;margin-left:auto;padding:11px 0;padding:.6875rem 0;text-align:start}.contextual-data__cite{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center;display:inline-block;-ms-flex:1;flex:1;text-align:right;padding:0 5px 0 0;padding:0 .3125rem 0 0}.contextual-data__cite_label{text-transform:uppercase}}.login-control__icon{width:35px}.login-control__non_js_control_link{color:#212121;font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-size:14px;font-size:.875rem;line-height:1.71429;font-weight:400;text-decoration:underline;text-transform:none;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:29vw}.login-control__non_js_control_link:hover{text-decoration:underline}.js .login-control__non_js_control_link{display:none}.login-control__controls{border-radius:3px;box-shadow:0 2px 6px 0 rgba(0,0,0,.5);background-color:#fff;border:1px solid #e0e0e0;color:#212121;max-width:200px;max-width:12.5rem;margin:0;padding:0;position:absolute;right:12px;list-style-type:none}.login-control__control{font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-size:14px;font-size:.875rem;line-height:2.57143;margin:0;padding-bottom:0;padding-top:12px;padding-top:.75rem;padding-right:18px;padding-right:1.125rem;padding-left:18px;padding-left:1.125rem}.login-control__control:first-child{border-bottom:1px solid #e0e0e0;padding-bottom:17px;padding-bottom:1.0625rem;padding-top:18px;padding-top:1.125rem}.login-control__control:last-child{margin-top:0;padding-bottom:12px;padding-bottom:.75rem}.login-control__control:last-child:not(.login-control__control:first-child){padding-top:0}.login-control__link{color:#212121;text-transform:none}.login-control__display_name{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:200px;max-width:12.5rem;font-size:16px;font-size:1rem;line-height:1.5}.login-control__display_name+.login-control__subsidiary_text{font-size:14px;font-size:.875rem;line-height:1.71429}.main-menu__section{padding-bottom:15px;padding-bottom:.9375rem}.main-menu__title{font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-size:14px;font-size:.875rem;line-height:1;font-weight:700;text-transform:uppercase;margin:0;padding:0;padding-bottom:5px;padding-bottom:.3125rem;text-transform:uppercase}.main-menu__list{list-style:none;margin:0;padding:0;margin-left:auto;margin-right:auto}.main-menu__list_item{font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-size:16px;font-size:1rem;line-height:1.5;font-size:16px;font-size:1rem;line-height:3;margin:0;padding:0;text-align:center;border-top:1px solid #e0e0e0;display:block;padding-top:11px;padding-top:.6875rem;padding-right:0;padding-bottom:12px;padding-bottom:.75rem;padding-left:0}.main-menu__list_link{color:#212121;text-decoration:none}.main-menu__close_control{background:url(/assets/patterns/img/icons/close-1x.638f23c6.png) no-repeat #fff;background:url(/assets/patterns/img/icons/close.f00467a1.svg) center right/14px 14px no-repeat,linear-gradient(transparent,transparent);border:none;color:#212121;font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-size:16px;font-size:1rem;line-height:1.5;font-size:16px;font-size:1rem;line-height:3;margin:0;padding:0;text-align:center;display:block;padding-top:11px;padding-top:.6875rem;padding-right:24px;padding-right:1.5rem;padding-bottom:12px;padding-bottom:.75rem;padding-left:0;position:relative;left:-24px;text-align:right;width:100%}.main-menu--js{display:none}.main-menu--js .main-menu__container{display:block}.main-menu--js .main-menu__list_item{padding:0 24px;padding:0 1.5rem;text-align:left}.main-menu--js.main-menu--shown{background-color:#fff;color:#212121;display:block;float:left;left:-3000px;height:100vh;width:17.5rem;max-width:90vw;overflow:auto;position:fixed;transform:translate3d(3000px,0,0);z-index:40}.main-menu--js.main-menu--shown .main-menu__list_item{padding-top:11px;padding-top:.6875rem;padding-bottom:12px;padding-bottom:.75rem}.main-menu--js .main_menu__quit{display:none}.meta{font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-weight:400;font-size:11px;font-size:.6875rem;line-height:2.18182;letter-spacing:.5px;text-transform:uppercase;color:#888}.highlights .meta{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.meta__type{color:inherit;text-decoration:none;text-transform:uppercase}a.meta__type:hover{color:#0277bd}.search-box{position:relative}.search-box:not(.search-box--js){padding-top:48px;padding-top:3rem}.search-box__inner{max-width:1114px;padding:0 6%;position:relative}.wrapper .search-box__inner{padding-left:0;padding-right:0}@media only all and (min-width:1114px){.search-box__inner{margin:0 auto;padding:0 66px;padding:0 4.125rem}}.nav-primary{background-color:#fff;border-top:1px solid #e0e0e0;clear:right;padding:0 5px;padding:0 .3125rem;position:relative;z-index:10}.nav-primary__list{-ms-flex-align:center;align-items:center;display:table-cell;height:54px;height:3.375rem;margin:0;padding:0;vertical-align:middle}@supports (display:flex){.nav-primary__list{display:-ms-flexbox;display:flex}}.nav-primary__item{float:left;font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-size:14px;font-size:.875rem;line-height:1.71429;font-weight:700;list-style-type:none;padding:0 24px 0 0;padding:0 1.5rem 0 0;text-transform:uppercase}.nav-primary a:link,.nav-primary a:visited{color:#212121;text-decoration:none}.nav-primary__item--search{float:right;margin-left:auto;padding-right:8px;padding-right:.5rem}.nav-primary__menu_icon{border:none;box-sizing:content-box;display:block;float:left;height:24px;margin-top:-1px;padding:0 3px;width:24px}.nav-primary__search_icon{display:block;height:24px;width:24px}.nav-primary__menu_text{padding-bottom:10px;padding-bottom:.625rem;vertical-align:top}@media only all and (max-width:21.25rem){.nav-primary__menu_text{padding-bottom:0;border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.nav-primary__item--first{padding:0}.nav-primary__menu_icon{border:1px solid #e0e0e0;border-radius:5px;margin:0 8px 0 0;margin:0 .5rem 0 0;margin-top:-3px}}.nav-secondary{background-color:#fff;float:right;position:relative;z-index:15}.nav-secondary__list{-ms-flex-align:center;align-items:center;display:table-cell;height:40px;height:2.5rem;-ms-flex-pack:end;justify-content:flex-end;margin:0;padding:0;vertical-align:middle}@supports (display:flex){.nav-secondary__list{display:-ms-flexbox;display:flex}}.nav-secondary__item{float:left;font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-size:14px;font-size:.875rem;line-height:1.71429;font-weight:700;font-size:11px;font-size:.6875rem;line-height:2.18182;height:24px;height:1.5rem;list-style-type:none;padding:0 12px 0 0;padding:0 .75rem 0 0;text-transform:uppercase}.nav-secondary__item:nth-child(4).nav-secondary__item:nth-last-child(2){border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.nav-secondary__item a:not(.login-control__non_js_control_link){text-decoration:none}.nav-secondary__item a:not(.login-control__non_js_control_link):link,.nav-secondary__item a:not(.login-control__non_js_control_link):visited{color:#212121}.nav-secondary__item a:not(.login-control__non_js_control_link).button:active,.nav-secondary__item a:not(.login-control__non_js_control_link).button:hover,.nav-secondary__item a:not(.login-control__non_js_control_link).button:link,.nav-secondary__item a:not(.login-control__non_js_control_link).button:visited{color:#fff}.view-selector{margin-bottom:36px;margin-bottom:2.25rem}.view-selector__list{background-color:#fff;list-style:none;margin:0;padding:0}.view-selector__list-item{font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-size:14px;font-size:.875rem;line-height:1.71429;margin:0;margin-bottom:12px;margin-bottom:.75rem}.view-selector__link{display:block;text-decoration:none}.view-selector__link span{display:inline-block}.view-selector__link:hover{color:#212121}.view-selector__list-item--active{color:#212121}.view-selector__list-item--active .view-selector__link{color:#212121}.view-selector__link{color:#888}.view-selector__jump_link{color:#888}.view-selector__jump_link--active{color:#212121}.view-selector__jump_links_header{color:#888;display:block;font-size:14px;font-size:.875rem;margin-bottom:12px;margin-bottom:.75rem}.js .view-selector__jump_links_header:before{border-style:solid;border-width:5px;border-color:transparent;border-bottom-width:0;border-top-color:#888;content:"";height:0;width:0;margin-left:-15px;margin-left:-.9375rem;margin-right:-12px;margin-right:-.75rem;margin-top:9px;margin-top:.5625rem;display:block;float:left}.js .view-selector__jump_links_header--closed:before{border-style:solid;border-width:5px;border-color:transparent;border-left-color:#888;border-right-width:0;content:"";height:0;width:0;margin-top:5px;margin-top:.3125rem;margin-left:-12px;margin-left:-.75rem;margin-right:-12px;margin-right:-.75rem;margin-top:6px;margin-top:.375rem}.view-selector__jump_links{list-style:none;margin:0;padding:0;padding-left:18px;padding-left:1.125rem}.view-selector__jump_link_item{font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-size:14px;font-size:.875rem;line-height:1.71429;margin:0;margin-bottom:12px;margin-bottom:.75rem}.view-selector__jump_link{text-decoration:none}.view-selector__jump_link:hover{color:#212121}@media only screen and (max-width:74.9375em){.view-selector{display:none}.view-selector--has-figures{display:inline-block;width:100%}@supports (display:flex){.view-selector--has-figures{display:-ms-flexbox;display:flex}}.view-selector__list{margin:auto;max-width:375px;max-width:23.4375rem;width:100%}.view-selector__list-item{border:1px solid #212121;float:left;margin:0;padding:0 6px;padding:0 .375rem;text-align:center;width:50%}.view-selector__list-item--article{border-right:none;border-radius:4px 0 0 4px}.view-selector__list-item--figures{border-left:none;border-radius:0 4px 4px 0}.view-selector__list-item--active{background-color:#212121}.view-selector__list-item--active .view-selector__link{color:#fff}.view-selector__list-item--side-by-side{display:none}.view-selector__list-item--jump{display:none}.view-selector__link{font-size:14px;font-size:.875rem;line-height:2.57143;height:34px;height:2.125rem;margin:0;padding:0;text-align:center}.view-selector__link span{padding:0}.view-selector__link--figures{color:#212121}}@media only screen and (min-width:75em){.view-selector{margin-left:-1.6vw;max-width:210px;max-width:13.125rem;padding-left:1.6vw;width:16.666vw}.view-selector--fixed{max-height:100vh;min-height:11rem;overflow:auto;padding-top:30px;padding-top:1.875rem;position:fixed;top:0}}.content-header-profile{padding-top:24px;padding-top:1.5rem;padding-bottom:24px;padding-bottom:1.5rem;box-sizing:content-box;max-width:1114px;max-width:69.625rem;margin:auto;font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;padding-left:6%;padding-right:6%;position:relative;text-align:center}@media only all and (min-width:45.625em){.nav-secondary__item:nth-child(4).nav-secondary__item:nth-last-child(2){clip:auto;height:auto;margin:0;overflow:auto;position:static;width:auto;margin-right:12px;margin-right:.75rem}.content-header-profile{padding-top:48px;padding-top:3rem}.content-header-profile{padding-bottom:48px;padding-bottom:3rem}}.content-header-profile__display_name{font-size:20px;font-size:1.25rem;line-height:2.4;font-weight:700;margin:0;padding:0}.content-header-profile__details{font-size:16px;font-size:1rem;line-height:1.5}.content-header-profile__affiliations{margin:0;padding:0;list-style:none}.content-header-profile__affiliations:empty{display:none}.content-header-profile__affiliation{display:inline;font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif}.content-header-profile__affiliation:after{content:"; "}.content-header-profile__affiliation:last-child:after{content:""}.content-header-profile__orcid .orcid__id{color:inherit}.content-header-profile__email{word-break:break-all}.content-header-profile__links{list-style:none;margin:0;padding:0}.js .content-header-profile__links{display:none}.content-header-profile__link{color:#212121;font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-size:14px;font-size:.875rem;line-height:1.71429;font-weight:400;text-decoration:underline;text-transform:none}.content-header-profile__link:hover{text-decoration:underline}.content-header-profile__link--logout{position:absolute;right:24px;top:24px}.content-header-simple{padding-top:24px;padding-top:1.5rem;padding-bottom:24px;padding-bottom:1.5rem;padding-left:6%;padding-right:6%;text-align:center}@media only all and (min-width:45.625em){.content-header-simple{padding-top:48px;padding-top:3rem}.content-header-simple{padding-bottom:48px;padding-bottom:3rem}}.content-header-simple__title{font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-weight:700;font-size:26px;font-size:1.625rem;line-height:1.15385;color:#212121;font-size:20px;font-size:1.25rem;line-height:1.2;margin:0;padding:0}.content-header-simple__strapline{color:#212121;font-family:Georgia,serif;font-size:16px;font-size:1rem;line-height:1.5;font-weight:400;margin:0;padding:0}.content-header{box-sizing:content-box;max-width:1114px;max-width:69.625rem;margin:auto;color:#212121;padding-top:0;padding-bottom:23px;padding-bottom:1.4375rem;position:relative;text-align:center}.content-header.wrapper{padding-bottom:0}.content-header.wrapper:after{border-bottom:1px solid #e0e0e0;content:"";display:block;padding-top:23px;padding-top:1.4375rem;width:100%}.content-header--read-more .content-header__subject_list{width:100%}.content-header-image-wrapper--no-credit{padding-bottom:48px;padding-bottom:3rem}.content-header--image{border-bottom:none;color:#fff;height:264px;overflow:hidden;padding-bottom:0}@media only all and (min-width:45.625em){.content-header--image{height:288px}}.content-header--image .content-header__body{height:120px;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center;-ms-flex-pack:center;justify-content:center;padding:0 12px;padding:0 .75rem}.content-header__body{margin-top:48px;margin-top:3rem;margin-bottom:24px;margin-bottom:1.5rem}.content-header--header .content-header__body{margin-top:60px;margin-top:3.75rem}.content-header__title{font-size:36px;font-size:2.25rem;line-height:1.33333;margin-top:0;margin-top:0;margin-bottom:24px;margin-bottom:1.5rem}@media only all and (min-width:45.625em){.content-header--image .content-header__body{padding:0 48px;padding:0 3rem}.content-header--header .content-header__body{margin-top:72px;margin-top:4.5rem}.content-header__title{font-size:41px;font-size:2.5625rem;line-height:1.17073}}.content-header--header .content-header__title,.content-header--read-more .content-header__title{font-size:29px;font-size:1.8125rem;line-height:1.24138}.content-header__title_link{color:inherit;text-decoration:inherit}.content-header--image .content-header__body{margin-top:48px;margin-top:3rem}@media only all and (min-width:45.625em){.content-header--header .content-header__title,.content-header--read-more .content-header__title{font-size:36px;font-size:2.25rem;line-height:1.33333}.content-header--image .content-header__body{margin-top:72px;margin-top:4.5rem}}.content-header--image .content-header__title{font-size:41px;font-size:2.5625rem;line-height:1.17073;margin-bottom:0}@media only all and (min-width:45.625em){.content-header--image .content-header__title{font-size:52px;font-size:3.25rem}}@media only all and (min-width:56.25em){.content-header--image{height:336px}.content-header--image .content-header__body{height:168px}.content-header__title{font-size:46px;font-size:2.875rem;line-height:1.56522}.content-header--image .content-header__title{font-size:58px;font-size:3.625rem;line-height:1.24138}}.content-header--image .content-header__title--long{font-size:36px;font-size:2.25rem}@media only all and (min-width:45.625em){.content-header--image .content-header__title--long{font-size:41px;font-size:2.5625rem}}@media only all and (min-width:56.25em){.content-header--image .content-header__title--long{font-size:46px;font-size:2.875rem}}.content-header__picture{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.content-header__picture:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;background-color:rgba(0,0,0,.4)}.content-header__image{z-index:-2;position:absolute;left:50%;top:50%;height:100%;min-width:100%;max-width:none;-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.content-header__image:after{content:"";background-color:#fff;position:absolute;top:0;left:0;width:100%;height:100%}.content-header__profile_wrapper{padding:12px 0;padding:.75rem 0;position:absolute;left:0;right:0}.content-header__profile{text-decoration:none}.content-header__profile dd,.content-header__profile dl,.content-header__profile dt{display:inline-block;margin:0}.content-header__profile_label{font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-weight:400;font-size:11px;font-size:.6875rem;line-height:2.18182;letter-spacing:.5px;text-transform:uppercase;color:#fff}.content-header__profile_data{font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-weight:400;font-size:11px;font-size:.6875rem;line-height:2.18182;letter-spacing:.5px;color:#fff}.content-header__profile_image{display:none}@supports (display:flex){@media only all and (min-width:45.625em){.content-header__profile--has-image{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-pack:center;justify-content:center;text-align:left;width:100%}.content-header__profile--has-image .content-header__profile_image{display:block;border-radius:24px;height:48px;width:48px;margin-right:12px;margin-right:.75rem}.content-header__profile--has-image dd,.content-header__profile--has-image dl,.content-header__profile--has-image dt{display:block}.content-header__profile--has-image .content-header__profile_data{color:#fff;font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-size:14px;font-size:.875rem;line-height:1.71429}}.content-header__profile_wrapper{padding:24px 0 0;padding:1.5rem 0 0}}.content-header__subject_list{font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-weight:400;font-size:11px;font-size:.6875rem;line-height:2.18182;letter-spacing:.5px;text-transform:uppercase;color:#0288d1;margin:0;padding-left:0;text-align:center;padding-left:36px;padding-left:2.25rem;padding-right:36px;padding-right:2.25rem;padding-top:24px;padding-top:1.5rem;position:absolute;width:calc(100% - 2 * 7%);display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@media only all and (min-width:45.625rem){.content-header__subject_list{padding-left:72px;padding-left:4.5rem;padding-right:72px;padding-right:4.5rem;width:calc(100% - 2 * 14%)}}@media only all and (min-width:75rem){.content-header__subject_list{width:calc(100% - 2 * 3%)}}.content-header--image .content-header__subject_list{color:inherit}.content-header__subject_list:before{color:#888}.content-header__subject_list_item{font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-weight:400;font-size:11px;font-size:.6875rem;line-height:2.18182;letter-spacing:.5px;text-transform:uppercase;color:#0288d1;display:inline;font-size:11px;font-size:.6875rem;line-height:2.18182;list-style-type:none;padding:0}.content-header__subject_list_item .content-header__subject:after{content:", "}.content-header--image .content-header__subject_list_item{color:inherit}.content-header__subject_list_item:last-child .content-header__subject:after{content:""}.content-header__subject_link{font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-weight:400;font-size:11px;font-size:.6875rem;line-height:2.18182;letter-spacing:.5px;text-transform:uppercase;color:#0288d1;text-decoration:none}.content-header__subject_link:hover{color:#0277bd}.content-header--image .content-header__subject_link{color:inherit}.content-header--image .content-header__subject_link:hover{color:inherit}.content-header__icons{float:left;position:absolute;list-style:none;margin:0;padding:0;left:7%;top:14px}@media only all and (min-width:45.625em){.content-header__icons{left:14%}}@media only all and (min-width:75em){.content-header__icons{left:42px}.content-header--image .content-header__icons{left:16px}}.content-header--image .content-header__icons{left:12px;top:12px}.content-header__icon{background-repeat:no-repeat;background-position:center bottom;display:block;width:17px;height:22px}.content-header__icon--cc{background-image:url(/assets/patterns/img/icons/cc.d3d0cdec.png);background-image:url(/assets/patterns/img/icons/cc.ec7b6e9c.svg),linear-gradient(transparent,transparent)}.content-header__icon--cc:hover{background-image:url(/assets/patterns/img/icons/cc-hover.83dfab2f.png);background-image:url(/assets/patterns/img/icons/cc-hover.7a693c5e.svg),linear-gradient(transparent,transparent)}.content-header__icon--oa{background-image:url(/assets/patterns/img/icons/oa.15bbffdd.png);background-image:url(/assets/patterns/img/icons/oa.f53eb8bd.svg),linear-gradient(transparent,transparent)}.content-header__icon--oa:hover{background-image:url(/assets/patterns/img/icons/oa-hover.791672fc.png);background-image:url(/assets/patterns/img/icons/oa-hover.ec1c5229.svg),linear-gradient(transparent,transparent)}.content-header__download_link{float:right;position:absolute;right:7%;top:24px}@media only all and (min-width:45.625em){.content-header__download_link{right:14%;top:14px}}@media only all and (min-width:75em){.content-header__download_link{right:42px}.content-header--image .content-header__download_link{right:16px}}.content-header--image .content-header__download_link{right:12px;top:12px}.content-header__download_icon{width:20px}.content-header__impact-statement{font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-size:16px;font-size:1rem;line-height:1.5;font-weight:500;margin-bottom:24px;margin-bottom:1.5rem;max-width:100%}.content-header__impact-statement a{border-bottom:1px dotted #212121;color:#212121;text-decoration:none}.content-header__impact-statement a:hover{border-bottom-color:#212121;color:#212121}.content-header__impact-statement a:active,.content-header__impact-statement a:hover{color:inherit}.content-header--image .content-header__impact-statement{margin-bottom:0;margin-bottom:0;display:none}@media only all and (min-width:56.25em){.content-header--image .content-header__impact-statement{display:block}}.content-header--image .content-header__impact-statement a{border-bottom:1px dotted #fff;color:#fff;text-decoration:none}.content-header--image .content-header__impact-statement a:hover{border-bottom-color:#fff;color:#fff}.content-header__author_link_highlight{padding:0}.content-header__author_link_highlight,.content-header__author_link_highlight:hover{background-color:transparent;border-style:none;color:#0288d1}.content-header__authors{margin-bottom:24px;margin-bottom:1.5rem}@media only all and (max-width:45.625em){.content-header__authors .content-header__institution_list{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}}.content-header__authors--line{font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-size:16px;font-size:1rem;line-height:1.5}.content-header__author_list{margin:0;padding:0}.content-header__author_list_item{display:inline;font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-size:16px;font-size:1rem;line-height:1.5;list-style-type:none;padding:0}.content-header__item_toggle--expanded{display:block}.content-header__author:after{content:", "}.content-header__author--last-non-excess:after{content:""}.content-header__author_list--expanded .content-header__author--last-non-excess:after{content:", "}.content-header__author_link{color:inherit;text-decoration:inherit}.content-header__author_link:hover{color:#0288d1}.content-header__author_icon{padding-top:1px;vertical-align:text-top}li.content-header__author_list_item--last .content-header__author:after{content:""}.content-header__author--single{font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-size:16px;font-size:1rem;line-height:1.5}.content-header__institution_list{margin:0;padding:0}.content-header__institution_list_item{display:inline;font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-size:14px;font-size:.875rem;line-height:1.71429;font-weight:500;list-style-type:none;padding:0}.content-header__institution:after{content:"; "}li.content-header__institution_list_item--last .content-header__institution:after{content:""}.content-header__item_toggle--author{font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-size:16px;font-size:1rem;line-height:1.5;font-weight:400}.content-header__item_toggle--expanded .content-header__item_toggle_cta{display:block;-ms-transform:rotate(90deg);transform:rotate(90deg)}@media only all and (min-width:45.625em){.content-header__download_icon{width:44px}.content-header__author--last-non-excess:after{content:""}.content-header__item_toggle{color:#0288d1;display:inline;list-style-type:none;padding:0}.content-header__item_toggle--institution{font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-size:14px;font-size:.875rem;line-height:1.71429;font-weight:500;font-weight:400}.content-header__item_toggle--collapsed:after{content:"\00a0\00bb"}.content-header__item_toggle--expanded:before{content:"\00ab\00a0"}.content-header__institution--last-non-excess:after{content:""}}.content-header__cta{margin-bottom:18px;margin-bottom:1.125rem}.content-header--image .content-header__cta{margin-bottom:0;margin-bottom:0;position:absolute;bottom:44px;left:0;right:0}.content-header--image .content-header__meta{position:absolute;bottom:12px;left:0;right:0}.content-header--image .meta{color:inherit}.content-header--image .meta__type:hover{color:inherit}.content-header__image-credit{color:#888;font-family:"Avenir Next Webfont",Arial,Helvetica,sans-serif;font-size:11px;font-size:.6875rem;line-height:2.18182;padding-top:12px;padding-top:.75rem;padding-bottom:12px;padding-bottom:.75rem;text-align:right;visibility:hidden}.content-header__image-credit a,.content-header__image-credit a:hover{color:inherit;text-decoration:underline}.content-header__image-credit--overlay{color:inherit;opacity:.4;position:absolute;bottom:0;padding-right:12px;padding-right:.75rem;width:100%}.grid-column{margin-bottom:48px;margin-bottom:3rem}@media only all and (min-width:45.625em){.content-header__image-credit{visibility:visible}.grid-column{margin-bottom:72px;margin-bottom:4.5rem}}.grid-secondary-column__item{margin-bottom:48px;margin-bottom:3rem}@media only all and (min-width:45.625em){.grid-secondary-column__item{margin-bottom:72px;margin-bottom:4.5rem}}.wrapper{box-sizing:content-box;max-width:1114px;max-width:69.625rem;margin:auto;padding-left:7%;padding-right:7%}@media only screen and (min-width:45.625em){.wrapper{padding-left:14%;padding-right:14%}}@media only screen and (min-width:75em){.wrapper{padding-left:3%;padding-right:3%}}.wrapper.wrapper--site-header{padding:0}.wrapper.wrapper--content{padding-top:24px;padding-top:1.5rem}.content-header-image-wrapper+.wrapper.wrapper--listing,.content-header-simple+.wrapper.wrapper--listing{padding-top:0}.grid{list-style:none;margin:0;padding:0;margin-left:-10;margin-right:-10;zoom:1}.grid:after,.grid:before{content:"";display:table}.grid:after{clear:both}.grid__item{float:left;padding-left:10;padding-right:10;width:100%;box-sizing:border-box}.one-whole{width:100%}[class*=push--]{position:relative}@media only screen and (min-width:900px){.large--eight-twelfths{min-height:1px;width:66.666%}.large--ten-twelfths{min-height:1px;width:83.333%}.push--large--one-twelfth{left:8.333%}}@media only screen and (min-width:1200px){.x-large--two-twelfths{min-height:1px;width:16.666%}.x-large--seven-twelfths{min-height:1px;width:58.333%}.x-large--eight-twelfths{min-height:1px;width:66.666%}.push--x-large--zero{left:0}.push--x-large--two-twelfths{left:16.666%}}.listing-list--read-more .content-header-divider{border:none}.listing-list--read-more .content-header--read-more{border:none}.site-header{max-height:96px;min-width:17.1875rem;position:relative;z-index:20}.site-header .search-box{background-color:#fff;display:none}.site-header__title{float:left;position:relative;z-index:21}.site-header__logo_link{background:url(/assets/patterns/img/patterns/organisms/elife-logo-symbol-1x.7d254625.png) no-repeat;display:block;height:28px;margin:6px 0 0 3px;width:28px}.site-header__logo_link_image{display:none}@supports (display:flex){.site-header__logo_link{background:0 0;height:27px}.site-header__logo_link_image{display:block}}.site-header__navigation{background-color:#fff;position:relative;z-index:20}@media only all and (min-width:45.625em){.wrapper.wrapper--content{padding-top:48px;padding-top:3rem}.site-header__title{border-right:1px solid #e0e0e0;float:left;height:95px;height:5.9375rem;margin-right:10px;margin-right:10px;margin-right:.625rem;padding-top:14px;padding-top:.875rem;padding-right:20px;padding-right:1.25rem;position:relative;width:170px}.site-header__title:after{background-color:#fff;content:"";display:block;height:95px;left:0;position:absolute;top:0;width:169px}.site-header__logo_link{background:0 0;display:block;float:right;height:70px;margin:0;position:relative;width:136px;z-index:10}.site-header__logo_link_image{display:block}} </style>
<link rel="manifest" href="https://elifesciences.org/assets/favicons/manifest.cff74b51.json">
<meta name="theme-color" content="#ffffff">
<meta name="application-name" content="eLife">
<meta name="dc.format" content="text/html">
<meta name="dc.language" content="en">
<meta name="dc.publisher" content="eLife Sciences Publications Limited">
<meta name="dc.title" content="Extended low-resolution structure of a Leptospira antigen offers high bactericidal antibody accessibility amenable to vaccine design">
<meta name="dc.identifier" content="doi:10.7554/eLife.30051">
<meta name="dc.date" content="2017-12-06">
<meta name="dc.rights" content="© 2017 Hsieh et al.. This article is distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use and redistribution provided that the original author and source are credited.">
<meta name="dc.description" content="Vaccines encourage the immune system to develop a protection against disease-causing bacteria and viruses. Some types of immune cells release antibodies, which recognize particular proteins on the surface of the invading microbe. A vaccine that contains these surface proteins allows immune cells to develop the antibodies that can help to fight off an infection at a later date. Studying the shape and structure of the surface proteins can reveal how they are detected by our immune systems and can further be used to design more effective vaccines. Leptospirosis is the most common bacterial disease to affect both humans and animals. The symptoms of the disease include fever, muscle pain and bleeding from the lungs. New vaccines against leptospirosis are desperately needed because current ones have severe side effects and do not fully protect against the disease. The most promising new vaccine candidates are the Lig proteins, which are found on the surface of leptospirosis causing bacteria cells, but little was known about their molecular structure. The region of the Lig protein that is recognized by the immune system consists of a series of twelve connected ‘immunoglobulin-like’ domains. Hsieh, Ptak et al. used X-ray scattering to determine the structure of this region and found that the protein is highly elongated. Additional experiments showed that the individual domains provoke immune responses to different extents. Antibodies that can interact more strongly with the Lig protein were also better able to kill the bacteria. Based on this information, Hsieh, Ptak et al. combined parts of the individual domains that bind strongly to antibodies to design a new protein that, when used as a vaccine, protected hamsters against leptospirosis much better than other Lig protein-based vaccines. Further engineering and testing are required to develop an optimized, commercial leptospirosis vaccine, but the work of Hsieh, Ptak et al. shows the effectiveness of structure-based vaccine design methods. In the future, similar methods could be used to develop better vaccines and treatments for other infectious diseases.">
<meta name="dc.contributor" content="Ching-Lin Hsieh">
<meta name="dc.contributor" content="Christopher P Ptak">
<meta name="dc.contributor" content="Andrew Tseng">
<meta name="dc.contributor" content="Igor Massahiro de Souza Suguiura">
<meta name="dc.contributor" content="Sean P McDonough">
<meta name="dc.contributor" content="Tepyuda Sritrakul">
<meta name="dc.contributor" content="Ting Li">
<meta name="dc.contributor" content="Yi-Pin Lin">
<meta name="dc.contributor" content="Richard E Gillilan">
<meta name="dc.contributor" content="Robert E Oswald">
<meta name="dc.contributor" content="Yung-Fu Chang">
<meta property="og:site_name" content="eLife">
<meta property="og:url" content="https://elifesciences.org/articles/30051">
<meta property="og:title" content="Extended low-resolution structure of a Leptospira antigen offers high bactericidal antibody accessibility amenable to vaccine design">
<meta name="twitter:site" content="@eLife">
<meta property="og:description" content="The antibody accessibility of the leptospiral surface protein, LigB, provides a guide for the rational design of improved recombinant chimeric vaccine antigens displayed on a single domain scaffold.">
<meta name="description" content="The antibody accessibility of the leptospiral surface protein, LigB, provides a guide for the rational design of improved recombinant chimeric vaccine antigens displayed on a single domain scaffold.">
<meta name="twitter:card" content="summary">
<meta property="og:type" content="article">
<link rel="canonical" href="https://elifesciences.org/articles/30051">
<meta name="citation_journal_title" content="eLife">
<meta name="citation_publisher" content="eLife Sciences Publications Limited">
<meta name="citation_journal_abbrev" content="eLife Sciences">
<meta name="citation_issn" content="2050-084X">
<meta name="citation_fulltext_world_readable" content="">
<meta name="citation_language" content="en">
<meta name="citation_title" content="Extended low-resolution structure of a Leptospira antigen offers high bactericidal antibody accessibility amenable to vaccine design">
<meta name="citation_id" content="eLife 2017;6:e30051">
<meta name="citation_firstpage" content="e30051">
<meta name="citation_public_url" content="https://elifesciences.org/articles/30051">
<meta name="citation_pdf_url" content="https://cdn.elifesciences.org/articles/30051/elife-30051-v2.pdf">
<meta name="citation_doi" content="10.7554/eLife.30051">
<meta name="citation_volume" content="6">
<meta name="citation_publication_date" content="2017/12/06">
<meta name="citation_funding_source" content="citation_funder=Center for Advanced Technology (CAT) program;citation_grant_number=478-3400;citation_grant_recipient=Yung-Fu Chang">
<meta name="citation_funding_source" content="citation_funder=Biotechnology Research and Development Corporation;citation_grant_number=478-9355;citation_grant_recipient=Yung-Fu Chang">
<meta name="citation_keywords" content="LigB structure; mAb accessibility; vaccine design">
<meta name="citation_section" content="Structural Biology and Molecular Biophysics; Microbiology and Infectious Disease">
<meta name="citation_author" content="Ching-Lin Hsieh">
<meta name="citation_author_institution" content="Department of Population Medicine and Diagnostic Sciences, College of Veterinary Medicine, Cornell University, Ithaca, United States">
<meta name="citation_author" content="Christopher P Ptak">
<meta name="citation_author_institution" content="Department of Population Medicine and Diagnostic Sciences, College of Veterinary Medicine, Cornell University, Ithaca, United States">
<meta name="citation_author_institution" content="Department of Molecular Medicine, College of Veterinary Medicine, Cornell University, Ithaca, United States">
<meta name="citation_author_orcid" content="https://orcid.org/0000-0003-2752-0367">
<meta name="citation_author" content="Andrew Tseng">
<meta name="citation_author_institution" content="Department of Population Medicine and Diagnostic Sciences, College of Veterinary Medicine, Cornell University, Ithaca, United States">
<meta name="citation_author" content="Igor Massahiro de Souza Suguiura">
<meta name="citation_author_institution" content="Department of Population Medicine and Diagnostic Sciences, College of Veterinary Medicine, Cornell University, Ithaca, United States">
<meta name="citation_author" content="Sean P McDonough">
<meta name="citation_author_institution" content="Department of Biomedical Sciences, College of Veterinary Medicine, Cornell University, Ithaca, United States">
<meta name="citation_author" content="Tepyuda Sritrakul">
<meta name="citation_author_institution" content="Department of Population Medicine and Diagnostic Sciences, College of Veterinary Medicine, Cornell University, Ithaca, United States">
<meta name="citation_author" content="Ting Li">
<meta name="citation_author_institution" content="Department of Population Medicine and Diagnostic Sciences, College of Veterinary Medicine, Cornell University, Ithaca, United States">
<meta name="citation_author" content="Yi-Pin Lin">
<meta name="citation_author_institution" content="Division of Infectious Disease, Wadsworth Center, New York State Department of Health, Albany, United States">
<meta name="citation_author" content="Richard E Gillilan">
<meta name="citation_author_institution" content="Macromolecular Diffraction Facility at CHESS (MacCHESS), Cornell University, Ithaca, United States">
<meta name="citation_author_orcid" content="https://orcid.org/0000-0002-7636-3188">
<meta name="citation_author" content="Robert E Oswald">
<meta name="citation_author_institution" content="Department of Molecular Medicine, College of Veterinary Medicine, Cornell University, Ithaca, United States">
<meta name="citation_author_email" content="[email protected]">
<meta name="citation_author" content="Yung-Fu Chang">
<meta name="citation_author_institution" content="Department of Population Medicine and Diagnostic Sciences, College of Veterinary Medicine, Cornell University, Ithaca, United States">
<meta name="citation_author_email" content="[email protected]">
<meta name="citation_author_orcid" content="https://orcid.org/0000-0001-8902-3089">
<meta name="citation_reference" content="
citation_journal_title=Journal of Synchrotron Radiation;
citation_title=Upgrade of MacCHESS facility for X-ray scattering of biological macromolecules in solution;
citation_publication_date=2015;
citation_doi=10.1107/S1600577514020360;
citation_pmid=25537607;
citation_author=AS Acerbo;
citation_author=MJ Cook;
citation_author=RE Gillilan;
citation_volume=22;
citation_firstpage=180;
citation_lastpage=186;
citation_pages=180–186;
">
<meta name="citation_reference" content="
citation_journal_title=Current Topics in Microbiology and Immunology;
citation_title=Vaccines against leptospirosis;
citation_publication_date=2015;
citation_doi=10.1007/978-3-662-45059-8_10;
citation_pmid=25388138;
citation_author=B Adler;
citation_volume=387;
citation_firstpage=251;
citation_lastpage=272;
citation_pages=251–272;
">
<meta name="citation_reference" content="
citation_journal_title=The Journal of Immunology;
citation_title=A meningococcal factor H binding protein mutant that eliminates factor H binding enhances protective antibody responses to vaccination;
citation_publication_date=2011;
citation_doi=10.4049/jimmunol.1003470;
citation_pmid=21325619;
citation_author=PT Beernink;
citation_author=J Shaughnessy;
citation_author=EM Braga;
citation_author=Q Liu;
citation_author=PA Rice;
citation_author=S Ram;
citation_author=DM Granoff;
citation_volume=186;
citation_firstpage=3606;
citation_lastpage=3614;
citation_pages=3606–3614;
">
<meta name="citation_reference" content="
citation_journal_title=FEMS Microbiology Reviews;
citation_title=Immunoglobulin domains in Escherichia coli and other enterobacteria: from pathogenesis to applications in antibody technologies;
citation_publication_date=2013;
citation_doi=10.1111/j.1574-6976.2012.00347.x;
citation_pmid=22724448;
citation_author=G Bodelón;
citation_author=C Palomino;
citation_author=LÁ Fernández;
citation_volume=37;
citation_firstpage=204;
citation_lastpage=250;
citation_pages=204–250;
">
<meta name="citation_reference" content="
citation_journal_title=PLOS Neglected Tropical Diseases;
citation_title=Fine mapping of the interaction between C4b-Binding protein and outer membrane proteins LigA and LigB of Pathogenic Leptospira interrogans;
citation_publication_date=2015;
citation_doi=10.1371/journal.pntd.0004192;
citation_pmid=26517116;
citation_author=LC Breda;
citation_author=CL Hsieh;
citation_author=MM Castiblanco Valencia;
citation_author=LB da Silva;
citation_author=AS Barbosa;
citation_author=AM Blom;
citation_author=YF Chang;
citation_author=L Isaac;
citation_volume=9;
citation_firstpage=e0004192;
">
<meta name="citation_reference" content="
citation_journal_title=Vaccine;
citation_title=Evaluation of novel fusion proteins derived from extracellular matrix binding domains of LigB as vaccine candidates against leptospirosis in a hamster model;
citation_publication_date=2011;
citation_doi=10.1016/j.vaccine.2011.07.070;
citation_pmid=21803087;
citation_author=Y Cao;
citation_author=SM Faisal;
citation_author=W Yan;
citation_author=YC Chang;
citation_author=SP McDonough;
citation_author=N Zhang;
citation_author=BL Akey;
citation_author=YF Chang;
citation_volume=29;
citation_firstpage=7379;
citation_lastpage=7386;
citation_pages=7379–7386;
">
<meta name="citation_reference" content="
citation_journal_title=The Journal of Infectious Diseases;
citation_title=Leptospiral immunoglobulin-like proteins interact with human complement regulators factor H, FHL-1, FHR-1, and C4BP;
citation_publication_date=2012;
citation_doi=10.1093/infdis/jir875;
citation_pmid=22291192;
citation_author=MM Castiblanco-Valencia;
citation_author=TR Fraga;
citation_author=LB Silva;
citation_author=D Monaris;
citation_author=PA Abreu;
citation_author=S Strobel;
citation_author=M Józsi;
citation_author=L Isaac;
citation_author=AS Barbosa;
citation_volume=205;
citation_firstpage=995;
citation_lastpage=1004;
citation_pages=995–1004;
">
<meta name="citation_reference" content="
citation_journal_title=Vaccine;
citation_title=Immunogenicity of the recombinant leptospiral putative outer membrane proteins as vaccine candidates;
citation_publication_date=2007;
citation_doi=10.1016/j.vaccine.2007.09.020;
citation_pmid=17936448;
citation_author=YF Chang;
citation_author=CS Chen;
citation_author=RU Palaniappan;
citation_author=H He;
citation_author=SP McDonough;
citation_author=SC Barr;
citation_author=W Yan;
citation_author=SM Faisal;
citation_author=MJ Pan;
citation_author=CF Chang;
citation_volume=25;
citation_firstpage=8190;
citation_lastpage=8197;
citation_pages=8190–8197;
">
<meta name="citation_reference" content="
citation_journal_title=Infection and Immunity;
citation_title=Physiological osmotic induction of Leptospira interrogans adhesion: LigA and LigB bind extracellular matrix proteins and fibrinogen;
citation_publication_date=2007;
citation_doi=10.1128/IAI.01635-06;
citation_pmid=17296754;
citation_author=HA Choy;
citation_author=MM Kelley;
citation_author=TL Chen;
citation_author=AK Møller;
citation_author=J Matsunaga;
citation_author=DA Haake;
citation_volume=75;
citation_firstpage=2441;
citation_lastpage=2450;
citation_pages=2441–2450;
">
<meta name="citation_reference" content="
citation_journal_title=PLoS ONE;
citation_title=Multiple activities of LigB potentiate virulence of Leptospira interrogans: inhibition of alternative and classical pathways of complement;
citation_publication_date=2012;
citation_doi=10.1371/journal.pone.0041566;
citation_pmid=22911815;
citation_author=HA Choy;
citation_volume=7;
citation_firstpage=e41566;
">
<meta name="citation_reference" content="
citation_journal_title=PLOS Neglected Tropical Diseases;
citation_title=LigB subunit vaccine confers sterile immunity against challenge in the hamster model of leptospirosis;
citation_publication_date=2017;
citation_doi=10.1371/journal.pntd.0005441;
citation_pmid=28301479;
citation_author=NL Conrad;
citation_author=FW Cruz McBride;
citation_author=JD Souza;
citation_author=MM Silveira;
citation_author=S Félix;
citation_author=KS Mendonça;
citation_author=CS Santos;
citation_author=DA Athanazio;
citation_author=MA Medeiros;
citation_author=MG Reis;
citation_author=OA Dellagostin;
citation_author=AJ McBride;
citation_volume=11;
citation_firstpage=e0005441;
">
<meta name="citation_reference" content="
citation_journal_title=Nature;
citation_title=Proof of principle for epitope-focused vaccine design;
citation_publication_date=2014;
citation_doi=10.1038/nature12966;
citation_pmid=24499818;
citation_author=BE Correia;
citation_author=JT Bates;
citation_author=RJ Loomis;
citation_author=G Baneyx;
citation_author=C Carrico;
citation_author=JG Jardine;
citation_author=P Rupert;
citation_author=C Correnti;
citation_author=O Kalyuzhniy;
citation_author=V Vittal;
citation_author=MJ Connell;
citation_author=E Stevens;
citation_author=A Schroeter;
citation_author=M Chen;
citation_author=S Macpherson;
citation_author=AM Serra;
citation_author=Y Adachi;
citation_author=MA Holmes;
citation_author=Y Li;
citation_author=RE Klevit;
citation_author=BS Graham;
citation_author=RT Wyatt;
citation_author=D Baker;
citation_author=RK Strong;
citation_author=JE Crowe;
citation_author=PR Johnson;
citation_author=WR Schief;
citation_volume=507;
citation_firstpage=201;
citation_lastpage=206;
citation_pages=201–206;
">
<meta name="citation_reference" content="
citation_journal_title=PLOS Neglected Tropical Diseases;
citation_title=Global morbidity and mortality of Leptospirosis: A systematic review;
citation_publication_date=2015;
citation_doi=10.1371/journal.pntd.0003898;
citation_pmid=26379143;
citation_author=F Costa;
citation_author=JE Hagan;
citation_author=J Calcagno;
citation_author=M Kane;
citation_author=P Torgerson;
citation_author=MS Martinez-Silveira;
citation_author=C Stein;
citation_author=B Abela-Ridder;
citation_author=AI Ko;
citation_volume=9;
citation_firstpage=e0003898;
">
<meta name="citation_reference" content="
citation_journal_title=Trends in Biotechnology;
citation_title=Structure-based antigen design: a strategy for next generation vaccines;
citation_publication_date=2008;
citation_doi=10.1016/j.tibtech.2008.08.002;
citation_pmid=18977045;
citation_author=PR Dormitzer;
citation_author=JB Ulmer;
citation_author=R Rappuoli;
citation_volume=26;
citation_firstpage=659;
citation_lastpage=667;
citation_pages=659–667;
">
<meta name="citation_reference" content="
citation_journal_title=Nature Reviews Microbiology;
citation_title=Structural vaccinology starts to deliver;
citation_publication_date=2012;
citation_doi=10.1038/nrmicro2893;
citation_pmid=23154260;
citation_author=PR Dormitzer;
citation_author=G Grandi;
citation_author=R Rappuoli;
citation_volume=10;
citation_firstpage=807;
citation_lastpage=813;
citation_pages=807–813;
">
<meta name="citation_reference" content="
citation_journal_title=Human Vaccines;
citation_title=An octavalent lyme disease vaccine induces antibodies that recognize all incorporated OspC type-specific sequences;
citation_publication_date=2007;
citation_doi=10.4161/hv.4661;
citation_pmid=17921702;
citation_author=CG Earnhart;
citation_author=RT Marconi;
citation_volume=3;
citation_firstpage=281;
citation_lastpage=289;
citation_pages=281–289;
">
<meta name="citation_reference" content="
citation_journal_title=Journal of Immunology;
citation_title=Differential IgG-binding characteristics of Staphylococcal protein-A, Staphylococcal protein-G, and a chimeric protein AG;
citation_publication_date=1989;
citation_doi=10.1016/0022-1759(91)90335-D;
citation_pmid=2521350;
citation_author=M Eliasson;
citation_author=R Andersson;
citation_author=A Olsson;
citation_author=H Wigzell;
citation_author=M Uhlén;
citation_volume=142;
citation_firstpage=575;
citation_lastpage=581;
citation_pages=575–581;
">
<meta name="citation_reference" content="
citation_journal_title=Vaccine;
citation_title=Leptospira immunoglobulin-like protein A variable region (LigAvar) incorporated in liposomes and PLGA microspheres produces a robust immune response correlating to protective immunity;
citation_publication_date=2009;
citation_doi=10.1016/j.vaccine.2008.10.089;
citation_pmid=19022317;
citation_author=SM Faisal;
citation_author=W Yan;
citation_author=SP McDonough;
citation_author=YF Chang;
citation_volume=27;
citation_firstpage=378;
citation_lastpage=387;
citation_pages=378–387;
">
<meta name="citation_reference" content="
citation_journal_title=BMC Microbiology;
citation_title=Heterologous expression of pathogen-specific genes ligA and ligB in the saprophyte Leptospira biflexa confers enhanced adhesion to cultured cells and fibronectin;
citation_publication_date=2011;
citation_doi=10.1186/1471-2180-11-129;
citation_pmid=21658265;
citation_author=CP Figueira;
citation_author=J Croda;
citation_author=HA Choy;
citation_author=DA Haake;
citation_author=MG Reis;
citation_author=AI Ko;
citation_author=M Picardeau;
citation_volume=11;
citation_firstpage=129;
">
<meta name="citation_reference" content="
citation_journal_title=Frontiers in Immunology;
citation_title=A Universal Vaccine against Leptospirosis: Are We Going in the Right Direction?;
citation_publication_date=2017;
citation_doi=10.3389/fimmu.2017.00256;
citation_pmid=28337203;
citation_author=AA Grassmann;
citation_author=JD Souza;
citation_author=AJ McBride;
citation_volume=8;
citation_firstpage=256;
">
<meta name="citation_reference" content="
citation_journal_title=Infection and Immunity;
citation_title=The leptospiral major outer membrane protein LipL32 is a lipoprotein expressed during mammalian infection;
citation_publication_date=2000;
citation_doi=10.1128/IAI.68.4.2276-2285.2000;
citation_pmid=10722630;
citation_author=DA Haake;
citation_author=G Chao;
citation_author=RL Zuerner;
citation_author=JK Barnett;
citation_author=D Barnett;
citation_author=M Mazel;
citation_author=J Matsunaga;
citation_author=PN Levett;
citation_author=CA Bolin;
citation_volume=68;
citation_firstpage=2276;
citation_lastpage=2285;
citation_pages=2276–2285;
">
<meta name="citation_reference" content="
citation_journal_title=Journal of Applied Crystallography;
citation_title=BioXTAS RAW: improvements to a free open-source program for small-angle X-ray scattering data reduction and analysis;
citation_publication_date=2017;
citation_doi=10.1107/S1600576717011438;
citation_pmid=29021737;
citation_author=JB Hopkins;
citation_author=RE Gillilan;
citation_author=S Skou;
citation_volume=50;
citation_firstpage=1545;
citation_lastpage=1553;
citation_pages=1545–1553;
">
<meta name="citation_reference" content="
citation_journal_title=PLOS Neglected Tropical Diseases;
citation_title=Leptospira immunoglobulin-like protein B (LigB) binds to both the C-terminal 23 amino acids of fibrinogen αC domain and factor XIII: insight into the mechanism of LigB-mediated blockage of fibrinogen α chain cross-linking;
citation_publication_date=2016;
citation_doi=10.1371/journal.pntd.0004974;
citation_pmid=27622634;
citation_author=CL Hsieh;
citation_author=E Chang;
citation_author=A Tseng;
citation_author=C Ptak;
citation_author=LC Wu;
citation_author=CL Su;
citation_author=SP McDonough;
citation_author=YP Lin;
citation_author=YF Chang;
citation_volume=10;
citation_firstpage=e0004974;
">
<meta name="citation_reference" content="
citation_journal_title=Journal of Molecular Biology;
citation_title=Human cardiac myosin binding protein C: structural flexibility within an extended modular architecture;
citation_publication_date=2011;
citation_doi=10.1016/j.jmb.2011.10.029;
citation_pmid=22041450;
citation_author=CM Jeffries;
citation_author=Y Lu;
citation_author=RM Hynson;
citation_author=JE Taylor;
citation_author=M Ballesteros;
citation_author=AH Kwan;
citation_author=J Trewhella;
citation_volume=414;
citation_firstpage=735;
citation_lastpage=748;
citation_pages=735–748;
">
<meta name="citation_reference" content="
citation_journal_title=Nature Reviews Microbiology;
citation_title=Leptospira: the dawn of the molecular genetics era for an emerging zoonotic pathogen;
citation_publication_date=2009;
citation_doi=10.1038/nrmicro2208;
citation_pmid=19756012;
citation_author=AI Ko;
citation_author=C Goarant;
citation_author=M Picardeau;
citation_volume=7;
citation_firstpage=736;
citation_lastpage=747;
citation_pages=736–747;
">
<meta name="citation_reference" content="
citation_journal_title=Current Opinion in Virology;
citation_title=Advances in structure-based vaccine design;
citation_publication_date=2013;
citation_doi=10.1016/j.coviro.2013.05.010;
citation_pmid=23806515;
citation_author=DW Kulp;
citation_author=WR Schief;
citation_volume=3;
citation_firstpage=322;
citation_lastpage=331;
citation_pages=322–331;
">
<meta name="citation_reference" content="
citation_journal_title=Journal of Vaccines & Vaccination;
citation_title=Immunogenicity of Leptospira interrogans Outer Membrane Vesicles in a Hamster Model;
citation_publication_date=2014;
citation_doi=10.4172/2157-7560.1000239;
citation_author=A Kunjantarachot;
citation_volume=05;
citation_firstpage=239;
">
<meta name="citation_reference" content="
citation_journal_title=PLOS Neglected Tropical Diseases;
citation_title=Distinct antibody responses of patients with mild and severe leptospirosis determined by whole proteome microarray analysis;
citation_publication_date=2017;
citation_doi=10.1371/journal.pntd.0005349;
citation_pmid=28141801;
citation_author=C Lessa-Aquino;
citation_author=JC Lindow;
citation_author=A Randall;
citation_author=E Wunder;
citation_author=J Pablo;
citation_author=R Nakajima;
citation_author=A Jasinskas;
citation_author=JS Cruz;
citation_author=AO Damião;
citation_author=N Nery;
citation_author=GS Ribeiro;
citation_author=F Costa;
citation_author=JE Hagan;
citation_author=MG Reis;
citation_author=AI Ko;
citation_author=MA Medeiros;
citation_author=PL Felgner;
citation_volume=11;
citation_firstpage=e0005349;
">
<meta name="citation_reference" content="
citation_journal_title=Journal of Medical Microbiology;
citation_title=Detection of pathogenic leptospires by real-time quantitative PCR;
citation_publication_date=2005;
citation_doi=10.1099/jmm.0.45860-0;
citation_pmid=15591254;
citation_author=PN Levett;
citation_author=RE Morey;
citation_author=RL Galloway;
citation_author=DE Turner;
citation_author=AG Steigerwalt;
citation_author=LW Mayer;
citation_volume=54;
citation_firstpage=45;
citation_lastpage=49;
citation_pages=45–49;
">
<meta name="citation_reference" content="
citation_journal_title=Journal of Biological Chemistry;
citation_title=Repeated domains of leptospira immunoglobulin-like proteins interact with elastin and tropoelastin;
citation_publication_date=2009;
citation_doi=10.1074/jbc.M109.004531;
citation_pmid=19473986;
citation_author=YP Lin;
citation_author=DW Lee;
citation_author=SP McDonough;
citation_author=LK Nicholson;
citation_author=Y Sharma;
citation_author=YF Chang;
citation_volume=284;
citation_firstpage=19380;
citation_lastpage=19391;
citation_pages=19380–19391;
">
<meta name="citation_reference" content="
citation_journal_title=Journal of Biological Chemistry;
citation_title=Fibronectin binds to and induces conformational change in a disordered region of leptospiral immunoglobulin-like protein B;
citation_publication_date=2009;
citation_doi=10.1074/jbc.M109.031369;
citation_pmid=19581300;
citation_author=YP Lin;
citation_author=A Greenwood;
citation_author=LK Nicholson;
citation_author=Y Sharma;
citation_author=SP McDonough;
citation_author=YF Chang;
citation_volume=284;
citation_firstpage=23547;
citation_lastpage=23557;
citation_pages=23547–23557;
">
<meta name="citation_reference" content="
citation_journal_title=Molecular Microbiology;
citation_title=Leptospira immunoglobulin-like protein B (LigB) binding to the C-terminal fibrinogen αC domain inhibits fibrin clot formation, platelet adhesion and aggregation;
citation_publication_date=2011;
citation_doi=10.1111/j.1365-2958.2010.07510.x;
citation_pmid=21219469;
citation_author=YP Lin;
citation_author=SP McDonough;
citation_author=Y Sharma;
citation_author=YF Chang;
citation_volume=79;
citation_firstpage=1063;
citation_lastpage=1076;
citation_pages=1063–1076;
">
<meta name="citation_reference" content="
citation_journal_title=PNAS;
citation_title=Structure of the meningococcal vaccine antigen NadA and epitope mapping of a bactericidal antibody;
citation_publication_date=2014;
citation_doi=10.1073/pnas.1419686111;
citation_pmid=25404323;
citation_author=E Malito;
citation_author=M Biancucci;
citation_author=A Faleri;
citation_author=I Ferlenghi;
citation_author=M Scarselli;
citation_author=G Maruggi;
citation_author=P Lo Surdo;
citation_author=D Veggi;
citation_author=A Liguori;
citation_author=L Santini;
citation_author=I Bertoldi;
citation_author=R Petracca;
citation_author=S Marchi;
citation_author=G Romagnoli;
citation_author=E Cartocci;
citation_author=I Vercellino;
citation_author=S Savino;
citation_author=G Spraggon;
citation_author=N Norais;
citation_author=M Pizza;
citation_author=R Rappuoli;
citation_author=V Masignani;
citation_author=MJ Bottomley;
citation_volume=111;
citation_firstpage=17128;
citation_lastpage=17133;
citation_pages=17128–17133;
">
<meta name="citation_reference" content="
citation_journal_title=The EMBO Journal;
citation_title=Crystal structure of the yeast Sac1: implications for its phosphoinositide phosphatase function;
citation_publication_date=2010;
citation_doi=10.1038/emboj.2010.57;
citation_pmid=20389282;
citation_author=A Manford;
citation_author=T Xia;
citation_author=AK Saxena;
citation_author=C Stefan;
citation_author=F Hu;
citation_author=SD Emr;
citation_author=Y Mao;
citation_volume=29;
citation_firstpage=1489;
citation_lastpage=1498;
citation_pages=1489–1498;
">
<meta name="citation_reference" content="
citation_journal_title=Molecular Microbiology;
citation_title=Pathogenic Leptospira species express surface-exposed proteins belonging to the bacterial immunoglobulin superfamily;
citation_publication_date=2003;
citation_doi=10.1046/j.1365-2958.2003.03619.x;
citation_pmid=12890019;
citation_author=J Matsunaga;
citation_author=MA Barocchi;
citation_author=J Croda;
citation_author=TA Young;
citation_author=Y Sanchez;
citation_author=I Siqueira;
citation_author=CA Bolin;
citation_author=MG Reis;
citation_author=LW Riley;
citation_author=DA Haake;
citation_author=AI Ko;
citation_volume=49;
citation_firstpage=929;
citation_lastpage=946;
citation_pages=929–946;
">
<meta name="citation_reference" content="
citation_journal_title=Infection, Genetics and Evolution;
citation_title=Genetic diversity of the Leptospiral immunoglobulin-like (Lig) genes in pathogenic Leptospira spp;
citation_publication_date=2009;
citation_doi=10.1016/j.meegid.2008.10.012;
citation_pmid=19028604;
citation_author=AJ McBride;
citation_author=GM Cerqueira;
citation_author=MA Suchard;
citation_author=AN Moreira;
citation_author=RL Zuerner;
citation_author=MG Reis;
citation_author=DA Haake;
citation_author=AI Ko;
citation_author=OA Dellagostin;
citation_volume=9;
citation_firstpage=196;
citation_lastpage=205;
citation_pages=196–205;
">
<meta name="citation_reference" content="
citation_journal_title=Nucleic Acids Research;
citation_title=Analysis Tool Web Services from the EMBL-EBI;
citation_publication_date=2013;
citation_doi=10.1093/nar/gkt376;
citation_pmid=23671338;
citation_author=H McWilliam;
citation_author=W Li;
citation_author=M Uludag;
citation_author=S Squizzato;
citation_author=YM Park;
citation_author=N Buso;
citation_author=AP Cowley;
citation_author=R Lopez;
citation_volume=41;
citation_firstpage=W597;
citation_lastpage=W600;
citation_pages=W597–W600;
">
<meta name="citation_reference" content="
citation_journal_title=PNAS;
citation_title=Accurate secondary structure prediction and fold recognition for circular dichroism spectroscopy;
citation_publication_date=2015;
citation_doi=10.1073/pnas.1500851112;
citation_pmid=26038575;
citation_author=A Micsonai;
citation_author=F Wien;
citation_author=L Kernya;
citation_author=YH Lee;
citation_author=Y Goto;
citation_author=M Réfrégiers;
citation_author=J Kardos;
citation_volume=112;
citation_firstpage=E3095;
citation_lastpage=E3103;
citation_pages=E3095–E3103;
">
<meta name="citation_reference" content="
citation_journal_title=PLoS One;
citation_title=Structural analysis of the C-terminal region (modules 18-20) of complement regulator factor H (FH);
citation_publication_date=2012;
citation_doi=10.1371/journal.pone.0032187;
citation_pmid=22389686;
citation_author=HP Morgan;
citation_author=HD Mertens;
citation_author=M Guariento;
citation_author=CQ Schmidt;
citation_author=DC Soares;
citation_author=DI Svergun;
citation_author=AP Herbert;
citation_author=PN Barlow;
citation_author=JP Hannan;
citation_volume=7;
citation_firstpage=e32187;
">
<meta name="citation_reference" content="
citation_journal_title=Journal of Clinical Microbiology;
citation_title=Use of luminescent Leptospira interrogans for enumeration in biological assays;
citation_publication_date=2010;
citation_doi=10.1128/JCM.02541-09;
citation_pmid=20375235;
citation_author=GL Murray;
citation_author=AM King;
citation_author=A Srikram;
citation_author=RW Sermswan;
citation_author=B Adler;
citation_volume=48;
citation_firstpage=2037;
citation_lastpage=2042;
citation_pages=2037–2042;
">
<meta name="citation_reference" content="
citation_journal_title=Journal of Applied Crystallography;
citation_title=Accuracy of molecular mass determination of proteins in solution by small-angle X-ray scattering;
citation_publication_date=2007;
citation_doi=10.1107/S002188980700252X;
citation_author=E Mylonas;
citation_author=DI Svergun;
citation_volume=40;
citation_firstpage=s245;
citation_lastpage=s249;
citation_pages=s245–s249;
">
<meta name="citation_reference" content="
citation_journal_title=Journal of Applied Crystallography;
citation_title=High-throughput biological small-angle X-ray scattering with a robotically loaded capillary cell;
citation_publication_date=2012;
citation_doi=10.1107/S0021889812000957;
citation_pmid=22509071;
citation_author=SS Nielsen;
citation_author=M Møller;
citation_author=RE Gillilan;
citation_volume=45;
citation_firstpage=213;
citation_lastpage=223;
citation_pages=213–223;
">
<meta name="citation_reference" content="
citation_journal_title=Infection and Immunity;
citation_title=Immunoprotection of recombinant leptospiral immunoglobulin-like protein A against Leptospira interrogans serovar Pomona infection;
citation_publication_date=2006;
citation_doi=10.1128/IAI.74.3.1745-1750.2006;
citation_pmid=16495547;
citation_author=RU Palaniappan;
citation_author=SP McDonough;
citation_author=TJ Divers;
citation_author=CS Chen;
citation_author=MJ Pan;
citation_author=M Matsumoto;
citation_author=YF Chang;
citation_volume=74;
citation_firstpage=1745;
citation_lastpage=1750;
citation_pages=1745–1750;
">
<meta name="citation_reference" content="
citation_journal_title=Veterinary Immunology and Immunopathology;
citation_title=Development and characterization of a monoclonal antibody specific for bovine CD209;
citation_publication_date=2015;
citation_doi=10.1016/j.vetimm.2014.12.008;
citation_pmid=25593043;
citation_author=KT Park;
citation_author=S Burnett;
citation_author=WC Davis;
citation_volume=163;
citation_firstpage=216;
citation_lastpage=220;
citation_pages=216–220;
">
<meta name="citation_reference" content="
citation_journal_title=Journal of Applied Crystallography;
citation_title=New developments in the ATSAS program package for small-angle scattering data analysis;
citation_publication_date=2012;
citation_doi=10.1107/S0021889812007662;
citation_pmid=25484842;
citation_author=MV Petoukhov;
citation_author=D Franke;
citation_author=AV Shkumatov;
citation_author=G Tria;
citation_author=AG Kikhney;
citation_author=M Gajda;
citation_author=C Gorba;
citation_author=HD Mertens;
citation_author=PV Konarev;
citation_author=DI Svergun;
citation_volume=45;
citation_firstpage=342;
citation_lastpage=350;
citation_pages=342–350;
">
<meta name="citation_reference" content="
citation_journal_title=Acta Crystallographica Section D Biological Crystallography;
citation_title=Ambiguity assessment of small-angle scattering curves from monodisperse systems;
citation_publication_date=2015;
citation_doi=10.1107/S1399004715002576;
citation_pmid=25945570;
citation_author=MV Petoukhov;
citation_author=DI Svergun;
citation_volume=71;
citation_firstpage=1051;
citation_lastpage=1058;
citation_pages=1051–1058;
">
<meta name="citation_reference" content="
citation_journal_title=Nature Reviews Microbiology;
citation_title=Virulence of the zoonotic agent of leptospirosis: still terra incognita?;
citation_publication_date=2017;
citation_doi=10.1038/nrmicro.2017.5;
citation_pmid=28260786;
citation_author=M Picardeau;
citation_volume=15;
citation_firstpage=297;
citation_lastpage=307;
citation_pages=297–307;
">
<meta name="citation_reference" content="
citation_journal_title=Biochemistry;
citation_title=NMR solution structure of the terminal immunoglobulin-like domain from the leptospira host-interacting outer membrane protein, LigB;
citation_publication_date=2014;
citation_doi=10.1021/bi500669u;
citation_pmid=25068811;
citation_author=CP Ptak;
citation_author=CL Hsieh;
citation_author=YP Lin;
citation_author=AS Maltsev;
citation_author=R Raman;
citation_author=Y Sharma;
citation_author=RE Oswald;
citation_author=YF Chang;
citation_volume=53;
citation_firstpage=5249;
citation_lastpage=5260;
citation_pages=5249–5260;
">
<meta name="citation_reference" content="
citation_journal_title=Quarterly Reviews of Biophysics;
citation_title=X-ray solution scattering (SAXS) combined with crystallography and computation: defining accurate macromolecular structures, conformations and assemblies in solution;
citation_publication_date=2007;
citation_doi=10.1017/S0033583507004635;
citation_pmid=18078545;
citation_author=CD Putnam;
citation_author=M Hammel;
citation_author=GL Hura;
citation_author=JA Tainer;
citation_volume=40;
citation_firstpage=191;
citation_lastpage=285;
citation_pages=191–285;
">
<meta name="citation_reference" content="
citation_journal_title=The Journal of Experimental Medicine;
citation_title=Reverse vaccinology 2.0: Human immunology instructs vaccine antigen design;
citation_publication_date=2016;
citation_doi=10.1084/jem.20151960;
citation_pmid=27022144;
citation_author=R Rappuoli;
citation_author=MJ Bottomley;
citation_author=U D'Oro;
citation_author=O Finco;
citation_author=E De Gregorio;
citation_volume=213;
citation_firstpage=469;
citation_lastpage=481;
citation_pages=469–481;
">
<meta name="citation_reference" content="
citation_journal_title=Science Translational Medicine;
citation_title=Rational design of a meningococcal antigen inducing broad protective immunity;
citation_publication_date=2011;
citation_doi=10.1126/scitranslmed.3002234;
citation_pmid=21753121;
citation_author=M Scarselli;
citation_author=B Aricò;
citation_author=B Brunelli;
citation_author=S Savino;
citation_author=F Di Marcello;
citation_author=E Palumbo;
citation_author=D Veggi;
citation_author=L Ciucchi;
citation_author=E Cartocci;
citation_author=MJ Bottomley;
citation_author=E Malito;