-
Notifications
You must be signed in to change notification settings - Fork 0
/
hep_proteins_pfam_domains.txt
5374 lines (5374 loc) · 216 KB
/
hep_proteins_pfam_domains.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 PFAM.domains
HEP_00414800 NA
HEP_00273300 NA
HEP_00146800 Pfam:PF00808.23(CBFD_NFYB_HMF),Pfam:PF00125.24(Histone)
HEP_00378600 NA
HEP_00390400 NA
HEP_00412100 NA
HEP_00091200 NA
HEP_00497200 NA
HEP_00388600 NA
HEP_00190700 NA
HEP_00370000 NA
HEP_00026900 NA
HEP_00424700 NA
HEP_00398900 Pfam:PF07496.15(zf-CW)
HEP_00010500 NA
HEP_00134500 NA
HEP_00321900 NA
HEP_00101500 Pfam:PF01391.18(Collagen)
HEP_00446500 NA
HEP_00295100 Pfam:PF00847.20(AP2)
HEP_00269300 NA
HEP_00102800 NA
HEP_00301700 NA
HEP_00035800 Pfam:PF07422.13(s48_45)
HEP_00523100 NA
HEP_00194800 NA
HEP_00261700 NA
HEP_00213800 Pfam:PF00847.20(AP2)
HEP_00466900 NA
HEP_00131800 NA
HEP_00508700 NA
HEP_00350900 Pfam:PF08573.10(SAE2)
HEP_00121400 NA
HEP_00294300 Pfam:PF01469.18(Pentapeptide_2)
HEP_00255900 NA
HEP_00110800 NA
HEP_00244400 Pfam:PF02213.16(GYF)
HEP_00389200 NA
HEP_00346500 NA
HEP_00337100 Pfam:PF00847.20(AP2)
HEP_00375100 NA
HEP_00456700 NA
HEP_00304800 NA
HEP_00143300 NA
HEP_00337500 Pfam:PF09756.9(DDRGK)
HEP_00061400 NA
HEP_00256300 NA
HEP_00416900 NA
HEP_00485000 NA
HEP_00512600 NA
HEP_00352200 Pfam:PF01494.19(FAD_binding_3)
HEP_00198100 NA
HEP_00169800 NA
HEP_00254800 NA
HEP_00471200 NA
HEP_00427600 NA
HEP_00035400 NA
HEP_00106800 NA
HEP_00429800 NA
HEP_00045700 NA
HEP_00092400 NA
HEP_00115700 Pfam:PF12947.7(EGF_3),Pfam:PF14670.6(FXa_inhibition)
HEP_00285900 NA
HEP_00166600 NA
HEP_00190900 Pfam:PF09811.9(Yae1_N)
HEP_00238800 NA
HEP_00195400 NA
HEP_00362800 Pfam:PF00096.26(zf-C2H2),Pfam:PF13894.6(zf-C2H2_4)
HEP_00328300 NA
HEP_00382500 Pfam:PF03448.17(MgtE_N)
HEP_00171200 Pfam:PF06103.11(DUF948)
HEP_00401500 NA
HEP_00195800 Pfam:PF00226.31(DnaJ)
HEP_00392300 NA
HEP_00130400 Pfam:PF00578.21(AhpC-TSA),Pfam:PF00085.20(Thioredoxin),Pfam:PF13098.6(Thioredoxin_2),Pfam:PF13905.6(Thioredoxin_8),Pfam:PF13728.6(TraF)
HEP_00391300 NA
HEP_00288100 NA
HEP_00435800 NA
HEP_00517500 NA
HEP_00155500 Pfam:PF00656.22(Peptidase_C14)
HEP_00216900 NA
HEP_00148900 NA
HEP_00176500 Pfam:PF03770.16(IPK)
HEP_00321100 NA
HEP_00358600 NA
HEP_00256900 NA
HEP_00358100 NA
HEP_00293500 Pfam:PF01391.18(Collagen)
HEP_00255100 NA
HEP_00153200 Pfam:PF00462.24(Glutaredoxin)
HEP_00453900 NA
HEP_00166200 Pfam:PF12059.8(DUF3540)
HEP_00055800 NA
HEP_00208100 NA
HEP_00278700 NA
HEP_00391400 NA
HEP_00458500 NA
HEP_00268500 NA
HEP_00199000 NA
HEP_00512500 NA
HEP_00123700 NA
HEP_00518400 NA
HEP_00357300 NA
HEP_00077400 NA
HEP_00341100 NA
HEP_00122600 NA
HEP_00120700 NA
HEP_00221100 NA
HEP_00039500 NA
HEP_00510800 Pfam:PF11567.8(PfUIS3)
HEP_00490000 NA
HEP_00141100 NA
HEP_00209200 NA
HEP_00078900 NA
HEP_00349000 NA
HEP_00140400 Pfam:PF01456.17(Mucin)
HEP_00240900 Pfam:PF04147.12(Nop14)
HEP_00035100 NA
HEP_00161300 Pfam:PF12879.7(SICA_C)
HEP_00347400 NA
HEP_00158500 NA
HEP_00452500 NA
HEP_00157900 NA
HEP_00136000 NA
HEP_00414000 NA
HEP_00205400 Pfam:PF01237.18(Oxysterol_BP)
HEP_00230300 Pfam:PF06825.12(HSBP1)
HEP_00051600 NA
HEP_00269000 Pfam:PF03189.13(Otopetrin)
HEP_00213100 NA
HEP_00226000 NA
HEP_00238300 NA
HEP_00185300 Pfam:PF13086.6(AAA_11),Pfam:PF13087.6(AAA_12),Pfam:PF13245.6(AAA_19),Pfam:PF13604.6(AAA_30)
HEP_00166800 Pfam:PF00656.22(Peptidase_C14)
HEP_00307100 Pfam:PF13599.6(Pentapeptide_4)
HEP_00271300 NA
HEP_00079800 NA
HEP_00036050 NA
HEP_00239200 NA
HEP_00003600 NA
HEP_00193100 NA
HEP_00089500 NA
HEP_00300300 NA
HEP_00140600 Pfam:PF00063.21(Myosin_head)
HEP_00157100 Pfam:PF04615.13(Utp14)
HEP_00324100 Pfam:PF01612.20(DNA_pol_A_exo1)
HEP_00308200 NA
HEP_00376700 NA
HEP_00378700 NA
HEP_00086700 NA
HEP_00034800 NA
HEP_00214200 NA
HEP_00352000 NA
HEP_00365100 NA
HEP_00205100 Pfam:PF00076.22(RRM_1)
HEP_00459300 NA
HEP_00401300 Pfam:PF07699.13(Ephrin_rec_like)
HEP_00271200 NA
HEP_00429000 Pfam:PF07422.13(s48_45)
HEP_00105500 Pfam:PF00439.25(Bromodomain)
HEP_00207500 NA
HEP_00347900 NA
HEP_00471700 NA
HEP_00350400 NA
HEP_00493400 NA
HEP_00483000 NA
HEP_00431400 NA
HEP_00041400 NA
HEP_00060000 NA
HEP_00030300 NA
HEP_00292300 Pfam:PF06743.15(FAST_1)
HEP_00199600 NA
HEP_00474300 NA
HEP_00008400 NA
HEP_00183700 NA
HEP_00282900 Pfam:PF00082.22(Peptidase_S8)
HEP_00345900 NA
HEP_00081400 NA
HEP_00026600 NA
HEP_00422600 NA
HEP_00332500 NA
HEP_00162300 Pfam:PF07690.16(MFS_1),Pfam:PF00083.24(Sugar_tr)
HEP_00237900 NA
HEP_00326400 NA
HEP_00289100 NA
HEP_00160400 Pfam:PF00076.22(RRM_1)
HEP_00156900 Pfam:PF12947.7(EGF_3),Pfam:PF12946.7(EGF_MSP1_1)
HEP_00248500 NA
HEP_00441300 NA
HEP_00027900 NA
HEP_00198800 NA
HEP_00207300 NA
HEP_00383900 NA
HEP_00144100 NA
HEP_00171800 NA
HEP_00308900 NA
HEP_00459800 NA
HEP_00321700 NA
HEP_00292000 Pfam:PF07382.11(HC2),Pfam:PF00069.25(Pkinase),Pfam:PF07714.17(Pkinase_Tyr)
HEP_00381700 NA
HEP_00132200 NA
HEP_00425300 NA
HEP_00177300 NA
HEP_00128300 NA
HEP_00125700 Pfam:PF00069.25(Pkinase),Pfam:PF07714.17(Pkinase_Tyr)
HEP_00492300 Pfam:PF07382.11(HC2),Pfam:PF08711.11(Med26)
HEP_00118900 NA
HEP_00454700 NA
HEP_00445400 NA
HEP_00114600 NA
HEP_00464100 NA
HEP_00092600 NA
HEP_00202200 NA
HEP_00024100 Pfam:PF00400.32(WD40)
HEP_00058600 NA
HEP_00391200 NA
HEP_00402900 NA
HEP_00355000 Pfam:PF07422.13(s48_45)
HEP_00169900 NA
HEP_00265200 NA
HEP_00082900 NA
HEP_00357000 NA
HEP_00463700 NA
HEP_00287100 NA
HEP_00081000 NA
HEP_00274400 NA
HEP_00200200 NA
HEP_00043800 Pfam:PF12542.8(CWC25)
HEP_00111600 NA
HEP_00354100 Pfam:PF00415.18(RCC1),Pfam:PF13540.6(RCC1_2)
HEP_00184700 NA
HEP_00159800 Pfam:PF03561.15(Allantoicase)
HEP_00183300 NA
HEP_00235100 Pfam:PF00225.23(Kinesin)
HEP_00064100 NA
HEP_00107500 NA
HEP_00084800 NA
HEP_00520700 NA
HEP_00361600 NA
HEP_00027400 Pfam:PF04427.18(Brix)
HEP_00333500 NA
HEP_00350100 Pfam:PF00023.30(Ank),Pfam:PF12796.7(Ank_2),Pfam:PF13606.6(Ank_3),Pfam:PF13637.6(Ank_4),Pfam:PF13857.6(Ank_5),Pfam:PF10258.9(RNA_GG_bind)
HEP_00409600 NA
HEP_00114500 NA
HEP_00027000 Pfam:PF02029.15(Caldesmon),Pfam:PF10699.9(HAP2-GCS1)
HEP_00008800 Pfam:PF09073.10(BUD22)
HEP_00404900 NA
HEP_00230100 NA
HEP_00055100 NA
HEP_00483100 Pfam:PF00642.24(zf-CCCH),Pfam:PF18044.1(zf-CCCH_4),Pfam:PF18345.1(zf_CCCH_4)
HEP_00220300 NA
HEP_00411300 Pfam:PF00271.31(Helicase_C),Pfam:PF00176.23(SNF2_N),Pfam:PF13639.6(zf-RING_2)
HEP_00316100 Pfam:PF07500.14(TFIIS_M)
HEP_00536600 NA
HEP_00112800 NA
HEP_00431200 NA
HEP_00437200 NA
HEP_00154400 Pfam:PF03630.14(Fumble),Pfam:PF10500.9(SR-25)
HEP_00294100 NA
HEP_00119900 Pfam:PF00249.31(Myb_DNA-binding),Pfam:PF00569.17(ZZ)
HEP_00243400 Pfam:PF12314.8(IMCp)
HEP_00053000 NA
HEP_00176100 Pfam:PF14733.6(ACDC)
HEP_00101300 NA
HEP_00218700 Pfam:PF08648.12(SNRNP27)
HEP_00190100 NA
HEP_00155700 Pfam:PF04145.15(Ctr)
HEP_00353200 Pfam:PF12678.7(zf-rbx1),Pfam:PF13639.6(zf-RING_2)
HEP_00063900 NA
HEP_00369300 Pfam:PF00439.25(Bromodomain)
HEP_00382400 Pfam:PF00244.20(14-3-3)
HEP_00093800 Pfam:PF00069.25(Pkinase),Pfam:PF07714.17(Pkinase_Tyr)
HEP_00190300 NA
HEP_00305100 Pfam:PF03715.13(Noc2)
HEP_00038400 NA
HEP_00237200 NA
HEP_00313800 NA
HEP_00482500 Pfam:PF05890.12(Ebp2)
HEP_00450500 NA
HEP_00409300 NA
HEP_00282500 Pfam:PF00806.19(PUF)
HEP_00275500 NA
HEP_00049000 Pfam:PF00847.20(AP2)
HEP_00151500 NA
HEP_00104500 Pfam:PF02389.15(Cornifin),Pfam:PF08662.11(eIF2A)
HEP_00213500 Pfam:PF07422.13(s48_45)
HEP_00411400 NA
HEP_00040600 NA
HEP_00314500 NA
HEP_00476600 NA
HEP_00332100 NA
HEP_00410200 Pfam:PF00847.20(AP2)
HEP_00153300 Pfam:PF10253.9(PRCC)
HEP_00138400 NA
HEP_00184800 NA
HEP_00067700 Pfam:PF06775.14(Seipin)
HEP_00067100 NA
HEP_00011200 NA
HEP_00357200 NA
HEP_00510900 NA
HEP_00255000 NA
HEP_00209900 NA
HEP_00467500 NA
HEP_00104100 NA
HEP_00238600 Pfam:PF14733.6(ACDC),Pfam:PF00847.20(AP2)
HEP_00009600 NA
HEP_00010700 NA
HEP_00515700 NA
HEP_00237800 NA
HEP_00322800 NA
HEP_00020800 Pfam:PF00069.25(Pkinase),Pfam:PF07714.17(Pkinase_Tyr)
HEP_00344300 Pfam:PF06058.13(DCP1)
HEP_00113100 NA
HEP_00314000 Pfam:PF07699.13(Ephrin_rec_like)
HEP_00317900 NA
HEP_00314600 Pfam:PF01744.20(GLTT),Pfam:PF00069.25(Pkinase),Pfam:PF07714.17(Pkinase_Tyr)
HEP_00284300 NA
HEP_00379700 NA
HEP_00498400 Pfam:PF05427.11(FIBP)
HEP_00473300 NA
HEP_00394900 Pfam:PF14733.6(ACDC),Pfam:PF00847.20(AP2)
HEP_00097900 Pfam:PF01417.20(ENTH)
HEP_00378400 Pfam:PF06337.12(DUSP),Pfam:PF00443.29(UCH)
HEP_00190400 Pfam:PF13019.6(Sde2_N_Ubi)
HEP_00297400 NA
HEP_00469100 NA
HEP_00357400 NA
HEP_00090400 NA
HEP_00171400 Pfam:PF01778.17(Ribosomal_L28e)
HEP_00005400 NA
HEP_00463800 Pfam:PF06247.11(Plasmod_Pvs28)
HEP_00104300 Pfam:PF02582.14(DUF155)
HEP_00070800 Pfam:PF04100.12(Vps53_N)
HEP_00103100 Pfam:PF07382.11(HC2)
HEP_00498700 NA
HEP_00185700 Pfam:PF00225.23(Kinesin)
HEP_00023000 NA
HEP_00173800 Pfam:PF02493.20(MORN)
HEP_00139600 NA
HEP_00226400 NA
HEP_00222400 NA
HEP_00020200 NA
HEP_00112600 NA
HEP_00156200 NA
HEP_00452400 Pfam:PF02493.20(MORN)
HEP_00387700 NA
HEP_00359400 NA
HEP_00132800 NA
HEP_00061000 Pfam:PF00400.32(WD40)
HEP_00259200 Pfam:PF00561.20(Abhydrolase_1),Pfam:PF01738.18(DLH),Pfam:PF12146.8(Hydrolase_4),Pfam:PF00326.21(Peptidase_S9)
HEP_00143700 Pfam:PF04153.18(NOT2_3_5)
HEP_00064200 Pfam:PF18659.1(CelTOS)
HEP_00130200 NA
HEP_00028100 NA
HEP_00437900 NA
HEP_00174500 NA
HEP_00504100 Pfam:PF00011.21(HSP20)
HEP_00257900 NA
HEP_00062200 NA
HEP_00333000 NA
HEP_00382000 NA
HEP_00053300 Pfam:PF00076.22(RRM_1)
HEP_00461600 NA
HEP_00102400 NA
HEP_00051400 NA
HEP_00327400 NA
HEP_00285000 NA
HEP_00186200 Pfam:PF00076.22(RRM_1)
HEP_00389600 Pfam:PF01391.18(Collagen)
HEP_00211300 Pfam:PF06589.11(CRA)
HEP_00246000 Pfam:PF02493.20(MORN)
HEP_00025200 NA
HEP_00019000 NA
HEP_00020600 Pfam:PF01142.18(TruD)
HEP_00354700 NA
HEP_00311400 NA
HEP_00205700 NA
HEP_00269800 Pfam:PF01391.18(Collagen),Pfam:PF04142.15(Nuc_sug_transp)
HEP_00483400 Pfam:PF17404.2(Nrap_D3)
HEP_00195900 NA
HEP_00390900 NA
HEP_00458200 NA
HEP_00403500 Pfam:PF18638.1(CyRPA)
HEP_00493600 NA
HEP_00220500 Pfam:PF07699.13(Ephrin_rec_like)
HEP_00178400 Pfam:PF02493.20(MORN)
HEP_00304600 NA
HEP_00083900 Pfam:PF07382.11(HC2),Pfam:PF09409.10(PUB)
HEP_00061800 NA
HEP_00137500 NA
HEP_00364500 NA
HEP_00374100 Pfam:PF13086.6(AAA_11),Pfam:PF13087.6(AAA_12),Pfam:PF13245.6(AAA_19),Pfam:PF13604.6(AAA_30)
HEP_00064600 NA
HEP_00286100 Pfam:PF14733.6(ACDC),Pfam:PF00847.20(AP2)
HEP_00213600 NA
HEP_00029900 Pfam:PF00076.22(RRM_1)
HEP_00435000 Pfam:PF13599.6(Pentapeptide_4)
HEP_00147600 NA
HEP_00312800 NA
HEP_00479200 NA
HEP_00264100 Pfam:PF12009.8(Telomerase_RBD)
HEP_00347100 NA
HEP_00091900 NA
HEP_00386500 NA
HEP_00088000 NA
HEP_00415400 NA
HEP_00170400 Pfam:PF13599.6(Pentapeptide_4)
HEP_00005000 Pfam:PF14418.6(OHA)
HEP_00450800 NA
HEP_00057400 Pfam:PF02213.16(GYF)
HEP_00201500 NA
HEP_00357800 NA
HEP_00037100 NA
HEP_00167200 Pfam:PF00687.21(Ribosomal_L1)
HEP_00015900 NA
HEP_00078000 Pfam:PF00400.32(WD40)
HEP_00428200 NA
HEP_00389700 NA
HEP_00481200 Pfam:PF13202.6(EF-hand_5),Pfam:PF13405.6(EF-hand_6),Pfam:PF13499.6(EF-hand_7)
HEP_00495100 NA
HEP_00022800 NA
HEP_00264800 Pfam:PF02301.18(HORMA)
HEP_00434300 NA
HEP_00329500 NA
HEP_00338200 NA
HEP_00190000 NA
HEP_00129800 Pfam:PF00632.25(HECT)
HEP_00388400 NA
HEP_00052700 NA
HEP_00277000 NA
HEP_00533300 NA
HEP_00120400 NA
HEP_00380800 Pfam:PF00400.32(WD40),Pfam:PF17005.5(WD40_like)
HEP_00385600 Pfam:PF01529.20(DHHC)
HEP_00141900 NA
HEP_00239700 Pfam:PF09736.9(Bud13)
HEP_00200100 NA
HEP_00359700 NA
HEP_00030200 NA
HEP_00232600 NA
HEP_00266200 NA
HEP_00144800 NA
HEP_00094800 NA
HEP_00218300 Pfam:PF13771.6(zf-HC5HC2H),Pfam:PF13832.6(zf-HC5HC2H_2)
HEP_00011800 NA
HEP_00526400 Pfam:PF18680.1(SPECT1)
HEP_00406800 NA
HEP_00210000 NA
HEP_00124300 NA
HEP_00262400 NA
HEP_00420700 NA
HEP_00211700 NA
HEP_00285600 Pfam:PF04886.12(PT),Pfam:PF04181.13(RPAP2_Rtr1)
HEP_00055900 NA
HEP_00035000 Pfam:PF00112.23(Peptidase_C1)
HEP_00418300 NA
HEP_00123100 Pfam:PF04152.14(Mre11_DNA_bind)
HEP_00330300 NA
HEP_00231200 NA
HEP_00410400 Pfam:PF00076.22(RRM_1)
HEP_00075200 Pfam:PF08312.12(cwf21)
HEP_00402000 NA
HEP_00148600 NA
HEP_00276900 NA
HEP_00043000 Pfam:PF00069.25(Pkinase),Pfam:PF07714.17(Pkinase_Tyr)
HEP_00204100 NA
HEP_00509300 NA
HEP_00081300 NA
HEP_00042300 Pfam:PF07382.11(HC2)
HEP_00283200 NA
HEP_00535300 NA
HEP_00134200 NA
HEP_00184500 Pfam:PF08585.12(RMI1_N)
HEP_00259700 NA
HEP_00293900 Pfam:PF00271.31(Helicase_C)
HEP_00147200 NA
HEP_00157800 NA
HEP_00328900 NA
HEP_00265700 Pfam:PF10403.9(BHD_1)
HEP_00410000 NA
HEP_00096500 Pfam:PF01469.18(Pentapeptide_2)
HEP_00377300 Pfam:PF10846.8(DUF2722)
HEP_00304200 NA
HEP_00360700 NA
HEP_00242700 NA
HEP_00242200 NA
HEP_00479300 NA
HEP_00353400 Pfam:PF00076.22(RRM_1)
HEP_00164400 NA
HEP_00051000 NA
HEP_00413700 Pfam:PF00076.22(RRM_1)
HEP_00066600 Pfam:PF00888.22(Cullin),Pfam:PF10557.9(Cullin_Nedd8)
HEP_00228400 NA
HEP_00382800 Pfam:PF02854.19(MIF4G)
HEP_00336100 NA
HEP_00067200 NA
HEP_00354200 Pfam:PF01391.18(Collagen)
HEP_00344000 Pfam:PF00106.25(adh_short),Pfam:PF13561.6(adh_short_C2)
HEP_00179600 Pfam:PF08373.10(RAP)
HEP_00023800 Pfam:PF12237.8(PCIF1_WW)
HEP_00133100 NA
HEP_00138500 Pfam:PF00462.24(Glutaredoxin)
HEP_00499600 NA
HEP_00268800 NA
HEP_00406400 Pfam:PF00144.24(Beta-lactamase)
HEP_00145700 Pfam:PF04777.13(Evr1_Alr)
HEP_00396500 Pfam:PF03937.16(Sdh5)
HEP_00429200 Pfam:PF03941.15(INCENP_ARK-bind)
HEP_00318700 NA
HEP_00134800 Pfam:PF07382.11(HC2)
HEP_00194700 Pfam:PF01868.16(UPF0086)
HEP_00350600 Pfam:PF00036.32(EF-hand_1),Pfam:PF13405.6(EF-hand_6),Pfam:PF13499.6(EF-hand_7)
HEP_00509800 NA
HEP_00393100 Pfam:PF13476.6(AAA_23),Pfam:PF13555.6(AAA_29),Pfam:PF02463.19(SMC_N)
HEP_00074600 Pfam:PF07646.15(Kelch_2),Pfam:PF13415.6(Kelch_3),Pfam:PF13418.6(Kelch_4),Pfam:PF13854.6(Kelch_5),Pfam:PF13964.6(Kelch_6)
HEP_00478600 NA
HEP_00424500 Pfam:PF15247.6(SLBP_RNA_bind)
HEP_00284100 NA
HEP_00453500 NA
HEP_00154800 NA
HEP_00016500 Pfam:PF00153.27(Mito_carr)
HEP_00059300 Pfam:PF00270.29(DEAD),Pfam:PF00271.31(Helicase_C),Pfam:PF04851.15(ResIII)
HEP_00481900 NA
HEP_00056200 NA
HEP_00351800 Pfam:PF07818.13(HCNGP)
HEP_00075500 NA
HEP_00373200 NA
HEP_00303100 NA
HEP_00197600 NA
HEP_00225900 NA
HEP_00109300 NA
HEP_00131600 NA
HEP_00329900 NA
HEP_00449200 Pfam:PF16690.5(MMACHC)
HEP_00292900 NA
HEP_00224600 NA
HEP_00083000 NA
HEP_00331800 NA
HEP_00082200 Pfam:PF01764.25(Lipase_3)
HEP_00336700 Pfam:PF14531.6(Kinase-like),Pfam:PF00069.25(Pkinase),Pfam:PF07714.17(Pkinase_Tyr)
HEP_00354800 NA
HEP_00470200 NA
HEP_00007600 Pfam:PF13920.6(zf-C3HC4_3),Pfam:PF14570.6(zf-RING_4)
HEP_00371300 NA
HEP_00502800 Pfam:PF00808.23(CBFD_NFYB_HMF),Pfam:PF03847.13(TFIID_20kDa)
HEP_00219000 NA
HEP_00043100 NA
HEP_00528700 NA
HEP_00080600 Pfam:PF00069.25(Pkinase),Pfam:PF07714.17(Pkinase_Tyr)
HEP_00194100 NA
HEP_00081800 NA
HEP_00093100 NA
HEP_00426700 NA
HEP_00305500 NA
HEP_00073100 Pfam:PF00875.18(DNA_photolyase)
HEP_00203300 NA
HEP_00309000 NA
HEP_00322200 Pfam:PF00069.25(Pkinase),Pfam:PF07714.17(Pkinase_Tyr)
HEP_00100500 NA
HEP_00087700 NA
HEP_00088800 Pfam:PF02891.20(zf-MIZ)
HEP_00397000 NA
HEP_00156100 NA
HEP_00069700 NA
HEP_00119200 Pfam:PF01974.17(tRNA_int_endo)
HEP_00425700 Pfam:PF00588.19(SpoU_methylase)
HEP_00349900 Pfam:PF00249.31(Myb_DNA-binding),Pfam:PF13921.6(Myb_DNA-bind_6)
HEP_00034100 Pfam:PF00069.25(Pkinase)
HEP_00234500 Pfam:PF00664.23(ABC_membrane)
HEP_00206400 Pfam:PF00650.20(CRAL_TRIO)
HEP_00298100 NA
HEP_00168000 NA
HEP_00153400 Pfam:PF01926.23(MMR_HSR1)
HEP_00419300 NA
HEP_00215600 Pfam:PF00069.25(Pkinase),Pfam:PF07714.17(Pkinase_Tyr)
HEP_00283700 Pfam:PF18199.1(Dynein_C)
HEP_00141300 Pfam:PF08839.11(CDT1)
HEP_00246500 NA
HEP_00051300 NA
HEP_00031900 NA
HEP_00352500 NA
HEP_00453400 NA
HEP_00226800 Pfam:PF06677.12(Auto_anti-p27)
HEP_00105800 NA
HEP_00090200 NA
HEP_00308000 NA
HEP_00122500 NA
HEP_00341600 NA
HEP_00125200 NA
HEP_00014700 Pfam:PF13920.6(zf-C3HC4_3),Pfam:PF12678.7(zf-rbx1),Pfam:PF17123.5(zf-RING_11),Pfam:PF13639.6(zf-RING_2),Pfam:PF14634.6(zf-RING_5)
HEP_00136100 Pfam:PF08373.10(RAP)
HEP_00312400 NA
HEP_00459700 Pfam:PF03054.16(tRNA_Me_trans)
HEP_00211900 NA
HEP_00255200 Pfam:PF00415.18(RCC1),Pfam:PF13540.6(RCC1_2)
HEP_00422000 NA
HEP_00153900 Pfam:PF00415.18(RCC1),Pfam:PF13540.6(RCC1_2)
HEP_00017400 NA
HEP_00236000 Pfam:PF00643.24(zf-B_box)
HEP_00398000 Pfam:PF01909.23(NTP_transf_2)
HEP_00251800 Pfam:PF01823.19(MACPF)
HEP_00503000 NA
HEP_00418500 Pfam:PF08264.13(Anticodon_1),Pfam:PF00133.22(tRNA-synt_1)
HEP_00347450 NA
HEP_00500100 Pfam:PF04791.16(LMBR1)
HEP_00492700 NA
HEP_00088400 Pfam:PF00249.31(Myb_DNA-binding),Pfam:PF13921.6(Myb_DNA-bind_6)
HEP_00433600 NA
HEP_00282100 NA
HEP_00317800 NA
HEP_00422800 NA
HEP_00363200 NA
HEP_00283800 NA
HEP_00510600 NA
HEP_00297900 NA
HEP_00007000 NA
HEP_00129300 NA
HEP_00304100 NA
HEP_00257200 Pfam:PF16858.5(CNDH2_C),Pfam:PF06278.11(CNDH2_N)
HEP_00327200 NA
HEP_00163200 NA
HEP_00090500 NA
HEP_00302400 NA
HEP_00496800 NA
HEP_00123500 NA
HEP_00021200 Pfam:PF00076.22(RRM_1),Pfam:PF07744.13(SPOC)
HEP_00122900 Pfam:PF00069.25(Pkinase),Pfam:PF07714.17(Pkinase_Tyr)
HEP_00459000 NA
HEP_00103000 NA
HEP_00279200 NA
HEP_00101700 NA
HEP_00208300 NA
HEP_00291400 Pfam:PF10394.9(Hat1_N)
HEP_00021300 NA
HEP_00168800 NA
HEP_00287800 NA
HEP_00120900 NA
HEP_00185200 Pfam:PF00334.19(NDK)
HEP_00162000 NA
HEP_00079200 Pfam:PF05096.12(Glu_cyclase_2)
HEP_00295900 Pfam:PF07738.13(Sad1_UNC)
HEP_00278800 Pfam:PF01652.18(IF4E)
HEP_00307400 NA
HEP_00228000 Pfam:PF08600.10(Rsm1),Pfam:PF07967.13(zf-C3HC)
HEP_00204800 NA
HEP_00104600 NA
HEP_00218600 NA
HEP_00319600 NA
HEP_00467800 NA
HEP_00441500 NA
HEP_00326500 Pfam:PF00481.21(PP2C)
HEP_00244900 NA
HEP_00130900 Pfam:PF01876.16(RNase_P_p30)
HEP_00075000 NA
HEP_00188100 NA
HEP_00393500 NA
HEP_00270800 NA
HEP_00410100 Pfam:PF06293.14(Kdo),Pfam:PF14531.6(Kinase-like),Pfam:PF00069.25(Pkinase),Pfam:PF07714.17(Pkinase_Tyr)
HEP_00425100 NA
HEP_00332800 NA
HEP_00269700 NA
HEP_00331000 NA
HEP_00104200 Pfam:PF01744.20(GLTT),Pfam:PF01344.25(Kelch_1),Pfam:PF13415.6(Kelch_3),Pfam:PF13418.6(Kelch_4),Pfam:PF13854.6(Kelch_5),Pfam:PF13964.6(Kelch_6),Pfam:PF02475.16(Met_10),Pfam:PF02676.14(TYW3)
HEP_00088300 NA
HEP_00088900 NA
HEP_00140800 Pfam:PF00630.19(Filamin)
HEP_00128200 Pfam:PF05642.11(Sporozoite_P67)
HEP_00456000 Pfam:PF01250.17(Ribosomal_S6)
HEP_00246900 NA
HEP_00365700 NA
HEP_00036200 NA
HEP_00034500 NA
HEP_00284200 Pfam:PF03034.15(PSS)
HEP_00357500 NA
HEP_00486900 NA
HEP_00388300 NA
HEP_00071700 NA
HEP_00196300 NA
HEP_00255500 Pfam:PF00226.31(DnaJ)
HEP_00102000 Pfam:PF00307.31(CH)
HEP_00152500 NA
HEP_00423900 NA
HEP_00015300 NA
HEP_00448200 NA
HEP_00266800 Pfam:PF00013.29(KH_1),Pfam:PF14611.6(SLS)
HEP_00333900 NA
HEP_00118700 NA
HEP_00255700 NA
HEP_00281200 Pfam:PF12936.7(Kri1_C)
HEP_00409700 NA
HEP_00501800 NA
HEP_00034400 Pfam:PF13476.6(AAA_23),Pfam:PF07889.12(DUF1664),Pfam:PF06009.12(Laminin_II),Pfam:PF02463.19(SMC_N)
HEP_00176400 Pfam:PF13771.6(zf-HC5HC2H),Pfam:PF13832.6(zf-HC5HC2H_2)
HEP_00322100 NA
HEP_00316700 Pfam:PF05502.13(Dynactin_p62)
HEP_00386100 NA
HEP_00450100 Pfam:PF00270.29(DEAD),Pfam:PF00271.31(Helicase_C),Pfam:PF04851.15(ResIII)
HEP_00367100 NA
HEP_00487900 NA
HEP_00495000 Pfam:PF01391.18(Collagen),Pfam:PF01416.20(PseudoU_synth_1)
HEP_00411200 NA
HEP_00230500 NA
HEP_00237600 NA
HEP_00310600 Pfam:PF01744.20(GLTT)
HEP_00400000 NA
HEP_00024800 NA
HEP_00325950 Pfam:PF00082.22(Peptidase_S8)
HEP_00182400 NA
HEP_00078100 NA
HEP_00213000 Pfam:PF14608.6(zf-CCCH_2)
HEP_00415800 NA
HEP_00340900 NA
HEP_00015400 NA
HEP_00134600 Pfam:PF08159.12(NUC153)
HEP_00200300 NA
HEP_00392900 NA
HEP_00101000 Pfam:PF01096.18(TFIIS_C)
HEP_00446800 NA
HEP_00037400 NA
HEP_00259500 NA
HEP_00389800 NA
HEP_00286500 NA
HEP_00008600 NA
HEP_00314800 Pfam:PF12348.8(CLASP_N)
HEP_00341400 NA
HEP_00100700 NA
HEP_00331300 NA
HEP_00315200 Pfam:PF00226.31(DnaJ)
HEP_00242500 Pfam:PF00076.22(RRM_1)
HEP_00094600 Pfam:PF00787.24(PX)
HEP_00436300 NA
HEP_00421250 Pfam:PF00076.22(RRM_1)
HEP_00353300 Pfam:PF13086.6(AAA_11),Pfam:PF13087.6(AAA_12),Pfam:PF13245.6(AAA_19),Pfam:PF13401.6(AAA_22),Pfam:PF05127.14(Helicase_RecD),Pfam:PF01443.18(Viral_helicase1)
HEP_00208800 NA
HEP_00406000 NA
HEP_00172400 Pfam:PF04006.12(Mpp10)
HEP_00385800 Pfam:PF01863.17(DUF45),Pfam:PF08325.10(WLM)
HEP_00123800 NA
HEP_00303500 Pfam:PF04825.13(Rad21_Rec8_N)
HEP_00523300 NA
HEP_00115200 Pfam:PF00752.17(XPG_N)
HEP_00105700 NA
HEP_00311900 Pfam:PF00004.29(AAA)
HEP_00194000 Pfam:PF06221.13(zf-C2HC5)
HEP_00290000 Pfam:PF00069.25(Pkinase),Pfam:PF07714.17(Pkinase_Tyr)
HEP_00252500 Pfam:PF05179.14(CDC73_C)
HEP_00043400 NA
HEP_00493800 NA
HEP_00273000 NA
HEP_00413300 Pfam:PF00839.17(Cys_rich_FGFR)
HEP_00268900 NA
HEP_00178100 NA
HEP_00189900 Pfam:PF04857.20(CAF1)
HEP_00120000 NA
HEP_00261200 NA
HEP_00322000 NA
HEP_00408000 NA
HEP_00401000 NA
HEP_00285400 NA
HEP_00075700 NA
HEP_00108000 NA
HEP_00106300 NA
HEP_00425400 Pfam:PF01569.21(PAP2),Pfam:PF14360.6(PAP2_C)
HEP_00515500 NA
HEP_00277200 Pfam:PF05764.13(YL1),Pfam:PF08265.11(YL1_C)
HEP_00136300 Pfam:PF12314.8(IMCp)
HEP_00182500 Pfam:PF00022.19(Actin)
HEP_00003800 NA
HEP_00071900 Pfam:PF05285.12(SDA1)
HEP_00282600 Pfam:PF00082.22(Peptidase_S8)
HEP_00427400 NA
HEP_00026400 NA
HEP_00040200 NA
HEP_00057100 Pfam:PF08373.10(RAP)
HEP_00486400 Pfam:PF06487.12(SAP18)
HEP_00535100 NA
HEP_00033800 NA
HEP_00391600 Pfam:PF01171.20(ATP_bind_3)
HEP_00362000 NA
HEP_00087500 NA
HEP_00079600 NA
HEP_00335400 NA
HEP_00053400 Pfam:PF12895.7(ANAPC3),Pfam:PF00515.28(TPR_1),Pfam:PF07719.17(TPR_2),Pfam:PF13181.6(TPR_8)
HEP_00116000 Pfam:PF06220.12(zf-U1)
HEP_00407200 Pfam:PF07985.12(SRR1)
HEP_00449100 Pfam:PF01593.24(Amino_oxidase),Pfam:PF01266.24(DAO),Pfam:PF13450.6(NAD_binding_8)
HEP_00050200 NA
HEP_00030800 Pfam:PF12678.7(zf-rbx1),Pfam:PF17123.5(zf-RING_11),Pfam:PF13639.6(zf-RING_2),Pfam:PF13445.6(zf-RING_UBOX)
HEP_00526800 NA
HEP_00289000 NA
HEP_00106900 Pfam:PF01151.18(ELO)
HEP_00250000 NA
HEP_00313300 Pfam:PF00076.22(RRM_1),Pfam:PF16367.5(RRM_7),Pfam:PF00397.26(WW)
HEP_00428400 NA
HEP_00402200 Pfam:PF00076.22(RRM_1),Pfam:PF16131.5(Torus)
HEP_00374300 Pfam:PF12799.7(LRR_4)
HEP_00024600 Pfam:PF00069.25(Pkinase),Pfam:PF07714.17(Pkinase_Tyr)
HEP_00259900 NA
HEP_00215700 NA
HEP_00235300 NA
HEP_00321300 Pfam:PF15863.5(EELM2)
HEP_00055300 Pfam:PF02535.22(Zip)
HEP_00284400 NA
HEP_00383700 Pfam:PF00270.29(DEAD),Pfam:PF00271.31(Helicase_C)
HEP_00316000 NA
HEP_00483800 Pfam:PF00400.32(WD40)
HEP_00002700 NA
HEP_00249800 NA
HEP_00395500 Pfam:PF13671.6(AAA_33)
HEP_00029000 NA
HEP_00125000 NA
HEP_00121600 NA
HEP_00512100 NA
HEP_00277100 NA
HEP_00192300 Pfam:PF00847.20(AP2)
HEP_00128100 Pfam:PF05403.11(Plasmodium_HRP)
HEP_00177500 NA
HEP_00154300 NA
HEP_00274800 NA
HEP_00037800 Pfam:PF01391.18(Collagen)
HEP_00045300 Pfam:PF07699.13(Ephrin_rec_like)
HEP_00272800 Pfam:PF08367.11(M16C_assoc),Pfam:PF00675.20(Peptidase_M16),Pfam:PF05193.21(Peptidase_M16_C)
HEP_00164700 NA
HEP_00387100 Pfam:PF01585.23(G-patch)
HEP_00440900 Pfam:PF01391.18(Collagen),Pfam:PF05026.13(DCP2),Pfam:PF00293.28(NUDIX)
HEP_00278100 NA
HEP_00031500 NA
HEP_00125500 Pfam:PF07714.17(Pkinase_Tyr)
HEP_00312300 Pfam:PF02265.16(S1-P1_nuclease)
HEP_00254000 Pfam:PF08524.11(rRNA_processing)
HEP_00417100 Pfam:PF09409.10(PUB)
HEP_00040800 NA
HEP_00061300 NA
HEP_00120800 NA
HEP_00018800 NA
HEP_00432900 Pfam:PF06658.12(DUF1168)
HEP_00231700 Pfam:PF00069.25(Pkinase),Pfam:PF07714.17(Pkinase_Tyr)
HEP_00050100 NA
HEP_00326800 NA
HEP_00231300 NA
HEP_00153600 NA
HEP_00099000 Pfam:PF01388.21(ARID)
HEP_00298200 Pfam:PF10199.9(Adaptin_binding)
HEP_00085400 NA
HEP_00124100 NA
HEP_00150400 Pfam:PF01214.18(CK_II_beta)
HEP_00161400 NA
HEP_00365600 NA
HEP_00398400 NA
HEP_00333600 Pfam:PF05057.14(DUF676)
HEP_00063200 NA
HEP_00135900 Pfam:PF01412.18(ArfGap)
HEP_00480700 NA
HEP_00480800 NA
HEP_00414100 Pfam:PF00641.18(zf-RanBP)
HEP_00210700 Pfam:PF13920.6(zf-C3HC4_3)
HEP_00224000 Pfam:PF08661.11(Rep_fac-A_3)
HEP_00069200 NA
HEP_00256800 Pfam:PF03810.19(IBN_N)
HEP_00050300 NA
HEP_00345300 NA
HEP_00243600 Pfam:PF00583.25(Acetyltransf_1),Pfam:PF13673.7(Acetyltransf_10),Pfam:PF13508.7(Acetyltransf_7),Pfam:PF00439.25(Bromodomain)
HEP_00199800 NA
HEP_00508500 Pfam:PF04438.16(zf-HIT)
HEP_00314900 NA
HEP_00126500 NA
HEP_00190500 NA
HEP_00300900 NA
HEP_00118500 NA
HEP_00463000 Pfam:PF00122.20(E1-E2_ATPase)
HEP_00271000 Pfam:PF00581.20(Rhodanese)
HEP_00252700 NA
HEP_00046400 NA
HEP_00323200 NA
HEP_00186100 NA
HEP_00412000 NA
HEP_00241700 Pfam:PF01846.19(FF)
HEP_00012900 Pfam:PF01248.26(Ribosomal_L7Ae)
HEP_00333800 NA
HEP_00377500 NA
HEP_00287600 NA
HEP_00188000 Pfam:PF03031.18(NIF)
HEP_00071200 NA
HEP_00305700 Pfam:PF02146.17(SIR2)
HEP_00033700 Pfam:PF07522.14(DRMBL)
HEP_00441400 NA
HEP_00202000 Pfam:PF00481.21(PP2C)
HEP_00277300 Pfam:PF06916.13(DUF1279)
HEP_00455000 NA
HEP_00089000 NA
HEP_00026100 NA
HEP_00281800 NA
HEP_00305300 Pfam:PF08373.10(RAP)
HEP_00120200 Pfam:PF00622.28(SPRY)
HEP_00272400 Pfam:PF01593.24(Amino_oxidase),Pfam:PF01266.24(DAO),Pfam:PF00890.24(FAD_binding_2),Pfam:PF03486.14(HI0933_like),Pfam:PF13450.6(NAD_binding_8),Pfam:PF07992.14(Pyr_redox_2),Pfam:PF01946.17(Thi4)
HEP_00327000 Pfam:PF01344.25(Kelch_1),Pfam:PF07646.15(Kelch_2),Pfam:PF13415.6(Kelch_3),Pfam:PF13418.6(Kelch_4),Pfam:PF13854.6(Kelch_5),Pfam:PF13964.6(Kelch_6)
HEP_00237100 Pfam:PF07576.12(BRAP2),Pfam:PF02148.19(zf-UBP)
HEP_00328200 Pfam:PF11857.8(DUF3377),Pfam:PF00090.19(TSP_1)
HEP_00522200 NA
HEP_00390200 Pfam:PF00378.20(ECH_1),Pfam:PF16113.5(ECH_2)
HEP_00454000 NA
HEP_00006200 Pfam:PF09445.10(Methyltransf_15)
HEP_00506550 NA
HEP_00019100 NA
HEP_00018400 Pfam:PF00675.20(Peptidase_M16),Pfam:PF05193.21(Peptidase_M16_C)
HEP_00105600 Pfam:PF02150.16(RNA_POL_M_15KD)
HEP_00374600 NA
HEP_00394500 NA
HEP_00437400 Pfam:PF07422.13(s48_45)
HEP_00153100 Pfam:PF12314.8(IMCp)
HEP_00148800 Pfam:PF03493.18(BK_channel_a),Pfam:PF07885.16(Ion_trans_2)
HEP_00415200 NA
HEP_00148100 Pfam:PF01344.25(Kelch_1),Pfam:PF07646.15(Kelch_2),Pfam:PF13415.6(Kelch_3),Pfam:PF13418.6(Kelch_4),Pfam:PF13854.6(Kelch_5),Pfam:PF13964.6(Kelch_6)
HEP_00340700 NA
HEP_00028700 Pfam:PF00173.28(Cyt-b5)
HEP_00277800 Pfam:PF00244.20(14-3-3)
HEP_00356400 Pfam:PF02493.20(MORN)
HEP_00265400 NA
HEP_00404800 Pfam:PF02450.15(LCAT)
HEP_00159500 Pfam:PF00750.19(tRNA-synt_1d)
HEP_00324600 NA
HEP_00299600 NA
HEP_00216000 Pfam:PF00643.24(zf-B_box)
HEP_00400500 NA
HEP_00426900 Pfam:PF01391.18(Collagen)
HEP_00504400 Pfam:PF01926.23(MMR_HSR1)
HEP_00479800 NA
HEP_00039600 NA
HEP_00302600 Pfam:PF02784.16(Orn_Arg_deC_N),Pfam:PF00278.22(Orn_DAP_Arg_deC),Pfam:PF01536.16(SAM_decarbox)
HEP_00532900 NA
HEP_00238200 Pfam:PF00270.29(DEAD),Pfam:PF00271.31(Helicase_C),Pfam:PF00176.23(SNF2_N),Pfam:PF05887.11(Trypan_PARP)
HEP_00344900 NA
HEP_00417500 NA
HEP_00409200 NA
HEP_00514300 NA
HEP_00148500 NA
HEP_00129400 Pfam:PF07106.13(TBPIP)
HEP_00115800 Pfam:PF00225.23(Kinesin),Pfam:PF16796.5(Microtub_bd),Pfam:PF13599.6(Pentapeptide_4)
HEP_00499300 NA
HEP_00481800 Pfam:PF00076.22(RRM_1)
HEP_00054100 NA
HEP_00074200 Pfam:PF00439.25(Bromodomain)
HEP_00308300 NA
HEP_00170700 NA
HEP_00021100 Pfam:PF04000.15(Sas10_Utp3)
HEP_00110300 NA
HEP_00344500 NA
HEP_00450600 NA
HEP_00529300 NA
HEP_00000900 Pfam:PF07690.16(MFS_1)
HEP_00172300 NA
HEP_00014300 NA
HEP_00311200 Pfam:PF02201.18(SWIB)
HEP_00317300 NA
HEP_00338100 NA
HEP_00321800 NA
HEP_00383400 NA
HEP_00280800 NA
HEP_00466000 Pfam:PF04886.12(PT)
HEP_00193800 Pfam:PF00004.29(AAA)
HEP_00041700 Pfam:PF01590.26(GAF),Pfam:PF13185.6(GAF_2),Pfam:PF10507.9(TMEM65)
HEP_00109900 Pfam:PF01128.19(IspD)
HEP_00158100 NA
HEP_00421500 Pfam:PF00847.20(AP2)
HEP_00024500 NA
HEP_00297800 NA
HEP_00270700 NA
HEP_00407100 NA
HEP_00407300 NA
HEP_00294700 NA
HEP_00366400 Pfam:PF16093.5(PAC4)
HEP_00336300 NA
HEP_00395800 NA
HEP_00017800 NA
HEP_00081900 NA
HEP_00222300 Pfam:PF08773.11(CathepsinC_exc),Pfam:PF00112.23(Peptidase_C1)
HEP_00368200 NA
HEP_00060700 NA
HEP_00473500 NA
HEP_00282200 Pfam:PF04997.12(RNA_pol_Rpb1_1),Pfam:PF00623.20(RNA_pol_Rpb1_2),Pfam:PF04983.18(RNA_pol_Rpb1_3)
HEP_00329700 NA
HEP_00152000 NA
HEP_00533400 NA
HEP_00207000 Pfam:PF00995.23(Sec1)
HEP_00005200 NA
HEP_00464900 NA
HEP_00148000 Pfam:PF01344.25(Kelch_1),Pfam:PF07646.15(Kelch_2),Pfam:PF13415.6(Kelch_3),Pfam:PF13418.6(Kelch_4),Pfam:PF13854.6(Kelch_5),Pfam:PF13964.6(Kelch_6)
HEP_00419700 Pfam:PF00149.28(Metallophos)
HEP_00139800 NA
HEP_00394800 Pfam:PF07699.13(Ephrin_rec_like)
HEP_00143000 NA
HEP_00234000 Pfam:PF10181.9(PIG-H)
HEP_00322600 Pfam:PF01694.22(Rhomboid)
HEP_00076000 Pfam:PF08373.10(RAP)
HEP_00036300 NA
HEP_00220900 Pfam:PF13424.6(TPR_12)
HEP_00288400 Pfam:PF08142.12(AARP2CN)
HEP_00334000 Pfam:PF00928.21(Adap_comp_sub),Pfam:PF07382.11(HC2)
HEP_00442500 NA