-
Notifications
You must be signed in to change notification settings - Fork 0
/
mart_export.txt
22723 lines (22723 loc) · 836 KB
/
mart_export.txt
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
Gene type,Gene name,Gene stable ID
protein_coding,MT-ND1,ENSG00000198888
protein_coding,MT-ND2,ENSG00000198763
protein_coding,MT-CO1,ENSG00000198804
protein_coding,MT-CO2,ENSG00000198712
protein_coding,MT-ATP8,ENSG00000228253
protein_coding,MT-ATP6,ENSG00000198899
protein_coding,MT-CO3,ENSG00000198938
protein_coding,MT-ND3,ENSG00000198840
protein_coding,MT-ND4L,ENSG00000212907
protein_coding,MT-ND4,ENSG00000198886
protein_coding,MT-ND5,ENSG00000198786
protein_coding,MT-ND6,ENSG00000198695
protein_coding,MT-CYB,ENSG00000198727
protein_coding,NLRP7,ENSG00000277776
protein_coding,TFPT,ENSG00000276263
protein_coding,AC025283.2,ENSG00000262621
protein_coding,AL929561.4,ENSG00000278714
protein_coding,LENG1,ENSG00000278426
protein_coding,AC012314.14,ENSG00000276220
protein_coding,AC136352.2,ENSG00000276760
protein_coding,GP6,ENSG00000275633
protein_coding,GP6,ENSG00000278670
protein_coding,AL592183.1,ENSG00000273748
protein_coding,MAFIP,ENSG00000274847
protein_coding,RDH13,ENSG00000274418
protein_coding,AP000349.1,ENSG00000267954
protein_coding,VSTM1,ENSG00000276159
protein_coding,TFPT,ENSG00000276323
protein_coding,AC171558.3,ENSG00000275249
protein_coding,VSTM1,ENSG00000277607
protein_coding,OSCAR,ENSG00000275644
protein_coding,AC133551.1,ENSG00000274175
protein_coding,CR388407.1,ENSG00000275606
protein_coding,AC136616.2,ENSG00000277761
protein_coding,AC012314.11,ENSG00000275605
protein_coding,VSTM1,ENSG00000276363
protein_coding,CNOT3,ENSG00000274941
protein_coding,AC011476.11,ENSG00000277824
protein_coding,RPS9,ENSG00000274626
protein_coding,AC243734.1,ENSG00000274542
protein_coding,OSCAR,ENSG00000274703
protein_coding,AC243790.1,ENSG00000276253
protein_coding,VARS2,ENSG00000285089
protein_coding,OSCAR,ENSG00000275551
protein_coding,AC012314.9,ENSG00000274905
protein_coding,GP6,ENSG00000274050
protein_coding,TSEN34,ENSG00000278712
protein_coding,SURF4,ENSG00000280951
protein_coding,MBOAT7,ENSG00000278519
protein_coding,AC006518.7,ENSG00000284826
protein_coding,AL391987.1,ENSG00000170152
protein_coding,SERTAD4,ENSG00000281230
protein_coding,HHAT,ENSG00000280680
protein_coding,NLRP2,ENSG00000275796
protein_coding,AL627230.1,ENSG00000275493
protein_coding,TFPT,ENSG00000276022
protein_coding,AC012314.7,ENSG00000274873
protein_coding,MBOAT7,ENSG00000274194
protein_coding,SURF6,ENSG00000281309
protein_coding,TARM1,ENSG00000274889
protein_coding,AC007325.2,ENSG00000277196
protein_coding,GREM1,ENSG00000276886
protein_coding,AL662852.3,ENSG00000274063
protein_coding,AC006449.4,ENSG00000277005
protein_coding,AC012314.21,ENSG00000277707
protein_coding,OSCAR,ENSG00000277088
protein_coding,AC236040.1,ENSG00000272000
protein_coding,ACP2,ENSG00000134575
protein_coding,OSCAR,ENSG00000278378
protein_coding,MTMR10,ENSG00000277086
protein_coding,AC012314.12,ENSG00000275724
protein_coding,TSEN34,ENSG00000275165
protein_coding,CNOT3,ENSG00000275979
protein_coding,AC145212.1,ENSG00000277400
protein_coding,AC213203.1,ENSG00000268674
protein_coding,AC011476.10,ENSG00000277629
protein_coding,CNOT3,ENSG00000276082
protein_coding,RDH13,ENSG00000276341
protein_coding,MBOAT7,ENSG00000278322
protein_coding,NLRP7,ENSG00000277179
protein_coding,AC012314.22,ENSG00000277722
protein_coding,TSEN34,ENSG00000274796
protein_coding,RDH13,ENSG00000275474
protein_coding,OBP2B,ENSG00000280584
protein_coding,VSTM1,ENSG00000274887
protein_coding,GP6,ENSG00000275931
protein_coding,CR753845.2,ENSG00000269167
protein_coding,RDH13,ENSG00000273944
protein_coding,OSCAR,ENSG00000278533
protein_coding,VSTM1,ENSG00000275577
protein_coding,FAN1,ENSG00000276787
protein_coding,AC142525.4,ENSG00000280514
protein_coding,ARHGAP11A,ENSG00000275568
protein_coding,VARS2,ENSG00000285224
protein_coding,TARM1,ENSG00000276145
protein_coding,AC026369.8,ENSG00000282676
protein_coding,WNT3,ENSG00000277626
protein_coding,AC006518.8,ENSG00000285332
protein_coding,AC012314.24,ENSG00000277996
protein_coding,ABO,ENSG00000281879
protein_coding,AL593848.2,ENSG00000283984
protein_coding,SURF1,ENSG00000280627
protein_coding,GP6,ENSG00000274566
protein_coding,AC233755.1,ENSG00000275063
protein_coding,CRHR1,ENSG00000278232
protein_coding,AL627230.3,ENSG00000286079
protein_coding,RYBP,ENSG00000281766
protein_coding,TSEN34,ENSG00000274672
protein_coding,TFPT,ENSG00000274073
protein_coding,AC136616.1,ENSG00000273554
protein_coding,AC233755.2,ENSG00000277856
protein_coding,GSTT2B,ENSG00000278695
protein_coding,RPL7A,ENSG00000280858
protein_coding,AC240274.1,ENSG00000271254
protein_coding,SCG5,ENSG00000277614
protein_coding,AC011043.2,ENSG00000278198
protein_coding,AC012314.23,ENSG00000277953
protein_coding,NLRP2,ENSG00000278682
protein_coding,OSCAR,ENSG00000276982
protein_coding,TRPM1,ENSG00000274965
protein_coding,ZNF883,ENSG00000285447
protein_coding,GP6,ENSG00000276211
protein_coding,VSTM1,ENSG00000276066
protein_coding,AC012314.26,ENSG00000278365
protein_coding,AC090958.3,ENSG00000282035
protein_coding,TFPT,ENSG00000275086
protein_coding,AC023491.2,ENSG00000278633
protein_coding,AC012314.5,ENSG00000274359
protein_coding,TARM1,ENSG00000275123
protein_coding,RDH13,ENSG00000276826
protein_coding,AC012314.4,ENSG00000274144
protein_coding,AC012314.19,ENSG00000277154
protein_coding,AL354822.1,ENSG00000278384
protein_coding,AC011841.1,ENSG00000273496
protein_coding,TFPT,ENSG00000276296
protein_coding,AC004556.1,ENSG00000276345
protein_coding,NLRP7,ENSG00000276804
protein_coding,AL662796.1,ENSG00000277263
protein_coding,GPX6,ENSG00000281185
protein_coding,MED22,ENSG00000281022
protein_coding,AC012314.8,ENSG00000274894
protein_coding,AC011476.5,ENSG00000273916
protein_coding,RPS9,ENSG00000278081
protein_coding,AC012314.10,ENSG00000275117
protein_coding,LENG1,ENSG00000276628
protein_coding,DOHH,ENSG00000129932
protein_coding,RDH13,ENSG00000278149
protein_coding,AP006285.3,ENSG00000276565
protein_coding,SURF2,ENSG00000281024
protein_coding,BX072566.1,ENSG00000277630
protein_coding,OSCAR,ENSG00000273511
protein_coding,AC007325.1,ENSG00000276017
protein_coding,GP6,ENSG00000276065
protein_coding,AC007244.1,ENSG00000286265
protein_coding,CHRFAM7A,ENSG00000275917
protein_coding,LENG1,ENSG00000277457
protein_coding,TJP1,ENSG00000277401
protein_coding,CR933783.1,ENSG00000274733
protein_coding,GOLGA8J,ENSG00000278119
protein_coding,RDH13,ENSG00000274504
protein_coding,AC011295.2,ENSG00000275049
protein_coding,LENG1,ENSG00000278257
protein_coding,TFPT,ENSG00000278161
protein_coding,AC011476.6,ENSG00000274053
protein_coding,MBOAT7,ENSG00000277923
protein_coding,NLRP7,ENSG00000275483
protein_coding,AC213203.2,ENSG00000277475
protein_coding,AC012314.18,ENSG00000276766
protein_coding,AC011476.4,ENSG00000273506
protein_coding,CR547123.1,ENSG00000277403
protein_coding,TARM1,ENSG00000276604
protein_coding,CR759815.2,ENSG00000258002
protein_coding,TARM1,ENSG00000275806
protein_coding,TARM1,ENSG00000275384
protein_coding,KCNH1,ENSG00000283965
protein_coding,AC012314.20,ENSG00000277667
protein_coding,MBOAT7,ENSG00000277025
protein_coding,KLF13,ENSG00000275746
protein_coding,AC011476.9,ENSG00000275822
protein_coding,VSTM1,ENSG00000274953
protein_coding,AC012314.25,ENSG00000278363
protein_coding,AC226007.1,ENSG00000275798
protein_coding,CNOT3,ENSG00000277615
protein_coding,BX004987.1,ENSG00000278704
protein_coding,AC136616.3,ENSG00000278782
protein_coding,GPX5,ENSG00000257770
protein_coding,MBOAT7,ENSG00000277733
protein_coding,NLRP7,ENSG00000277071
protein_coding,TFPT,ENSG00000273833
protein_coding,AC141272.1,ENSG00000277836
protein_coding,AC026740.3,ENSG00000286094
protein_coding,AC007325.4,ENSG00000278817
protein_coding,NLRP2,ENSG00000275399
protein_coding,CR847794.2,ENSG00000257215
protein_coding,AL391987.2,ENSG00000204805
protein_coding,AC011043.1,ENSG00000276256
protein_coding,AL513523.9,ENSG00000269823
protein_coding,TSEN34,ENSG00000273896
protein_coding,TARM1,ENSG00000273875
protein_coding,NLRP2,ENSG00000278789
protein_coding,NLRP2,ENSG00000275082
protein_coding,VSTM1,ENSG00000275330
protein_coding,RPS9,ENSG00000277079
protein_coding,TNK2,ENSG00000061938
protein_coding,NLRP7,ENSG00000277786
protein_coding,AC171558.1,ENSG00000274792
protein_coding,TARM1,ENSG00000277178
protein_coding,AC012314.15,ENSG00000276260
protein_coding,LENG1,ENSG00000276774
protein_coding,LENG1,ENSG00000275935
protein_coding,VARS2,ENSG00000285192
protein_coding,GOLGA6L9,ENSG00000197978
protein_coding,SCD,ENSG00000099194
protein_coding,ACSL5,ENSG00000197142
protein_coding,INSM2,ENSG00000168348
protein_coding,ANGPTL3,ENSG00000132855
protein_coding,FSHR,ENSG00000170820
protein_coding,C12orf29,ENSG00000133641
protein_coding,COL6A3,ENSG00000163359
protein_coding,VAT1,ENSG00000108828
protein_coding,RPS4X,ENSG00000198034
protein_coding,HJV,ENSG00000168509
protein_coding,AL355916.3,ENSG00000258989
protein_coding,SURF4,ENSG00000148248
protein_coding,TMEM30B,ENSG00000182107
protein_coding,LBHD2,ENSG00000283071
protein_coding,USH2A,ENSG00000042781
protein_coding,ACSF3,ENSG00000176715
protein_coding,PIN4,ENSG00000102309
protein_coding,EXOC3L4,ENSG00000205436
protein_coding,C12orf50,ENSG00000165805
protein_coding,FAM71F2,ENSG00000205085
protein_coding,ACMSD,ENSG00000153086
protein_coding,RND2,ENSG00000108830
protein_coding,IL32,ENSG00000008517
protein_coding,PGAM5,ENSG00000247077
protein_coding,CITED1,ENSG00000125931
protein_coding,QPRT,ENSG00000103485
protein_coding,RCC2,ENSG00000179051
protein_coding,IARS,ENSG00000196305
protein_coding,NOXA1,ENSG00000188747
protein_coding,CCNT2,ENSG00000082258
protein_coding,XPR1,ENSG00000143324
protein_coding,UNC93A,ENSG00000112494
protein_coding,PXMP2,ENSG00000176894
protein_coding,CEP290,ENSG00000198707
protein_coding,SPN,ENSG00000197471
protein_coding,PSMC2,ENSG00000161057
protein_coding,TRMT10C,ENSG00000174173
protein_coding,S100A10,ENSG00000197747
protein_coding,ANKLE2,ENSG00000176915
protein_coding,GPR139,ENSG00000180269
protein_coding,PCNP,ENSG00000081154
protein_coding,ENTPD8,ENSG00000188833
protein_coding,ANKRD31,ENSG00000145700
protein_coding,RND1,ENSG00000172602
protein_coding,ZDHHC6,ENSG00000023041
protein_coding,ZNF516,ENSG00000101493
protein_coding,PMPCB,ENSG00000105819
protein_coding,CYP2C9,ENSG00000138109
protein_coding,WNT8B,ENSG00000075290
protein_coding,CTAG1A,ENSG00000268651
protein_coding,SEMA3A,ENSG00000075213
protein_coding,PPP1R2,ENSG00000184203
protein_coding,GSK3B,ENSG00000082701
protein_coding,CTAG1B,ENSG00000184033
protein_coding,BBS10,ENSG00000179941
protein_coding,ADCY8,ENSG00000155897
protein_coding,ARF3,ENSG00000134287
protein_coding,TUBB,ENSG00000232421
protein_coding,VTI1A,ENSG00000151532
protein_coding,FOXRED1,ENSG00000110074
protein_coding,APOD,ENSG00000189058
protein_coding,HSDL2,ENSG00000119471
protein_coding,SMC5,ENSG00000198887
protein_coding,DNAJC2,ENSG00000105821
protein_coding,PDLIM5,ENSG00000163110
protein_coding,ITPR3,ENSG00000096433
protein_coding,FKBP11,ENSG00000134285
protein_coding,KIAA1958,ENSG00000165185
protein_coding,PLPP4,ENSG00000203805
protein_coding,KBTBD8,ENSG00000163376
protein_coding,IL22,ENSG00000127318
protein_coding,CCNG1,ENSG00000113328
protein_coding,DNM1,ENSG00000106976
protein_coding,TNFAIP2,ENSG00000185215
protein_coding,SUCLG2,ENSG00000172340
protein_coding,STKLD1,ENSG00000198870
protein_coding,FAM118B,ENSG00000197798
protein_coding,CCDC65,ENSG00000139537
protein_coding,ADAMTS13,ENSG00000160323
protein_coding,ZMYND8,ENSG00000101040
protein_coding,GPR156,ENSG00000175697
protein_coding,SLC26A5,ENSG00000170615
protein_coding,AC073610.2,ENSG00000272822
protein_coding,LRRC58,ENSG00000163428
protein_coding,NUDCD2,ENSG00000170584
protein_coding,TCF7L2,ENSG00000148737
protein_coding,EFR3A,ENSG00000132294
protein_coding,STX6,ENSG00000135823
protein_coding,WDR11,ENSG00000120008
protein_coding,ERLIN2,ENSG00000147475
protein_coding,PHF19,ENSG00000119403
protein_coding,FSTL1,ENSG00000163430
protein_coding,SRPRA,ENSG00000182934
protein_coding,KIAA1614,ENSG00000135835
protein_coding,WDR19,ENSG00000157796
protein_coding,GOLGA3,ENSG00000090615
protein_coding,KLF9,ENSG00000119138
protein_coding,UQCC2,ENSG00000137288
protein_coding,HMGCR,ENSG00000113161
protein_coding,PRSS42P,ENSG00000178055
protein_coding,AC104452.1,ENSG00000283189
protein_coding,MDM1,ENSG00000111554
protein_coding,TAFA1,ENSG00000183662
protein_coding,NICN1,ENSG00000145029
protein_coding,S100A11,ENSG00000163191
protein_coding,MAD2L1,ENSG00000164109
protein_coding,HHLA1,ENSG00000132297
protein_coding,OC90,ENSG00000253117
protein_coding,AC100868.1,ENSG00000258417
protein_coding,CDC42EP5,ENSG00000278444
protein_coding,AMT,ENSG00000145020
protein_coding,ZNF605,ENSG00000196458
protein_coding,REXO4,ENSG00000148300
protein_coding,TAFA4,ENSG00000163377
protein_coding,DNAJC13,ENSG00000138246
protein_coding,GNAI2,ENSG00000114353
protein_coding,CHFR,ENSG00000072609
protein_coding,SNRPA1,ENSG00000131876
protein_coding,PARVG,ENSG00000138964
protein_coding,SERPINA3,ENSG00000196136
protein_coding,EOGT,ENSG00000163378
protein_coding,MLF2,ENSG00000089693
protein_coding,ZBTB11,ENSG00000066422
protein_coding,COL4A3BP,ENSG00000113163
protein_coding,SERPINA4,ENSG00000100665
protein_coding,RPL24,ENSG00000114391
protein_coding,PHC1,ENSG00000111752
protein_coding,SERPINA5,ENSG00000188488
protein_coding,AL133352.1,ENSG00000255339
protein_coding,CEP97,ENSG00000182504
protein_coding,RBFOX2,ENSG00000100320
protein_coding,SEC31B,ENSG00000075826
protein_coding,KCNQ3,ENSG00000184156
protein_coding,SEMA3D,ENSG00000153993
protein_coding,CYP2C8,ENSG00000138115
protein_coding,AL049839.2,ENSG00000273259
protein_coding,HP,ENSG00000257017
protein_coding,PTMS,ENSG00000159335
protein_coding,M6PR,ENSG00000003056
protein_coding,UBA5,ENSG00000081307
protein_coding,LAIR2,ENSG00000277335
protein_coding,TBC1D3F,ENSG00000282087
protein_coding,PTPRK,ENSG00000273993
protein_coding,TBC1D3H,ENSG00000277974
protein_coding,RIMKLB,ENSG00000166532
protein_coding,TMEM161B,ENSG00000164180
protein_coding,CMTM2,ENSG00000140932
protein_coding,NXPE3,ENSG00000144815
protein_coding,TBC1D3I,ENSG00000282144
protein_coding,ACKR4,ENSG00000129048
protein_coding,A2ML1,ENSG00000166535
protein_coding,ACAD11,ENSG00000240303
protein_coding,NDUFB8,ENSG00000166136
protein_coding,NFKBIZ,ENSG00000144802
protein_coding,TMF1,ENSG00000144747
protein_coding,GAPDH,ENSG00000111640
protein_coding,TPSB2,ENSG00000197253
protein_coding,MYOZ1,ENSG00000177791
protein_coding,HSPA14,ENSG00000187522
protein_coding,C9orf16,ENSG00000171159
protein_coding,TBC1D3G,ENSG00000275760
protein_coding,CYB561D1,ENSG00000174151
protein_coding,HIF1AN,ENSG00000166135
protein_coding,PRPSAP1,ENSG00000161542
protein_coding,CIZ1,ENSG00000148337
protein_coding,TPSG1,ENSG00000116176
protein_coding,UBA3,ENSG00000144744
protein_coding,CACNA1H,ENSG00000196557
protein_coding,NPHP3-ACAD11,ENSG00000274810
protein_coding,ACSM6,ENSG00000173124
protein_coding,HSPA14,ENSG00000284024
protein_coding,NPHP3,ENSG00000113971
protein_coding,PRKG2,ENSG00000138669
protein_coding,MUC20,ENSG00000176945
protein_coding,POU2F1,ENSG00000143190
protein_coding,CDNF,ENSG00000185267
protein_coding,SPHK1,ENSG00000176170
protein_coding,AGAP5,ENSG00000172650
protein_coding,NSMF,ENSG00000165802
protein_coding,KIR3DX1,ENSG00000275918
protein_coding,TMTC3,ENSG00000139324
protein_coding,SYNPO2L,ENSG00000166317
protein_coding,MMP7,ENSG00000137673
protein_coding,TCP10,ENSG00000203690
protein_coding,TRAF1,ENSG00000056558
protein_coding,CSH2,ENSG00000213218
protein_coding,ESPNL,ENSG00000144488
protein_coding,XPO1,ENSG00000082898
protein_coding,PLEKHM1,ENSG00000276358
protein_coding,EDC4,ENSG00000038358
protein_coding,TTLL2,ENSG00000120440
protein_coding,SET,ENSG00000119335
protein_coding,TXNL4B,ENSG00000140830
protein_coding,BFSP2,ENSG00000170819
protein_coding,CDH15,ENSG00000129910
protein_coding,FAM71F1,ENSG00000135248
protein_coding,TMEM108,ENSG00000144868
protein_coding,VRK1,ENSG00000100749
protein_coding,PMFBP1,ENSG00000118557
protein_coding,ADGB,ENSG00000118492
protein_coding,ESRRG,ENSG00000196482
protein_coding,RPAP3,ENSG00000005175
protein_coding,HSD11B2,ENSG00000176387
protein_coding,KLHL6,ENSG00000172578
protein_coding,PLEC,ENSG00000178209
protein_coding,ITIH2,ENSG00000151655
protein_coding,GP2,ENSG00000169347
protein_coding,KITLG,ENSG00000049130
protein_coding,KLHL24,ENSG00000114796
protein_coding,NRN1L,ENSG00000188038
protein_coding,LILRA2,ENSG00000275290
protein_coding,PTPRC,ENSG00000262418
protein_coding,GRM3,ENSG00000198822
protein_coding,NDUFB4,ENSG00000065518
protein_coding,AMIGO1,ENSG00000181754
protein_coding,MR1,ENSG00000153029
protein_coding,POLK,ENSG00000122008
protein_coding,MMP20,ENSG00000137674
protein_coding,MARCKS,ENSG00000277443
protein_coding,DHX38,ENSG00000140829
protein_coding,GTF2E2,ENSG00000197265
protein_coding,ZNF26,ENSG00000198393
protein_coding,HGD,ENSG00000113924
protein_coding,DUSP6,ENSG00000139318
protein_coding,LRRC6,ENSG00000129295
protein_coding,FLOT1,ENSG00000230143
protein_coding,GPR61,ENSG00000156097
protein_coding,SMIM18,ENSG00000253457
protein_coding,YEATS2,ENSG00000163872
protein_coding,TRAF3IP3,ENSG00000009790
protein_coding,ZNF84,ENSG00000198040
protein_coding,GH2,ENSG00000136487
protein_coding,CDV3,ENSG00000091527
protein_coding,TPM2,ENSG00000198467
protein_coding,LAG3,ENSG00000089692
protein_coding,TMEM71,ENSG00000165071
protein_coding,PAPPA2,ENSG00000116183
protein_coding,NEU2,ENSG00000115488
protein_coding,KLHL30,ENSG00000168427
protein_coding,ZNF236,ENSG00000130856
protein_coding,PNPLA7,ENSG00000130653
protein_coding,ARHGAP21,ENSG00000107863
protein_coding,CMTM3,ENSG00000140931
protein_coding,ZNF140,ENSG00000196387
protein_coding,HPR,ENSG00000261701
protein_coding,MAP6D1,ENSG00000180834
protein_coding,OXSR1,ENSG00000172939
protein_coding,PARL,ENSG00000175193
protein_coding,ZNF891,ENSG00000214029
protein_coding,MRPL41,ENSG00000182154
protein_coding,POC1B-GALNT4,ENSG00000259075
protein_coding,GTF2E1,ENSG00000153767
protein_coding,GALNT4,ENSG00000257594
protein_coding,SLC7A8,ENSG00000092068
protein_coding,POC1B,ENSG00000139323
protein_coding,CD63,ENSG00000135404
protein_coding,C1orf74,ENSG00000162757
protein_coding,RABL3,ENSG00000144840
protein_coding,WNT10B,ENSG00000169884
protein_coding,INIP,ENSG00000148153
protein_coding,PTH1R,ENSG00000160801
protein_coding,SLC5A12,ENSG00000148942
protein_coding,AC026786.1,ENSG00000256825
protein_coding,PLCL1,ENSG00000115896
protein_coding,ZNF10,ENSG00000256223
protein_coding,AC131160.1,ENSG00000283765
protein_coding,SLC22A31,ENSG00000259803
protein_coding,GSR,ENSG00000104687
protein_coding,C5,ENSG00000106804
protein_coding,CMC1,ENSG00000187118
protein_coding,ANAPC5,ENSG00000089053
protein_coding,FIBIN,ENSG00000176971
protein_coding,ZNF268,ENSG00000090612
protein_coding,ATP6V0D1,ENSG00000159720
protein_coding,BOD1L2,ENSG00000228075
protein_coding,PCSK6,ENSG00000140479
protein_coding,ST8SIA3,ENSG00000177511
protein_coding,RBMS3,ENSG00000144642
protein_coding,ARHGEF10L,ENSG00000074964
protein_coding,STXBP5L,ENSG00000145087
protein_coding,PAX5,ENSG00000196092
protein_coding,C16orf54,ENSG00000185905
protein_coding,EIF5,ENSG00000100664
protein_coding,WNT1,ENSG00000125084
protein_coding,TCHHL1,ENSG00000182898
protein_coding,SRPRB,ENSG00000144867
protein_coding,NOTCH2NLA,ENSG00000264343
protein_coding,ESPL1,ENSG00000135476
protein_coding,TCHH,ENSG00000159450
protein_coding,MYL3,ENSG00000160808
protein_coding,NBPF10,ENSG00000271425
protein_coding,ZG16,ENSG00000174992
protein_coding,ASTN1,ENSG00000152092
protein_coding,RAB6B,ENSG00000154917
protein_coding,ANHX,ENSG00000227059
protein_coding,BBOX1,ENSG00000129151
protein_coding,CRNN,ENSG00000143536
protein_coding,PGBD5,ENSG00000177614
protein_coding,TF,ENSG00000091513
protein_coding,HRNR,ENSG00000197915
protein_coding,FLG2,ENSG00000143520
protein_coding,FLG,ENSG00000143631
protein_coding,AGAP4,ENSG00000188234
protein_coding,KMT2D,ENSG00000167548
protein_coding,ACTN2,ENSG00000077522
protein_coding,ONECUT2,ENSG00000119547
protein_coding,DPH7,ENSG00000148399
protein_coding,C6orf47,ENSG00000228435
protein_coding,MUC4,ENSG00000145113
protein_coding,RPTN,ENSG00000215853
protein_coding,GHRH,ENSG00000118702
protein_coding,TOPBP1,ENSG00000163781
protein_coding,MMP27,ENSG00000137675
protein_coding,DNAH12,ENSG00000174844
protein_coding,ZNF777,ENSG00000196453
protein_coding,IER5,ENSG00000162783
protein_coding,SHISA4,ENSG00000198892
protein_coding,PRKAG1,ENSG00000181929
protein_coding,ENDOU,ENSG00000111405
protein_coding,CALU,ENSG00000128595
protein_coding,ZNF746,ENSG00000181220
protein_coding,CSRNP1,ENSG00000144655
protein_coding,ZCWPW2,ENSG00000206559
protein_coding,LMOD1,ENSG00000163431
protein_coding,PAX2,ENSG00000075891
protein_coding,RNF34,ENSG00000170633
protein_coding,AC098650.1,ENSG00000283563
protein_coding,HDAC7,ENSG00000061273
protein_coding,AZI2,ENSG00000163512
protein_coding,DNAJC5B,ENSG00000147570
protein_coding,CTRL,ENSG00000141086
protein_coding,KDM2B,ENSG00000089094
protein_coding,ZNHIT3,ENSG00000278574
protein_coding,SNTB1,ENSG00000172164
protein_coding,NBEA,ENSG00000172915
protein_coding,HIF1A,ENSG00000100644
protein_coding,OPN1SW,ENSG00000128617
protein_coding,TIMM23,ENSG00000265354
protein_coding,ATP2B1,ENSG00000070961
protein_coding,PSMB10,ENSG00000205220
protein_coding,MTBP,ENSG00000172167
protein_coding,TIMM17A,ENSG00000134375
protein_coding,NYAP1,ENSG00000166924
protein_coding,ZMYND19,ENSG00000165724
protein_coding,ARL6IP5,ENSG00000144746
protein_coding,MRPL13,ENSG00000172172
protein_coding,SPOP,ENSG00000121067
protein_coding,AC040162.1,ENSG00000261884
protein_coding,CRKL,ENSG00000099942
protein_coding,FAM227B,ENSG00000166262
protein_coding,PSKH1,ENSG00000159792
protein_coding,PIGW,ENSG00000275600
protein_coding,MYO19,ENSG00000278372
protein_coding,SLF2,ENSG00000119906
protein_coding,XIRP1,ENSG00000168334
protein_coding,BBS5,ENSG00000163093
protein_coding,DDN,ENSG00000181418
protein_coding,COG2,ENSG00000135775
protein_coding,PHF20L1,ENSG00000129292
protein_coding,CX3CR1,ENSG00000168329
protein_coding,AC093899.2,ENSG00000251569
protein_coding,KLHL41,ENSG00000239474
protein_coding,COPS2,ENSG00000166200
protein_coding,RALGAPA1,ENSG00000174373
protein_coding,SNAPC1,ENSG00000023608
protein_coding,SLC25A38,ENSG00000144659
protein_coding,CCDC12,ENSG00000160799
protein_coding,SEMA3B,ENSG00000012171
protein_coding,AGXT,ENSG00000172482
protein_coding,SHISAL1,ENSG00000138944
protein_coding,PDE7B,ENSG00000171408
protein_coding,CCR8,ENSG00000179934
protein_coding,NBEAL2,ENSG00000160796
protein_coding,LMOD3,ENSG00000163380
protein_coding,CRHR1,ENSG00000276191
protein_coding,RTL6,ENSG00000188636
protein_coding,C12orf10,ENSG00000139637
protein_coding,MAB21L1,ENSG00000180660
protein_coding,PRDM5,ENSG00000138738
protein_coding,ENKUR,ENSG00000151023
protein_coding,ABCC5,ENSG00000114770
protein_coding,FGF7,ENSG00000140285
protein_coding,PFDN5,ENSG00000123349
protein_coding,GPR158,ENSG00000151025
protein_coding,AGFG2,ENSG00000106351
protein_coding,NEBL,ENSG00000078114
protein_coding,GALK2,ENSG00000156958
protein_coding,ASPHD2,ENSG00000128203
protein_coding,PRTFDC1,ENSG00000099256
protein_coding,HPS4,ENSG00000100099
protein_coding,DNAJC14,ENSG00000135392
protein_coding,GSC,ENSG00000133937
protein_coding,FGFR2,ENSG00000066468
protein_coding,THNSL1,ENSG00000185875
protein_coding,LCE5A,ENSG00000186207
protein_coding,C10orf113,ENSG00000204683
protein_coding,RPSA,ENSG00000168028
protein_coding,PDE12,ENSG00000174840
protein_coding,RAPGEF3,ENSG00000079337
protein_coding,NCOA4,ENSG00000266412
protein_coding,CRCT1,ENSG00000169509
protein_coding,CNOT3,ENSG00000277600
protein_coding,LCE3E,ENSG00000185966
protein_coding,LCE3D,ENSG00000163202
protein_coding,FUT11,ENSG00000196968
protein_coding,AC023055.1,ENSG00000257390
protein_coding,LCE3C,ENSG00000244057
protein_coding,SARNP,ENSG00000205323
protein_coding,SEC24C,ENSG00000176986
protein_coding,HMMR,ENSG00000072571
protein_coding,AGL,ENSG00000162688
protein_coding,HAS2,ENSG00000170961
protein_coding,ARRDC1,ENSG00000197070
protein_coding,APOBEC1,ENSG00000111701
protein_coding,GDF11,ENSG00000135414
protein_coding,LRRC45,ENSG00000169683
protein_coding,MMP19,ENSG00000123342
protein_coding,CAPN9,ENSG00000135773
protein_coding,KIFC3,ENSG00000140859
protein_coding,AGRP,ENSG00000159723
protein_coding,CSH1,ENSG00000136488
protein_coding,BRINP2,ENSG00000198797
protein_coding,LENG1,ENSG00000276959
protein_coding,AGT,ENSG00000135744
protein_coding,SLC12A4,ENSG00000124067
protein_coding,ORMDL2,ENSG00000123353
protein_coding,CENPX,ENSG00000169689
protein_coding,SLC22A13,ENSG00000172940
protein_coding,EHMT1,ENSG00000181090
protein_coding,ACTL8,ENSG00000117148
protein_coding,UBXN8,ENSG00000104691
protein_coding,ARF4,ENSG00000168374
protein_coding,HTR3D,ENSG00000186090
protein_coding,CCDC34,ENSG00000109881
protein_coding,MAB21L4,ENSG00000172478
protein_coding,PKN3,ENSG00000160447
protein_coding,MANBAL,ENSG00000101363
protein_coding,DEF8,ENSG00000140995
protein_coding,HTR3C,ENSG00000178084
protein_coding,LCE3B,ENSG00000187238
protein_coding,LCE3A,ENSG00000185962
protein_coding,IER3,ENSG00000235030
protein_coding,QTRT1,ENSG00000213339
protein_coding,ZDHHC12,ENSG00000160446
protein_coding,HTR3E,ENSG00000186038
protein_coding,KIF22,ENSG00000079616
protein_coding,C1orf198,ENSG00000119280
protein_coding,PPP2CB,ENSG00000104695
protein_coding,MSMB,ENSG00000263639
protein_coding,SLC48A1,ENSG00000211584
protein_coding,GNAI3,ENSG00000065135
protein_coding,IGSF21,ENSG00000117154
protein_coding,ZHX2,ENSG00000178764
protein_coding,AKT2,ENSG00000105221
protein_coding,FRMD4B,ENSG00000114541
protein_coding,CD247,ENSG00000198821
protein_coding,OSBPL8,ENSG00000091039
protein_coding,RIPOR1,ENSG00000039523
protein_coding,DENND6A,ENSG00000174839
protein_coding,FECH,ENSG00000066926
protein_coding,SLC46A2,ENSG00000119457
protein_coding,TRIM55,ENSG00000147573
protein_coding,SNX30,ENSG00000148158
protein_coding,AMPD2,ENSG00000116337
protein_coding,TEX15,ENSG00000133863
protein_coding,ZNF778,ENSG00000170100
protein_coding,LCE2D,ENSG00000187223
protein_coding,LCE2C,ENSG00000187180
protein_coding,LCE2B,ENSG00000159455
protein_coding,LCE2A,ENSG00000187173
protein_coding,LCE4A,ENSG00000187170
protein_coding,C1orf68,ENSG00000198854
protein_coding,KPRP,ENSG00000203786
protein_coding,TFRC,ENSG00000072274
protein_coding,LCE1F,ENSG00000240386
protein_coding,ZFP37,ENSG00000136866
protein_coding,LCAT,ENSG00000213398
protein_coding,NDNF,ENSG00000173376
protein_coding,CREB3,ENSG00000107175
protein_coding,IRF6,ENSG00000117595
protein_coding,ANTXRL,ENSG00000274209
protein_coding,TLN1,ENSG00000137076
protein_coding,TBC1D31,ENSG00000156787
protein_coding,KRBA1,ENSG00000133619
protein_coding,CSNK2B,ENSG00000230700
protein_coding,CACNA1B,ENSG00000148408
protein_coding,CALB1,ENSG00000104327
protein_coding,TG,ENSG00000042832
protein_coding,ZDHHC19,ENSG00000163958
protein_coding,IKBKB,ENSG00000104365
protein_coding,GBA2,ENSG00000070610
protein_coding,CHCHD1,ENSG00000172586
protein_coding,PPIAL4H,ENSG00000270339
protein_coding,LCE1E,ENSG00000186226
protein_coding,UTP25,ENSG00000117597
protein_coding,UBE2O,ENSG00000175931
protein_coding,ELF3,ENSG00000163435
protein_coding,LCE1D,ENSG00000172155
protein_coding,LY6G5B,ENSG00000244672
protein_coding,LCE1C,ENSG00000197084
protein_coding,CR753842.1,ENSG00000258589
protein_coding,LCE1B,ENSG00000196734
protein_coding,DIO3,ENSG00000197406
protein_coding,LCE1A,ENSG00000186844
protein_coding,GPANK1,ENSG00000233210
protein_coding,GDF3,ENSG00000184344
protein_coding,LCE6A,ENSG00000235942
protein_coding,FOXD4L4,ENSG00000184659
protein_coding,AL162596.1,ENSG00000285946
protein_coding,SMCP,ENSG00000163206
protein_coding,SLC31A2,ENSG00000136867
protein_coding,TMC4,ENSG00000273722
protein_coding,UMOD,ENSG00000169344
protein_coding,FKBP15,ENSG00000119321
protein_coding,KIAA1324L,ENSG00000164659
protein_coding,SLC51A,ENSG00000163959
protein_coding,AC022400.7,ENSG00000272916
protein_coding,CCL27,ENSG00000213927
protein_coding,CCL21,ENSG00000137077
protein_coding,ZSWIM8,ENSG00000214655
protein_coding,RNPEP,ENSG00000176393
protein_coding,AL162231.1,ENSG00000187186
protein_coding,SLA,ENSG00000155926
protein_coding,RHO,ENSG00000163914
protein_coding,CEP170,ENSG00000276725
protein_coding,TM4SF19-TCTEX1D2,ENSG00000273331
protein_coding,DERL1,ENSG00000136986
protein_coding,LGR4,ENSG00000205213
protein_coding,PCYT1A,ENSG00000161217
protein_coding,H1FOO,ENSG00000178804
protein_coding,IL11RA,ENSG00000137070
protein_coding,GNAT2,ENSG00000134183
protein_coding,PURG,ENSG00000172733
protein_coding,KLHDC7A,ENSG00000179023
protein_coding,WRN,ENSG00000165392
protein_coding,IFT88,ENSG00000032742
protein_coding,ARHGAP8,ENSG00000241484
protein_coding,NECAB1,ENSG00000123119
protein_coding,SRC,ENSG00000197122
protein_coding,APOL3,ENSG00000128284
protein_coding,AC127029.3,ENSG00000285947
protein_coding,CD79B,ENSG00000007312
protein_coding,TMEM64,ENSG00000180694
protein_coding,AC069257.3,ENSG00000272741
protein_coding,TCTEX1D2,ENSG00000213123
protein_coding,TTC13,ENSG00000143643
protein_coding,POLQ,ENSG00000051341
protein_coding,LIN7C,ENSG00000148943
protein_coding,C8orf88,ENSG00000253250
protein_coding,NRAP,ENSG00000197893
protein_coding,TM4SF19,ENSG00000145107
protein_coding,PAX7,ENSG00000009709
protein_coding,GH1,ENSG00000259384
protein_coding,DPPA3,ENSG00000187569
protein_coding,ZER1,ENSG00000160445
protein_coding,LPAR5,ENSG00000184574
protein_coding,PRR5,ENSG00000186654
protein_coding,ANXA8L1,ENSG00000264230
protein_coding,CROCC2,ENSG00000226321
protein_coding,ACRBP,ENSG00000111644
protein_coding,UBXN7,ENSG00000163960
protein_coding,MEIS3,ENSG00000105419
protein_coding,BMPR1B,ENSG00000138696
protein_coding,SYT14,ENSG00000143469
protein_coding,CSHL1,ENSG00000204414
protein_coding,ARV1,ENSG00000173409
protein_coding,NDST2,ENSG00000166507
protein_coding,SLC22A14,ENSG00000144671
protein_coding,RNF168,ENSG00000163961
protein_coding,SMCO1,ENSG00000214097
protein_coding,MMP8,ENSG00000118113
protein_coding,NPY4R,ENSG00000204174
protein_coding,HUWE1,ENSG00000086758
protein_coding,FAM89A,ENSG00000182118
protein_coding,MTR,ENSG00000116984
protein_coding,WDR53,ENSG00000185798
protein_coding,GPATCH2,ENSG00000092978
protein_coding,CRH,ENSG00000147571
protein_coding,AL109810.2,ENSG00000235710
protein_coding,TRIM67,ENSG00000119283
protein_coding,FBXO45,ENSG00000174013
protein_coding,AL162231.3,ENSG00000258728
protein_coding,CLEC4C,ENSG00000198178
protein_coding,SLC38A7,ENSG00000103042
protein_coding,GALT,ENSG00000213930
protein_coding,SEMA4G,ENSG00000095539
protein_coding,PRR5-ARHGAP8,ENSG00000248405
protein_coding,RASGEF1B,ENSG00000138670
protein_coding,AANAT,ENSG00000129673
protein_coding,PIGX,ENSG00000163964
protein_coding,AAAS,ENSG00000094914
protein_coding,HYAL3,ENSG00000186792
protein_coding,COL13A1,ENSG00000197467
protein_coding,IVL,ENSG00000163207
protein_coding,MIR1915HG,ENSG00000204682
protein_coding,NRROS,ENSG00000174004
protein_coding,CEP19,ENSG00000174007
protein_coding,SPRR5,ENSG00000283227
protein_coding,SPRR4,ENSG00000184148
protein_coding,IFRD2,ENSG00000214706
protein_coding,SPRR1A,ENSG00000169474
protein_coding,CREG1,ENSG00000143162
protein_coding,PAK2,ENSG00000180370
protein_coding,SPRR3,ENSG00000163209
protein_coding,SATB2,ENSG00000119042
protein_coding,AC009879.3,ENSG00000285791
protein_coding,RCSD1,ENSG00000198771
protein_coding,TNIP3,ENSG00000050730
protein_coding,ANKRD20A3,ENSG00000276203
protein_coding,VXN,ENSG00000169085
protein_coding,SENP5,ENSG00000119231
protein_coding,TWNK,ENSG00000107815
protein_coding,PCOLCE,ENSG00000106333
protein_coding,HABP2,ENSG00000148702
protein_coding,CHN1,ENSG00000128656
protein_coding,NAA80,ENSG00000243477
protein_coding,FAM205A,ENSG00000205108
protein_coding,SAP25,ENSG00000205307
protein_coding,CCL19,ENSG00000172724
protein_coding,LSMEM2,ENSG00000179564
protein_coding,NCBP2,ENSG00000114503
protein_coding,ADHFE1,ENSG00000147576
protein_coding,FBXO24,ENSG00000106336
protein_coding,SPATA17,ENSG00000162814
protein_coding,MRPL43,ENSG00000055950
protein_coding,MLPH,ENSG00000115648
protein_coding,SPRR1B,ENSG00000169469
protein_coding,INPP5D,ENSG00000168918
protein_coding,PLXND1,ENSG00000004399
protein_coding,ZNF467,ENSG00000181444
protein_coding,F2,ENSG00000180210
protein_coding,NCBP2AS2,ENSG00000270170
protein_coding,TRPM3,ENSG00000083067
protein_coding,PIGZ,ENSG00000119227
protein_coding,SPRR2D,ENSG00000163216
protein_coding,PLEKHF2,ENSG00000175895
protein_coding,TAS1R2,ENSG00000179002
protein_coding,SPRR2A,ENSG00000241794
protein_coding,LENG1,ENSG00000105617
protein_coding,LRCH4,ENSG00000077454
protein_coding,CNOT3,ENSG00000088038
protein_coding,TGIF2LX,ENSG00000153779
protein_coding,MELTF,ENSG00000163975
protein_coding,NNAT,ENSG00000053438
protein_coding,SPRR2F,ENSG00000244094
protein_coding,SPRR2B,ENSG00000196805
protein_coding,SPRR2E,ENSG00000203785
protein_coding,ARGFX,ENSG00000186103
protein_coding,SKIDA1,ENSG00000180592
protein_coding,BLCAP,ENSG00000166619
protein_coding,FBXO40,ENSG00000163833
protein_coding,CENPBD1,ENSG00000177946
protein_coding,MLLT10,ENSG00000078403
protein_coding,TBC1D13,ENSG00000107021
protein_coding,SNRNP27,ENSG00000124380
protein_coding,SYT16,ENSG00000139973
protein_coding,GNPAT,ENSG00000116906
protein_coding,HCLS1,ENSG00000180353
protein_coding,MXD1,ENSG00000059728
protein_coding,NARS,ENSG00000134440
protein_coding,FASTKD1,ENSG00000138399
protein_coding,ZDHHC17,ENSG00000186908
protein_coding,SPRR2G,ENSG00000159516
protein_coding,LELP1,ENSG00000203784
protein_coding,C1orf131,ENSG00000143633
protein_coding,FCGR3B,ENSG00000162747
protein_coding,PRR9,ENSG00000203783
protein_coding,RRS1,ENSG00000179041
protein_coding,AC009879.2,ENSG00000285655
protein_coding,TCF19,ENSG00000224941
protein_coding,GPRIN2,ENSG00000204175
protein_coding,QRFPR,ENSG00000186867
protein_coding,PABPC5,ENSG00000174740
protein_coding,GC,ENSG00000145321
protein_coding,HOMEZ,ENSG00000215271
protein_coding,RAC3,ENSG00000169750
protein_coding,BCL2L2-PABPN1,ENSG00000258643
protein_coding,ATP8B1,ENSG00000081923
protein_coding,TMCC1,ENSG00000172765
protein_coding,PPP1R3E,ENSG00000235194
protein_coding,GOLGB1,ENSG00000173230
protein_coding,SYT15,ENSG00000204176
protein_coding,FAM20C,ENSG00000281429
protein_coding,LOR,ENSG00000203782
protein_coding,SLMAP,ENSG00000163681
protein_coding,IFFO1,ENSG00000010295
protein_coding,KYAT1,ENSG00000171097
protein_coding,PGLYRP3,ENSG00000159527
protein_coding,CCDC136,ENSG00000128596
protein_coding,BCL2L2,ENSG00000129473
protein_coding,C8orf37,ENSG00000156172
protein_coding,RNF212B,ENSG00000215277
protein_coding,RRP15,ENSG00000067533
protein_coding,FZD4,ENSG00000174804
protein_coding,PRSS23,ENSG00000150687
protein_coding,POU5F1,ENSG00000230336
protein_coding,CSRP2,ENSG00000175183
protein_coding,PABPN1,ENSG00000100836
protein_coding,TGFB2,ENSG00000092969
protein_coding,NOL8,ENSG00000198000
protein_coding,ENDOG,ENSG00000167136
protein_coding,PDILT,ENSG00000169340
protein_coding,EEF1AKMT1,ENSG00000150456
protein_coding,TRH,ENSG00000170893
protein_coding,AL441992.2,ENSG00000286112
protein_coding,LRRC8A,ENSG00000136802
protein_coding,SPOUT1,ENSG00000198917
protein_coding,SDCCAG8,ENSG00000276111
protein_coding,IL17D,ENSG00000172458
protein_coding,KIN,ENSG00000151657
protein_coding,MTFR2,ENSG00000146410
protein_coding,RAP1B,ENSG00000127314
protein_coding,BRMS1L,ENSG00000100916
protein_coding,GOT2,ENSG00000125166
protein_coding,SSPO,ENSG00000197558
protein_coding,MMP10,ENSG00000166670
protein_coding,AKT3,ENSG00000275199
protein_coding,CNTRL,ENSG00000119397
protein_coding,MMP1,ENSG00000196611
protein_coding,ERFE,ENSG00000178752
protein_coding,CACNA1E,ENSG00000198216
protein_coding,FCGR2B,ENSG00000072694
protein_coding,MMP3,ENSG00000149968
protein_coding,HEATR6,ENSG00000068097
protein_coding,RHBDF2,ENSG00000129667
protein_coding,LILRA1,ENSG00000275525
protein_coding,MPZL1,ENSG00000197965
protein_coding,SPRTN,ENSG00000010072
protein_coding,NANOGNB,ENSG00000205857
protein_coding,EXOC8,ENSG00000116903
protein_coding,AC073611.1,ENSG00000170374
protein_coding,SEC16B,ENSG00000120341
protein_coding,FAM83A,ENSG00000147689
protein_coding,GDF6,ENSG00000156466
protein_coding,CD4,ENSG00000010610
protein_coding,UNC5C,ENSG00000182168
protein_coding,DGKA,ENSG00000065357
protein_coding,SP1,ENSG00000185591
protein_coding,UQCRB,ENSG00000156467
protein_coding,DICER1,ENSG00000100697
protein_coding,SPPL2C,ENSG00000277106
protein_coding,AC120114.4,ENSG00000281348
protein_coding,PRRT2,ENSG00000167371
protein_coding,MAPT,ENSG00000277956
protein_coding,ACSM5,ENSG00000183549
protein_coding,LZTR1,ENSG00000099949
protein_coding,NANOG,ENSG00000111704
protein_coding,MVP,ENSG00000013364
protein_coding,HYAL1,ENSG00000114378
protein_coding,STXBP5,ENSG00000164506
protein_coding,ADAM18,ENSG00000168619
protein_coding,NBPF12,ENSG00000268043
protein_coding,MOBP,ENSG00000168314
protein_coding,AIFM3,ENSG00000183773
protein_coding,MAZ,ENSG00000103495
protein_coding,LYPLAL1,ENSG00000143353
protein_coding,DLG1,ENSG00000075711
protein_coding,ARL8A,ENSG00000143862
protein_coding,SUV39H2,ENSG00000152455
protein_coding,FCRLA,ENSG00000132185
protein_coding,GPR37L1,ENSG00000170075
protein_coding,DCLRE1C,ENSG00000152457
protein_coding,KRAS,ENSG00000133703
protein_coding,AC009133.6,ENSG00000280893
protein_coding,PAGR1,ENSG00000280789
protein_coding,ETFRF1,ENSG00000205707
protein_coding,PGLYRP4,ENSG00000163218
protein_coding,MGRN1,ENSG00000102858
protein_coding,TSNAX-DISC1,ENSG00000270106
protein_coding,HYAL2,ENSG00000068001
protein_coding,FCRLB,ENSG00000162746
protein_coding,PPP2R5C,ENSG00000078304
protein_coding,MARK3,ENSG00000075413
protein_coding,PCBP1,ENSG00000169564
protein_coding,ASPRV1,ENSG00000244617
protein_coding,TUSC2,ENSG00000114383
protein_coding,OR5AU1,ENSG00000169327
protein_coding,MCM10,ENSG00000065328
protein_coding,PYM1,ENSG00000170473
protein_coding,AL445524.2,ENSG00000287856
protein_coding,FTCDNL1,ENSG00000226124
protein_coding,SETD2,ENSG00000181555
protein_coding,MT1HL1,ENSG00000244020
protein_coding,DISC1,ENSG00000162946
protein_coding,KCTD12,ENSG00000178695
protein_coding,APOL4,ENSG00000100336
protein_coding,CPS1,ENSG00000021826