-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.xml
More file actions
1226 lines (924 loc) · 40 KB
/
index.xml
File metadata and controls
1226 lines (924 loc) · 40 KB
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
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Reeves & Jost Labs</title>
<link>/</link>
<description>Recent content on Reeves & Jost Labs</description>
<generator>Source Themes Academic (https://sourcethemes.com/academic/)</generator>
<language>en-us</language>
<lastBuildDate>Sun, 21 Mar 2021 00:00:00 +0000</lastBuildDate>
<atom:link href="/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Gallery</title>
<link>/gal/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>/gal/</guid>
<description>
<div class="gallery">
<a data-fancybox="gallery-IMAGES" href="/gal/IMAGES/31957611_10211887214991599_2194380842581622784_o.jpg" >
<img src="/gal/IMAGES/31957611_10211887214991599_2194380842581622784_o_hud2844500c318ee12de3653f5500c6ff4_212403_0x190_resize_q90_lanczos.jpg" alt="">
</a>
<a data-fancybox="gallery-IMAGES" href="/gal/IMAGES/57729621280__16475D26-E8BE-489C-9402-A101B5DF0277.JPG.jpeg" >
<img src="/gal/IMAGES/57729621280__16475D26-E8BE-489C-9402-A101B5DF0277.JPG_hudd3abb0862d24d834720e96f6b319b65_357080_0x190_resize_q90_lanczos.jpeg" alt="">
</a>
<a data-fancybox="gallery-IMAGES" href="/gal/IMAGES/DCA95C05-C3E8-4083-AF15-895C3BFBAFCE.jpeg" >
<img src="/gal/IMAGES/DCA95C05-C3E8-4083-AF15-895C3BFBAFCE_huaeb890407b7d391d6b50be1ba0f72572_115050_0x190_resize_q90_lanczos.jpeg" alt="">
</a>
<a data-fancybox="gallery-IMAGES" href="/gal/IMAGES/IMG_4104.jpg" >
<img src="/gal/IMAGES/IMG_4104_huf0f63d53c0e743fc2391b683475afdbc_128535_0x190_resize_q90_lanczos.jpg" alt="">
</a>
<a data-fancybox="gallery-IMAGES" href="/gal/IMAGES/group.jpg" >
<img src="/gal/IMAGES/group_hu67761311ca36da2e3f7b341fbe7cbbf5_418222_0x190_resize_q90_lanczos.jpg" alt="">
</a>
<a data-fancybox="gallery-IMAGES" href="/gal/IMAGES/image2.JPG" >
<img src="/gal/IMAGES/image2_huf1cc99891478e572dd7bf97e2a75ef4f_106359_0x190_resize_q90_lanczos.JPG" alt="">
</a>
<a data-fancybox="gallery-IMAGES" href="/gal/IMAGES/image5.jpeg" >
<img src="/gal/IMAGES/image5_hu617d0b5d805e869f62699ac2c82768d3_132531_0x190_resize_q90_lanczos.jpeg" alt="">
</a>
<a data-fancybox="gallery-IMAGES" href="/gal/IMAGES/jost2.jpg" >
<img src="/gal/IMAGES/jost2_hu6c78ff35b4132d98de500f269481adcf_1134068_0x190_resize_q90_lanczos.jpg" alt="">
</a>
<a data-fancybox="gallery-IMAGES" href="/gal/IMAGES/jost3.jpg" >
<img src="/gal/IMAGES/jost3_hufc918366b2585524503ce826015e690b_10957354_0x190_resize_q90_lanczos.jpg" alt="">
</a>
<a data-fancybox="gallery-IMAGES" href="/gal/IMAGES/jostlab.jpg" >
<img src="/gal/IMAGES/jostlab_hu043761c6c6b7e1e86b1772f86595aa46_10023424_0x190_resize_q90_lanczos.jpg" alt="">
</a>
</div>
</description>
</item>
<item>
<title>Systemic and mucosal mobilization of granulocyte subsets during lentivirus infection
</title>
<link>/publication/granulocyterxiv/</link>
<pubDate>Sun, 21 Mar 2021 00:00:00 +0000</pubDate>
<guid>/publication/granulocyterxiv/</guid>
<description></description>
</item>
<item>
<title>Friends or foes? The knowns and unknowns of natural killer cell biology in COVID-19 and other coronaviruses in July 2020.
</title>
<link>/publication/32845937/</link>
<pubDate>Sat, 01 Aug 2020 00:00:00 +0000</pubDate>
<guid>/publication/32845937/</guid>
<description></description>
</item>
<item>
<title>Skipped over - tuning NK cells towards HIV through alternative splicing.
</title>
<link>/publication/32862656/</link>
<pubDate>Sat, 01 Aug 2020 00:00:00 +0000</pubDate>
<guid>/publication/32862656/</guid>
<description></description>
</item>
<item>
<title>Characterization of Rhesus Macaque Liver-Resident CD49a+ NK Cells During Retrovirus Infections.
</title>
<link>/publication/32849583/</link>
<pubDate>Wed, 01 Jul 2020 00:00:00 +0000</pubDate>
<guid>/publication/32849583/</guid>
<description></description>
</item>
<item>
<title>Single-shot Ad26 vaccine protects against SARS-CoV-2 in rhesus macaques.
</title>
<link>/publication/32731257/</link>
<pubDate>Wed, 01 Jul 2020 00:00:00 +0000</pubDate>
<guid>/publication/32731257/</guid>
<description></description>
</item>
<item>
<title>Delineation and Modulation of the Natural Killer Cell Transcriptome in Rhesus Macaques During ZIKV and SIV Infections.
</title>
<link>/publication/32411625/</link>
<pubDate>Wed, 01 Apr 2020 00:00:00 +0000</pubDate>
<guid>/publication/32411625/</guid>
<description></description>
</item>
<item>
<title>Functional perturbation of mucosal group 3 innate lymphoid and natural killer cells in SHIV/SIV-infected infant rhesus macaques.
</title>
<link>/publication/31801861/</link>
<pubDate>Sun, 01 Dec 2019 00:00:00 +0000</pubDate>
<guid>/publication/31801861/</guid>
<description></description>
</item>
<item>
<title>Brief Report: Decreased JC Virus-Specific Antibody-Dependent Cellular Cytotoxicity in HIV-Seropositive PML Survivors.
</title>
<link>/publication/31513076/</link>
<pubDate>Tue, 01 Oct 2019 00:00:00 +0000</pubDate>
<guid>/publication/31513076/</guid>
<description></description>
</item>
<item>
<title>Impact of CMV Infection on Natural Killer Cell Clonal Repertoire in CMV-Nave Rhesus Macaques.
</title>
<link>/publication/31649681/</link>
<pubDate>Tue, 01 Oct 2019 00:00:00 +0000</pubDate>
<guid>/publication/31649681/</guid>
<description></description>
</item>
<item>
<title>A Natural Impact: NK Cells at the Intersection of Cancer and HIV Disease.
</title>
<link>/publication/31474977/</link>
<pubDate>Thu, 01 Aug 2019 00:00:00 +0000</pubDate>
<guid>/publication/31474977/</guid>
<description></description>
</item>
<item>
<title>HARVARD HIV AND AGING WORKSHOP: PERSPECTIVES AND PRIORITIES FROM CLAUDE D. PEPPER CENTERS AND CENTERS FOR AIDS RESEARCH.
</title>
<link>/publication/31456412/</link>
<pubDate>Thu, 01 Aug 2019 00:00:00 +0000</pubDate>
<guid>/publication/31456412/</guid>
<description></description>
</item>
<item>
<title>NK Cells Contribute to the Immune Risk Profile in Kidney Transplant Candidates.
</title>
<link>/publication/31507586/</link>
<pubDate>Thu, 01 Aug 2019 00:00:00 +0000</pubDate>
<guid>/publication/31507586/</guid>
<description></description>
</item>
<item>
<title>Silent damage? Occult HCV replication and histological disease may occur following apparent HCV clearance.
</title>
<link>/publication/31444146/</link>
<pubDate>Thu, 01 Aug 2019 00:00:00 +0000</pubDate>
<guid>/publication/31444146/</guid>
<description></description>
</item>
<item>
<title>CytoDRAV</title>
<link>/project/cytodrav/</link>
<pubDate>Tue, 25 Jun 2019 00:00:00 +0000</pubDate>
<guid>/project/cytodrav/</guid>
<description></description>
</item>
<item>
<title>Transcriptomic Signatures of HIV-specific NK Clones</title>
<link>/project/transcriptomic-clones/</link>
<pubDate>Tue, 25 Jun 2019 00:00:00 +0000</pubDate>
<guid>/project/transcriptomic-clones/</guid>
<description><p>Utilizing RNA-seq technologies, I am trying to understand the underlying mechanisms of NK cell memory responses towards HIV and CMV.</p>
</description>
</item>
<item>
<title>Welcome</title>
<link>/post/welcome/</link>
<pubDate>Mon, 24 Jun 2019 00:00:00 +0000</pubDate>
<guid>/post/welcome/</guid>
<description><p>Hello and welcome to the new home for the Reeves and Jost Labs!</p>
<p>The goal of this new website is to offer a better understanding of the work we do and how it fits into the broader view of understanding the underlying mechanisms of HIV/SIV and CMV infections.</p>
</description>
</item>
<item>
<title>SIV infection modulates CD94 (KLRD1)+ NK cells in rhesus macaques.
</title>
<link>/publication/31167916/</link>
<pubDate>Sat, 01 Jun 2019 00:00:00 +0000</pubDate>
<guid>/publication/31167916/</guid>
<description></description>
</item>
<item>
<title>Knowns and Unknowns of Assaying Antibody-Dependent Cell-Mediated Cytotoxicity Against HIV-1.
</title>
<link>/publication/31134085/</link>
<pubDate>Wed, 01 May 2019 00:00:00 +0000</pubDate>
<guid>/publication/31134085/</guid>
<description></description>
</item>
<item>
<title>Monkeying Around: Using Non-human Primate Models to Study NK Cell Biology in HIV Infections.
</title>
<link>/publication/31191520/</link>
<pubDate>Wed, 01 May 2019 00:00:00 +0000</pubDate>
<guid>/publication/31191520/</guid>
<description></description>
</item>
<item>
<title>Semaphorin 7A modulates cytokine-induced memory-like responses by human natural killer cells.
</title>
<link>/publication/31016720/</link>
<pubDate>Mon, 01 Apr 2019 00:00:00 +0000</pubDate>
<guid>/publication/31016720/</guid>
<description></description>
</item>
<item>
<title>Non-linear multidimensional flow cytometry analyses delineate NK cell phenotypes in normal and HIV-infected chimpanzees.
</title>
<link>/publication/30418531/</link>
<pubDate>Fri, 01 Mar 2019 00:00:00 +0000</pubDate>
<guid>/publication/30418531/</guid>
<description></description>
</item>
<item>
<title>Adaptive NK cell responses in HIV/SIV infections: A roadmap to cell-based therapeutics?
</title>
<link>/publication/30730588/</link>
<pubDate>Fri, 01 Feb 2019 00:00:00 +0000</pubDate>
<guid>/publication/30730588/</guid>
<description></description>
</item>
<item>
<title>CMV Primes Functional Alternative Signaling in Adaptive g NK Cells but Is Subverted by Lentivirus Infection in Rhesus Macaques.
</title>
<link>/publication/30517864/</link>
<pubDate>Sat, 01 Dec 2018 00:00:00 +0000</pubDate>
<guid>/publication/30517864/</guid>
<description></description>
</item>
<item>
<title>Cytokine-Mediated Tissue Injury in Non-human Primate Models of Viral Infections.
</title>
<link>/publication/30568659/</link>
<pubDate>Sat, 01 Dec 2018 00:00:00 +0000</pubDate>
<guid>/publication/30568659/</guid>
<description></description>
</item>
<item>
<title>Hallmarks of primate lentiviral immunodeficiency infection recapitulate loss of innate lymphoid cells.
</title>
<link>/publication/30262807/</link>
<pubDate>Sat, 01 Sep 2018 00:00:00 +0000</pubDate>
<guid>/publication/30262807/</guid>
<description></description>
</item>
<item>
<title>Indirect activation of rhesus macaque (Macaca mulatta) NK cells in oral and mucosal draining lymph nodes.
</title>
<link>/publication/30256418/</link>
<pubDate>Sat, 01 Sep 2018 00:00:00 +0000</pubDate>
<guid>/publication/30256418/</guid>
<description></description>
</item>
<item>
<title>Progressive lentivirus infection induces natural killer cell receptor-expressing B cells in the gastrointestinal tract.
</title>
<link>/publication/29734222/</link>
<pubDate>Sun, 01 Jul 2018 00:00:00 +0000</pubDate>
<guid>/publication/29734222/</guid>
<description></description>
</item>
<item>
<title>Intestinal damage precedes mucosal immune dysfunction in SIV infection.
</title>
<link>/publication/29907866/</link>
<pubDate>Fri, 01 Jun 2018 00:00:00 +0000</pubDate>
<guid>/publication/29907866/</guid>
<description></description>
</item>
<item>
<title>NK-cell activation is associated with increased HIV transcriptional activity following allogeneic hematopoietic cell transplantation.
</title>
<link>/publication/29921650/</link>
<pubDate>Fri, 01 Jun 2018 00:00:00 +0000</pubDate>
<guid>/publication/29921650/</guid>
<description></description>
</item>
<item>
<title>Adenovirus Vector Vaccination Impacts NK Cell Rheostat Function following Lymphocytic Choriomeningitis Virus Infection.
</title>
<link>/publication/29514912/</link>
<pubDate>Tue, 01 May 2018 00:00:00 +0000</pubDate>
<guid>/publication/29514912/</guid>
<description></description>
</item>
<item>
<title>Exosome markers associated with immune activation and oxidative stress in HIV patients on antiretroviral therapy.
</title>
<link>/publication/29740045/</link>
<pubDate>Tue, 01 May 2018 00:00:00 +0000</pubDate>
<guid>/publication/29740045/</guid>
<description></description>
</item>
<item>
<title>Human Herpes Virus 8 in HIV-1 infected individuals receiving cancer chemotherapy and stem cell transplantation.
</title>
<link>/publication/29746555/</link>
<pubDate>Tue, 01 May 2018 00:00:00 +0000</pubDate>
<guid>/publication/29746555/</guid>
<description></description>
</item>
<item>
<title>Tracking KLRC2 (NKG2C)+ memory-like NK cells in SIV+ and rhCMV+ rhesus macaques.
</title>
<link>/publication/29851983/</link>
<pubDate>Tue, 01 May 2018 00:00:00 +0000</pubDate>
<guid>/publication/29851983/</guid>
<description></description>
</item>
<item>
<title>Lymph Node Cellular and Viral Dynamics in Natural Hosts and Impact for HIV Cure Strategies.
</title>
<link>/publication/29725327/</link>
<pubDate>Sun, 01 Apr 2018 00:00:00 +0000</pubDate>
<guid>/publication/29725327/</guid>
<description></description>
</item>
<item>
<title>Short Communication: Apoptotic Membrane Microparticles Quantified by Fluorescent Bead-Based Assay Are Elevated in HIV and SIV Infections.
</title>
<link>/publication/29486582/</link>
<pubDate>Thu, 01 Mar 2018 00:00:00 +0000</pubDate>
<guid>/publication/29486582/</guid>
<description></description>
</item>
<item>
<title>Innate Lymphoid Cells in HIV/SIV Infections.
</title>
<link>/publication/29326704/</link>
<pubDate>Fri, 01 Dec 2017 00:00:00 +0000</pubDate>
<guid>/publication/29326704/</guid>
<description></description>
</item>
<item>
<title>A mouse model for hepatitis C virus infection: are we there yet?
</title>
<link>/publication/30123888/</link>
<pubDate>Wed, 01 Nov 2017 00:00:00 +0000</pubDate>
<guid>/publication/30123888/</guid>
<description></description>
</item>
<item>
<title>Natural killer cells migrate into and control simian immunodeficiency virus replication in lymph node follicles in African green monkeys.
</title>
<link>/publication/29035370/</link>
<pubDate>Sun, 01 Oct 2017 00:00:00 +0000</pubDate>
<guid>/publication/29035370/</guid>
<description></description>
</item>
<item>
<title>Hepatic immunopathology during occult hepacivirus re-infection.
</title>
<link>/publication/28915405/</link>
<pubDate>Fri, 01 Sep 2017 00:00:00 +0000</pubDate>
<guid>/publication/28915405/</guid>
<description></description>
</item>
<item>
<title>Redefining Memory: Building the Case for Adaptive NK Cells.
</title>
<link>/publication/28794018/</link>
<pubDate>Fri, 01 Sep 2017 00:00:00 +0000</pubDate>
<guid>/publication/28794018/</guid>
<description></description>
</item>
<item>
<title>HIV-1-Mediated Downmodulation of HLA-C Impacts Target Cell Recognition and Antiviral Activity of NK Cells.
</title>
<link>/publication/28704647/</link>
<pubDate>Sat, 01 Jul 2017 00:00:00 +0000</pubDate>
<guid>/publication/28704647/</guid>
<description></description>
</item>
<item>
<title>Human Immunodeficiency Virus Type 1 Persistence Following Systemic Chemotherapy for Malignancy.
</title>
<link>/publication/28838149/</link>
<pubDate>Sat, 01 Jul 2017 00:00:00 +0000</pubDate>
<guid>/publication/28838149/</guid>
<description></description>
</item>
<item>
<title>Metabolic Dysregulation in Hepacivirus Infection of Common Marmosets (Callithrix jacchus).
</title>
<link>/publication/28085952/</link>
<pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
<guid>/publication/28085952/</guid>
<description></description>
</item>
<item>
<title>Increased frequencies of CD8+CD57+ T cells are associated with antibody neutralization breadth against HIV in viraemic controllers.
</title>
<link>/publication/27938646/</link>
<pubDate>Thu, 01 Dec 2016 00:00:00 +0000</pubDate>
<guid>/publication/27938646/</guid>
<description></description>
</item>
<item>
<title>Persistent Low-Level Replication of SIVnef Drives Maturation of Antibody and CD8 T Cell Responses to Induce Protective Immunity against Vaginal SIV Infection.
</title>
<link>/publication/27959961/</link>
<pubDate>Thu, 01 Dec 2016 00:00:00 +0000</pubDate>
<guid>/publication/27959961/</guid>
<description></description>
</item>
<item>
<title>Acute Liver Damage Associated with Innate Immune Activation in a Small Nonhuman Primate Model of Hepacivirus Infection.
</title>
<link>/publication/27489267/</link>
<pubDate>Thu, 01 Sep 2016 00:00:00 +0000</pubDate>
<guid>/publication/27489267/</guid>
<description></description>
</item>
<item>
<title>Open conformers of HLA-F are high-affinity ligands of the activating NK-cell receptor KIR3DS1.
</title>
<link>/publication/27455421/</link>
<pubDate>Fri, 01 Jul 2016 00:00:00 +0000</pubDate>
<guid>/publication/27455421/</guid>
<description></description>
</item>
<item>
<title>Effects of Fecal Microbial Transplantation on Microbiome and Immunity in Simian Immunodeficiency Virus-Infected Macaques.
</title>
<link>/publication/26937040/</link>
<pubDate>Fri, 01 Apr 2016 00:00:00 +0000</pubDate>
<guid>/publication/26937040/</guid>
<description></description>
</item>
<item>
<title>Enhancement of Microbiota in Healthy Macaques Results in Beneficial Modulation of Mucosal and Systemic Immune Function.
</title>
<link>/publication/26826246/</link>
<pubDate>Fri, 01 Jan 2016 00:00:00 +0000</pubDate>
<guid>/publication/26826246/</guid>
<description></description>
</item>
<item>
<title>Influence of Glycosylation Inhibition on the Binding of KIR3DL1 to HLA-B*57:01.
</title>
<link>/publication/26680341/</link>
<pubDate>Tue, 01 Dec 2015 00:00:00 +0000</pubDate>
<guid>/publication/26680341/</guid>
<description></description>
</item>
<item>
<title>Naturally Occurring Subclinical Endotoxemia in Humans Alters Adaptive and Innate Immune Functions through Reduced MAPK and Increased STAT1 Phosphorylation.
</title>
<link>/publication/26643479/</link>
<pubDate>Tue, 01 Dec 2015 00:00:00 +0000</pubDate>
<guid>/publication/26643479/</guid>
<description></description>
</item>
<item>
<title>CCR5-32 Heterozygosity, HIV-1 Reservoir Size, and Lymphocyte Activation in Individuals Receiving Long-term Suppressive Antiretroviral Therapy.
</title>
<link>/publication/26512140/</link>
<pubDate>Thu, 01 Oct 2015 00:00:00 +0000</pubDate>
<guid>/publication/26512140/</guid>
<description></description>
</item>
<item>
<title>NK cell exhaustion: bad news for chronic disease?
</title>
<link>/publication/26392410/</link>
<pubDate>Tue, 01 Sep 2015 00:00:00 +0000</pubDate>
<guid>/publication/26392410/</guid>
<description></description>
</item>
<item>
<title>SIV-induced Translocation of Bacterial Products in the Liver Mobilizes Myeloid Dendritic and Natural Killer Cells Associated With Liver Damage.
</title>
<link>/publication/26238685/</link>
<pubDate>Sat, 01 Aug 2015 00:00:00 +0000</pubDate>
<guid>/publication/26238685/</guid>
<description></description>
</item>
<item>
<title>Antigen-specific NK cell memory in rhesus macaques.
</title>
<link>/publication/26193080/</link>
<pubDate>Wed, 01 Jul 2015 00:00:00 +0000</pubDate>
<guid>/publication/26193080/</guid>
<description></description>
</item>
<item>
<title>Accumulation of Cytotoxic CD16+ NK Cells in Simian Immunodeficiency Virus-Infected Lymph Nodes Associated with In Situ Differentiation and Functional Anergy.
</title>
<link>/publication/25903330/</link>
<pubDate>Wed, 01 Apr 2015 00:00:00 +0000</pubDate>
<guid>/publication/25903330/</guid>
<description></description>
</item>
<item>
<title>Characterization of CD8+ T cell differentiation following SIVnef vaccination by transcription factor expression profiling.
</title>
<link>/publication/25768938/</link>
<pubDate>Sun, 01 Mar 2015 00:00:00 +0000</pubDate>
<guid>/publication/25768938/</guid>
<description></description>
</item>
<item>
<title>CD8 T cell response maturation defined by anentropic specificity and repertoire depth correlates with SIVnef-induced protection.
</title>
<link>/publication/25688559/</link>
<pubDate>Sun, 01 Feb 2015 00:00:00 +0000</pubDate>
<guid>/publication/25688559/</guid>
<description></description>
</item>
<item>
<title>Bone marrow-imprinted gut-homing of plasmacytoid dendritic cells (pDCs) in acute simian immunodeficiency virus infection results in massive accumulation of hyperfunctional CD4+ pDCs in the mucosae.
</title>
<link>/publication/25489000/</link>
<pubDate>Mon, 01 Dec 2014 00:00:00 +0000</pubDate>
<guid>/publication/25489000/</guid>
<description></description>
</item>
<item>
<title>Depletion of lamina propria innate lymphoid cells in simian immunodeficiency virus infection.
</title>
<link>/publication/25469593/</link>
<pubDate>Mon, 01 Dec 2014 00:00:00 +0000</pubDate>
<guid>/publication/25469593/</guid>
<description></description>
</item>
<item>
<title>Hypercytotoxicity and rapid loss of NKp44+ innate lymphoid cells during acute SIV infection.
</title>
<link>/publication/25503264/</link>
<pubDate>Mon, 01 Dec 2014 00:00:00 +0000</pubDate>
<guid>/publication/25503264/</guid>
<description></description>
</item>
<item>
<title>Modeling HCV disease in animals: virology, immunology and pathogenesis of HCV and GBV-B infections.
</title>
<link>/publication/25538700/</link>
<pubDate>Mon, 01 Dec 2014 00:00:00 +0000</pubDate>
<guid>/publication/25538700/</guid>
<description></description>
</item>
<item>
<title>Short communication: Plasmacytoid dendritic cells from HIV-1 Elite Controllers maintain a gut-homing phenotype associated with immune activation.
</title>
<link>/publication/25387330/</link>
<pubDate>Mon, 01 Dec 2014 00:00:00 +0000</pubDate>
<guid>/publication/25387330/</guid>
<description></description>
</item>
<item>
<title>Transcriptional profiling of peripheral CD8+T cell responses to SIVnef and SIVmac251 challenge reveals a link between protective immunity and induction of systemic immunoregulatory mechanisms.
</title>
<link>/publication/25282469/</link>
<pubDate>Wed, 01 Oct 2014 00:00:00 +0000</pubDate>
<guid>/publication/25282469/</guid>
<description></description>
</item>
<item>
<title>Enhanced immune activation linked to endotoxemia in HIV-1 seronegative MSM.
</title>
<link>/publication/25003719/</link>
<pubDate>Mon, 01 Sep 2014 00:00:00 +0000</pubDate>
<guid>/publication/25003719/</guid>
<description></description>
</item>
<item>
<title>Increased frequency and function of KIR2DL1-3 NK cells in primary HIV-1 infection are determined by HLA-C group haplotypes.
</title>
<link>/publication/25043727/</link>
<pubDate>Fri, 01 Aug 2014 00:00:00 +0000</pubDate>
<guid>/publication/25043727/</guid>
<description></description>
</item>
<item>
<title>Live simian immunodeficiency virus vaccine correlate of protection: local antibody production and concentration on the path of virus entry.
</title>
<link>/publication/25135832/</link>
<pubDate>Fri, 01 Aug 2014 00:00:00 +0000</pubDate>
<guid>/publication/25135832/</guid>
<description></description>
</item>
<item>
<title>NK cell responses to simian immunodeficiency virus vaginal exposure in naive and vaccinated rhesus macaques.
</title>
<link>/publication/24899503/</link>
<pubDate>Sun, 01 Jun 2014 00:00:00 +0000</pubDate>
<guid>/publication/24899503/</guid>
<description></description>
</item>
<item>
<title>CD4+ T-cell help enhances NK cell function following therapeutic HIV-1 vaccination.
</title>
<link>/publication/24829350/</link>
<pubDate>Thu, 01 May 2014 00:00:00 +0000</pubDate>
<guid>/publication/24829350/</guid>
<description></description>
</item>
<item>
<title>Location and dynamics of the immunodominant CD8 T cell response to SIVnef immunization and SIVmac251 vaginal challenge.
</title>
<link>/publication/24349100/</link>
<pubDate>Sun, 01 Dec 2013 00:00:00 +0000</pubDate>
<guid>/publication/24349100/</guid>
<description></description>
</item>
<item>
<title>Characterization of circulating natural killer cells in neotropical primates.
</title>
<link>/publication/24244365/</link>
<pubDate>Fri, 01 Nov 2013 00:00:00 +0000</pubDate>
<guid>/publication/24244365/</guid>
<description></description>
</item>
<item>
<title>Monkeypox virus infection of rhesus macaques induces massive expansion of natural killer cells but suppresses natural killer cell functions.
</title>
<link>/publication/24147080/</link>
<pubDate>Tue, 01 Oct 2013 00:00:00 +0000</pubDate>
<guid>/publication/24147080/</guid>
<description></description>
</item>
<item>
<title>Multi-functional plasmacytoid dendritic cells redistribute to gut tissues during simian immunodeficiency virus infection.
</title>
<link>/publication/23746074/</link>
<pubDate>Tue, 01 Oct 2013 00:00:00 +0000</pubDate>
<guid>/publication/23746074/</guid>
<description></description>
</item>
<item>
<title>All-trans-retinoic acid imprints expression of the gut-homing marker 47 while suppressing lymph node homing of dendritic cells.
</title>
<link>/publication/23966557/</link>
<pubDate>Thu, 01 Aug 2013 00:00:00 +0000</pubDate>
<guid>/publication/23966557/</guid>
<description></description>
</item>
<item>
<title>Dysregulated Tim-3 expression on natural killer cells is associated with increased Galectin-9 levels in HIV-1 infection.
</title>
<link>/publication/23866914/</link>
<pubDate>Mon, 01 Jul 2013 00:00:00 +0000</pubDate>
<guid>/publication/23866914/</guid>
<description></description>
</item>
<item>
<title>Loss of bone marrow NK cells during SIV infection is associated with increased turnover rates and cytotoxicity but not changes in trafficking.
</title>
<link>/publication/23898936/</link>
<pubDate>Mon, 01 Jul 2013 00:00:00 +0000</pubDate>
<guid>/publication/23898936/</guid>
<description></description>
</item>
<item>
<title>No monkey business: why studying NK cells in non-human primates pays off.
</title>
<link>/publication/23423644/</link>
<pubDate>Fri, 01 Feb 2013 00:00:00 +0000</pubDate>
<guid>/publication/23423644/</guid>
<description></description>
</item>
<item>
<title>Control of human viral infections by natural killer cells.
</title>
<link>/publication/23298212/</link>
<pubDate>Tue, 01 Jan 2013 00:00:00 +0000</pubDate>
<guid>/publication/23298212/</guid>
<description></description>
</item>
<item>
<title>Functional perturbation of classical natural killer and innate lymphoid cells in the oral mucosa during SIV infection.
</title>
<link>/publication/23316201/</link>
<pubDate>Tue, 01 Jan 2013 00:00:00 +0000</pubDate>
<guid>/publication/23316201/</guid>
<description></description>
</item>
<item>
<title>Complex rectovaginal fistulas after pelvic organ prolapse repair with synthetic mesh: a multidisciplinary approach to evaluation and management.
</title>
<link>/publication/23143433/</link>
<pubDate>Thu, 01 Nov 2012 00:00:00 +0000</pubDate>
<guid>/publication/23143433/</guid>
<description></description>
</item>
<item>
<title>ADCC develops over time during persistent infection with live-attenuated SIV and is associated with complete protection against SIV(mac)251 challenge.
</title>
<link>/publication/22927823/</link>
<pubDate>Wed, 01 Aug 2012 00:00:00 +0000</pubDate>
<guid>/publication/22927823/</guid>
<description></description>
</item>
<item>
<title>Harnessing innate and adaptive immunity for viral vaccine design.
</title>
<link>/publication/22913253/</link>
<pubDate>Sun, 01 Jul 2012 00:00:00 +0000</pubDate>
<guid>/publication/22913253/</guid>
<description></description>
</item>
<item>
<title>SIV infection induces accumulation of plasmacytoid dendritic cells in the gut mucosa.
</title>
<link>/publication/22711907/</link>
<pubDate>Fri, 01 Jun 2012 00:00:00 +0000</pubDate>
<guid>/publication/22711907/</guid>
<description></description>
</item>
<item>
<title>Evasion from NK cell-mediated immune responses by HIV-1.
</title>
<link>/publication/22626930/</link>
<pubDate>Tue, 01 May 2012 00:00:00 +0000</pubDate>
<guid>/publication/22626930/</guid>
<description></description>
</item>
<item>
<title>Changes in cytokine levels and NK cell activation associated with influenza.
</title>
<link>/publication/21966414/</link>
<pubDate>Thu, 01 Sep 2011 00:00:00 +0000</pubDate>
<guid>/publication/21966414/</guid>
<description></description>
</item>
<item>
<title>Gut inflammation and indoleamine deoxygenase inhibit IL-17 production and promote cytotoxic potential in NKp44+ mucosal NK cells during SIV infection.
</title>
<link>/publication/21791421/</link>
<pubDate>Fri, 01 Jul 2011 00:00:00 +0000</pubDate>
<guid>/publication/21791421/</guid>
<description></description>
</item>
<item>
<title>Characterization of killer immunoglobulin-like receptor genetics and comprehensive genotyping by pyrosequencing in rhesus macaques.
</title>
<link>/publication/21645414/</link>
<pubDate>Wed, 01 Jun 2011 00:00:00 +0000</pubDate>