Spaces:
Runtime error
Runtime error
File size: 69,946 Bytes
c7ced0b |
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 |
x y Celltype Name
2.5536788 -4.6070466 cd4-positive, alpha-beta memory t cell USP20
4.4950237 10.815107 cd4-positive, alpha-beta memory t cell CCND3
-15.9897995 6.430505 cd4-positive, alpha-beta memory t cell KCNAB2
4.2288465 -10.133349 cd4-positive, alpha-beta memory t cell SLA2
-4.8228226 1.5426141 cd4-positive, alpha-beta memory t cell RPL24
-13.837962 0.10808701 cd4-positive, alpha-beta memory t cell STAT5B
-0.38406608 13.209411 cd4-positive, alpha-beta memory t cell HLA-B
-14.310585 0.99947184 cd4-positive, alpha-beta memory t cell DDX5
4.271834 -11.045252 cd4-positive, alpha-beta memory t cell PTTG1
3.1421003 10.518126 cd4-positive, alpha-beta memory t cell GPATCH8
-15.556676 4.3926167 cd4-positive, alpha-beta memory t cell CALM1
-4.832187 2.6576142 cd4-positive, alpha-beta memory t cell RPS5
4.543072 -8.165697 cd4-positive, alpha-beta memory t cell ITGA4
3.9180486 -10.89879 cd4-positive, alpha-beta memory t cell PPBP
0.38421145 -2.7255385 cd4-positive, alpha-beta memory t cell FHIT
-3.6939876 1.103545 cd4-positive, alpha-beta memory t cell LAPTM5
1.2075932 -17.922228 cd4-positive, alpha-beta memory t cell CIRBP
-3.7211344 2.0866947 cd4-positive, alpha-beta memory t cell RPS3A
0.54104286 -18.814602 cd4-positive, alpha-beta memory t cell C10orf67
0.4919059 -18.6435 cd4-positive, alpha-beta memory t cell KIF5C
1.2113748 -16.172224 cd4-positive, alpha-beta memory t cell CYFIP2
5.0908494 -4.288626 cd4-positive, alpha-beta memory t cell ZBTB38
-5.2512693 1.4364711 cd4-positive, alpha-beta memory t cell VMAC
-13.056575 -0.017068993 cd4-positive, alpha-beta memory t cell GTF2B
-3.8069155 0.90558517 cd4-positive, alpha-beta memory t cell AMIGO1
4.500984 -10.566769 cd4-positive, alpha-beta memory t cell CDKN2D
1.6313654 -17.227663 cd4-positive, alpha-beta memory t cell TNFRSF1B
4.3583446 11.15518 cd4-positive, alpha-beta memory t cell EDAR
0.48092386 -18.177698 cd4-positive, alpha-beta memory t cell BIN1
4.329318 -9.917811 cd4-positive, alpha-beta memory t cell LY9
5.300823 -5.3724413 cd4-positive, alpha-beta memory t cell RNF4
4.4882817 -11.519249 cd4-positive, alpha-beta memory t cell HDAC1
4.7283187 -6.9790864 cd4-positive, alpha-beta memory t cell ESR2
7.118941 1.9371895 cd4-positive, alpha-beta memory t cell MAP3K1
5.5385866 -11.521187 cd4-positive, alpha-beta memory t cell NPM1
4.330444 -12.826967 cd4-positive, alpha-beta memory t cell CCR3
3.8643522 -11.659547 cd4-positive, alpha-beta memory t cell RPL23A
4.2216306 -12.970148 cd4-positive, alpha-beta memory t cell HNRNPH1
-15.151597 4.139559 cd4-positive, alpha-beta memory t cell MAD2L1
-14.0199795 2.4144735 cd4-positive, alpha-beta memory t cell RWDD3
4.2557583 -7.985855 cd4-positive, alpha-beta memory t cell C21orf91
2.8321567 9.930074 cd4-positive, alpha-beta memory t cell GRAP
-0.55797935 -1.0447105 cd4-positive, alpha-beta memory t cell PRMT2
-16.728958 5.724596 cd4-positive, alpha-beta memory t cell RPS10
3.126473 10.553834 cd4-positive, alpha-beta memory t cell RFFL
5.5886827 -11.871416 cd4-positive, alpha-beta memory t cell ITPRIPL1
-0.7195346 -0.75541824 cd4-positive, alpha-beta memory t cell RPL36AL
0.7657281 -18.510794 cd4-positive, alpha-beta memory t cell RBL2
5.2345486 -4.3067884 cd4-positive, alpha-beta memory t cell EEF1B2
4.252538 -10.362556 cd4-positive, alpha-beta memory t cell HLA-A
1.9536843 -18.484884 cd4-positive, alpha-beta memory t cell AARSD1
3.831586 -11.738706 cd4-positive, alpha-beta memory t cell PTMA
-5.474169 2.0792341 cd4-positive, alpha-beta memory t cell ANK3
-15.1842785 4.8057756 cd4-positive, alpha-beta memory t cell RPL17
5.1701336 -4.6950274 cd4-positive, alpha-beta memory t cell DOK2
-13.674881 1.7369734 cd4-positive, alpha-beta memory t cell RACK1
-13.530389 8.466769 cd4-positive, alpha-beta memory t cell STK38
-14.703024 2.4562457 cd4-positive, alpha-beta memory t cell RPS18
5.6097603 -12.05879 cd4-positive, alpha-beta memory t cell GATA3
4.6979365 11.471016 cd4-positive, alpha-beta memory t cell RPS2
4.296551 -10.80316 cd4-positive, alpha-beta memory t cell RPL8
4.4396095 -6.6856523 cd4-positive, alpha-beta memory t cell TTC14
-15.909174 6.557125 cd4-positive, alpha-beta memory t cell ITK
5.7091136 -9.7994 cd4-positive, alpha-beta memory t cell SIT1
4.0426717 -11.957364 cd4-positive, alpha-beta memory t cell JOSD1
-15.839286 5.495884 cd4-positive, alpha-beta memory t cell B2M
3.3590088 11.481997 cd4-positive, alpha-beta memory t cell HBG2
3.9273667 -11.300803 cd4-positive, alpha-beta memory t cell CSGALNACT1
3.708522 -10.713411 cd4-positive, alpha-beta memory t cell TXNIP
2.619057 11.541043 cd4-positive, alpha-beta memory t cell AKAP7
1.6224033 -18.602991 cd4-positive, alpha-beta memory t cell PPP3CC
4.536128 11.241324 cd4-positive, alpha-beta memory t cell PLCH2
4.4102755 -9.904421 cd4-positive, alpha-beta memory t cell KLHL3
3.6126163 -10.100916 cd4-positive, alpha-beta memory t cell ARHGAP4
-4.776844 1.5953 cd4-positive, alpha-beta memory t cell GTF3A
-3.1078975 0.979481 cd4-positive, alpha-beta memory t cell ZBTB32
7.3909636 2.3456395 cd4-positive, alpha-beta memory t cell TPT1
5.781068 -10.925801 cd4-positive, alpha-beta memory t cell ZNFX1
4.4666195 -9.926388 cd4-positive, alpha-beta memory t cell CREM
4.1113105 -11.587267 cd4-positive, alpha-beta memory t cell BTG1
1.3348309 -16.490423 cd4-positive, alpha-beta memory t cell GLIPR1
4.401143 11.172205 cd4-positive, alpha-beta memory t cell RPS20
-13.463656 8.218953 cd4-positive, alpha-beta memory t cell LEPROTL1
4.377605 -10.203261 cd4-positive, alpha-beta memory t cell HAUS3
7.5197988 2.7541928 cd4-positive, alpha-beta memory t cell RAP1A
0.41231325 -18.155687 cd4-positive, alpha-beta memory t cell CEP128
3.8751996 -12.463577 cd4-positive, alpha-beta memory t cell ZNF410
4.612319 -11.3677635 cd4-positive, alpha-beta memory t cell RAB11FIP4
-17.082783 5.116912 cd4-positive, alpha-beta memory t cell ATP6V0C
5.036016 -7.1254625 cd4-positive, alpha-beta memory t cell DDX58
4.951587 -4.967875 cd4-positive, alpha-beta memory t cell DDIT4
2.632217 -4.7597504 cd4-positive, alpha-beta memory t cell ASF1A
1.3184601 -19.070267 cd4-positive, alpha-beta memory t cell MYLIP
7.566213 2.5727875 cd4-positive, alpha-beta memory t cell RPS25
-14.901773 2.2573557 cd4-positive, alpha-beta memory t cell RTP5
-5.267702 1.9423467 cd4-positive, alpha-beta memory t cell RBM43
4.4669967 -6.9862514 cd4-positive, alpha-beta memory t cell TNFAIP3
7.432561 1.3542942 cd4-positive, alpha-beta memory t cell PSMB10
4.0251884 -11.627119 cd4-positive, alpha-beta memory t cell TRIM35
1.4884769 -4.3499694 cd4-positive, alpha-beta memory t cell NLRP1
3.7402635 11.122794 cd4-positive, alpha-beta memory t cell NACA
5.625583 -11.266977 cd4-positive, alpha-beta memory t cell ZFP90
0.6381721 -2.1852567 cd4-positive, alpha-beta memory t cell CHD7
5.2965026 -5.9029965 cd4-positive, alpha-beta memory t cell BCAS2
4.414314 -9.521555 cd4-positive, alpha-beta memory t cell SNX20
-6.123056 2.0302122 cd4-positive, alpha-beta memory t cell LDB1
5.5537925 -12.003083 cd4-positive, alpha-beta memory t cell MAD1L1
5.3230596 -10.987349 cd4-positive, alpha-beta memory t cell TPP2
1.4222656 -17.50714 cd4-positive, alpha-beta memory t cell LBR
-2.8629167 0.96877664 cd4-positive, alpha-beta memory t cell LTK
3.7527704 10.933399 cd4-positive, alpha-beta memory t cell SH2D2A
-13.163615 8.926555 cd4-positive, alpha-beta memory t cell FUS
-15.747968 6.2607007 cd4-positive, alpha-beta memory t cell SELPLG
-13.575301 8.239666 cd4-positive, alpha-beta memory t cell TIGIT
0.9877172 -18.183323 cd4-positive, alpha-beta memory t cell LTB
7.425121 2.6444814 cd4-positive, alpha-beta memory t cell LRP2BP
4.684422 -3.4048119 cd4-positive, alpha-beta memory t cell RPS23
-4.1337323 1.2605315 cd4-positive, alpha-beta memory t cell ACAP1
4.9034295 -3.7890034 cd4-positive, alpha-beta memory t cell RASGRP1
-16.795311 5.684133 cd4-positive, alpha-beta memory t cell YPEL3
1.815913 -18.795204 cd4-positive, alpha-beta memory t cell CCL5
-5.145882 1.9784493 cd4-positive, alpha-beta memory t cell HLA-F
5.170068 -5.6194444 cd4-positive, alpha-beta memory t cell DGKA
1.2443535 -15.230744 cd4-positive, alpha-beta memory t cell SUPT20H
4.9991665 -6.244419 cd4-positive, alpha-beta memory t cell CASP2
4.1982536 -12.592104 cd4-positive, alpha-beta memory t cell CENPM
-13.419005 8.437169 cd4-positive, alpha-beta memory t cell PARD6A
4.477108 -11.1227865 cd4-positive, alpha-beta memory t cell NAP1L2
1.2087294 -18.082703 cd4-positive, alpha-beta memory t cell ACD
3.9119823 -12.2010975 cd4-positive, alpha-beta memory t cell DDHD1
0.5653221 -19.061245 cd4-positive, alpha-beta memory t cell ICAM3
-3.0875223 1.6246282 cd4-positive, alpha-beta memory t cell ATXN7
-13.435638 8.289325 cd4-positive, alpha-beta memory t cell GRAMD1A
0.9310858 -2.943799 cd4-positive, alpha-beta memory t cell GPS2
4.248689 11.09719 cd4-positive, alpha-beta memory t cell ITM2A
1.3310299 -18.964888 cd4-positive, alpha-beta memory t cell CASP8
-15.822941 6.3591433 cd4-positive, alpha-beta memory t cell NAP1L3
2.580713 11.743257 cd4-positive, alpha-beta memory t cell DAZAP2
0.4803844 -18.02481 cd4-positive, alpha-beta memory t cell AGAP2
-14.303371 0.93775094 cd4-positive, alpha-beta memory t cell PIK3R1
0.9010108 -18.062336 cd4-positive, alpha-beta memory t cell ELF1
4.7062025 -4.035505 cd4-positive, alpha-beta memory t cell MTA2
-14.531415 0.91382635 cd4-positive, alpha-beta memory t cell TNFRSF25
4.1723976 -10.661843 cd4-positive, alpha-beta memory t cell ISG20
-13.065577 -0.7301024 cd4-positive, alpha-beta memory t cell LGALS14
0.60365963 -18.557089 cd4-positive, alpha-beta memory t cell CWF19L2
4.008519 -12.435834 cd4-positive, alpha-beta memory t cell CD27
-3.4865675 1.5175197 cd4-positive, alpha-beta memory t cell DNAJC9
-15.069708 4.05755 cd4-positive, alpha-beta memory t cell CRBN
4.971618 -5.2888894 cd4-positive, alpha-beta memory t cell CASP1
4.405945 11.792452 cd4-positive, alpha-beta memory t cell SNURF
-4.6374364 2.9392 cd4-positive, alpha-beta memory t cell PNRC1
0.5293497 -18.346958 cd4-positive, alpha-beta memory t cell KPNA5
3.0671382 10.304315 cd4-positive, alpha-beta memory t cell KLF13
-13.610193 -0.10421183 cd4-positive, alpha-beta memory t cell PSMB8
-15.157929 4.89293 cd4-positive, alpha-beta memory t cell RNF34
-16.98486 5.557592 cd4-positive, alpha-beta memory t cell TRAT1
3.5257928 -11.160395 cd4-positive, alpha-beta memory t cell TMEM229B
3.271191 -5.4247675 cd4-positive, alpha-beta memory t cell TRAF3IP3
4.213374 -3.9813035 cd4-positive, alpha-beta memory t cell SATB1
3.76311 -5.7973194 cd4-positive, alpha-beta memory t cell DUSP10
-13.1415825 8.580818 cd4-positive, alpha-beta memory t cell ATXN1
4.7462687 11.209752 cd4-positive, alpha-beta memory t cell RTKN2
-0.16056839 12.981458 cd4-positive, alpha-beta memory t cell MYB
0.22458825 -2.3330016 cd4-positive, alpha-beta memory t cell EIF4B
4.459631 -9.744388 cd4-positive, alpha-beta memory t cell LMBR1
4.6608143 -7.734309 cd4-positive, alpha-beta memory t cell RPL5
7.5939775 2.4214842 cd4-positive, alpha-beta memory t cell DLGAP3
1.3024014 -3.5297785 cd4-positive, alpha-beta memory t cell CHST11
0.39774936 -18.657812 cd4-positive, alpha-beta memory t cell PLCL1
0.562208 -18.94951 cd4-positive, alpha-beta memory t cell UBA52
5.229335 -5.6787343 cd4-positive, alpha-beta memory t cell RGS10
-13.146888 8.499005 cd4-positive, alpha-beta memory t cell PSD
4.5746646 -10.652202 cd4-positive, alpha-beta memory t cell LIME1
5.5554733 -11.537463 cd4-positive, alpha-beta memory t cell TDP1
-16.017021 6.3754416 cd4-positive, alpha-beta memory t cell PPP2R2B
1.6452022 -16.617283 cd4-positive, alpha-beta memory t cell CD79B
-13.25521 0.7100394 cd4-positive, alpha-beta memory t cell NOP53
2.6547594 9.816809 cd4-positive, alpha-beta memory t cell PPM1K
0.31418622 -18.132599 cd4-positive, alpha-beta memory t cell ZNF365
3.7488704 -6.669844 cd4-positive, alpha-beta memory t cell PDCD1
4.6617312 -7.589444 cd4-positive, alpha-beta memory t cell PNMA3
-15.776797 6.393628 cd4-positive, alpha-beta memory t cell IL18R1
1.4009566 -15.771157 cd4-positive, alpha-beta memory t cell CXCR4
2.896735 11.759694 cd4-positive, alpha-beta memory t cell CD5L
-16.597492 5.5249734 cd4-positive, alpha-beta memory t cell COTL1
3.4736533 -10.349098 cd4-positive, alpha-beta memory t cell IGHA1
-13.303581 8.438789 cd4-positive, alpha-beta memory t cell DNAJB1
3.877248 -11.235236 cd4-positive, alpha-beta memory t cell CARD11
-0.42249972 13.471917 cd4-positive, alpha-beta memory t cell FAM102A
-5.7731295 1.2263343 cd4-positive, alpha-beta memory t cell RPLP0
5.063719 11.512029 cd4-positive, alpha-beta memory t cell CCDC136
7.1702404 1.4070424 cd4-positive, alpha-beta memory t cell SGF29
4.8244395 -5.1677036 cd4-positive, alpha-beta memory t cell JUNB
4.018398 -11.163527 cd4-positive, alpha-beta memory t cell IL12RB2
1.3019257 -18.474728 cd4-positive, alpha-beta memory t cell TNFRSF9
4.669839 -6.8031135 cd4-positive, alpha-beta memory t cell TSPYL4
-13.200817 -0.5061861 cd4-positive, alpha-beta memory t cell DYRK2
4.10203 -12.221088 cd4-positive, alpha-beta memory t cell ASXL2
4.3599863 -10.2768 cd4-positive, alpha-beta memory t cell RPS6KA3
-3.4384842 2.1924748 cd4-positive, alpha-beta memory t cell PLCG1
1.3843774 -18.244244 cd4-positive, alpha-beta memory t cell CNNM3
1.8872417 -18.20364 cd4-positive, alpha-beta memory t cell NRF1
4.512542 -4.116803 cd4-positive, alpha-beta memory t cell SRSF2
4.229385 -10.571737 cd4-positive, alpha-beta memory t cell KAT7
-15.42822 4.73638 cd4-positive, alpha-beta memory t cell NFKBIZ
4.0117326 -10.5980015 cd4-positive, alpha-beta memory t cell SF1
4.272474 -11.089574 cd4-positive, alpha-beta memory t cell DGKE
4.0674095 11.014454 cd4-positive, alpha-beta memory t cell FCRL3
-0.32332486 13.596008 cd4-positive, alpha-beta memory t cell CTLA4
6.937017 1.2408594 cd4-positive, alpha-beta memory t cell PRKCB
0.9307037 -18.660545 cd4-positive, alpha-beta memory t cell RNF144A
1.242031 -14.13954 cd4-positive, alpha-beta memory t cell RPL29
-3.4977396 1.0967572 cd4-positive, alpha-beta memory t cell CAMK2G
-0.07774144 12.123229 cd4-positive, alpha-beta memory t cell EEF1A1P5
1.718736 -18.781448 cd4-positive, alpha-beta memory t cell NAP1L1
-0.42228007 -1.2431232 cd4-positive, alpha-beta memory t cell UXT
4.217684 -10.32749 cd4-positive, alpha-beta memory t cell IL21R
5.3408656 -4.864803 cd4-positive, alpha-beta memory t cell RNF216
-0.16192177 12.351425 cd4-positive, alpha-beta memory t cell RAB33A
4.7343593 11.227602 cd4-positive, alpha-beta memory t cell SRGN
5.8790307 -10.572357 cd4-positive, alpha-beta memory t cell USP15
4.4437623 -11.86463 cd4-positive, alpha-beta memory t cell TNFRSF10A
1.5178331 -18.885036 cd4-positive, alpha-beta memory t cell SF3B1
4.289207 11.585516 cd4-positive, alpha-beta memory t cell RNF125
4.070083 -5.025739 cd4-positive, alpha-beta memory t cell CD8B
1.1777775 -17.107075 cd4-positive, alpha-beta memory t cell BEX2
-15.051118 4.1179037 cd4-positive, alpha-beta memory t cell CCDC57
1.8129057 -3.9473288 cd4-positive, alpha-beta memory t cell ADARB1
-13.605506 0.19625087 cd4-positive, alpha-beta memory t cell TRIM14
5.88515 -10.661566 cd4-positive, alpha-beta memory t cell DEDD2
1.4027958 -18.864443 cd4-positive, alpha-beta memory t cell RPS6
-15.538949 4.773838 cd4-positive, alpha-beta memory t cell ARHGAP9
5.265582 -5.495571 cd4-positive, alpha-beta memory t cell BICRAL
4.0221276 -12.453043 cd4-positive, alpha-beta memory t cell CAMK4
5.559834 -4.2075577 cd4-positive, alpha-beta memory t cell RPS6KA5
-14.574394 0.7725826 cd4-positive, alpha-beta memory t cell CDK11A
-0.36409807 -1.3144733 cd4-positive, alpha-beta memory t cell EPC2
5.261233 -11.469435 cd4-positive, alpha-beta memory t cell GNB5
4.9680266 -4.206091 cd4-positive, alpha-beta memory t cell ARHGEF3
1.5569426 -15.898961 cd4-positive, alpha-beta memory t cell RPL36
7.489217 2.3366938 cd4-positive, alpha-beta memory t cell PAG1
4.2587366 -11.370134 cd4-positive, alpha-beta memory t cell CCND2
4.3596463 -4.776765 cd4-positive, alpha-beta memory t cell LIG1
4.008554 -11.054556 cd4-positive, alpha-beta memory t cell FCHO1
7.2640414 1.5015866 cd4-positive, alpha-beta memory t cell LPXN
-16.623459 5.281891 cd4-positive, alpha-beta memory t cell NOSIP
0.5559575 13.339877 cd4-positive, alpha-beta memory t cell USP34
-15.637754 5.0435824 cd4-positive, alpha-beta memory t cell CDC14A
1.2772518 -18.891098 cd4-positive, alpha-beta memory t cell CLDND1
-16.955648 5.1894555 cd4-positive, alpha-beta memory t cell PIK3CG
7.5485973 2.863811 cd4-positive, alpha-beta memory t cell FBXO32
4.408807 -12.3170595 cd4-positive, alpha-beta memory t cell CD3G
-14.940777 2.1726494 cd4-positive, alpha-beta memory t cell IGHG1
7.059374 0.742507 cd4-positive, alpha-beta memory t cell RPL27
-13.407391 8.777103 cd4-positive, alpha-beta memory t cell CYTH1
-13.226655 8.557262 cd4-positive, alpha-beta memory t cell ETS1
-5.693669 1.9791613 cd4-positive, alpha-beta memory t cell RNF149
-14.209135 0.48536712 cd4-positive, alpha-beta memory t cell PNMA5
4.917753 -5.0629272 cd4-positive, alpha-beta memory t cell KCNA3
0.5691121 12.982493 cd4-positive, alpha-beta memory t cell EEF1A1
4.2282267 -7.4907036 cd4-positive, alpha-beta memory t cell IRF1
1.8804008 -17.923096 cd4-positive, alpha-beta memory t cell BTG2
-16.89212 5.6503224 cd4-positive, alpha-beta memory t cell UBASH3B
-15.842303 6.3091903 cd4-positive, alpha-beta memory t cell CD5
3.4771864 -5.087516 cd4-positive, alpha-beta memory t cell HMOX2
-14.369054 1.0649362 cd4-positive, alpha-beta memory t cell EMP3
4.134709 -12.096472 cd4-positive, alpha-beta memory t cell RPL9
2.0016885 -18.191065 cd4-positive, alpha-beta memory t cell CNKSR2
1.9646447 -18.665417 cd4-positive, alpha-beta memory t cell GMCL1
1.5385591 -18.675806 cd4-positive, alpha-beta memory t cell PTGER4
0.888294 -1.8355031 cd4-positive, alpha-beta memory t cell MX1
-16.512405 5.855067 cd4-positive, alpha-beta memory t cell APBB1
1.336717 -15.135938 cd4-positive, alpha-beta memory t cell SH2D1A
-16.241425 5.860375 cd4-positive, alpha-beta memory t cell TLE4
4.4767804 -10.471424 cd4-positive, alpha-beta memory t cell PSTPIP1
-14.634049 3.1886587 cd4-positive, alpha-beta memory t cell MAP3K5
-5.662862 2.204285 cd4-positive, alpha-beta memory t cell PIM2
5.6827664 -12.037498 cd4-positive, alpha-beta memory t cell PDE4D
0.44041055 -18.975735 cd4-positive, alpha-beta memory t cell RPL10
4.5308304 -10.13357 cd4-positive, alpha-beta memory t cell GRK2
4.8728824 -5.7663746 cd4-positive, alpha-beta memory t cell GPA33
3.7509482 -4.2287965 cd4-positive, alpha-beta memory t cell CKAP2
4.799166 -7.528132 cd4-positive, alpha-beta memory t cell RIPOR2
-5.3378434 1.6865451 cd4-positive, alpha-beta memory t cell INPP5D
0.8612305 -18.633917 cd4-positive, alpha-beta memory t cell JMY
-3.6024275 1.177688 cd4-positive, alpha-beta memory t cell TNFRSF4
1.3253443 -17.777624 cd4-positive, alpha-beta memory t cell SNRNP200
1.1805794 -17.9199 cd4-positive, alpha-beta memory t cell GNB1L
-14.491957 2.1955867 cd4-positive, alpha-beta memory t cell FANCD2
1.1684695 -18.808123 cd4-positive, alpha-beta memory t cell F2RL2
1.7820154 -17.447023 cd4-positive, alpha-beta memory t cell RRP1B
-13.298813 8.111993 cd4-positive, alpha-beta memory t cell RPS21
-0.3893497 13.394785 cd4-positive, alpha-beta memory t cell TCF7
0.52695054 -18.677885 cd4-positive, alpha-beta memory t cell ATM
0.6588105 -18.675919 cd4-positive, alpha-beta memory t cell PRKACB
-14.408374 2.5891964 cd4-positive, alpha-beta memory t cell CLPP
-5.3867064 1.5632209 cd4-positive, alpha-beta memory t cell CORO7
2.8492968 10.513306 cd4-positive, alpha-beta memory t cell FBXO34
4.764677 11.542165 cd4-positive, alpha-beta memory t cell JAKMIP1
0.66982615 -18.513948 cd4-positive, alpha-beta memory t cell DDX39B
-15.229412 4.2448792 cd4-positive, alpha-beta memory t cell LEF1
2.784249 -4.1145644 cd4-positive, alpha-beta memory t cell RUNX3
4.297181 11.165425 cd4-positive, alpha-beta memory t cell THAP1
4.585568 -9.391252 cd4-positive, alpha-beta memory t cell CCDC167
-15.895368 6.2723026 cd4-positive, alpha-beta memory t cell DLEU1
-15.859418 6.019402 cd4-positive, alpha-beta memory t cell SCRG1
4.8353963 -6.2805724 cd4-positive, alpha-beta memory t cell NFKBIA
1.7086066 -17.67668 cd4-positive, alpha-beta memory t cell HBB
1.3350774 -17.462427 cd4-positive, alpha-beta memory t cell KIF3A
1.1107205 -14.603961 cd4-positive, alpha-beta memory t cell LMNB1
-15.253965 5.3546696 cd4-positive, alpha-beta memory t cell KAT6B
5.806922 -12.017708 cd4-positive, alpha-beta memory t cell POLR3E
5.8343186 -11.024883 cd4-positive, alpha-beta memory t cell FOXP3
4.6060615 -10.810066 cd4-positive, alpha-beta memory t cell ZBTB24
-16.568495 5.7463164 cd4-positive, alpha-beta memory t cell CAGE1
2.972432 11.651209 cd4-positive, alpha-beta memory t cell THOC3
-13.221099 8.900277 cd4-positive, alpha-beta memory t cell CASK
4.548513 -8.255118 cd4-positive, alpha-beta memory t cell MTM1
-13.084252 -0.5606974 cd4-positive, alpha-beta memory t cell TSPYL1
-5.459408 1.4484183 cd4-positive, alpha-beta memory t cell EPB41
1.765343 -17.952131 cd4-positive, alpha-beta memory t cell CDKN1B
4.07877 10.338522 cd4-positive, alpha-beta memory t cell NR1D2
-14.386346 2.8613386 cd4-positive, alpha-beta memory t cell SGTB
4.068943 -12.417784 cd4-positive, alpha-beta memory t cell LSM14A
0.45983866 -18.987158 cd4-positive, alpha-beta memory t cell RPL15
4.362608 -12.337201 cd4-positive, alpha-beta memory t cell PRKCQ
-15.080327 4.191538 cd4-positive, alpha-beta memory t cell CEP57
3.7520242 -10.502356 cd4-positive, alpha-beta memory t cell RPL34
3.836605 -10.828146 cd4-positive, alpha-beta memory t cell RGS1
1.4139287 -17.476345 cd4-positive, alpha-beta memory t cell SUSD3
1.314588 11.944014 cd4-positive, alpha-beta memory t cell HLA-C
1.7262758 -3.7877622 cd4-positive, alpha-beta memory t cell OSBPL3
5.5985937 -4.432051 cd4-positive, alpha-beta memory t cell ANKRD12
-16.73524 5.6948256 cd4-positive, alpha-beta memory t cell BIRC3
5.2230964 -4.9261284 cd4-positive, alpha-beta memory t cell RPS13
4.7781634 -6.4687066 cd4-positive, alpha-beta memory t cell NSD3
1.5519493 -18.8169 cd4-positive, alpha-beta memory t cell AP1G2
2.0292172 -18.375645 cd4-positive, alpha-beta memory t cell CRLF3
4.417848 11.427562 cd4-positive, alpha-beta memory t cell TNF
4.3440714 -4.0513725 cd4-positive, alpha-beta memory t cell ABHD17A
1.4409258 -19.039755 cd4-positive, alpha-beta memory t cell ATG9A
4.6891046 -12.031295 cd4-positive, alpha-beta memory t cell FYN
-0.18680994 -1.9488372 cd4-positive, alpha-beta memory t cell RBM11
4.3143024 -8.759898 cd4-positive, alpha-beta memory t cell LYSMD2
-12.477173 8.776217 cd4-positive, alpha-beta memory t cell TUBB1
3.988792 -11.240299 cd4-positive, alpha-beta memory t cell MDM4
5.6131673 -10.394354 cd4-positive, alpha-beta memory t cell NR3C1
-14.475658 1.42209 cd4-positive, alpha-beta memory t cell ZNF420
-15.405734 5.796393 cd4-positive, alpha-beta memory t cell SP110
-13.402194 -0.2709838 cd4-positive, alpha-beta memory t cell PRDM1
-14.445846 2.5601969 cd4-positive, alpha-beta memory t cell RPL12
5.4258404 -10.782073 cd4-positive, alpha-beta memory t cell LCK
3.7045503 -10.107701 cd4-positive, alpha-beta memory t cell ZNF786
4.6843686 -5.991873 cd4-positive, alpha-beta memory t cell CENPC
5.3350706 -5.3924336 cd4-positive, alpha-beta memory t cell LCP1
4.5291185 11.656453 cd4-positive, alpha-beta memory t cell LDHB
-13.543605 8.115673 cd4-positive, alpha-beta memory t cell KCNC1
4.3401027 -10.745343 cd4-positive, alpha-beta memory t cell MYBL1
4.1496444 -10.919423 cd4-positive, alpha-beta memory t cell CBL
-13.559727 8.4404545 cd4-positive, alpha-beta memory t cell PFN1
4.856987 11.265865 cd4-positive, alpha-beta memory t cell ATG2A
-16.805958 5.6012 cd4-positive, alpha-beta memory t cell MED17
-13.329771 8.140752 cd4-positive, alpha-beta memory t cell TIAM1
5.3391023 -4.342863 cd4-positive, alpha-beta memory t cell BTBD9
4.483961 11.120193 cd4-positive, alpha-beta memory t cell ARID4A
-0.47016683 13.192451 cd4-positive, alpha-beta memory t cell DPP4
-13.48467 1.4686302 cd4-positive, alpha-beta memory t cell CHD1
-14.174794 1.3728607 cd4-positive, alpha-beta memory t cell ZNF345
-13.468996 0.017664278 cd4-positive, alpha-beta memory t cell OPRM1
-5.646724 1.9643314 cd4-positive, alpha-beta memory t cell EIF3E
4.3794084 -10.083158 cd4-positive, alpha-beta memory t cell CYTH4
4.879696 -7.224802 cd4-positive, alpha-beta memory t cell MCM6
4.4112144 11.497086 cd4-positive, alpha-beta memory t cell PAQR8
3.8179324 10.887882 cd4-positive, alpha-beta memory t cell CPNE7
4.4440117 -8.620308 cd4-positive, alpha-beta memory t cell RPL35
1.2403749 -3.544655 cd4-positive, alpha-beta memory t cell BACH2
0.81290036 -2.215737 cd4-positive, alpha-beta memory t cell HAUS5
1.8690766 -18.424505 cd4-positive, alpha-beta memory t cell IL12RB1
0.73647624 -18.672823 cd4-positive, alpha-beta memory t cell RGS14
-12.874644 8.601872 cd4-positive, alpha-beta memory t cell SETDB2
-13.5097275 -0.466445 cd4-positive, alpha-beta memory t cell FAM209A
3.9373837 -10.581532 cd4-positive, alpha-beta memory t cell HSF5
6.9215426 1.3782673 cd4-positive, alpha-beta memory t cell DEF6
3.7487702 -10.98616 cd4-positive, alpha-beta memory t cell AQP3
-2.7909048 0.69314647 cd4-positive, alpha-beta memory t cell ORAI1
-13.537963 -0.302946 cd4-positive, alpha-beta memory t cell DNMT3A
4.150247 -12.490495 cd4-positive, alpha-beta memory t cell OGT
0.7170717 -18.672255 cd4-positive, alpha-beta memory t cell PRKCA
3.8258195 -11.695983 cd4-positive, alpha-beta memory t cell DDX6
1.9809736 -18.16203 cd4-positive, alpha-beta memory t cell TMF1
-12.559174 8.70008 cd4-positive, alpha-beta memory t cell RPS17
5.7235513 -10.627827 cd4-positive, alpha-beta memory t cell DPH1
4.615202 -9.728918 cd4-positive, alpha-beta memory t cell DUSP5
3.0559695 9.821305 cd4-positive, alpha-beta memory t cell NAP1L4
-15.106062 4.36696 cd4-positive, alpha-beta memory t cell METTL17
-0.17890619 -1.8428395 cd4-positive, alpha-beta memory t cell RASSF5
-0.06493336 -0.20425129 cd4-positive, alpha-beta memory t cell FSD1
4.826397 -3.7523654 cd4-positive, alpha-beta memory t cell CORO2A
4.530965 -11.541367 cd4-positive, alpha-beta memory t cell FERMT3
4.1092596 -11.134323 cd4-positive, alpha-beta memory t cell RPS12
3.3926697 10.813906 cd4-positive, alpha-beta memory t cell HMGN1
4.5901294 11.227809 cd4-positive, alpha-beta memory t cell DISC1
-5.7149067 1.493905 cd4-positive, alpha-beta memory t cell HABP4
5.5598454 -11.197822 cd4-positive, alpha-beta memory t cell MBNL1
4.39425 10.824559 cd4-positive, alpha-beta memory t cell BUB3
4.1756754 11.340307 cd4-positive, alpha-beta memory t cell HNRNPUL1
0.5697731 -18.824558 cd4-positive, alpha-beta memory t cell GNG2
4.2860518 -10.994691 cd4-positive, alpha-beta memory t cell BRD1
0.5945701 -18.816576 cd4-positive, alpha-beta memory t cell RNF44
6.050067 -10.021236 cd4-positive, alpha-beta memory t cell ZNF276
4.413157 -8.501377 cd4-positive, alpha-beta memory t cell GBP2
4.238417 -10.164145 cd4-positive, alpha-beta memory t cell RORA
-16.42252 5.428666 cd4-positive, alpha-beta memory t cell SNRPN
4.142469 -11.513476 cd4-positive, alpha-beta memory t cell GSTK1
4.464829 -5.550544 cd4-positive, alpha-beta memory t cell CD84
1.0097015 -18.799513 cd4-positive, alpha-beta memory t cell TMSB4X
4.303084 11.006691 cd4-positive, alpha-beta memory t cell ARID4B
5.6063986 -11.593041 cd4-positive, alpha-beta memory t cell B3GAT1
3.7082636 -10.93325 cd4-positive, alpha-beta memory t cell AKAP13
0.4334415 -18.91574 cd4-positive, alpha-beta memory t cell NMT2
4.3398957 -4.7417474 cd4-positive, alpha-beta memory t cell SP4
5.7279387 -12.081979 cd4-positive, alpha-beta memory t cell PTPN4
-13.1246 1.6143159 cd4-positive, alpha-beta memory t cell TMEM243
5.508715 -11.2351465 cd4-positive, alpha-beta memory t cell ATG16L1
-6.3800936 2.1790056 cd4-positive, alpha-beta memory t cell PSME1
3.7995768 -10.250434 cd4-positive, alpha-beta memory t cell IL2
3.6334393 10.797289 cd4-positive, alpha-beta memory t cell UBE2L6
1.1353722 -14.734395 cd4-positive, alpha-beta memory t cell DOCK2
5.501055 -11.555406 cd4-positive, alpha-beta memory t cell RHOH
-17.01519 5.1945705 cd4-positive, alpha-beta memory t cell JAML
4.6497564 11.181868 cd4-positive, alpha-beta memory t cell FRAT1
5.1155066 -6.3083997 cd4-positive, alpha-beta memory t cell PSMB9
4.569633 11.544067 cd4-positive, alpha-beta memory t cell ZBTB25
5.6782937 -11.129238 cd4-positive, alpha-beta memory t cell EDA
3.366488 -4.774186 cd4-positive, alpha-beta memory t cell VAMP2
-5.414755 1.7455989 cd4-positive, alpha-beta memory t cell ABTB1
-3.8958743 1.48922 cd4-positive, alpha-beta memory t cell IFITM1
5.7197695 -12.221708 cd4-positive, alpha-beta memory t cell CNTRL
4.8155336 -6.177298 cd4-positive, alpha-beta memory t cell CD70
4.4162793 -10.169464 cd4-positive, alpha-beta memory t cell ARF6
4.889558 -4.74481 cd4-positive, alpha-beta memory t cell L3MBTL3
0.40819466 -18.868513 cd4-positive, alpha-beta memory t cell ANP32B
3.7826478 -11.681903 cd4-positive, alpha-beta memory t cell SLAIN1
1.382438 -17.464897 cd4-positive, alpha-beta memory t cell RPLP0P6
-3.3679283 1.8988954 cd4-positive, alpha-beta memory t cell RASA1
3.9975035 -12.756009 cd4-positive, alpha-beta memory t cell CD3E
-16.069872 5.9295454 cd4-positive, alpha-beta memory t cell TRAPPC2
1.2545427 -3.6266272 cd4-positive, alpha-beta memory t cell ADAM19
4.3388433 -12.320863 cd4-positive, alpha-beta memory t cell FOXO1
0.44026932 13.174115 cd4-positive, alpha-beta memory t cell CD3D
-15.326941 4.3288784 cd4-positive, alpha-beta memory t cell RPL7A
3.2603707 -5.3487377 cd4-positive, alpha-beta memory t cell ATXN7L1
4.418084 11.481085 cd4-positive, alpha-beta memory t cell RPL3
-3.1576388 1.6948833 cd4-positive, alpha-beta memory t cell PPP1R16B
3.9004486 -11.416814 cd4-positive, alpha-beta memory t cell ANXA6
2.0026865 -18.659117 cd4-positive, alpha-beta memory t cell IL23R
1.4917206 -17.106064 cd4-positive, alpha-beta memory t cell ARHGDIB
4.6359296 -8.816087 cd4-positive, alpha-beta memory t cell FLT4
-14.937013 3.4075463 cd4-positive, alpha-beta memory t cell ZBTB14
4.602804 -11.601877 cd4-positive, alpha-beta memory t cell RBL1
2.1577055 -4.0432544 cd4-positive, alpha-beta memory t cell PCNX1
-15.223208 5.527853 cd4-positive, alpha-beta memory t cell CCSER2
4.583866 11.72093 cd4-positive, alpha-beta memory t cell PMCH
3.746381 -12.277762 cd4-positive, alpha-beta memory t cell JUND
0.1405157 -1.9530532 cd4-positive, alpha-beta memory t cell IRF9
2.9781656 -4.267145 cd4-positive, alpha-beta memory t cell PLEKHF1
7.3051944 1.5875176 cd4-positive, alpha-beta memory t cell PIK3CD
-14.676247 2.8805842 cd4-positive, alpha-beta memory t cell IRF4
-15.177732 4.7721014 cd4-positive, alpha-beta memory t cell HLA-G
4.6956577 -8.818707 cd4-positive, alpha-beta memory t cell DCP2
1.7995281 -18.636732 cd4-positive, alpha-beta memory t cell SF3A2
1.5580634 -18.501413 cd4-positive, alpha-beta memory t cell SNRPD2
4.2069035 -10.566258 cd4-positive, alpha-beta memory t cell APBA2
5.762335 -12.067604 cd4-positive, alpha-beta memory t cell TRAPPC10
-0.087884314 11.801861 cd4-positive, alpha-beta memory t cell CARD8
-13.411409 -0.24821027 cd4-positive, alpha-beta memory t cell RPS14
-14.347026 0.45379174 cd4-positive, alpha-beta memory t cell TNRC6B
4.183776 -7.855537 cd4-positive, alpha-beta memory t cell KRT2
3.8048282 -12.543758 cd4-positive, alpha-beta memory t cell CD69
1.6169288 -17.695272 cd4-positive, alpha-beta memory t cell ERN1
4.51836 -12.271188 cd4-positive, alpha-beta memory t cell ZNF862
3.9584117 10.135672 cd4-positive, alpha-beta memory t cell EXOSC6
4.338967 -9.715501 cd4-positive, alpha-beta memory t cell ASXL1
3.2434804 -4.289222 cd4-positive, alpha-beta memory t cell CD7
5.3221493 -4.3168306 cd4-positive, alpha-beta memory t cell PHC3
-13.338002 0.5774815 cd4-positive, alpha-beta memory t cell RPL19
-13.95816 1.3349657 cd4-positive, alpha-beta memory t cell PHF3
3.7504394 -11.568397 cd4-positive, alpha-beta memory t cell TKTL1
4.22497 -12.120328 cd4-positive, alpha-beta memory t cell ITGA2B
3.3950453 11.041143 cd4-positive, alpha-beta memory t cell PPP4R3A
-14.67248 2.9891226 cd4-positive, alpha-beta memory t cell SELL
4.231425 -12.619562 cd4-positive, alpha-beta memory t cell HBA1
3.5337112 -4.431432 cd4-positive, alpha-beta memory t cell RNF113A
0.99729115 -18.30683 cd4-positive, alpha-beta memory t cell SMARCA2
3.9453518 -10.529759 cd4-positive, alpha-beta memory t cell RESF1
-13.403719 -0.5584897 cd4-positive, alpha-beta memory t cell CRACR2A
-16.082067 5.861537 cd4-positive, alpha-beta memory t cell SUMO4
-3.0266519 1.4715741 cd4-positive, alpha-beta memory t cell RADX
-13.868419 2.0033488 cd4-positive, alpha-beta memory t cell IL16
-5.162815 2.7767854 cd4-positive, alpha-beta memory t cell TRIM73
-12.902556 8.467188 cd4-positive, alpha-beta memory t cell HNRNPLL
5.5642753 -11.467117 cd4-positive, alpha-beta memory t cell PKIA
5.756101 -12.076115 cd4-positive, alpha-beta memory t cell CMTM7
5.5573363 -11.612883 cd4-positive, alpha-beta memory t cell GMFG
3.6905768 10.775464 cd4-positive, alpha-beta memory t cell ANKRD36
-0.3564913 12.956198 cd4-positive, alpha-beta memory t cell IL24
4.4069614 -10.84307 cd4-positive, alpha-beta memory t cell RPL10A
0.6671707 -18.680143 cd4-positive, alpha-beta memory t cell URI1
-14.004448 0.32331577 cd4-positive, alpha-beta memory t cell WAS
4.9796295 -4.61926 cd4-positive, alpha-beta memory t cell EPC1
-16.989046 5.105277 cd4-positive, alpha-beta memory t cell CHMP4A
7.433219 2.6384223 cd4-positive, alpha-beta memory t cell HAUS6
4.6581764 11.433727 cd4-positive, alpha-beta memory t cell RPL13
1.7855071 -17.127851 cd4-positive, alpha-beta memory t cell ZAP70
4.227788 11.548157 cd4-positive, alpha-beta memory t cell PNMA1
4.098713 -12.750296 cd4-positive, alpha-beta memory t cell RBM4
5.710474 -10.737113 cd4-positive, alpha-beta memory t cell ATP1A3
-16.903347 5.2434587 cd4-positive, alpha-beta memory t cell NCK2
1.2907735 -19.033749 cd4-positive, alpha-beta memory t cell TNFRSF14
-15.221747 4.96703 cd4-positive, alpha-beta memory t cell TUBA1A
-15.424539 4.494836 cd4-positive, alpha-beta memory t cell ADTRP
-12.895006 8.760899 cd4-positive, alpha-beta memory t cell MAX
7.547011 2.8134854 cd4-positive, alpha-beta memory t cell TGS1
-13.268134 8.403983 cd4-positive, alpha-beta memory t cell APBB1IP
2.9235587 10.3704405 cd4-positive, alpha-beta memory t cell RBMX
-13.726648 0.13511483 cd4-positive, alpha-beta memory t cell SEC14L2
-0.485018 -1.0143609 cd4-positive, alpha-beta memory t cell SP100
-2.964696 0.705522 cd4-positive, alpha-beta memory t cell NIN
-5.0675144 1.5508773 cd4-positive, alpha-beta memory t cell TMEM123
5.6284876 -5.1316247 cd4-positive, alpha-beta memory t cell LRRC7
-4.6726303 2.1179175 cd4-positive, alpha-beta memory t cell HCST
7.4255815 2.8373992 cd4-positive, alpha-beta memory t cell NSG1
-5.2442865 1.6950799 cd4-positive, alpha-beta memory t cell KLF12
4.569494 -10.225475 cd4-positive, alpha-beta memory t cell RSL24D1
-4.2646503 1.8845552 cd4-positive, alpha-beta memory t cell ZNF18
5.02759 -4.030013 cd4-positive, alpha-beta memory t cell RGL4
-15.303148 5.3303695 cd4-positive, alpha-beta memory t cell RPL4
5.4600005 -12.283959 cd4-positive, alpha-beta memory t cell CDC25B
4.3012657 11.500794 cd4-positive, alpha-beta memory t cell MAP4K1
4.8613377 11.724409 cd4-positive, alpha-beta memory t cell PRKCH
1.4676847 -18.111235 cd4-positive, alpha-beta memory t cell GPSM3
-2.4623234 0.31497344 cd4-positive, alpha-beta memory t cell CD37
-13.466995 8.779561 cd4-positive, alpha-beta memory t cell HNRNPA1
5.1555357 -4.9410396 cd4-positive, alpha-beta memory t cell PPP1R18
-4.5176244 2.1450493 cd4-positive, alpha-beta memory t cell ZBTB10
4.121687 -10.546614 cd4-positive, alpha-beta memory t cell ORMDL3
-3.4511511 1.721923 cd4-positive, alpha-beta memory t cell TRERF1
-13.413898 8.527753 cd4-positive, alpha-beta memory t cell MAP4K2
-3.9466777 2.051677 cd4-positive, alpha-beta memory t cell GP1BA
-13.572032 8.435423 cd4-positive, alpha-beta memory t cell STAT1
4.4534955 -10.954203 cd4-positive, alpha-beta memory t cell RPL28
4.520449 10.952329 cd4-positive, alpha-beta memory t cell NDUFV2
4.6667743 -5.9344893 cd4-positive, alpha-beta memory t cell DGKZ
4.7420425 -7.89897 cd4-positive, alpha-beta memory t cell TRAF5
4.560265 -11.845611 cd4-positive, alpha-beta memory t cell XRN1
-14.304394 1.2524939 cd4-positive, alpha-beta memory t cell RPS3
-5.292086 1.6121542 cd4-positive, alpha-beta memory t cell STMN4
3.7378902 -11.543873 cd4-positive, alpha-beta memory t cell S1PR1
1.61194 -18.901457 cd4-positive, alpha-beta memory t cell RPL36A
4.4465103 -9.9975815 cd4-positive, alpha-beta memory t cell TOX
1.3134563 -17.162748 cd4-positive, alpha-beta memory t cell RPL11
0.2527687 -17.93471 cd4-positive, alpha-beta memory t cell TBCE
-16.039543 6.1520805 cd4-positive, alpha-beta memory t cell KIF2A
-13.530038 -0.5509983 cd4-positive, alpha-beta memory t cell VSIR
4.2583303 11.322822 cd4-positive, alpha-beta memory t cell NHEJ1
-15.758596 6.3257985 cd4-positive, alpha-beta memory t cell MED30
3.94139 11.230582 cd4-positive, alpha-beta memory t cell ATF7IP
7.5400324 2.256213 cd4-positive, alpha-beta memory t cell LENG1
-5.520507 0.8158831 cd4-positive, alpha-beta memory t cell VIPR1
3.8370683 10.853917 cd4-positive, alpha-beta memory t cell MZT2B
4.3853846 -9.538123 cd4-positive, alpha-beta memory t cell ZNF250
1.7504827 -18.81098 cd4-positive, alpha-beta memory t cell STAT5A
0.5194794 -18.400595 cd4-positive, alpha-beta memory t cell RPLP1
-14.495966 3.1400092 cd4-positive, alpha-beta memory t cell CNOT6L
4.4870934 -4.7394776 cd4-positive, alpha-beta memory t cell IFNAR2
1.8243357 -18.411224 cd4-positive, alpha-beta memory t cell LYAR
1.2955567 -17.942434 cd4-positive, alpha-beta memory t cell EIF3F
3.6484573 -11.311756 cd4-positive, alpha-beta memory t cell OSM
-13.209372 8.394908 cd4-positive, alpha-beta memory t cell TESMIN
3.8363729 -11.533659 cd4-positive, alpha-beta memory t cell RPL38
3.6840248 -11.511428 cd4-positive, alpha-beta memory t cell TAF3
7.2343855 2.0821977 cd4-positive, alpha-beta memory t cell IGKC
-5.847116 1.3622794 cd4-positive, alpha-beta memory t cell HBS1L
5.505502 -11.831871 cd4-positive, alpha-beta memory t cell TNFSF4
2.8196094 11.423054 cd4-positive, alpha-beta memory t cell ABHD16A
0.87860644 -18.292942 cd4-positive, alpha-beta memory t cell KCNN1
-5.180223 1.3628792 cd4-positive, alpha-beta memory t cell RAC2
4.1321344 -12.43661 cd4-positive, alpha-beta memory t cell ITPKB
-13.418443 0.24821655 cd4-positive, alpha-beta memory t cell FOXP1
0.7823095 -18.491894 cd4-positive, alpha-beta memory t cell CCR4
1.8479211 -17.634314 cd4-positive, alpha-beta memory t cell RIC3
4.1007276 -12.76553 cd4-positive, alpha-beta memory t cell PIANP
3.964727 -4.595203 cd4-positive, alpha-beta memory t cell ARID5B
0.5443366 -19.00878 cd4-positive, alpha-beta memory t cell ADD3
1.9314711 -17.473637 cd4-positive, alpha-beta memory t cell ITGB2
4.5307703 11.166986 cd4-positive, alpha-beta memory t cell PF4
3.9755363 -10.676969 cd4-positive, alpha-beta memory t cell ZC3HAV1
-15.451548 4.4138455 cd4-positive, alpha-beta memory t cell NXPE3
1.7411064 -18.625847 cd4-positive, alpha-beta memory t cell LSM8
3.214565 -4.2717957 cd4-positive, alpha-beta memory t cell IKZF3
-5.5148373 2.022217 cd4-positive, alpha-beta memory t cell ZNF829
4.6366796 -9.6133375 cd4-positive, alpha-beta memory t cell R3HDM2
4.5912895 -4.124874 cd4-positive, alpha-beta memory t cell FNBP1
4.117191 -11.165826 cd4-positive, alpha-beta memory t cell KLHL6
3.3932254 10.968135 cd4-positive, alpha-beta memory t cell CITED2
-16.736982 5.3887587 cd4-positive, alpha-beta memory t cell HELLS
3.662919 -9.908852 cd4-positive, alpha-beta memory t cell PRF1
0.94969857 -13.942993 cd4-positive, alpha-beta memory t cell MAGEE1
5.5869675 -11.555927 cd4-positive, alpha-beta memory t cell JAK3
3.8996582 -10.744349 cd4-positive, alpha-beta memory t cell CENPK
-3.6613567 2.375683 cd4-positive, alpha-beta memory t cell SLC9A3
2.9481633 9.835535 cd4-positive, alpha-beta memory t cell RBM38
4.165884 -6.666965 cd4-positive, alpha-beta memory t cell SMAP2
1.2476801 -17.423807 cd4-positive, alpha-beta memory t cell SERPINB9
3.6837637 -10.177519 cd4-positive, alpha-beta memory t cell RNF138
-5.1882367 2.2727246 cd4-positive, alpha-beta memory t cell CXCL13
1.2979476 -18.880453 cd4-positive, alpha-beta memory t cell PPWD1
0.9884064 -19.075712 cd4-positive, alpha-beta memory t cell TTC12
2.6546543 10.233992 cd4-positive, alpha-beta memory t cell RPL37
3.839353 -11.645625 cd4-positive, alpha-beta memory t cell TSHR
-16.520773 5.615911 cd4-positive, alpha-beta memory t cell NCR3
1.3376318 -18.073132 cd4-positive, alpha-beta memory t cell SLAMF6
5.092521 -6.419123 cd4-positive, alpha-beta memory t cell CD226
3.0664268 -5.299204 cd4-positive, alpha-beta memory t cell KAT6A
-15.626899 4.9981713 cd4-positive, alpha-beta memory t cell RPSA
-5.5246153 1.7106285 cd4-positive, alpha-beta memory t cell RPL18A
5.4538264 -4.865563 cd4-positive, alpha-beta memory t cell THAP7
7.2460003 2.083849 cd4-positive, alpha-beta memory t cell ICAM2
4.7918983 -4.2570715 cd4-positive, alpha-beta memory t cell PTPRCAP
4.33903 -11.419836 cd4-positive, alpha-beta memory t cell CD247
3.631776 -11.417106 cd4-positive, alpha-beta memory t cell TNIK
4.6707296 -7.1611433 cd4-positive, alpha-beta memory t cell KLHDC7B
1.3486137 -3.4010844 cd4-positive, alpha-beta memory t cell TCP11L2
3.9158206 -11.1070385 cd4-positive, alpha-beta memory t cell RPL13A
5.241482 -5.060341 cd4-positive, alpha-beta memory t cell MORN3
4.3523984 10.575484 cd4-positive, alpha-beta memory t cell BTLA
2.0965405 -4.1771226 cd4-positive, alpha-beta memory t cell TBC1D10A
2.165963 -18.121954 cd4-positive, alpha-beta memory t cell CXCR3
3.8512084 -4.3006196 cd4-positive, alpha-beta memory t cell ABCC1
4.16465 -10.312938 cd4-positive, alpha-beta memory t cell SFMBT1
4.455812 -10.073033 cd4-positive, alpha-beta memory t cell IL7R
6.9176083 1.1651973 cd4-positive, alpha-beta memory t cell FAM153B
4.6517057 11.625175 cd4-positive, alpha-beta memory t cell AEN
4.776412 11.426003 cd4-positive, alpha-beta memory t cell RNF19A
3.8121815 -11.760869 cd4-positive, alpha-beta memory t cell SYNRG
3.9428058 -11.414067 cd4-positive, alpha-beta memory t cell LHX4
7.3448915 1.9714129 cd4-positive, alpha-beta memory t cell FKBP5
-14.7824135 3.0093727 cd4-positive, alpha-beta memory t cell CASP6
4.578185 11.807626 cd4-positive, alpha-beta memory t cell SPTAN1
-0.043508366 12.712898 cd4-positive, alpha-beta memory t cell TCEANC
4.0843396 -12.723325 cd4-positive, alpha-beta memory t cell KLRG1
-14.788617 2.7269495 cd4-positive, alpha-beta memory t cell CD200R1
0.087711126 12.2040415 cd4-positive, alpha-beta memory t cell PHF12
-0.12967521 -1.9416698 cd4-positive, alpha-beta memory t cell SIGIRR
4.856985 -3.726908 cd4-positive, alpha-beta memory t cell HEMGN
-2.6773062 0.26601642 cd4-positive, alpha-beta memory t cell AXIN1
4.703424 -3.824673 cd4-positive, alpha-beta memory t cell STAT4
1.7496573 -18.771122 cd4-positive, alpha-beta memory t cell PIK3R5
-13.388346 -0.45363903 cd4-positive, alpha-beta memory t cell APOL6
0.39293915 -18.914438 cd4-positive, alpha-beta memory t cell REST
3.93287 -5.257005 cd4-positive, alpha-beta memory t cell SFI1
4.196975 10.980127 cd4-positive, alpha-beta memory t cell CCNDBP1
4.0876083 -11.577539 cd4-positive, alpha-beta memory t cell YPEL5
1.4715216 -14.105146 cd4-positive, alpha-beta memory t cell PARP11
5.1271334 -5.6657243 cd4-positive, alpha-beta memory t cell RPS26
1.4621127 -18.898016 cd4-positive, alpha-beta memory t cell CD53
4.0427136 -11.505539 cd4-positive, alpha-beta memory t cell EPOR
5.260554 -4.5593987 cd4-positive, alpha-beta memory t cell PPP1R2
-15.69828 5.2684474 cd4-positive, alpha-beta memory t cell PTPN1
0.49825063 -2.105943 cd4-positive, alpha-beta memory t cell ZNF483
4.092735 11.453574 cd4-positive, alpha-beta memory t cell CSK
5.625129 -11.468956 cd4-positive, alpha-beta memory t cell LAT
1.4911743 -16.146286 cd4-positive, alpha-beta memory t cell PRKX
1.6571798 -18.52896 cd4-positive, alpha-beta memory t cell RPL31
-14.762128 2.4045684 cd4-positive, alpha-beta memory t cell MAL
-13.478351 0.2848472 cd4-positive, alpha-beta memory t cell TXK
-4.219125 2.2436354 cd4-positive, alpha-beta memory t cell CYLD
-12.771124 8.439542 cd4-positive, alpha-beta memory t cell TSPYL2
3.8380458 -11.6830845 cd4-positive, alpha-beta memory t cell EIF1
-3.2250693 0.78488123 cd4-positive, alpha-beta memory t cell PRRC2C
4.413438 -8.156906 cd4-positive, alpha-beta memory t cell G3BP2
4.939768 11.682984 cd4-positive, alpha-beta memory t cell TBC1D19
5.426514 -11.77754 cd4-positive, alpha-beta memory t cell TLK1
7.413043 1.4712311 cd4-positive, alpha-beta memory t cell GP5
-13.152682 8.35241 cd4-positive, alpha-beta memory t cell NFATC2
1.084117 -14.855737 cd4-positive, alpha-beta memory t cell TENT5C
1.1498461 -18.142935 cd4-positive, alpha-beta memory t cell BTF3
4.0213237 -10.954571 cd4-positive, alpha-beta memory t cell CCDC91
5.439457 -11.942294 cd4-positive, alpha-beta memory t cell HPCAL4
4.2869005 -5.9157615 cd4-positive, alpha-beta memory t cell SIRPG
-14.841875 1.2420695 cd4-positive, alpha-beta memory t cell BCL11B
1.2770435 -17.887695 cd4-positive, alpha-beta memory t cell VRK1
5.619395 -12.344693 cd4-positive, alpha-beta memory t cell MYL12A
4.867621 -6.9098644 cd4-positive, alpha-beta memory t cell TAF1D
4.7028804 -4.0402784 cd4-positive, alpha-beta memory t cell LAX1
4.2945275 11.239003 cd4-positive, alpha-beta memory t cell NFATC1
2.8698702 -4.3873024 cd4-positive, alpha-beta memory t cell TMPO
1.0404508 -18.814964 cd4-positive, alpha-beta memory t cell TIGD3
4.379417 -12.501968 cd4-positive, alpha-beta memory t cell RPS27A
4.0892873 11.721996 cd4-positive, alpha-beta memory t cell LRBA
5.2090173 -6.7438674 cd4-positive, alpha-beta memory t cell LTA
6.92152 1.3034092 cd4-positive, alpha-beta memory t cell HLA-E
-6.0950394 2.2979498 cd4-positive, alpha-beta memory t cell TAP1
4.4022164 11.170903 cd4-positive, alpha-beta memory t cell ZNF80
-13.498337 1.5115131 cd4-positive, alpha-beta memory t cell PRPS1
-14.322186 0.44308308 cd4-positive, alpha-beta memory t cell TMEM63A
5.662793 -11.209735 cd4-positive, alpha-beta memory t cell RNF166
-5.338443 1.8019902 cd4-positive, alpha-beta memory t cell JADE2
-5.3107815 1.4181286 cd4-positive, alpha-beta memory t cell VSIG1
-4.522471 2.305888 cd4-positive, alpha-beta memory t cell ANKRD36BP1
4.647982 11.247643 cd4-positive, alpha-beta memory t cell SYNJ2
4.2265005 -12.85251 cd4-positive, alpha-beta memory t cell ZCCHC12
4.1167717 -11.482331 cd4-positive, alpha-beta memory t cell ZNF773
4.228284 -12.19607 cd4-positive, alpha-beta memory t cell PFDN5
-5.4477525 1.8597444 cd4-positive, alpha-beta memory t cell RPS15A
0.78044486 -18.534494 cd4-positive, alpha-beta memory t cell CLEC2D
3.879449 10.935104 cd4-positive, alpha-beta memory t cell USP36
4.2118244 -8.265298 cd4-positive, alpha-beta memory t cell STK10
4.278946 -10.863957 cd4-positive, alpha-beta memory t cell TMEM65
4.7926426 -3.9190717 cd4-positive, alpha-beta memory t cell SERP1
-4.308391 2.238148 cd4-positive, alpha-beta memory t cell CLK1
5.148494 -5.9954505 cd4-positive, alpha-beta memory t cell ZDHHC18
-0.16307582 12.45891 cd4-positive, alpha-beta memory t cell MLLT3
-5.5575423 2.361728 cd4-positive, alpha-beta memory t cell TUBA4A
4.1294756 -12.002186 cd4-positive, alpha-beta memory t cell ZNF394
3.8231704 -11.925055 cd4-positive, alpha-beta memory t cell HCLS1
0.436653 -18.291126 cd4-positive, alpha-beta memory t cell RPLP2
-3.7858005 2.6974335 cd4-positive, alpha-beta memory t cell TSC22D4
4.268795 -12.335172 cd4-positive, alpha-beta memory t cell PABPC1
-4.084833 1.4505595 cd4-positive, alpha-beta memory t cell FNBP4
-12.950713 -0.6191604 cd4-positive, alpha-beta memory t cell ZNF830
1.5865784 -17.386967 cd4-positive, alpha-beta memory t cell KLRB1
3.0121632 -4.4936013 cd4-positive, alpha-beta memory t cell PTPN7
4.487698 -12.013516 cd4-positive, alpha-beta memory t cell GLMN
4.454298 -11.55739 cd4-positive, alpha-beta memory t cell PIM1
4.507152 11.204158 cd4-positive, alpha-beta memory t cell UBXN1
-15.434786 5.569945 cd4-positive, alpha-beta memory t cell ZNF764
-5.563896 2.0840878 cd4-positive, alpha-beta memory t cell SORL1
-14.430358 0.67800415 cd4-positive, alpha-beta memory t cell EXOSC9
-16.891756 5.3343163 cd4-positive, alpha-beta memory t cell CD2
4.643944 -7.116024 cd4-positive, alpha-beta memory t cell NR4A2
4.445744 -12.217257 cd4-positive, alpha-beta memory t cell IGLC2
5.4790783 -4.5396004 cd4-positive, alpha-beta memory t cell RPS7
-0.4902288 13.343107 cd4-positive, alpha-beta memory t cell NINJ2
7.3329887 2.472539 cd4-positive, alpha-beta memory t cell FGFR1OP2
5.77975 -11.808479 cd4-positive, alpha-beta memory t cell KRR1
0.3684539 13.148618 cd4-positive, alpha-beta memory t cell MYH9
-14.633263 1.9206063 cd4-positive, alpha-beta memory t cell RBM48
1.9472184 -18.09331 cd4-positive, alpha-beta memory t cell AIRE
7.2222514 2.3613362 cd4-positive, alpha-beta memory t cell TRIM59
4.2654724 -12.446365 cd4-positive, alpha-beta memory t cell RBM39
-5.2064233 1.851806 cd4-positive, alpha-beta memory t cell GNAO1
-15.927369 6.416366 cd4-positive, alpha-beta memory t cell IL23A
-16.841608 5.55756 cd4-positive, alpha-beta memory t cell IGHM
1.1530902 -18.907497 cd4-positive, alpha-beta memory t cell SFXN1
4.5275908 -10.132783 cd4-positive, alpha-beta memory t cell POLR1E
7.541311 2.5396373 cd4-positive, alpha-beta memory t cell PHF1
-0.8286841 -0.6448181 cd4-positive, alpha-beta memory t cell IFNG
3.1177704 10.677675 cd4-positive, alpha-beta memory t cell CORO1A
-13.191092 1.0047816 cd4-positive, alpha-beta memory t cell UBTF
-5.311187 1.4016746 cd4-positive, alpha-beta memory t cell PTPRC
4.4664626 11.963018 cd4-positive, alpha-beta memory t cell HERC3
1.5991821 -19.01947 cd4-positive, alpha-beta memory t cell WDR76
0.18683673 -1.9252313 cd4-positive, alpha-beta memory t cell PHF19
-14.706984 1.0150031 cd4-positive, alpha-beta memory t cell NEFM
-0.14480017 -0.6519699 cd4-positive, alpha-beta memory t cell SINHCAF
-13.766707 1.4772135 cd4-positive, alpha-beta memory t cell XPC
4.689637 -7.848564 cd4-positive, alpha-beta memory t cell SPDYA
3.5442092 10.899345 cd4-positive, alpha-beta memory t cell IKZF5
4.032821 10.325756 cd4-positive, alpha-beta memory t cell RAB33B
-6.2436175 1.7440509 cd4-positive, alpha-beta memory t cell PHACTR2
-4.0148473 2.7458508 cd4-positive, alpha-beta memory t cell RAPGEF6
-4.5929184 2.1045399 cd4-positive, alpha-beta memory t cell RASAL3
-5.818414 1.6375813 cd4-positive, alpha-beta memory t cell ELK3
-16.639109 5.32556 cd4-positive, alpha-beta memory t cell TMEM120B
3.8484352 -4.971751 cd4-positive, alpha-beta memory t cell MLLT6
-0.09071898 13.366016 cd4-positive, alpha-beta memory t cell FMNL1
5.097742 -4.0804605 cd4-positive, alpha-beta memory t cell EID2B
-4.8059063 1.733841 cd4-positive, alpha-beta memory t cell ELMO2
-14.640099 1.8976058 cd4-positive, alpha-beta memory t cell RPS15
0.5693141 -18.479956 cd4-positive, alpha-beta memory t cell DCD
0.9567003 -18.683302 cd4-positive, alpha-beta memory t cell PPP1R10
-0.4902208 -1.3573629 cd4-positive, alpha-beta memory t cell PTPN6
-13.660041 -0.36213273 cd4-positive, alpha-beta memory t cell RNF126
0.42598692 13.152059 cd4-positive, alpha-beta memory t cell IL27RA
2.6599429 9.95113 cd4-positive, alpha-beta memory t cell RPL26
7.5606265 2.6597738 cd4-positive, alpha-beta memory t cell PPHLN1
-13.361545 -0.50600886 cd4-positive, alpha-beta memory t cell DDX18
5.77808 -10.704238 cd4-positive, alpha-beta memory t cell KMT2A
-4.103686 1.5557476 cd4-positive, alpha-beta memory t cell ITGAL
-13.527942 0.08996979 cd4-positive, alpha-beta memory t cell AKTIP
3.971373 -11.447833 cd4-positive, alpha-beta memory t cell PDE4B
4.0778356 -10.454324 cd4-positive, alpha-beta memory t cell CDK5R1
-4.312325 1.8149171 cd4-positive, alpha-beta memory t cell ZNF821
4.825363 -3.342226 cd4-positive, alpha-beta memory t cell DDB2
4.0902367 -12.449641 cd4-positive, alpha-beta memory t cell RPL39
4.490172 -11.56479 cd4-positive, alpha-beta memory t cell TSC22D3
7.3255 2.1635437 cd4-positive, alpha-beta memory t cell GINS4
3.8951564 -11.474086 cd4-positive, alpha-beta memory t cell PPP6R1
3.7231169 10.94784 cd4-positive, alpha-beta memory t cell SFMBT2
-12.8911705 8.438343 cd4-positive, alpha-beta memory t cell FYB1
-13.617658 8.259155 cd4-positive, alpha-beta memory t cell PDCD7
4.8623486 11.216177 cd4-positive, alpha-beta memory t cell BBC3
4.1568823 -11.508925 cd4-positive, alpha-beta memory t cell SEMA4D
0.8838119 -18.958366 cd4-positive, alpha-beta memory t cell CCDC85B
0.7155678 -18.750109 cd4-positive, alpha-beta memory t cell RUNX2
-3.9649923 1.5045768 cd4-positive, alpha-beta memory t cell FAM118A
-16.888514 5.3177066 cd4-positive, alpha-beta memory t cell RASA3
-0.1544289 -1.0298644 cd4-positive, alpha-beta memory t cell RPS27
5.7115984 -11.222673 cd4-positive, alpha-beta memory t cell CRIP1
4.4815073 -12.04202 cd4-positive, alpha-beta memory t cell LIN37
-15.14391 4.303303 cd4-positive, alpha-beta memory t cell CBX7
5.3313174 -11.813897 cd4-positive, alpha-beta memory t cell STAT3
4.1385517 11.117277 cd4-positive, alpha-beta memory t cell MAF
-16.293537 5.830906 cd4-positive, alpha-beta memory t cell ZNF609
4.494255 -11.943578 cd4-positive, alpha-beta memory t cell PASK
-0.010432209 -1.5528966 cd4-positive, alpha-beta memory t cell PARP1
4.5532346 -6.066667 cd4-positive, alpha-beta memory t cell CD40LG
-5.344916 1.3676467 cd4-positive, alpha-beta memory t cell DIABLO
4.004462 -10.985881 cd4-positive, alpha-beta memory t cell HNRNPDL
3.0357585 -4.4003916 cd4-positive, alpha-beta memory t cell GFI1
4.576117 -11.442556 cd4-positive, alpha-beta memory t cell RPL18
2.524551 9.51694 cd4-positive, alpha-beta memory t cell HRH4
4.319697 -10.727101 cd4-positive, alpha-beta memory t cell FAS
4.6726847 -9.86008 cd4-positive, alpha-beta memory t cell ZNF792
3.7021172 -10.609983 cd4-positive, alpha-beta memory t cell EIF3G
3.2546053 -5.067893 cd4-positive, alpha-beta memory t cell MRPL38
3.8716228 -11.411882 cd4-positive, alpha-beta memory t cell SH3KBP1
4.563161 11.69974 cd4-positive, alpha-beta memory t cell B3GAT2
3.6811147 -5.035162 cd4-positive, alpha-beta memory t cell SUZ12
-16.150717 5.9834285 cd4-positive, alpha-beta memory t cell SUPT3H
-4.964421 2.5053906 cd4-positive, alpha-beta memory t cell IL6ST
4.474048 -9.383127 cd4-positive, alpha-beta memory t cell WWP1
0.6732294 -18.916674 cd4-positive, alpha-beta memory t cell FXYD1
3.9888859 -12.150164 cd4-positive, alpha-beta memory t cell SUN2
3.744611 -10.25113 cd4-positive, alpha-beta memory t cell RPS28
2.9191911 11.463531 cd4-positive, alpha-beta memory t cell TTC32
1.6275784 -18.700502 cd4-positive, alpha-beta memory t cell RPL6
7.000828 1.0402163 cd4-positive, alpha-beta memory t cell EED
1.1093947 -18.905693 cd4-positive, alpha-beta memory t cell CD4
-0.38402277 13.569039 cd4-positive, alpha-beta memory t cell AKT3
-5.4564457 2.292818 cd4-positive, alpha-beta memory t cell ARRB2
3.8086731 -11.894108 cd4-positive, alpha-beta memory t cell EVI2A
-15.282122 5.464004 cd4-positive, alpha-beta memory t cell SYNE2
4.119876 -6.067079 cd4-positive, alpha-beta memory t cell RHOG
-3.4390273 1.0781776 cd4-positive, alpha-beta memory t cell ENO2
1.3943477 -19.050161 cd4-positive, alpha-beta memory t cell IRF3
3.064618 11.466822 cd4-positive, alpha-beta memory t cell PTPN22
5.6753254 -10.461293 cd4-positive, alpha-beta memory t cell RPA2
-14.596299 0.99705815 cd4-positive, alpha-beta memory t cell PDE3B
-16.989874 5.0973053 cd4-positive, alpha-beta memory t cell SLAMF1
1.7192029 -15.97977 cd4-positive, alpha-beta memory t cell SIAH2
0.5983802 -18.675919 cd4-positive, alpha-beta memory t cell SKAP1
1.1325132 12.424539 cd4-positive, alpha-beta memory t cell BCL2
1.6747239 -17.088726 cd4-positive, alpha-beta memory t cell WDR82
-14.381666 2.7439394 cd4-positive, alpha-beta memory t cell JAK1
-14.833062 1.9563626 cd4-positive, alpha-beta memory t cell SRP9P1
-2.7099862 0.39581534 cd4-positive, alpha-beta memory t cell KLF2
-3.6017127 1.7518535 cd4-positive, alpha-beta memory t cell ZGPAT
4.186732 -11.455584 cd4-positive, alpha-beta memory t cell ATP2A3
4.3560386 11.62722 cd4-positive, alpha-beta memory t cell MTERF4
-5.219248 1.5023715 cd4-positive, alpha-beta memory t cell RPL7
1.9402224 -18.280376 cd4-positive, alpha-beta memory t cell HIPK1
7.102026 1.788429 cd4-positive, alpha-beta memory t cell MPHOSPH8
0.6752643 -18.62824 cd4-positive, alpha-beta memory t cell STAMBPL1
4.3701653 -11.65656 cd4-positive, alpha-beta memory t cell NDC80
4.5691237 -11.179531 cd4-positive, alpha-beta memory t cell ZBP1
2.921141 10.488932 cd4-positive, alpha-beta memory t cell OBSCN
-4.682473 2.2017615 cd4-positive, alpha-beta memory t cell RPS29
0.6625921 12.808323 cd4-positive, alpha-beta memory t cell KMT2E
0.7349954 -18.924347 cd4-positive, alpha-beta memory t cell EZR
4.013841 -11.37475 cd4-positive, alpha-beta memory t cell IPCEF1
-15.880828 6.370472 cd4-positive, alpha-beta memory t cell ABT1
4.8297157 11.738792 cd4-positive, alpha-beta memory t cell CD44
0.32050171 -18.274002 cd4-positive, alpha-beta memory t cell RPL35A
1.849534 -18.213808 cd4-positive, alpha-beta memory t cell HBA2
7.571155 2.4684093 cd4-positive, alpha-beta memory t cell TOX2
4.5848246 -11.012781 cd4-positive, alpha-beta memory t cell PLEKHB1
-5.560787 1.1894728 cd4-positive, alpha-beta memory t cell TOB1
4.0927925 -12.74071 cd4-positive, alpha-beta memory t cell ZRSR2
4.7267714 11.932614 cd4-positive, alpha-beta memory t cell DOCK8
-15.144853 4.187664 cd4-positive, alpha-beta memory t cell PDZD4
-15.540673 5.9409375 cd4-positive, alpha-beta memory t cell THAP11
-13.4641285 8.789538 cd4-positive, alpha-beta memory t cell CD47
-14.008493 1.8457083 cd4-positive, alpha-beta memory t cell EEF1D
-4.675678 2.1614676 cd4-positive, alpha-beta memory t cell SPEF2
3.1438065 -4.545692 cd4-positive, alpha-beta memory t cell NCAPH
0.040726513 12.436365 cd4-positive, alpha-beta memory t cell CD6
3.9540792 -12.471325 cd4-positive, alpha-beta memory t cell PDCD4
4.8716326 -4.3225822 cd4-positive, alpha-beta memory t cell CSTF2T
-13.384409 -0.7458065 cd4-positive, alpha-beta memory t cell ELMO1
-5.253676 1.7022423 cd4-positive, alpha-beta memory t cell AREG
1.9888268 -17.692945 cd4-positive, alpha-beta memory t cell INPP4A
3.771372 -10.50095 cd4-positive, alpha-beta memory t cell ROPN1L
0.555152 13.212124 cd4-positive, alpha-beta memory t cell SLC9A3R1
-13.697331 8.348501 cd4-positive, alpha-beta memory t cell PCSK7
1.8702929 -18.373188 cd4-positive, alpha-beta memory t cell CAPN7
3.7714236 -11.042353 cd4-positive, alpha-beta memory t cell CD28
-14.040075 1.7638663 cd4-positive, alpha-beta memory t cell POC5
4.895166 -7.747181 cd4-positive, alpha-beta memory t cell HSPA8
-14.673941 2.784698 cd4-positive, alpha-beta memory t cell RPS9
1.6052917 -18.843693 cd4-positive, alpha-beta memory t cell LCP2
-14.6261 1.4236245 cd4-positive, alpha-beta memory t cell RCAN3
4.577303 -8.461455 cd4-positive, alpha-beta memory t cell PBX4
4.1560836 -4.1623197 cd4-positive, alpha-beta memory t cell CEP250
4.001566 -11.204984 cd4-positive, alpha-beta memory t cell ALOX5AP
-14.792297 3.2253091 cd4-positive, alpha-beta memory t cell HNRNPA0
5.424718 -11.607745 cd4-positive, alpha-beta memory t cell RRS1
4.2557707 -10.338771 cd4-positive, alpha-beta memory t cell ZBTB1
4.3520722 11.484663 cd4-positive, alpha-beta memory t cell MSL2
-14.252314 2.618466 cd4-positive, alpha-beta memory t cell CCNH
4.417181 -9.190617 cd4-positive, alpha-beta memory t cell ACTR6
-6.01671 2.0055919 cd4-positive, alpha-beta memory t cell RPS8
2.6274223 11.56305 cd4-positive, alpha-beta memory t cell PPP2R5C
3.9869478 -11.917284 cd4-positive, alpha-beta memory t cell ZNF837
4.629472 -10.167359 cd4-positive, alpha-beta memory t cell RGS19
0.82563925 -18.423752 cd4-positive, alpha-beta memory t cell OPTN
2.0327482 -18.261019 cd4-positive, alpha-beta memory t cell RPL27A
3.8846703 -11.534581 cd4-positive, alpha-beta memory t cell NSA2
4.309069 -10.528584 cd4-positive, alpha-beta memory t cell PBXIP1
4.4639564 10.829859 cd4-positive, alpha-beta memory t cell S100A4
-13.322404 8.642164 cd4-positive, alpha-beta memory t cell GPBP1
3.922892 10.579916 cd4-positive, alpha-beta memory t cell EDC4
-3.5868611 1.2896807 cd4-positive, alpha-beta memory t cell RASGRP2
4.60289 11.030365 cd4-positive, alpha-beta memory t cell TERF2IP
1.480477 -16.576551 cd4-positive, alpha-beta memory t cell IL21
0.57903594 -18.851877 cd4-positive, alpha-beta memory t cell SLA
5.144929 -4.1231484 cd4-positive, alpha-beta memory t cell KANSL1
3.2181487 -5.0969334 cd4-positive, alpha-beta memory t cell IKBKE
4.304683 -11.929482 cd4-positive, alpha-beta memory t cell DNMT1
3.2008193 10.339862 cd4-positive, alpha-beta memory t cell STX2
-13.484534 -0.29042968 cd4-positive, alpha-beta memory t cell TNFAIP8
4.6948957 -8.502489 cd4-positive, alpha-beta memory t cell RPL32
-5.3700976 2.320169 cd4-positive, alpha-beta memory t cell NIPAL3
3.1649654 -4.4689713 cd4-positive, alpha-beta memory t cell EVI2B
-0.11253825 13.48024 cd4-positive, alpha-beta memory t cell SLC38A1
-13.521819 8.384371 cd4-positive, alpha-beta memory t cell SYNGAP1
-16.628237 5.3431835 cd4-positive, alpha-beta memory t cell RPL21
5.286804 -4.640501 cd4-positive, alpha-beta memory t cell RPL14
1.5292392 -18.89564 cd4-positive, alpha-beta memory t cell HELQ
5.584614 -4.8502274 cd4-positive, alpha-beta memory t cell HERC5
4.430976 -10.054537 cd4-positive, alpha-beta memory t cell DUSP11
-3.966785 2.2946384 cd4-positive, alpha-beta memory t cell TBC1D4
-14.400592 2.9167643 cd4-positive, alpha-beta memory t cell XPO6
7.266301 1.8478383 cd4-positive, alpha-beta memory t cell ITGB7
-4.463423 3.167765 cd4-positive, alpha-beta memory t cell TNRC6C
7.3059893 1.2653277 cd4-positive, alpha-beta memory t cell MSL3
3.907277 -11.365505 cd4-positive, alpha-beta memory t cell IL10RA
0.85100156 13.0321865 cd4-positive, alpha-beta memory t cell GIMAP1
4.2927356 -5.7005663 cd4-positive, alpha-beta memory t cell RPS19
4.0280423 -12.3010845 cd4-positive, alpha-beta memory t cell SUV39H1
-4.8937864 1.4995329 cd4-positive, alpha-beta memory t cell IK
3.8129501 -11.202334 cd4-positive, alpha-beta memory t cell FAM169A
0.49385685 -18.679682 cd4-positive, alpha-beta memory t cell VAMP1
4.20638 -10.259272 cd4-positive, alpha-beta memory t cell IL2RG
0.3814733 -2.1168911 cd4-positive, alpha-beta memory t cell NDE1
7.2063823 1.2413434 cd4-positive, alpha-beta memory t cell GPRASP1
4.4244757 -11.134869 cd4-positive, alpha-beta memory t cell PLCB2
4.380229 -11.410971 cd4-positive, alpha-beta memory t cell WIPF1
1.5787776 -18.761257 cd4-positive, alpha-beta memory t cell GCC1
7.2256784 0.91318 cd4-positive, alpha-beta memory t cell IL2RB
0.46767545 13.156149 cd4-positive, alpha-beta memory t cell IQGAP2
-13.895393 0.1348652 cd4-positive, alpha-beta memory t cell TSEN54
0.33640513 -18.861357 cd4-positive, alpha-beta memory t cell ADSL
0.31434277 12.934521 cd4-positive, alpha-beta memory t cell CYTIP
-4.0043483 2.479126 cd4-positive, alpha-beta memory t cell UHRF2
1.1583627 -14.265976 cd4-positive, alpha-beta memory t cell POLM
5.270856 -4.071514 cd4-positive, alpha-beta memory t cell APBA3
-5.2937164 1.9568168 cd4-positive, alpha-beta memory t cell HMGB1
3.9717932 -12.246074 cd4-positive, alpha-beta memory t cell RPS16
3.7647846 -5.007925 cd4-positive, alpha-beta memory t cell TBCC
-4.901401 2.460363 cd4-positive, alpha-beta memory t cell CEP135
1.296876 -15.598488 cd4-positive, alpha-beta memory t cell HERC6
-13.990772 0.9690359 cd4-positive, alpha-beta memory t cell IL2RA
1.7389224 -17.69725 cd4-positive, alpha-beta memory t cell RELL2
-15.287959 5.2756257 cd4-positive, alpha-beta memory t cell RPS4X
-16.960657 5.4711742 cd4-positive, alpha-beta memory t cell HMGB2
3.9002404 10.863839 cd4-positive, alpha-beta memory t cell OFD1
1.7971598 -16.1066 cd4-positive, alpha-beta memory t cell BIN2
4.196668 -4.1683264 cd4-positive, alpha-beta memory t cell CABIN1
1.6158484 -3.9919174 cd4-positive, alpha-beta memory t cell DBF4
-15.043954 4.6882067 cd4-positive, alpha-beta memory t cell MALT1
0.6136637 -2.1905932 cd4-positive, alpha-beta memory t cell IL18RAP
-15.9779 6.4409094 cd4-positive, alpha-beta memory t cell GRK6
-12.951687 8.548886 cd4-positive, alpha-beta memory t cell CRYBG1
-5.1823254 1.7276685 cd4-positive, alpha-beta memory t cell NKTR
-13.389323 7.8720746 cd4-positive, alpha-beta memory t cell GIMAP5
4.217662 -7.8773293 cd4-positive, alpha-beta memory t cell TACC3
-14.350582 1.1029984 cd4-positive, alpha-beta memory t cell CHD2
3.6261842 -9.741005 cd4-positive, alpha-beta memory t cell IL6R
-0.14905708 12.914877 cd4-positive, alpha-beta memory t cell RPL41
3.9777243 -6.425154 cd4-positive, alpha-beta memory t cell POLR3GL
-15.923664 6.130274 cd4-positive, alpha-beta memory t cell STK26
5.0961185 -4.090535 cd4-positive, alpha-beta memory t cell HCN2
0.6433746 -18.491465 cd4-positive, alpha-beta memory t cell GRAP2
4.246982 -12.429853 cd4-positive, alpha-beta memory t cell PREX1
3.7671647 -4.605101 cd4-positive, alpha-beta memory t cell TNFRSF18
-12.858473 8.673809 cd4-positive, alpha-beta memory t cell TMC8
-13.290908 -0.49295604 cd4-positive, alpha-beta memory t cell SACS
-4.5075946 2.259581 cd4-positive, alpha-beta memory t cell HAX1
1.232198 -14.939079 cd4-positive, alpha-beta memory t cell SRSF7
-12.930077 8.542779 cd4-positive, alpha-beta memory t cell PRIM1
4.3256993 -12.045543 cd4-positive, alpha-beta memory t cell AIP
-4.379166 1.7402582 cd4-positive, alpha-beta memory t cell SAMHD1
0.257046 13.328686 cd4-positive, alpha-beta memory t cell UBE2D2
-5.819002 1.6070035 cd4-positive, alpha-beta memory t cell DUSP4
3.704874 -3.9864976 cd4-positive, alpha-beta memory t cell EEF1G
7.551029 2.8620543 cd4-positive, alpha-beta memory t cell MECP2
-6.13545 1.8567921 cd4-positive, alpha-beta memory t cell NEFL
-13.40152 8.640878 cd4-positive, alpha-beta memory t cell MED10
3.813526 -10.197466 cd4-positive, alpha-beta memory t cell NCK1
3.897767 -11.304619 cd4-positive, alpha-beta memory t cell CCDC59
3.9638624 -10.647736 cd4-positive, alpha-beta memory t cell CD48
-4.343089 1.3416951 cd4-positive, alpha-beta memory t cell RBM23
-16.276464 5.577844 cd4-positive, alpha-beta memory t cell RICTOR
3.8839715 -10.200159 cd4-positive, alpha-beta memory t cell ARHGEF1
-5.146704 2.3347404 cd4-positive, alpha-beta memory t cell IKZF1
4.642099 11.37714 cd4-positive, alpha-beta memory t cell TBC1D31
3.4550636 -4.1123147 cd4-positive, alpha-beta memory t cell CPNE1
1.1016642 -3.6947603 cd4-positive, alpha-beta memory t cell SRSF5
0.8106696 -18.52985 cd4-positive, alpha-beta memory t cell ANKRD44
4.540581 -7.5363593 cd4-positive, alpha-beta memory t cell BATF
1.0424516 -18.216408 cd4-positive, alpha-beta memory t cell TRIM62
-14.218106 1.3230325 cd4-positive, alpha-beta memory t cell PATJ
-14.990483 3.7112153 cd4-positive, alpha-beta memory t cell KMT5C
-15.004521 3.5122526 cd4-positive, alpha-beta memory t cell CBLB
1.3771544 -16.29902 cd4-positive, alpha-beta memory t cell FOXN2
3.3078306 -4.336467 cd4-positive, alpha-beta memory t cell RPL22
3.8982236 11.09406 cd4-positive, alpha-beta memory t cell TRAF1
0.8738189 -18.41759 cd4-positive, alpha-beta memory t cell RPL30
1.2369919 -18.885962 cd4-positive, alpha-beta memory t cell TSPAN18
7.3548393 1.4960343 cd4-positive, alpha-beta memory t cell GPR25
-13.107541 8.448091 cd4-positive, alpha-beta memory t cell ERP29
1.9382302 11.5922165 cd4-positive, alpha-beta memory t cell CMTM3
5.065502 -6.6896358 cd4-positive, alpha-beta memory t cell FRYL
4.4061813 -8.644387 cd4-positive, alpha-beta memory t cell RAP1B
3.7801464 -11.943203 cd4-positive, alpha-beta memory t cell TRADD
-12.879069 8.68275 cd4-positive, alpha-beta memory t cell UBASH3A
1.2107123 -17.825924 cd4-positive, alpha-beta memory t cell GLOD4
3.6579144 -11.233891 cd4-positive, alpha-beta memory t cell ARHGEF6
-13.774336 -0.09212817 cd4-positive, alpha-beta memory t cell MAP3K4
4.59564 -11.635155 cd4-positive, alpha-beta memory t cell MBP
0.80318034 -18.758104 cd4-positive, alpha-beta memory t cell GYPC
1.0587914 -18.965694 cd4-positive, alpha-beta memory t cell PRR5
-5.426562 1.69721 cd4-positive, alpha-beta memory t cell CASP8AP2
4.6231894 -11.297495 cd4-positive, alpha-beta memory t cell KMT2B
1.6196667 -17.781773 cd4-positive, alpha-beta memory t cell FAU
3.9139452 -12.250371 cd4-positive, alpha-beta memory t cell RAP1GDS1
-4.89661 2.40418 cd4-positive, alpha-beta memory t cell GZMA
1.9173158 -18.076067 cd4-positive, alpha-beta memory t cell RIPK2
-5.1584253 2.6280072 cd4-positive, alpha-beta memory t cell MOAP1
1.2464197 -17.383732 cd4-positive, alpha-beta memory t cell EVL
-4.8064094 2.663874 cd4-positive, alpha-beta memory t cell CXCR5
3.3786201 10.506021 cd4-positive, alpha-beta memory t cell DDX24
-12.826159 0.5236977 cd4-positive, alpha-beta memory t cell ANKRD55
0.19985051 11.763811 cd4-positive, alpha-beta memory t cell NOP58
5.0294023 -6.4356675 cd4-positive, alpha-beta memory t cell MIER1
4.1962585 -10.598544 cd4-positive, alpha-beta memory t cell NOP2
-14.994789 3.8153114 cd4-positive, alpha-beta memory t cell SLC16A7
0.11318183 -2.1748154 cd4-positive, alpha-beta memory t cell TRAPPC6A
4.229231 10.662209 cd4-positive, alpha-beta memory t cell VAV1
-5.2036886 2.3195279 cd4-positive, alpha-beta memory t cell HSPA1L
1.4542512 -17.84329 cd4-positive, alpha-beta memory t cell ARID5A
-15.175674 5.1352344 cd4-positive, alpha-beta memory t cell PLAC8
-3.3582063 1.5397445 cd4-positive, alpha-beta memory t cell STK4
1.5366815 11.54088 cd4-positive, alpha-beta memory t cell CSNK1G2
|