-
Notifications
You must be signed in to change notification settings - Fork 0
/
protein_summary_8.txt
executable file
·4581 lines (4577 loc) · 864 KB
/
protein_summary_8.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
=subtotal(109,B3:B3) Total Total Total Total Unique Unique Unique Unique Corrected Corrected Corrected Corrected
ProtGroup Counter Accession Filter Coverage SeqLength MW Description CountsTot UniqueTot UniqFrac PAMI_GMCSF_A_TMT_20161027 PAMI_GMCSF_B_TMT_20161028 PAMI_GMCSF_C_TMT_20161031 PAMI_GMCSF_D_TMT_20161101 PAMI_GMCSF_A_TMT_20161027 PAMI_GMCSF_B_TMT_20161028 PAMI_GMCSF_C_TMT_20161031 PAMI_GMCSF_D_TMT_20161101 PAMI_GMCSF_A_TMT_20161027 PAMI_GMCSF_B_TMT_20161028 PAMI_GMCSF_C_TMT_20161031 PAMI_GMCSF_D_TMT_20161101 OtherLoci
1.0 1 CONT_005|Trypa5|PromTArt5 contaminant 100.0 50 5560 Promega trypsin artifact 5 K to R mods (2239.1, 2914)(1987, 2003). 10 8 0.800 2 3 2 3 2 3 1 2 2.000 3.000 1.059 2.087 CONT_005|Trypa5|PromTArt5, CONT_010|gi|136429|sp|P00761|TRYP_PIG
2.0 1 CONT_010|gi|136429|sp|P00761|TRYP_PIG contaminant 25.1 231 24409 TRYPSIN PRECURSOR [Sus scrofa]. 63 61 0.968 14 10 17 22 14 10 16 21 14.000 10.000 16.941 21.913 CONT_005|Trypa5|PromTArt5, CONT_010|gi|136429|sp|P00761|TRYP_PIG
3.0 1 CONT_016|gi|113574|sp|P02769|ALBU_BOVIN contaminant 16.5 607 69270 SERUM ALBUMIN PRECURSOR [Bos taurus]. 270 11 0.041 61 62 79 68 2 3 3 3 2.888 4.349 3.480 5.152 CONT_016|gi|113574|sp|P02769|ALBU_BOVIN, CONT_017|gi|113576|sp|P02768|ALBU_HUMAN, CONT_018|gi|113580|sp|P02770|ALBU_RAT, sp|P07724|ALBU_MOUSE
4.0 1 CONT_017|gi|113576|sp|P02768|ALBU_HUMAN contaminant 14.1 609 69366 SERUM ALBUMIN PRECURSOR [Homo sapiens]. 61 6 0.098 17 12 15 17 1 3 1 1 1.362 3.054 1.030 1.282 CONT_016|gi|113574|sp|P02769|ALBU_BOVIN, CONT_017|gi|113576|sp|P02768|ALBU_HUMAN, CONT_018|gi|113580|sp|P02770|ALBU_RAT, sp|P07724|ALBU_MOUSE
5.0 1 CONT_018|gi|113580|sp|P02770|ALBU_RAT contaminant 33.6 608 68718 SERUM ALBUMIN PRECURSOR [Rattus norvegicus]. 1722 0 0.000 462 409 439 412 0 0 0 0 0.000 0.000 0.000 0.000 CONT_016|gi|113574|sp|P02769|ALBU_BOVIN, CONT_017|gi|113576|sp|P02768|ALBU_HUMAN, CONT_018|gi|113580|sp|P02770|ALBU_RAT, sp|P07724|ALBU_MOUSE
6.0 1 CONT_019|CAS1_BOVIN contaminant 14.5 214 24529 ALPHA-S1 CASEIN PRECURSOR [Bos taurus]. 8 8 1.000 1 3 2 2 1 3 2 2 1.000 3.000 2.000 2.000
7.0 1 CONT_021|CASB_BOVIN contaminant 11.6 224 25107 BETA CASEIN PRECURSOR [Bos taurus]. 8 8 1.000 2 3 1 2 2 3 1 2 2.000 3.000 1.000 2.000
8.0 1 CONT_049|gi|88052|pir||A32568 contaminant 15.1 589 62033 keratin K5, 58K type II, epidermal (version 2) (fragment) [Homo sapiens]. 41 1 0.024 15 8 9 9 1 0 0 0 3.276 0.833 0.500 0.000 CONT_049|gi|88052|pir||A32568, CONT_064|gi|254622|bbs|112352, CONT_070|gi|547752|sp|Q01546|K22O_HUMAN, CONT_073|gi|87303|pir||JS0487, CONT_079|gi|125105|sp|P13647|K2C5_HUMAN, CONT_102|gi|88044|pir||S01068, CONT_120|gi|125108|sp|P08729|K2C7_HUMAN, CONT_133|gi|1346349|sp|P48669|K2CF_HUMAN, CONT_172|gi|1903216|gnl|PID|e255375, sp|P03995|GFAP_MOUSE, sp|P04104|K2C1_MOUSE, sp|P11679|K2C8_MOUSE, sp|P19246|NFH_MOUSE, sp|P20152|VIME_MOUSE, sp|Q3TTY5|K22E_MOUSE, sp|Q3UV17|K22O_MOUSE, sp|Q6IFZ6|K2C1B_MOUSE, sp|Q6IFZ9|K2C74_MOUSE, sp|Q6NXH9|K2C73_MOUSE, sp|Q8BGZ7|K2C75_MOUSE, sp|Q922U2|K2C5_MOUSE, sp|Q9DCV7|K2C7_MOUSE
9.0 1 CONT_064|gi|254622|bbs|112352 contaminant 32.1 645 65911 (S43646) cytokeratin 2, CK 2 [human, epidermis, Peptide, 645 aa]. 67 33 0.493 20 14 19 14 12 6 10 5 17.955 11.913 17.098 11.181 CONT_049|gi|88052|pir||A32568, CONT_064|gi|254622|bbs|112352, CONT_070|gi|547752|sp|Q01546|K22O_HUMAN, CONT_073|gi|87303|pir||JS0487, CONT_079|gi|125105|sp|P13647|K2C5_HUMAN, CONT_088|gi|1346343|sp|P04264|K2C1_HUMAN, CONT_089|gi|71536|pir||KRHU2, CONT_102|gi|88044|pir||S01068, CONT_120|gi|125108|sp|P08729|K2C7_HUMAN, CONT_133|gi|1346349|sp|P48669|K2CF_HUMAN, sp|P04104|K2C1_MOUSE, sp|P11679|K2C8_MOUSE, sp|P19246|NFH_MOUSE, sp|Q3TTY5|K22E_MOUSE, sp|Q3UV17|K22O_MOUSE, sp|Q6IFZ6|K2C1B_MOUSE, sp|Q6IFZ9|K2C74_MOUSE, sp|Q6NXH9|K2C73_MOUSE, sp|Q8BGZ7|K2C75_MOUSE, sp|Q922U2|K2C5_MOUSE, sp|Q9DCV7|K2C7_MOUSE
9.01 1 CONT_072|gi|547754|sp|P35908|K22E_HUMAN redundant 32.1 645 65865 KERATIN, TYPE II CYTOSKELETAL 2 EPIDERMAL (CYTOKERATIN 2E) (K2E) (CK 2E) [Homo sapiens]. 67 33 0.493 20 14 19 14 12 6 10 5 17.955 11.913 17.098 11.181 CONT_049|gi|88052|pir||A32568, CONT_064|gi|254622|bbs|112352, CONT_070|gi|547752|sp|Q01546|K22O_HUMAN, CONT_073|gi|87303|pir||JS0487, CONT_079|gi|125105|sp|P13647|K2C5_HUMAN, CONT_088|gi|1346343|sp|P04264|K2C1_HUMAN, CONT_089|gi|71536|pir||KRHU2, CONT_102|gi|88044|pir||S01068, CONT_120|gi|125108|sp|P08729|K2C7_HUMAN, CONT_133|gi|1346349|sp|P48669|K2CF_HUMAN, sp|P04104|K2C1_MOUSE, sp|P11679|K2C8_MOUSE, sp|P19246|NFH_MOUSE, sp|Q3TTY5|K22E_MOUSE, sp|Q3UV17|K22O_MOUSE, sp|Q6IFZ6|K2C1B_MOUSE, sp|Q6IFZ9|K2C74_MOUSE, sp|Q6NXH9|K2C73_MOUSE, sp|Q8BGZ7|K2C75_MOUSE, sp|Q922U2|K2C5_MOUSE, sp|Q9DCV7|K2C7_MOUSE
10.0 1 CONT_068|gi|1082558|pir||S41161 contaminant 32.9 623 62129 keratin 9, cytoskeletal [Homo sapiens]. 72 67 0.931 18 19 17 18 17 18 15 17 17.315 18.247 15.492 17.254 CONT_068|gi|1082558|pir||S41161, CONT_082|gi|125080|sp|P02533|K1CN_HUMAN, CONT_092|gi|71528|pir||KRHU0, CONT_094|gi|547751|sp|Q04695|K1CQ_HUMAN, CONT_156|gi|1363944|pir||JC4313, sp|P05784|K1C18_MOUSE, sp|P08730|K1C13_MOUSE, sp|P19001|K1C19_MOUSE, sp|Q61414|K1C15_MOUSE, sp|Q9QWL7|K1C17_MOUSE
10.01 1 CONT_105|gi|547748|sp|P35527|K1CI_HUMAN redundant 33.0 622 61987 KERATIN, TYPE I CYTOSKELETAL 9 (CYTOKERATIN 9) (K9) (CK 9) [Homo sapiens]. 72 67 0.931 18 19 17 18 17 18 15 17 17.315 18.247 15.492 17.254 CONT_068|gi|1082558|pir||S41161, CONT_082|gi|125080|sp|P02533|K1CN_HUMAN, CONT_092|gi|71528|pir||KRHU0, CONT_094|gi|547751|sp|Q04695|K1CQ_HUMAN, CONT_156|gi|1363944|pir||JC4313, sp|P05784|K1C18_MOUSE, sp|P08730|K1C13_MOUSE, sp|P19001|K1C19_MOUSE, sp|Q61414|K1C15_MOUSE, sp|Q9QWL7|K1C17_MOUSE
11.0 1 CONT_070|gi|547752|sp|Q01546|K22O_HUMAN contaminant 6.4 638 65870 KERATIN, TYPE II CYTOSKELETAL 2 ORAL (CYTOKERATIN 2P) (K2P) (CK 2P) [Homo sapiens]. 31 0 0.000 12 6 7 6 0 0 0 0 0.500 0.000 0.000 0.000 CONT_049|gi|88052|pir||A32568, CONT_064|gi|254622|bbs|112352, CONT_070|gi|547752|sp|Q01546|K22O_HUMAN, CONT_073|gi|87303|pir||JS0487, CONT_079|gi|125105|sp|P13647|K2C5_HUMAN, CONT_088|gi|1346343|sp|P04264|K2C1_HUMAN, CONT_089|gi|71536|pir||KRHU2, CONT_102|gi|88044|pir||S01068, CONT_120|gi|125108|sp|P08729|K2C7_HUMAN, CONT_133|gi|1346349|sp|P48669|K2CF_HUMAN, CONT_172|gi|1903216|gnl|PID|e255375, sp|P03995|GFAP_MOUSE, sp|P04104|K2C1_MOUSE, sp|P11679|K2C8_MOUSE, sp|P19246|NFH_MOUSE, sp|P20152|VIME_MOUSE, sp|Q3TTY5|K22E_MOUSE, sp|Q3UV17|K22O_MOUSE, sp|Q6IFZ6|K2C1B_MOUSE, sp|Q6IFZ9|K2C74_MOUSE, sp|Q6NXH9|K2C73_MOUSE, sp|Q8BGZ7|K2C75_MOUSE, sp|Q922U2|K2C5_MOUSE, sp|Q9DCV7|K2C7_MOUSE
12.0 1 CONT_073|gi|87303|pir||JS0487 contaminant 36.3 482 53561 cytokeratin 8 (version 1) [Homo sapiens]. 101 0 0.000 27 24 24 26 0 0 0 0 0.000 0.000 0.000 0.000 CONT_049|gi|88052|pir||A32568, CONT_064|gi|254622|bbs|112352, CONT_070|gi|547752|sp|Q01546|K22O_HUMAN, CONT_073|gi|87303|pir||JS0487, CONT_079|gi|125105|sp|P13647|K2C5_HUMAN, CONT_088|gi|1346343|sp|P04264|K2C1_HUMAN, CONT_089|gi|71536|pir||KRHU2, CONT_102|gi|88044|pir||S01068, CONT_120|gi|125108|sp|P08729|K2C7_HUMAN, CONT_133|gi|1346349|sp|P48669|K2CF_HUMAN, CONT_172|gi|1903216|gnl|PID|e255375, sp|P03995|GFAP_MOUSE, sp|P04104|K2C1_MOUSE, sp|P11679|K2C8_MOUSE, sp|P15331|PERI_MOUSE, sp|P20152|VIME_MOUSE, sp|P31001|DESM_MOUSE, sp|Q3TTY5|K22E_MOUSE, sp|Q3UV17|K22O_MOUSE, sp|Q6IFZ6|K2C1B_MOUSE, sp|Q6IFZ9|K2C74_MOUSE, sp|Q6NXH9|K2C73_MOUSE, sp|Q8BGZ7|K2C75_MOUSE, sp|Q922U2|K2C5_MOUSE, sp|Q9DCV7|K2C7_MOUSE
12.01 1 CONT_103|gi|2119212|pir||I37982 redundant 36.2 483 53704 Keratin 8 - human [Homo sapiens]. 101 0 0.000 27 24 24 26 0 0 0 0 0.000 0.000 0.000 0.000 CONT_049|gi|88052|pir||A32568, CONT_064|gi|254622|bbs|112352, CONT_070|gi|547752|sp|Q01546|K22O_HUMAN, CONT_073|gi|87303|pir||JS0487, CONT_079|gi|125105|sp|P13647|K2C5_HUMAN, CONT_088|gi|1346343|sp|P04264|K2C1_HUMAN, CONT_089|gi|71536|pir||KRHU2, CONT_102|gi|88044|pir||S01068, CONT_120|gi|125108|sp|P08729|K2C7_HUMAN, CONT_133|gi|1346349|sp|P48669|K2CF_HUMAN, CONT_172|gi|1903216|gnl|PID|e255375, sp|P03995|GFAP_MOUSE, sp|P04104|K2C1_MOUSE, sp|P11679|K2C8_MOUSE, sp|P15331|PERI_MOUSE, sp|P20152|VIME_MOUSE, sp|P31001|DESM_MOUSE, sp|Q3TTY5|K22E_MOUSE, sp|Q3UV17|K22O_MOUSE, sp|Q6IFZ6|K2C1B_MOUSE, sp|Q6IFZ9|K2C74_MOUSE, sp|Q6NXH9|K2C73_MOUSE, sp|Q8BGZ7|K2C75_MOUSE, sp|Q922U2|K2C5_MOUSE, sp|Q9DCV7|K2C7_MOUSE
12.02 1 CONT_124|gi|105815|pir||A34720 redundant 36.2 483 53748 cytokeratin 8 (version 2) [Homo sapiens]. 101 0 0.000 27 24 24 26 0 0 0 0 0.000 0.000 0.000 0.000 CONT_049|gi|88052|pir||A32568, CONT_064|gi|254622|bbs|112352, CONT_070|gi|547752|sp|Q01546|K22O_HUMAN, CONT_073|gi|87303|pir||JS0487, CONT_079|gi|125105|sp|P13647|K2C5_HUMAN, CONT_088|gi|1346343|sp|P04264|K2C1_HUMAN, CONT_089|gi|71536|pir||KRHU2, CONT_102|gi|88044|pir||S01068, CONT_120|gi|125108|sp|P08729|K2C7_HUMAN, CONT_133|gi|1346349|sp|P48669|K2CF_HUMAN, CONT_172|gi|1903216|gnl|PID|e255375, sp|P03995|GFAP_MOUSE, sp|P04104|K2C1_MOUSE, sp|P11679|K2C8_MOUSE, sp|P15331|PERI_MOUSE, sp|P20152|VIME_MOUSE, sp|P31001|DESM_MOUSE, sp|Q3TTY5|K22E_MOUSE, sp|Q3UV17|K22O_MOUSE, sp|Q6IFZ6|K2C1B_MOUSE, sp|Q6IFZ9|K2C74_MOUSE, sp|Q6NXH9|K2C73_MOUSE, sp|Q8BGZ7|K2C75_MOUSE, sp|Q922U2|K2C5_MOUSE, sp|Q9DCV7|K2C7_MOUSE
12.03 1 CONT_179|gi|2506774|sp|P05787|K2C8_HUMAN redundant 36.2 483 53674 KERATIN, TYPE II CYTOSKELETAL 8 (CYTOKERATIN 8) (K8) (CK 8) [Homo sapiens]. 101 0 0.000 27 24 24 26 0 0 0 0 0.000 0.000 0.000 0.000 CONT_049|gi|88052|pir||A32568, CONT_064|gi|254622|bbs|112352, CONT_070|gi|547752|sp|Q01546|K22O_HUMAN, CONT_073|gi|87303|pir||JS0487, CONT_079|gi|125105|sp|P13647|K2C5_HUMAN, CONT_088|gi|1346343|sp|P04264|K2C1_HUMAN, CONT_089|gi|71536|pir||KRHU2, CONT_102|gi|88044|pir||S01068, CONT_120|gi|125108|sp|P08729|K2C7_HUMAN, CONT_133|gi|1346349|sp|P48669|K2CF_HUMAN, CONT_172|gi|1903216|gnl|PID|e255375, sp|P03995|GFAP_MOUSE, sp|P04104|K2C1_MOUSE, sp|P11679|K2C8_MOUSE, sp|P15331|PERI_MOUSE, sp|P20152|VIME_MOUSE, sp|P31001|DESM_MOUSE, sp|Q3TTY5|K22E_MOUSE, sp|Q3UV17|K22O_MOUSE, sp|Q6IFZ6|K2C1B_MOUSE, sp|Q6IFZ9|K2C74_MOUSE, sp|Q6NXH9|K2C73_MOUSE, sp|Q8BGZ7|K2C75_MOUSE, sp|Q922U2|K2C5_MOUSE, sp|Q9DCV7|K2C7_MOUSE
13.0 1 CONT_079|gi|125105|sp|P13647|K2C5_HUMAN contaminant 12.2 590 62461 KERATIN, TYPE II CYTOSKELETAL 5 (CYTOKERATIN 5) (K5) (CK 5) (58 KD CYTOKERATIN) [Homo sapiens]. 46 0 0.000 15 9 11 11 0 0 0 0 0.000 0.833 0.500 0.000 CONT_049|gi|88052|pir||A32568, CONT_064|gi|254622|bbs|112352, CONT_070|gi|547752|sp|Q01546|K22O_HUMAN, CONT_073|gi|87303|pir||JS0487, CONT_079|gi|125105|sp|P13647|K2C5_HUMAN, CONT_088|gi|1346343|sp|P04264|K2C1_HUMAN, CONT_089|gi|71536|pir||KRHU2, CONT_102|gi|88044|pir||S01068, CONT_120|gi|125108|sp|P08729|K2C7_HUMAN, CONT_133|gi|1346349|sp|P48669|K2CF_HUMAN, CONT_172|gi|1903216|gnl|PID|e255375, sp|P03995|GFAP_MOUSE, sp|P04104|K2C1_MOUSE, sp|P11679|K2C8_MOUSE, sp|P19246|NFH_MOUSE, sp|P20152|VIME_MOUSE, sp|Q3TTY5|K22E_MOUSE, sp|Q3UV17|K22O_MOUSE, sp|Q6IFZ6|K2C1B_MOUSE, sp|Q6IFZ9|K2C74_MOUSE, sp|Q6NXH9|K2C73_MOUSE, sp|Q8BGZ7|K2C75_MOUSE, sp|Q922U2|K2C5_MOUSE, sp|Q9DCV7|K2C7_MOUSE
14.0 1 CONT_082|gi|125080|sp|P02533|K1CN_HUMAN contaminant 10.6 472 51662 KERATIN, TYPE I CYTOSKELETAL 14 (CYTOKERATIN 14) (K14) (CK 14) [Homo sapiens]. 20 0 0.000 3 7 6 4 0 0 0 0 0.000 0.000 0.333 0.000 CONT_068|gi|1082558|pir||S41161, CONT_082|gi|125080|sp|P02533|K1CN_HUMAN, CONT_092|gi|71528|pir||KRHU0, CONT_094|gi|547751|sp|Q04695|K1CQ_HUMAN, CONT_156|gi|1363944|pir||JC4313, sp|P05784|K1C18_MOUSE, sp|P08730|K1C13_MOUSE, sp|P19001|K1C19_MOUSE, sp|Q61414|K1C15_MOUSE, sp|Q61781|K1C14_MOUSE, sp|Q9QWL7|K1C17_MOUSE
15.0 1 CONT_088|gi|1346343|sp|P04264|K2C1_HUMAN contaminant 37.4 644 66017 KERATIN, TYPE II CYTOSKELETAL 1 (CYTOKERATIN 1) (K1) (CK 1) (67 KD CYTOKERATIN) (HAIR ALPHA PROTEIN) [Homo sapiens]. 98 23 0.235 22 30 28 18 5 11 4 3 20.127 28.097 23.084 15.455 CONT_064|gi|254622|bbs|112352, CONT_070|gi|547752|sp|Q01546|K22O_HUMAN, CONT_073|gi|87303|pir||JS0487, CONT_079|gi|125105|sp|P13647|K2C5_HUMAN, CONT_088|gi|1346343|sp|P04264|K2C1_HUMAN, CONT_089|gi|71536|pir||KRHU2, CONT_102|gi|88044|pir||S01068, CONT_120|gi|125108|sp|P08729|K2C7_HUMAN, CONT_133|gi|1346349|sp|P48669|K2CF_HUMAN, sp|P03995|GFAP_MOUSE, sp|P04104|K2C1_MOUSE, sp|P11679|K2C8_MOUSE, sp|Q3TTY5|K22E_MOUSE, sp|Q6IFZ6|K2C1B_MOUSE, sp|Q6IFZ9|K2C74_MOUSE, sp|Q6NXH9|K2C73_MOUSE, sp|Q8BGZ7|K2C75_MOUSE, sp|Q922U2|K2C5_MOUSE, sp|Q9DCV7|K2C7_MOUSE
16.0 1 CONT_089|gi|71536|pir||KRHU2 contaminant 30.0 493 52788 keratin, 67K type II cytoskeletal (fragment) [Homo sapiens]. 53 0 0.000 11 13 16 13 0 0 0 0 1.000 1.000 0.500 0.500 CONT_064|gi|254622|bbs|112352, CONT_070|gi|547752|sp|Q01546|K22O_HUMAN, CONT_073|gi|87303|pir||JS0487, CONT_079|gi|125105|sp|P13647|K2C5_HUMAN, CONT_088|gi|1346343|sp|P04264|K2C1_HUMAN, CONT_089|gi|71536|pir||KRHU2, CONT_102|gi|88044|pir||S01068, CONT_120|gi|125108|sp|P08729|K2C7_HUMAN, CONT_133|gi|1346349|sp|P48669|K2CF_HUMAN, sp|P03995|GFAP_MOUSE, sp|P04104|K2C1_MOUSE, sp|P11679|K2C8_MOUSE, sp|Q3TTY5|K22E_MOUSE, sp|Q3UV17|K22O_MOUSE, sp|Q6IFZ6|K2C1B_MOUSE, sp|Q6NXH9|K2C73_MOUSE, sp|Q8BGZ7|K2C75_MOUSE, sp|Q922U2|K2C5_MOUSE, sp|Q9DCV7|K2C7_MOUSE
17.0 1 CONT_092|gi|71528|pir||KRHU0 contaminant 39.1 593 59527 keratin 10, type I, cytoskeletal (clone lambda-KH10-5) [Homo sapiens]. 95 83 0.874 18 24 28 25 16 20 25 22 17.296 23.226 26.820 24.328 CONT_068|gi|1082558|pir||S41161, CONT_082|gi|125080|sp|P02533|K1CN_HUMAN, CONT_092|gi|71528|pir||KRHU0, CONT_094|gi|547751|sp|Q04695|K1CQ_HUMAN, CONT_156|gi|1363944|pir||JC4313, sp|P05784|K1C18_MOUSE, sp|P08730|K1C13_MOUSE, sp|P19001|K1C19_MOUSE, sp|Q61414|K1C15_MOUSE, sp|Q9QWL7|K1C17_MOUSE
17.01 1 CONT_121|gi|547749|sp|P13645|K1CJ_HUMAN redundant 39.1 593 59518 KERATIN, TYPE I CYTOSKELETAL 10 (CYTOKERATIN 10) (K10) (CK 10) [Homo sapiens]. 95 83 0.874 18 24 28 25 16 20 25 22 17.296 23.226 26.820 24.328 CONT_068|gi|1082558|pir||S41161, CONT_082|gi|125080|sp|P02533|K1CN_HUMAN, CONT_092|gi|71528|pir||KRHU0, CONT_094|gi|547751|sp|Q04695|K1CQ_HUMAN, CONT_156|gi|1363944|pir||JC4313, sp|P05784|K1C18_MOUSE, sp|P08730|K1C13_MOUSE, sp|P19001|K1C19_MOUSE, sp|Q61414|K1C15_MOUSE, sp|Q9QWL7|K1C17_MOUSE
18.0 1 CONT_094|gi|547751|sp|Q04695|K1CQ_HUMAN contaminant 16.9 432 48105 KERATIN, TYPE I CYTOSKELETAL 17 (CYTOKERATIN 17) (K17) (CK 17) (39.1) (VERSION 1) [Homo sapiens]. 27 2 0.074 6 9 6 6 1 1 0 0 2.249 3.418 0.000 0.000 CONT_068|gi|1082558|pir||S41161, CONT_082|gi|125080|sp|P02533|K1CN_HUMAN, CONT_092|gi|71528|pir||KRHU0, CONT_094|gi|547751|sp|Q04695|K1CQ_HUMAN, CONT_156|gi|1363944|pir||JC4313, sp|P05784|K1C18_MOUSE, sp|P08730|K1C13_MOUSE, sp|P19001|K1C19_MOUSE, sp|Q61414|K1C15_MOUSE, sp|Q61781|K1C14_MOUSE, sp|Q9QWL7|K1C17_MOUSE
19.0 1 CONT_102|gi|88044|pir||S01068 contaminant 6.6 408 45507 keratin 4, type II, cytoskeletal (fragment) [Homo sapiens]. 5 0 0.000 1 1 1 2 0 0 0 0 0.000 0.000 0.000 0.000 CONT_049|gi|88052|pir||A32568, CONT_064|gi|254622|bbs|112352, CONT_070|gi|547752|sp|Q01546|K22O_HUMAN, CONT_073|gi|87303|pir||JS0487, CONT_079|gi|125105|sp|P13647|K2C5_HUMAN, CONT_088|gi|1346343|sp|P04264|K2C1_HUMAN, CONT_089|gi|71536|pir||KRHU2, CONT_102|gi|88044|pir||S01068, CONT_120|gi|125108|sp|P08729|K2C7_HUMAN, CONT_133|gi|1346349|sp|P48669|K2CF_HUMAN, sp|P03995|GFAP_MOUSE, sp|P04104|K2C1_MOUSE, sp|P11679|K2C8_MOUSE, sp|Q3TTY5|K22E_MOUSE, sp|Q3UV17|K22O_MOUSE, sp|Q6IFZ6|K2C1B_MOUSE, sp|Q6IFZ9|K2C74_MOUSE, sp|Q6NXH9|K2C73_MOUSE, sp|Q8BGZ7|K2C75_MOUSE, sp|Q922U2|K2C5_MOUSE, sp|Q9DCV7|K2C7_MOUSE
19.01 1 CONT_119|gi|547753|sp|P19013|K2C4_HUMAN redundant 5.1 534 57265 KERATIN, TYPE II CYTOSKELETAL 4 (CYTOKERATIN 4) (K4) (CK4) [Homo sapiens]. 5 0 0.000 1 1 1 2 0 0 0 0 0.000 0.000 0.000 0.000 CONT_049|gi|88052|pir||A32568, CONT_064|gi|254622|bbs|112352, CONT_070|gi|547752|sp|Q01546|K22O_HUMAN, CONT_073|gi|87303|pir||JS0487, CONT_079|gi|125105|sp|P13647|K2C5_HUMAN, CONT_088|gi|1346343|sp|P04264|K2C1_HUMAN, CONT_089|gi|71536|pir||KRHU2, CONT_102|gi|88044|pir||S01068, CONT_120|gi|125108|sp|P08729|K2C7_HUMAN, CONT_133|gi|1346349|sp|P48669|K2CF_HUMAN, sp|P03995|GFAP_MOUSE, sp|P04104|K2C1_MOUSE, sp|P11679|K2C8_MOUSE, sp|Q3TTY5|K22E_MOUSE, sp|Q3UV17|K22O_MOUSE, sp|Q6IFZ6|K2C1B_MOUSE, sp|Q6IFZ9|K2C74_MOUSE, sp|Q6NXH9|K2C73_MOUSE, sp|Q8BGZ7|K2C75_MOUSE, sp|Q922U2|K2C5_MOUSE, sp|Q9DCV7|K2C7_MOUSE
20.0 1 CONT_120|gi|125108|sp|P08729|K2C7_HUMAN contaminant 16.6 469 51334 KERATIN, TYPE II CYTOSKELETAL 7 (CYTOKERATIN 7) (K7) (CK 7) [Homo sapiens]. 46 2 0.043 13 8 13 12 0 1 1 0 0.000 1.188 1.304 0.000 CONT_049|gi|88052|pir||A32568, CONT_064|gi|254622|bbs|112352, CONT_070|gi|547752|sp|Q01546|K22O_HUMAN, CONT_073|gi|87303|pir||JS0487, CONT_079|gi|125105|sp|P13647|K2C5_HUMAN, CONT_088|gi|1346343|sp|P04264|K2C1_HUMAN, CONT_089|gi|71536|pir||KRHU2, CONT_102|gi|88044|pir||S01068, CONT_120|gi|125108|sp|P08729|K2C7_HUMAN, CONT_133|gi|1346349|sp|P48669|K2CF_HUMAN, CONT_172|gi|1903216|gnl|PID|e255375, sp|P03995|GFAP_MOUSE, sp|P04104|K2C1_MOUSE, sp|P11679|K2C8_MOUSE, sp|P15331|PERI_MOUSE, sp|P20152|VIME_MOUSE, sp|P31001|DESM_MOUSE, sp|Q3TTY5|K22E_MOUSE, sp|Q3UV17|K22O_MOUSE, sp|Q6IFZ6|K2C1B_MOUSE, sp|Q6IFZ9|K2C74_MOUSE, sp|Q6NXH9|K2C73_MOUSE, sp|Q8BGZ7|K2C75_MOUSE, sp|Q922U2|K2C5_MOUSE, sp|Q9DCV7|K2C7_MOUSE
20.01 1 CONT_140|gi|88045|pir||S05602 redundant 16.6 469 51364 keratin K7, type II, epithelial, 55K [Homo sapiens]. 46 2 0.043 13 8 13 12 0 1 1 0 0.000 1.188 1.304 0.000 CONT_049|gi|88052|pir||A32568, CONT_064|gi|254622|bbs|112352, CONT_070|gi|547752|sp|Q01546|K22O_HUMAN, CONT_073|gi|87303|pir||JS0487, CONT_079|gi|125105|sp|P13647|K2C5_HUMAN, CONT_088|gi|1346343|sp|P04264|K2C1_HUMAN, CONT_089|gi|71536|pir||KRHU2, CONT_102|gi|88044|pir||S01068, CONT_120|gi|125108|sp|P08729|K2C7_HUMAN, CONT_133|gi|1346349|sp|P48669|K2CF_HUMAN, CONT_172|gi|1903216|gnl|PID|e255375, sp|P03995|GFAP_MOUSE, sp|P04104|K2C1_MOUSE, sp|P11679|K2C8_MOUSE, sp|P15331|PERI_MOUSE, sp|P20152|VIME_MOUSE, sp|P31001|DESM_MOUSE, sp|Q3TTY5|K22E_MOUSE, sp|Q3UV17|K22O_MOUSE, sp|Q6IFZ6|K2C1B_MOUSE, sp|Q6IFZ9|K2C74_MOUSE, sp|Q6NXH9|K2C73_MOUSE, sp|Q8BGZ7|K2C75_MOUSE, sp|Q922U2|K2C5_MOUSE, sp|Q9DCV7|K2C7_MOUSE
20.02 1 CONT_141|gi|88049|pir||B24177 redundant 16.0 489 53806 keratin, 55K type II cytoskeletal (fragment) [Homo sapiens]. 46 2 0.043 13 8 13 12 0 1 1 0 0.000 1.188 1.304 0.000 CONT_049|gi|88052|pir||A32568, CONT_064|gi|254622|bbs|112352, CONT_070|gi|547752|sp|Q01546|K22O_HUMAN, CONT_073|gi|87303|pir||JS0487, CONT_079|gi|125105|sp|P13647|K2C5_HUMAN, CONT_088|gi|1346343|sp|P04264|K2C1_HUMAN, CONT_089|gi|71536|pir||KRHU2, CONT_102|gi|88044|pir||S01068, CONT_120|gi|125108|sp|P08729|K2C7_HUMAN, CONT_133|gi|1346349|sp|P48669|K2CF_HUMAN, CONT_172|gi|1903216|gnl|PID|e255375, sp|P03995|GFAP_MOUSE, sp|P04104|K2C1_MOUSE, sp|P11679|K2C8_MOUSE, sp|P15331|PERI_MOUSE, sp|P20152|VIME_MOUSE, sp|P31001|DESM_MOUSE, sp|Q3TTY5|K22E_MOUSE, sp|Q3UV17|K22O_MOUSE, sp|Q6IFZ6|K2C1B_MOUSE, sp|Q6IFZ9|K2C74_MOUSE, sp|Q6NXH9|K2C73_MOUSE, sp|Q8BGZ7|K2C75_MOUSE, sp|Q922U2|K2C5_MOUSE, sp|Q9DCV7|K2C7_MOUSE
21.0 1 CONT_133|gi|1346349|sp|P48669|K2CF_HUMAN contaminant 16.5 564 60066 KERATIN, TYPE II CYTOSKELETAL 6F (CYTOKERATIN 6F) (CK 6F) (K6F KERATIN) [Homo sapiens]. 54 1 0.019 15 10 13 16 0 0 0 1 0.000 0.333 0.000 2.391 CONT_049|gi|88052|pir||A32568, CONT_064|gi|254622|bbs|112352, CONT_070|gi|547752|sp|Q01546|K22O_HUMAN, CONT_073|gi|87303|pir||JS0487, CONT_079|gi|125105|sp|P13647|K2C5_HUMAN, CONT_088|gi|1346343|sp|P04264|K2C1_HUMAN, CONT_089|gi|71536|pir||KRHU2, CONT_102|gi|88044|pir||S01068, CONT_120|gi|125108|sp|P08729|K2C7_HUMAN, CONT_133|gi|1346349|sp|P48669|K2CF_HUMAN, CONT_172|gi|1903216|gnl|PID|e255375, sp|P03995|GFAP_MOUSE, sp|P04104|K2C1_MOUSE, sp|P11679|K2C8_MOUSE, sp|P19246|NFH_MOUSE, sp|P20152|VIME_MOUSE, sp|Q3TTY5|K22E_MOUSE, sp|Q3UV17|K22O_MOUSE, sp|Q6IFZ6|K2C1B_MOUSE, sp|Q6IFZ9|K2C74_MOUSE, sp|Q6NXH9|K2C73_MOUSE, sp|Q8BGZ7|K2C75_MOUSE, sp|Q922U2|K2C5_MOUSE, sp|Q9DCV7|K2C7_MOUSE
22.0 1 CONT_156|gi|1363944|pir||JC4313 contaminant 13.1 473 51237 type I keratin 16 [human, epidermal keratinocytes, Peptide, 473 aa]. 17 1 0.059 3 6 5 3 0 1 0 0 0.000 2.215 0.333 0.000 CONT_068|gi|1082558|pir||S41161, CONT_082|gi|125080|sp|P02533|K1CN_HUMAN, CONT_092|gi|71528|pir||KRHU0, CONT_094|gi|547751|sp|Q04695|K1CQ_HUMAN, CONT_156|gi|1363944|pir||JC4313, sp|P05784|K1C18_MOUSE, sp|P08730|K1C13_MOUSE, sp|P19001|K1C19_MOUSE, sp|Q61414|K1C15_MOUSE, sp|Q61781|K1C14_MOUSE, sp|Q9QWL7|K1C17_MOUSE
23.0 1 CONT_172|gi|1903216|gnl|PID|e255375 contaminant 3.9 493 54214 (X99141) type II intermediate filament of hair keratin [Homo sapiens]. 22 1 0.045 9 3 6 4 1 0 0 0 1.026 0.000 0.000 0.000 CONT_049|gi|88052|pir||A32568, CONT_070|gi|547752|sp|Q01546|K22O_HUMAN, CONT_073|gi|87303|pir||JS0487, CONT_079|gi|125105|sp|P13647|K2C5_HUMAN, CONT_120|gi|125108|sp|P08729|K2C7_HUMAN, CONT_133|gi|1346349|sp|P48669|K2CF_HUMAN, CONT_172|gi|1903216|gnl|PID|e255375, sp|P03995|GFAP_MOUSE, sp|P11679|K2C8_MOUSE, sp|P20152|VIME_MOUSE, sp|Q3UV17|K22O_MOUSE, sp|Q8BGZ7|K2C75_MOUSE, sp|Q922U2|K2C5_MOUSE, sp|Q9DCV7|K2C7_MOUSE
24.0 1 REV_A2ABU4 reversed 2.5 1439 161776 REVERSED. 3 3 1.000 0 2 0 1 0 2 0 1 0.000 2.000 0.000 1.000
25.0 1 REV_A2ASS6 reversed 0.2 35213 3906440 REVERSED. 7 7 1.000 2 0 3 2 2 0 3 2 2.000 0.000 3.000 2.000
26.0 1 REV_B2RW38 reversed 2.3 873 103522 REVERSED. 4 1 0.250 2 1 0 1 1 0 0 0 1.167 0.000 0.000 0.000 REV_B2RW38, sp|Q8BR92|PALM2_MOUSE
27.0 1 REV_E9Q414 reversed 0.6 4505 509426 REVERSED. 6 6 1.000 1 2 1 2 1 2 1 2 1.000 2.000 1.000 2.000
28.0 1 REV_E9Q557 reversed 0.8 2883 332908 REVERSED. 5 5 1.000 1 0 2 2 1 0 2 2 1.000 0.000 2.000 2.000
29.0 1 REV_O35551 reversed 5.8 862 99523 REVERSED. 6 6 1.000 1 1 1 3 1 1 1 3 1.000 1.000 1.000 3.000
30.0 1 REV_O88783 reversed 1.1 2183 247227 REVERSED. 3 3 1.000 0 0 3 0 0 0 3 0 0.000 0.000 3.000 0.000
31.0 1 REV_P11531 reversed 0.4 3678 425827 REVERSED. 3 3 1.000 1 0 2 0 1 0 2 0 1.000 0.000 2.000 0.000
32.0 1 REV_P39053 reversed 2.0 867 97802 REVERSED. 3 3 1.000 1 2 0 0 1 2 0 0 1.000 2.000 0.000 0.000
33.0 1 REV_P40201 reversed 1.0 1711 196382 REVERSED. 2 2 1.000 0 0 2 0 0 0 2 0 0.000 0.000 2.000 0.000
34.0 1 REV_P45481 reversed 0.8 2441 265491 REVERSED. 3 3 1.000 2 1 0 0 2 1 0 0 2.000 1.000 0.000 0.000
35.0 1 REV_P49025 reversed 0.9 2055 235387 REVERSED. 6 2 0.333 1 1 2 2 0 0 1 1 0.000 0.000 1.036 1.034 REV_P49025, sp|Q9Z2I0|LETM1_MOUSE
36.0 1 REV_Q05860 reversed 1.2 1466 163579 REVERSED. 6 1 0.167 2 2 1 1 0 1 0 0 0.000 1.067 0.000 0.000 REV_Q05860, sp|Q3ULJ0|GPD1L_MOUSE
37.0 1 REV_Q2KHK6 reversed 9.0 480 53951 REVERSED. 3 3 1.000 0 1 2 0 0 1 2 0 0.000 1.000 2.000 0.000
38.0 1 REV_Q3U487 reversed 2.7 861 97346 REVERSED. 5 5 1.000 1 1 1 2 1 1 1 2 1.000 1.000 1.000 2.000
39.0 1 REV_Q3UKU1 reversed 3.0 639 72124 REVERSED. 5 5 1.000 2 0 1 2 2 0 1 2 2.000 0.000 1.000 2.000
40.0 1 REV_Q4FZC9 reversed 2.7 975 112034 REVERSED. 3 3 1.000 2 1 0 0 2 1 0 0 2.000 1.000 0.000 0.000
41.0 1 REV_Q56A04 reversed 4.0 373 41082 REVERSED. 4 4 1.000 1 1 2 0 1 1 2 0 1.000 1.000 2.000 0.000
42.0 1 REV_Q5H8C4 reversed 0.8 3166 359396 REVERSED. 3 3 1.000 1 2 0 0 1 2 0 0 1.000 2.000 0.000 0.000
43.0 1 REV_Q5PR68 reversed 2.7 954 112674 REVERSED. 4 4 1.000 1 2 1 0 1 2 1 0 1.000 2.000 1.000 0.000
44.0 1 REV_Q5SSE9 reversed 0.4 5034 568891 REVERSED. 2 2 1.000 2 0 0 0 2 0 0 0 2.000 0.000 0.000 0.000
45.0 1 REV_Q5SSF7 reversed 2.0 391 44796 REVERSED. 9 9 1.000 1 2 1 5 1 2 1 5 1.000 2.000 1.000 5.000
46.0 1 REV_Q61663 reversed 8.8 284 30360 REVERSED. 4 4 1.000 2 0 1 1 2 0 1 1 2.000 0.000 1.000 1.000
47.0 1 REV_Q61687 reversed 0.7 2476 278584 REVERSED. 7 1 0.143 2 1 3 1 1 0 0 0 1.143 0.000 0.000 0.000 REV_Q61687, sp|Q9CQW1|YKT6_MOUSE
48.0 1 REV_Q61733 reversed 7.6 384 43880 REVERSED. 2 2 1.000 0 0 0 2 0 0 0 2 0.000 0.000 0.000 2.000
49.0 1 REV_Q6A078 reversed 1.2 2472 289074 REVERSED. 16 11 0.688 6 3 5 2 4 2 4 1 4.087 2.027 4.048 1.013 REV_Q6A078, sp|P38647|GRP75_MOUSE
50.0 1 REV_Q6P4S6 reversed 2.4 1311 145782 REVERSED. 2 2 1.000 0 0 0 2 0 0 0 2 0.000 0.000 0.000 2.000
51.0 1 REV_Q6P5H2 reversed 1.5 1864 207122 REVERSED. 2 2 1.000 0 0 2 0 0 0 2 0 0.000 0.000 2.000 0.000
52.0 1 REV_Q6PDI5 reversed 1.2 1840 203701 REVERSED. 6 6 1.000 2 3 1 0 2 3 1 0 2.000 3.000 1.000 0.000
53.0 1 REV_Q6URW6 reversed 2.8 2000 228583 REVERSED. 3 2 0.667 0 0 1 2 0 0 1 1 0.000 0.000 1.000 2.000 REV_Q61879, REV_Q6URW6
54.0 1 REV_Q6VGS5 reversed 1.9 2009 226532 REVERSED. 7 7 1.000 1 1 2 3 1 1 2 3 1.000 1.000 2.000 3.000
55.0 1 REV_Q6VNB8 reversed 0.7 3508 392333 REVERSED. 2 2 1.000 2 0 0 0 2 0 0 0 2.000 0.000 0.000 0.000
56.0 1 REV_Q70FJ1 reversed 1.1 3797 435986 REVERSED. 4 4 1.000 2 2 0 0 2 2 0 0 2.000 2.000 0.000 0.000
57.0 1 REV_Q7TMI3 reversed 3.2 803 90105 REVERSED. 4 4 1.000 0 1 2 1 0 1 2 1 0.000 1.000 2.000 1.000
58.0 1 REV_Q810S2 reversed 14.3 196 22381 REVERSED. 6 6 1.000 0 3 2 1 0 3 2 1 0.000 3.000 2.000 1.000
59.0 1 REV_Q8BH57 reversed 4.1 676 76006 REVERSED. 2 2 1.000 0 0 2 0 0 0 2 0 0.000 0.000 2.000 0.000
60.0 1 REV_Q8BYY4 reversed 3.7 617 70292 REVERSED. 5 5 1.000 1 1 2 1 1 1 2 1 1.000 1.000 2.000 1.000
61.0 1 REV_Q8C863 reversed 4.5 864 98992 REVERSED. 2 2 1.000 0 0 2 0 0 0 2 0 0.000 0.000 2.000 0.000
62.0 1 REV_Q8CGM2 reversed 2.1 1859 199683 REVERSED. 2 2 1.000 0 0 0 2 0 0 0 2 0.000 0.000 0.000 2.000
63.0 1 REV_Q8CJ40 reversed 0.9 2009 226942 REVERSED. 7 3 0.429 2 2 2 1 1 1 1 0 1.016 1.013 1.012 0.000 REV_Q8CJ40, sp|P08032|SPTA1_MOUSE
64.0 1 REV_Q8K3J1 reversed 9.9 212 24038 REVERSED. 3 3 1.000 0 1 2 0 0 1 2 0 0.000 1.000 2.000 0.000
65.0 1 REV_Q8R1S4 reversed 4.5 759 82407 REVERSED. 3 3 1.000 0 1 2 0 0 1 2 0 0.000 1.000 2.000 0.000
66.0 1 REV_Q8VBT6 reversed 3.5 942 102704 REVERSED. 5 5 1.000 2 2 1 0 2 2 1 0 2.000 2.000 1.000 0.000
67.0 1 REV_Q8VD65 reversed 1.5 1358 152597 REVERSED. 11 7 0.636 1 4 3 3 0 3 2 2 0.000 3.111 2.077 2.083 REV_Q8VD65, sp|P42225|STAT1_MOUSE
68.0 1 REV_Q8VDP4 reversed 5.1 922 103001 REVERSED. 2 2 1.000 0 2 0 0 0 2 0 0 0.000 2.000 0.000 0.000
69.0 1 REV_Q91XQ0 reversed 0.7 4731 541232 REVERSED. 7 7 1.000 2 1 1 3 2 1 1 3 2.000 1.000 1.000 3.000
70.0 1 REV_Q91ZI0 reversed 1.0 3301 358474 REVERSED. 3 3 1.000 1 2 0 0 1 2 0 0 1.000 2.000 0.000 0.000
71.0 1 REV_Q91ZU6 reversed 0.2 7393 834208 REVERSED. 5 1 0.200 1 1 1 2 0 0 0 1 0.000 0.000 0.000 1.071 REV_Q91ZU6, sp|P42227|STAT3_MOUSE
72.0 1 REV_Q921U8 reversed 2.7 923 100288 REVERSED. 2 2 1.000 0 0 2 0 0 0 2 0 0.000 0.000 2.000 0.000
73.0 1 REV_Q99104 reversed 0.7 1853 215536 REVERSED. 2 2 1.000 0 2 0 0 0 2 0 0 0.000 2.000 0.000 0.000
74.0 1 REV_Q9DBB4 reversed 2.5 864 101283 REVERSED. 3 3 1.000 2 0 0 1 2 0 0 1 2.000 0.000 0.000 1.000
75.0 1 REV_Q9EPU4 reversed 2.2 1441 160816 REVERSED. 4 1 0.250 0 2 1 1 0 1 0 0 0.000 1.333 0.000 0.000 REV_Q9EPU4, sp|Q6P8J2|SAT2_MOUSE
76.0 1 REV_Q9ERU9 reversed 1.6 3053 341117 REVERSED. 2 2 1.000 0 0 2 0 0 0 2 0 0.000 0.000 2.000 0.000
77.0 1 REV_Q9JHW4 reversed 3.9 583 63538 REVERSED. 2 2 1.000 0 0 2 0 0 0 2 0 0.000 0.000 2.000 0.000
78.0 1 REV_Q9Z1N2 reversed 2.5 840 95102 REVERSED. 4 4 1.000 1 2 1 0 1 2 1 0 1.000 2.000 1.000 0.000
79.0 1 sp|A0JNT9|BICL1_MOUSE 2.9 577 65286 BICD family-like cargo adapter 1 OS=Mus musculus GN=Bicdl1 PE=1 SV=1 4 4 1.000 2 2 0 0 2 2 0 0 2.000 2.000 0.000 0.000
80.0 1 sp|A2A432|CUL4B_MOUSE 9.2 970 110698 Cullin-4B OS=Mus musculus GN=Cul4b PE=1 SV=1 25 6 0.240 6 5 9 5 1 1 3 1 2.000 2.333 5.571 2.333 sp|A2A432|CUL4B_MOUSE, sp|Q3TCH7|CUL4A_MOUSE
81.0 1 sp|A2A5R2|BIG2_MOUSE 3.6 1792 202237 Brefeldin A-inhibited guanine nucleotide-exchange protein 2 OS=Mus musculus GN=Arfgef2 PE=1 SV=1 19 13 0.684 4 6 4 5 3 4 2 4 4.000 5.333 3.333 4.667 sp|A2A5R2|BIG2_MOUSE, sp|G3X9K3|BIG1_MOUSE
82.0 1 sp|A2A863|ITB4_MOUSE 1.5 1818 201648 Integrin beta-4 OS=Mus musculus GN=Itgb4 PE=1 SV=1 6 6 1.000 1 2 1 2 1 2 1 2 1.000 2.000 1.000 2.000
83.0 1 sp|A2A8L5|PTPRF_MOUSE 3.2 1898 211487 Receptor-type tyrosine-protein phosphatase F OS=Mus musculus GN=Ptprf PE=1 SV=1 4 4 1.000 0 2 1 1 0 2 1 1 0.000 2.000 1.000 1.000
84.0 1 sp|A2A8Z1|OSBL9_MOUSE 8.6 736 83108 Oxysterol-binding protein-related protein 9 OS=Mus musculus GN=Osbpl9 PE=1 SV=1 17 17 1.000 4 4 3 6 4 4 3 6 4.000 4.000 3.000 6.000
85.0 1 sp|A2AB59|RHG27_MOUSE 4.6 869 97047 Rho GTPase-activating protein 27 OS=Mus musculus GN=Arhgap27 PE=1 SV=1 2 2 1.000 0 0 0 2 0 0 0 2 0.000 0.000 0.000 2.000
86.0 1 sp|A2ADY9|DDI2_MOUSE 23.6 399 44590 Protein DDI1 homolog 2 OS=Mus musculus GN=Ddi2 PE=1 SV=1 34 34 1.000 7 8 10 9 7 8 10 9 7.000 8.000 10.000 9.000
87.0 1 sp|A2AF47|DOC11_MOUSE 4.7 2073 237769 Dedicator of cytokinesis protein 11 OS=Mus musculus GN=Dock11 PE=1 SV=1 17 13 0.765 3 2 6 6 2 2 4 5 2.143 2.000 4.571 5.417 sp|A2AF47|DOC11_MOUSE, sp|Q8BIK4|DOCK9_MOUSE, sp|Q8BZN6|DOC10_MOUSE
88.0 1 sp|A2AGT5|CKAP5_MOUSE 4.4 2032 225632 Cytoskeleton-associated protein 5 OS=Mus musculus GN=Ckap5 PE=1 SV=1 16 16 1.000 4 3 5 4 4 3 5 4 4.000 3.000 5.000 4.000
89.0 1 sp|A2AIG8|1A1L1_MOUSE 11.4 502 56878 1-aminocyclopropane-1-carboxylate synthase-like protein 1 OS=Mus musculus GN=Accs PE=2 SV=1 9 9 1.000 4 3 1 1 4 3 1 1 4.000 3.000 1.000 1.000
90.0 1 sp|A2AJB7|LCN5_MOUSE 47.9 192 21013 Epididymal-specific lipocalin-5 OS=Mus musculus GN=Lcn5 PE=1 SV=1 61 61 1.000 9 21 17 14 9 21 17 14 9.000 21.000 17.000 14.000
91.0 1 sp|A2AJI0|MA7D1_MOUSE 11.8 846 93275 MAP7 domain-containing protein 1 OS=Mus musculus GN=Map7d1 PE=1 SV=1 18 18 1.000 4 5 5 4 4 5 5 4 4.000 5.000 5.000 4.000
92.0 1 sp|A2AJL3|FGGY_MOUSE 20.7 552 60336 FGGY carbohydrate kinase domain-containing protein OS=Mus musculus GN=Fggy PE=1 SV=1 30 30 1.000 9 5 9 7 9 5 9 7 9.000 5.000 9.000 7.000
93.0 1 sp|A2AN08|UBR4_MOUSE 8.7 5180 572283 E3 ubiquitin-protein ligase UBR4 OS=Mus musculus GN=Ubr4 PE=1 SV=1 79 79 1.000 18 20 17 24 18 20 17 24 18.000 20.000 17.000 24.000
94.0 1 sp|A2APT9|KLD7A_MOUSE 20.3 773 83589 Kelch domain-containing protein 7A OS=Mus musculus GN=Klhdc7a PE=1 SV=3 33 33 1.000 7 6 11 9 7 6 11 9 7.000 6.000 11.000 9.000
95.0 1 sp|A2AQ07|TBB1_MOUSE 21.1 451 50440 Tubulin beta-1 chain OS=Mus musculus GN=Tubb1 PE=1 SV=1 63 11 0.175 13 17 18 15 2 3 4 2 2.759 4.235 5.167 2.667 sp|A2AQ07|TBB1_MOUSE, sp|P68372|TBB4B_MOUSE, sp|P99024|TBB5_MOUSE, sp|Q7TMM9|TBB2A_MOUSE, sp|Q922F4|TBB6_MOUSE, sp|Q9CWF2|TBB2B_MOUSE, sp|Q9ERD7|TBB3_MOUSE
96.0 1 sp|A2ARP1|VIP1_MOUSE 3.4 1436 159921 Inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 1 OS=Mus musculus GN=Ppip5k1 PE=1 SV=1 8 4 0.500 1 2 3 2 0 1 2 1 0.000 1.500 3.000 1.500 sp|A2ARP1|VIP1_MOUSE, sp|Q6ZQB6|VIP2_MOUSE
97.0 1 sp|A2ARV4|LRP2_MOUSE 3.7 4660 519203 Low-density lipoprotein receptor-related protein 2 OS=Mus musculus GN=Lrp2 PE=1 SV=1 29 29 1.000 6 15 3 5 6 15 3 5 6.000 15.000 3.000 5.000
98.0 1 sp|A2ASQ1|AGRIN_MOUSE 11.2 1950 207537 Agrin OS=Mus musculus GN=Agrn PE=1 SV=1 21 21 1.000 3 4 9 5 3 4 9 5 3.000 4.000 9.000 5.000
99.0 1 sp|A2ASS6|TITIN_MOUSE 0.3 35213 3906440 Titin OS=Mus musculus GN=Ttn PE=1 SV=1 7 7 1.000 1 2 2 2 1 2 2 2 1.000 2.000 2.000 2.000
100.0 1 sp|A2ATU0|DHTK1_MOUSE 25.0 921 102792 Probable 2-oxoglutarate dehydrogenase E1 component DHKTD1, mitochondrial OS=Mus musculus GN=Dhtkd1 PE=1 SV=1 40 39 0.975 11 13 10 6 11 12 10 6 11.000 12.667 10.000 6.000 sp|A2ATU0|DHTK1_MOUSE, sp|Q9CX00|IST1_MOUSE
101.0 1 sp|A2AVA0|SVEP1_MOUSE 0.9 3567 387454 Sushi, von Willebrand factor type A, EGF and pentraxin domain-containing protein 1 OS=Mus musculus GN=Svep1 PE=1 SV=1 4 4 1.000 2 0 1 1 2 0 1 1 2.000 0.000 1.000 1.000
102.0 1 sp|A2AWA9|RBGP1_MOUSE 5.5 1064 120796 Rab GTPase-activating protein 1 OS=Mus musculus GN=Rabgap1 PE=1 SV=1 9 9 1.000 3 1 2 3 3 1 2 3 3.000 1.000 2.000 3.000
103.0 1 sp|A2AX52|CO6A4_MOUSE 0.7 2309 250795 Collagen alpha-4(VI) chain OS=Mus musculus GN=Col6a4 PE=1 SV=2 4 4 1.000 1 2 0 1 1 2 0 1 1.000 2.000 0.000 1.000
104.0 1 sp|A2BDX3|MOCS3_MOUSE 11.7 460 49374 Adenylyltransferase and sulfurtransferase MOCS3 OS=Mus musculus GN=Mocs3 PE=1 SV=1 14 14 1.000 2 2 5 5 2 2 5 5 2.000 2.000 5.000 5.000
105.0 1 sp|A2BIM8|MUP18_MOUSE 72.4 181 20762 Major urinary protein 18 OS=Mus musculus GN=Mup18 PE=3 SV=1 94 4 0.043 23 26 22 23 1 1 1 1 6.450 9.417 7.833 8.333 sp|A2BIM8|MUP18_MOUSE, sp|P11588|MUP1_MOUSE, sp|P11589|MUP2_MOUSE, sp|Q5FW60|MUP20_MOUSE
105.01 1 sp|P02762|MUP6_MOUSE redundant 72.8 180 20649 Major urinary protein 6 OS=Mus musculus GN=Mup6 PE=1 SV=2 94 4 0.043 23 26 22 23 1 1 1 1 6.450 9.417 7.833 8.333 sp|A2BIM8|MUP18_MOUSE, sp|P11588|MUP1_MOUSE, sp|P11589|MUP2_MOUSE, sp|Q5FW60|MUP20_MOUSE
105.02 1 sp|P04938|MUP11_MOUSE redundant 72.4 181 20762 Major urinary protein 11 OS=Mus musculus GN=Mup11 PE=1 SV=2 94 4 0.043 23 26 22 23 1 1 1 1 6.450 9.417 7.833 8.333 sp|A2BIM8|MUP18_MOUSE, sp|P11588|MUP1_MOUSE, sp|P11589|MUP2_MOUSE, sp|Q5FW60|MUP20_MOUSE
106.0 1 sp|A2RSJ4|UH1BL_MOUSE 5.8 1457 161938 UHRF1-binding protein 1-like OS=Mus musculus GN=Uhrf1bp1l PE=1 SV=2 9 9 1.000 2 4 1 2 2 4 1 2 2.000 4.000 1.000 2.000
107.0 1 sp|A2RSX7|TYW5_MOUSE 14.3 315 36632 tRNA wybutosine-synthesizing protein 5 OS=Mus musculus GN=Tyw5 PE=2 SV=2 10 10 1.000 3 2 2 3 3 2 2 3 3.000 2.000 2.000 3.000
108.0 1 sp|A3KGB4|TBC8B_MOUSE 5.8 1114 127891 TBC1 domain family member 8B OS=Mus musculus GN=Tbc1d8b PE=1 SV=1 13 10 0.769 4 0 5 4 3 0 4 3 3.375 0.000 4.333 3.250 sp|A3KGB4|TBC8B_MOUSE, sp|O08585|CLCA_MOUSE
109.0 1 sp|A3KGF9|CO052_MOUSE 6.1 545 58688 Uncharacterized protein C15orf52 homolog OS=Mus musculus PE=1 SV=1 3 3 1.000 1 2 0 0 1 2 0 0 1.000 2.000 0.000 0.000
110.0 1 sp|A3KGS3|RGPA2_MOUSE 3.7 1872 210286 Ral GTPase-activating protein subunit alpha-2 OS=Mus musculus GN=Ralgapa2 PE=1 SV=2 7 7 1.000 4 1 0 2 4 1 0 2 4.000 1.000 0.000 2.000
111.0 1 sp|A3KGV1|ODFP2_MOUSE 31.2 830 95540 Outer dense fiber protein 2 OS=Mus musculus GN=Odf2 PE=1 SV=1 71 71 1.000 9 30 14 18 9 30 14 18 9.000 30.000 14.000 18.000
112.0 1 sp|A3KMP2|TTC38_MOUSE 45.8 465 52223 Tetratricopeptide repeat protein 38 OS=Mus musculus GN=Ttc38 PE=1 SV=2 101 101 1.000 26 24 26 25 26 24 26 25 26.000 24.000 26.000 25.000
113.0 1 sp|A6H584|CO6A5_MOUSE 18.1 2640 289571 Collagen alpha-5(VI) chain OS=Mus musculus GN=Col6a5 PE=1 SV=4 162 149 0.920 43 43 36 40 40 38 35 36 41.967 41.167 35.673 38.667 sp|A6H584|CO6A5_MOUSE, sp|Q8C6K9|CO6A6_MOUSE
114.0 1 sp|A6H5Y3|METH_MOUSE 18.1 1253 139067 Methionine synthase OS=Mus musculus GN=Mtr PE=1 SV=1 40 40 1.000 9 9 12 10 9 9 12 10 9.000 9.000 12.000 10.000
115.0 1 sp|A6H5Z3|EXC6B_MOUSE 5.4 810 94129 Exocyst complex component 6B OS=Mus musculus GN=Exoc6b PE=1 SV=1 7 7 1.000 2 2 1 2 2 2 1 2 2.000 2.000 1.000 2.000
116.0 1 sp|A6H611|MIPEP_MOUSE 7.3 711 80851 Mitochondrial intermediate peptidase OS=Mus musculus GN=Mipep PE=1 SV=1 5 5 1.000 2 1 1 1 2 1 1 1 2.000 1.000 1.000 1.000
117.0 1 sp|A6H630|ARMT1_MOUSE 14.1 439 50548 Protein-glutamate O-methyltransferase OS=Mus musculus GN=Armt1 PE=1 SV=1 11 11 1.000 4 3 2 2 4 3 2 2 4.000 3.000 2.000 2.000
118.0 1 sp|A6H6E2|MMRN2_MOUSE 11.7 943 105205 Multimerin-2 OS=Mus musculus GN=Mmrn2 PE=1 SV=1 20 20 1.000 5 4 5 6 5 4 5 6 5.000 4.000 5.000 6.000
119.0 1 sp|A6H8H2|DEN4C_MOUSE 3.7 1906 211456 DENN domain-containing protein 4C OS=Mus musculus GN=Dennd4c PE=1 SV=1 12 12 1.000 3 3 4 2 3 3 4 2 3.000 3.000 4.000 2.000
120.0 1 sp|A6X8Z5|RHG31_MOUSE 2.0 1425 155275 Rho GTPase-activating protein 31 OS=Mus musculus GN=Arhgap31 PE=1 SV=1 5 5 1.000 1 1 2 1 1 1 2 1 1.000 1.000 2.000 1.000
121.0 1 sp|A6X935|ITIH4_MOUSE 37.9 942 104658 Inter alpha-trypsin inhibitor, heavy chain 4 OS=Mus musculus GN=Itih4 PE=1 SV=2 122 122 1.000 32 30 30 30 32 30 30 30 32.000 30.000 30.000 30.000
122.0 1 sp|B1AR13|CISD3_MOUSE 10.9 137 15676 CDGSH iron-sulfur domain-containing protein 3, mitochondrial OS=Mus musculus GN=Cisd3 PE=1 SV=1 4 4 1.000 0 1 2 1 0 1 2 1 0.000 1.000 2.000 1.000
123.0 1 sp|B1AVY7|KI16B_MOUSE 2.4 1312 150056 Kinesin-like protein KIF16B OS=Mus musculus GN=Kif16b PE=1 SV=1 5 3 0.600 0 1 2 2 0 1 1 1 0.000 1.000 1.500 1.333 sp|B1AVY7|KI16B_MOUSE, sp|P28741|KIF3A_MOUSE
124.0 1 sp|B1AY13|UBP24_MOUSE 3.5 2617 293998 Ubiquitin carboxyl-terminal hydrolase 24 OS=Mus musculus GN=Usp24 PE=1 SV=1 12 12 1.000 4 3 2 3 4 3 2 3 4.000 3.000 2.000 3.000
125.0 1 sp|B1AZP2|DLGP4_MOUSE 9.7 992 108036 Disks large-associated protein 4 OS=Mus musculus GN=Dlgap4 PE=1 SV=1 26 26 1.000 7 4 10 5 7 4 10 5 7.000 4.000 10.000 5.000
126.0 1 sp|B2RQC6|PYR1_MOUSE 21.2 2225 243236 CAD protein OS=Mus musculus GN=Cad PE=1 SV=1 92 80 0.870 20 26 29 17 18 24 24 14 18.493 24.449 24.902 14.433 sp|B2RQC6|PYR1_MOUSE, sp|Q8C196|CPSM_MOUSE
127.0 1 sp|B2RRE7|OTUD4_MOUSE 4.1 1107 123054 OTU domain-containing protein 4 OS=Mus musculus GN=Otud4 PE=1 SV=1 4 4 1.000 2 0 0 2 2 0 0 2 2.000 0.000 0.000 2.000
128.0 1 sp|B2RSH2|GNAI1_MOUSE 38.1 354 40361 Guanine nucleotide-binding protein G(i) subunit alpha-1 OS=Mus musculus GN=Gnai1 PE=1 SV=1 65 29 0.446 15 18 17 15 7 6 8 8 8.708 8.130 10.167 9.509 sp|B2RSH2|GNAI1_MOUSE, sp|P08752|GNAI2_MOUSE, sp|P18872|GNAO_MOUSE, sp|P27601|GNA13_MOUSE, sp|P63094|GNAS2_MOUSE, sp|Q9DC51|GNAI3_MOUSE
129.0 1 sp|B2RVY9|TM182_MOUSE 11.4 229 25845 Transmembrane protein 182 OS=Mus musculus GN=Tmem182 PE=1 SV=1 3 3 1.000 2 0 1 0 2 0 1 0 2.000 0.000 1.000 0.000
130.0 1 sp|B2RXC1|TPC11_MOUSE 13.4 1133 128395 Trafficking protein particle complex subunit 11 OS=Mus musculus GN=Trappc11 PE=1 SV=1 31 31 1.000 8 6 7 10 8 6 7 10 8.000 6.000 7.000 10.000
131.0 1 sp|B2RXR6|ANR44_MOUSE 9.9 993 107384 Serine/threonine-protein phosphatase 6 regulatory ankyrin repeat subunit B OS=Mus musculus GN=Ankrd44 PE=1 SV=1 25 20 0.800 8 5 5 7 7 4 4 5 8.000 5.000 5.000 6.667 sp|B2RXR6|ANR44_MOUSE, sp|Q505D1|ANR28_MOUSE
132.0 1 sp|B2RXS4|PLXB2_MOUSE 7.9 1842 206228 Plexin-B2 OS=Mus musculus GN=Plxnb2 PE=1 SV=1 23 23 1.000 5 7 6 5 5 7 6 5 5.000 7.000 6.000 5.000
133.0 1 sp|B2RY04|DOCK5_MOUSE 1.7 1868 214427 Dedicator of cytokinesis protein 5 OS=Mus musculus GN=Dock5 PE=1 SV=2 3 3 1.000 0 0 1 2 0 0 1 2 0.000 0.000 1.000 2.000
134.0 1 sp|B2RY56|RBM25_MOUSE 4.1 838 99551 RNA-binding protein 25 OS=Mus musculus GN=Rbm25 PE=1 SV=2 5 5 1.000 1 2 2 0 1 2 2 0 1.000 2.000 2.000 0.000
135.0 1 sp|B7ZMP1|XPP3_MOUSE 30.2 506 56677 Probable Xaa-Pro aminopeptidase 3 OS=Mus musculus GN=Xpnpep3 PE=1 SV=1 50 50 1.000 11 12 14 13 11 12 14 13 11.000 12.000 14.000 13.000
136.0 1 sp|B9EJ86|OSBL8_MOUSE 7.6 889 101267 Oxysterol-binding protein-related protein 8 OS=Mus musculus GN=Osbpl8 PE=1 SV=1 9 9 1.000 1 3 3 2 1 3 3 2 1.000 3.000 3.000 2.000
137.0 1 sp|B9EKI3|TMF1_MOUSE 3.8 1091 121801 TATA element modulatory factor OS=Mus musculus GN=Tmf1 PE=1 SV=2 3 3 1.000 0 0 1 2 0 0 1 2 0.000 0.000 1.000 2.000
138.0 1 sp|C0HK79|ARXS1_MOUSE 26.1 180 20146 Adipocyte-related X-chromosome expressed sequence 1 OS=Mus musculus GN=Arxes1 PE=1 SV=1 22 22 1.000 4 6 5 7 4 6 5 7 4.000 6.000 5.000 7.000
138.01 1 sp|C0HK80|ARXS2_MOUSE redundant 26.1 180 20146 Adipocyte-related X-chromosome expressed sequence 2 OS=Mus musculus GN=Arxes2 PE=1 SV=1 22 22 1.000 4 6 5 7 4 6 5 7 4.000 6.000 5.000 7.000
139.0 1 sp|D0QMC3|MNDAL_MOUSE 18.2 538 60526 Myeloid cell nuclear differentiation antigen-like protein OS=Mus musculus GN=Mndal PE=1 SV=1 18 7 0.389 4 4 5 5 1 2 2 2 1.625 2.654 3.086 3.200 sp|D0QMC3|MNDAL_MOUSE, sp|P0DOV1|IFI5B_MOUSE, sp|P0DOV2|IFI4_MOUSE, sp|Q8CGE8|IFI5A_MOUSE
140.0 1 sp|D3YXK2|SAFB1_MOUSE 14.2 937 105102 Scaffold attachment factor B1 OS=Mus musculus GN=Safb PE=1 SV=2 12 12 1.000 5 2 3 2 5 2 3 2 5.000 2.000 3.000 2.000
141.0 1 sp|D3YZP9|CCDC6_MOUSE 21.1 469 52938 Coiled-coil domain-containing protein 6 OS=Mus musculus GN=Ccdc6 PE=1 SV=1 31 31 1.000 6 7 7 11 6 7 7 11 6.000 7.000 7.000 11.000
142.0 1 sp|D3Z4S3|PTRD1_MOUSE 38.6 140 16037 Putative peptidyl-tRNA hydrolase PTRHD1 OS=Mus musculus GN=Ptrhd1 PE=1 SV=1 18 18 1.000 3 4 6 5 3 4 6 5 3.000 4.000 6.000 5.000
143.0 1 sp|D3Z6P0|PDIA2_MOUSE 32.1 527 58316 Protein disulfide-isomerase A2 OS=Mus musculus GN=Pdia2 PE=1 SV=1 40 40 1.000 1 24 2 13 1 24 2 13 1.000 24.000 2.000 13.000
144.0 1 sp|D3Z7P3|GLSK_MOUSE 22.8 674 73963 Glutaminase kidney isoform, mitochondrial OS=Mus musculus GN=Gls PE=1 SV=1 40 40 1.000 10 11 11 8 10 11 11 8 10.000 11.000 11.000 8.000
145.0 1 sp|E9PV24|FIBA_MOUSE 29.4 789 87428 Fibrinogen alpha chain OS=Mus musculus GN=Fga PE=1 SV=1 131 131 1.000 32 36 30 33 32 36 30 33 32.000 36.000 30.000 33.000
146.0 1 sp|E9PVA8|GCN1_MOUSE 7.7 2671 293017 eIF-2-alpha kinase activator GCN1 OS=Mus musculus GN=Gcn1 PE=1 SV=1 34 34 1.000 6 10 9 9 6 10 9 9 6.000 10.000 9.000 9.000
147.0 1 sp|E9PZJ8|ASCC3_MOUSE 1.2 2198 250554 Activating signal cointegrator 1 complex subunit 3 OS=Mus musculus GN=Ascc3 PE=1 SV=1 4 4 1.000 1 2 1 0 1 2 1 0 1.000 2.000 1.000 0.000
148.0 1 sp|E9Q1P8|I2BP2_MOUSE 5.3 570 59291 Interferon regulatory factor 2-binding protein 2 OS=Mus musculus GN=Irf2bp2 PE=1 SV=1 4 4 1.000 2 1 1 0 2 1 1 0 2.000 1.000 1.000 0.000
149.0 1 sp|E9Q286|ICE1_MOUSE 0.7 2241 242251 Little elongation complex subunit 1 OS=Mus musculus GN=Ice1 PE=1 SV=1 4 1 0.250 2 0 1 1 1 0 0 0 1.045 0.000 0.000 0.000 sp|E9Q286|ICE1_MOUSE, sp|Q6P1B1|XPP1_MOUSE
150.0 1 sp|E9Q394|AKP13_MOUSE 4.4 2776 303972 A-kinase anchor protein 13 OS=Mus musculus GN=Akap13 PE=1 SV=1 9 9 1.000 3 0 4 2 3 0 4 2 3.000 0.000 4.000 2.000
151.0 1 sp|E9Q3E1|AL3B2_MOUSE 24.2 479 52982 Aldehyde dehydrogenase family 3 member B2 OS=Mus musculus GN=Aldh3b2 PE=1 SV=1 28 22 0.786 5 8 8 7 4 6 7 5 4.667 7.714 8.000 7.000 sp|E9Q3E1|AL3B2_MOUSE, sp|Q80VQ0|AL3B1_MOUSE
152.0 1 sp|E9Q3L2|PI4KA_MOUSE 12.3 2105 237039 Phosphatidylinositol 4-kinase alpha OS=Mus musculus GN=Pi4ka PE=1 SV=2 40 40 1.000 9 8 12 11 9 8 12 11 9.000 8.000 12.000 11.000
153.0 1 sp|E9Q414|APOB_MOUSE 3.1 4505 509426 Apolipoprotein B-100 OS=Mus musculus GN=Apob PE=1 SV=1 18 18 1.000 2 8 5 3 2 8 5 3 2.000 8.000 5.000 3.000
154.0 1 sp|E9Q4Z2|ACACB_MOUSE 11.6 2448 275747 Acetyl-CoA carboxylase 2 OS=Mus musculus GN=Acacb PE=1 SV=1 83 31 0.373 25 22 18 18 12 7 5 7 13.857 8.221 5.903 8.013 sp|E9Q4Z2|ACACB_MOUSE, sp|Q5SWU9|ACACA_MOUSE
155.0 1 sp|E9Q555|RN213_MOUSE 3.1 5152 584777 E3 ubiquitin-protein ligase RNF213 OS=Mus musculus GN=Rnf213 PE=1 SV=2 19 19 1.000 7 6 2 4 7 6 2 4 7.000 6.000 2.000 4.000
156.0 1 sp|E9Q634|MYO1E_MOUSE 3.6 1107 126816 Unconventional myosin-Ie OS=Mus musculus GN=Myo1e PE=1 SV=1 5 5 1.000 1 0 1 3 1 0 1 3 1.000 0.000 1.000 3.000
157.0 1 sp|E9Q6J5|BD1L1_MOUSE 1.1 3032 327449 Biorientation of chromosomes in cell division protein 1-like 1 OS=Mus musculus GN=Bod1l PE=1 SV=1 2 2 1.000 2 0 0 0 2 0 0 0 2.000 0.000 0.000 0.000
158.0 1 sp|E9Q6P5|TTC7B_MOUSE 10.7 843 94202 Tetratricopeptide repeat protein 7B OS=Mus musculus GN=Ttc7b PE=1 SV=1 33 33 1.000 8 8 10 7 8 8 10 7 8.000 8.000 10.000 7.000
159.0 1 sp|E9Q735|UBE4A_MOUSE 7.2 1028 118197 Ubiquitin conjugation factor E4 A OS=Mus musculus GN=Ube4a PE=1 SV=1 14 14 1.000 4 1 4 5 4 1 4 5 4.000 1.000 4.000 5.000
160.0 1 sp|E9Q8I9|FRY_MOUSE 6.9 3020 339089 Protein furry homolog OS=Mus musculus GN=Fry PE=1 SV=1 24 24 1.000 6 5 6 7 6 5 6 7 6.000 5.000 6.000 7.000
161.0 1 sp|F6ZDS4|TPR_MOUSE 17.1 2431 273987 Nucleoprotein TPR OS=Mus musculus GN=Tpr PE=1 SV=1 85 85 1.000 24 15 24 22 24 15 24 22 24.000 15.000 24.000 22.000
162.0 1 sp|F8VPU2|FARP1_MOUSE 5.0 1048 118874 FERM, RhoGEF and pleckstrin domain-containing protein 1 OS=Mus musculus GN=Farp1 PE=1 SV=1 8 8 1.000 2 3 1 2 2 3 1 2 2.000 3.000 1.000 2.000
163.0 1 sp|G3X982|AOXC_MOUSE 11.7 1335 146900 Aldehyde oxidase 3 OS=Mus musculus GN=Aox3 PE=1 SV=1 38 27 0.711 13 6 13 6 10 3 10 4 10.476 3.206 10.703 4.183 sp|G3X982|AOXC_MOUSE, sp|O54754|AOXA_MOUSE, sp|Q00519|XDH_MOUSE
164.0 1 sp|G3X9K3|BIG1_MOUSE 3.0 1846 208497 Brefeldin A-inhibited guanine nucleotide-exchange protein 1 OS=Mus musculus GN=Arfgef1 PE=1 SV=1 11 5 0.455 1 4 3 3 0 2 1 2 0.000 2.667 1.667 2.333 sp|A2A5R2|BIG2_MOUSE, sp|G3X9K3|BIG1_MOUSE
165.0 1 sp|G5E829|AT2B1_MOUSE 17.9 1220 134745 Plasma membrane calcium-transporting ATPase 1 OS=Mus musculus GN=Atp2b1 PE=1 SV=1 59 24 0.407 14 20 12 13 6 10 5 3 7.920 13.704 6.522 4.579 sp|G5E829|AT2B1_MOUSE, sp|Q6Q477|AT2B4_MOUSE
166.0 1 sp|G5E870|TRIPC_MOUSE 2.6 2025 224125 E3 ubiquitin-protein ligase TRIP12 OS=Mus musculus GN=Trip12 PE=1 SV=1 5 5 1.000 0 1 1 3 0 1 1 3 0.000 1.000 1.000 3.000
167.0 1 sp|G5E8A8|TEKT5_MOUSE 13.1 557 62734 Tektin-5 OS=Mus musculus GN=Tekt5 PE=1 SV=1 7 7 1.000 0 5 1 1 0 5 1 1 0.000 5.000 1.000 1.000
168.0 1 sp|G5E8K5|ANK3_MOUSE 5.0 1961 214060 Ankyrin-3 OS=Mus musculus GN=Ank3 PE=1 SV=1 7 2 0.286 1 3 2 1 0 1 0 1 0.000 1.114 0.000 1.000 sp|G5E8K5|ANK3_MOUSE, sp|Q02357|ANK1_MOUSE, sp|Q8C8R3|ANK2_MOUSE
169.0 1 sp|G5E8Q8|AGRF5_MOUSE 2.3 1348 149385 Adhesion G protein-coupled receptor F5 OS=Mus musculus GN=Adgrf5 PE=1 SV=1 4 4 1.000 1 1 2 0 1 1 2 0 1.000 1.000 2.000 0.000
170.0 1 sp|O08528|HXK2_MOUSE 34.2 917 102534 Hexokinase-2 OS=Mus musculus GN=Hk2 PE=1 SV=1 127 104 0.819 29 37 26 35 23 28 23 30 27.907 35.862 25.654 34.310 sp|O08528|HXK2_MOUSE, sp|P17710|HXK1_MOUSE, sp|Q3TRM8|HXK3_MOUSE, sp|Q8BJ34|MARF1_MOUSE, sp|Q91W97|HKDC1_MOUSE
171.0 1 sp|O08529|CAN2_MOUSE 47.1 700 79871 Calpain-2 catalytic subunit OS=Mus musculus GN=Capn2 PE=1 SV=4 208 208 1.000 51 51 50 56 51 51 50 56 51.000 51.000 50.000 56.000
172.0 1 sp|O08532|CA2D1_MOUSE 10.9 1103 124629 Voltage-dependent calcium channel subunit alpha-2/delta-1 OS=Mus musculus GN=Cacna2d1 PE=1 SV=1 12 12 1.000 3 6 2 1 3 6 2 1 3.000 6.000 2.000 1.000
173.0 1 sp|O08539|BIN1_MOUSE 30.8 588 64469 Myc box-dependent-interacting protein 1 OS=Mus musculus GN=Bin1 PE=1 SV=1 44 44 1.000 10 13 9 12 10 13 9 12 10.000 13.000 9.000 12.000
174.0 1 sp|O08547|SC22B_MOUSE 47.9 215 24740 Vesicle-trafficking protein SEC22b OS=Mus musculus GN=Sec22b PE=1 SV=3 48 48 1.000 11 13 12 12 11 13 12 12 11.000 13.000 12.000 12.000
175.0 1 sp|O08553|DPYL2_MOUSE 59.3 572 62277 Dihydropyrimidinase-related protein 2 OS=Mus musculus GN=Dpysl2 PE=1 SV=2 197 145 0.736 52 44 45 56 37 33 33 42 48.741 41.600 41.000 52.542 sp|O08553|DPYL2_MOUSE, sp|P97427|DPYL1_MOUSE, sp|Q62188|DPYL3_MOUSE
176.0 1 sp|O08573|LEG9_MOUSE 23.5 353 40035 Galectin-9 OS=Mus musculus GN=Lgals9 PE=1 SV=1 19 19 1.000 3 5 5 6 3 5 5 6 3.000 5.000 5.000 6.000
177.0 1 sp|O08579|EMD_MOUSE 9.3 259 29435 Emerin OS=Mus musculus GN=Emd PE=1 SV=1 9 9 1.000 3 2 2 2 3 2 2 2 3.000 2.000 2.000 2.000
178.0 1 sp|O08582|GTPB1_MOUSE 10.3 668 72300 GTP-binding protein 1 OS=Mus musculus GN=Gtpbp1 PE=1 SV=2 11 11 1.000 2 2 5 2 2 2 5 2 2.000 2.000 5.000 2.000
179.0 1 sp|O08583|THOC4_MOUSE 20.8 255 26940 THO complex subunit 4 OS=Mus musculus GN=Alyref PE=1 SV=3 6 6 1.000 2 0 2 2 2 0 2 2 2.000 0.000 2.000 2.000
180.0 1 sp|O08585|CLCA_MOUSE 24.3 235 25604 Clathrin light chain A OS=Mus musculus GN=Clta PE=1 SV=2 33 30 0.909 6 8 9 10 5 8 8 9 5.625 8.000 8.667 9.750 sp|A3KGB4|TBC8B_MOUSE, sp|O08585|CLCA_MOUSE
181.0 1 sp|O08586|PTEN_MOUSE 11.7 403 47152 Phosphatidylinositol 3,4,5-trisphosphate 3-phosphatase and dual-specificity protein phosphatase PTEN OS=Mus musculus GN=Pten PE=1 SV=1 11 11 1.000 3 1 3 4 3 1 3 4 3.000 1.000 3.000 4.000
182.0 1 sp|O08599|STXB1_MOUSE 16.0 594 67568 Syntaxin-binding protein 1 OS=Mus musculus GN=Stxbp1 PE=1 SV=2 22 22 1.000 5 5 6 6 5 5 6 6 5.000 5.000 6.000 6.000
183.0 1 sp|O08601|MTP_MOUSE 12.6 894 99098 Microsomal triglyceride transfer protein large subunit OS=Mus musculus GN=Mttp PE=1 SV=2 15 15 1.000 2 5 4 4 2 5 4 4 2.000 5.000 4.000 4.000
184.0 1 sp|O08605|MKNK1_MOUSE 14.3 427 47914 MAP kinase-interacting serine/threonine-protein kinase 1 OS=Mus musculus GN=Mknk1 PE=1 SV=2 7 7 1.000 5 1 1 0 5 1 1 0 5.000 1.000 1.000 0.000
185.0 1 sp|O08638|MYH11_MOUSE 45.5 1972 227025 Myosin-11 OS=Mus musculus GN=Myh11 PE=1 SV=1 600 474 0.790 125 171 147 157 96 134 115 129 109.317 153.964 130.444 142.487 sp|O08638|MYH11_MOUSE, sp|Q5SX39|MYH4_MOUSE, sp|Q61879|MYH10_MOUSE, sp|Q6URW6|MYH14_MOUSE, sp|Q8VDD5|MYH9_MOUSE
186.0 1 sp|O08663|MAP2_MOUSE 43.5 478 52921 Methionine aminopeptidase 2 OS=Mus musculus GN=Metap2 PE=1 SV=1 50 50 1.000 9 14 12 15 9 14 12 15 9.000 14.000 12.000 15.000
187.0 1 sp|O08677|KNG1_MOUSE 34.2 661 73101 Kininogen-1 OS=Mus musculus GN=Kng1 PE=1 SV=1 241 241 1.000 68 62 55 56 68 62 55 56 68.000 62.000 55.000 56.000
188.0 1 sp|O08688|CAN5_MOUSE 5.0 640 72954 Calpain-5 OS=Mus musculus GN=Capn5 PE=1 SV=1 8 8 1.000 2 2 3 1 2 2 3 1 2.000 2.000 3.000 1.000
189.0 1 sp|O08709|PRDX6_MOUSE 58.9 224 24870 Peroxiredoxin-6 OS=Mus musculus GN=Prdx6 PE=1 SV=3 247 247 1.000 73 55 58 61 73 55 58 61 73.000 55.000 58.000 61.000
190.0 1 sp|O08716|FABP9_MOUSE 57.6 132 15017 Fatty acid-binding protein 9 OS=Mus musculus GN=Fabp9 PE=1 SV=2 311 17 0.055 80 71 84 76 5 7 1 4 5.473 7.575 1.098 4.386 sp|O08716|FABP9_MOUSE, sp|P04117|FABP4_MOUSE, sp|P24526|MYP2_MOUSE
191.0 1 sp|O08734|BAK_MOUSE 30.1 209 23294 Bcl-2 homologous antagonist/killer OS=Mus musculus GN=Bak1 PE=1 SV=3 6 6 1.000 1 2 2 1 1 2 2 1 1.000 2.000 2.000 1.000
192.0 1 sp|O08736|CASPC_MOUSE 5.0 419 47853 Caspase-12 OS=Mus musculus GN=Casp12 PE=1 SV=1 4 4 1.000 0 0 3 1 0 0 3 1 0.000 0.000 3.000 1.000
193.0 1 sp|O08738|CASP6_MOUSE 21.0 276 31595 Caspase-6 OS=Mus musculus GN=Casp6 PE=1 SV=1 20 20 1.000 5 7 4 4 5 7 4 4 5.000 7.000 4.000 4.000
194.0 1 sp|O08739|AMPD3_MOUSE 15.4 766 88651 AMP deaminase 3 OS=Mus musculus GN=Ampd3 PE=1 SV=2 25 25 1.000 5 6 5 9 5 6 5 9 5.000 6.000 5.000 9.000
195.0 1 sp|O08749|DLDH_MOUSE 48.5 509 54272 Dihydrolipoyl dehydrogenase, mitochondrial OS=Mus musculus GN=Dld PE=1 SV=2 164 164 1.000 44 43 43 34 44 43 43 34 44.000 43.000 43.000 34.000
196.0 1 sp|O08756|HCD2_MOUSE 37.2 261 27418 3-hydroxyacyl-CoA dehydrogenase type-2 OS=Mus musculus GN=Hsd17b10 PE=1 SV=4 84 84 1.000 23 19 21 21 23 19 21 21 23.000 19.000 21.000 21.000
197.0 1 sp|O08759|UBE3A_MOUSE 25.9 870 99818 Ubiquitin-protein ligase E3A OS=Mus musculus GN=Ube3a PE=1 SV=2 59 59 1.000 14 11 16 18 14 11 16 18 14.000 11.000 16.000 18.000
198.0 1 sp|O08784|TCOF_MOUSE 12.5 1320 135000 Treacle protein OS=Mus musculus GN=Tcof1 PE=1 SV=1 24 24 1.000 9 5 5 5 9 5 5 5 9.000 5.000 5.000 5.000
199.0 1 sp|O08788|DCTN1_MOUSE 43.0 1281 141674 Dynactin subunit 1 OS=Mus musculus GN=Dctn1 PE=1 SV=3 188 188 1.000 49 44 44 51 49 44 44 51 49.000 44.000 44.000 51.000
200.0 1 sp|O08795|GLU2B_MOUSE 31.1 521 58792 Glucosidase 2 subunit beta OS=Mus musculus GN=Prkcsh PE=1 SV=1 56 56 1.000 12 13 16 15 12 13 16 15 12.000 13.000 16.000 15.000
201.0 1 sp|O08796|EF2K_MOUSE 6.5 724 81738 Eukaryotic elongation factor 2 kinase OS=Mus musculus GN=Eef2k PE=1 SV=1 7 7 1.000 1 3 1 2 1 3 1 2 1.000 3.000 1.000 2.000
202.0 1 sp|O08800|SPB8_MOUSE 27.3 374 42150 Serpin B8 OS=Mus musculus GN=Serpinb8 PE=1 SV=2 29 29 1.000 8 6 6 9 8 6 6 9 8.000 6.000 6.000 9.000
203.0 1 sp|O08807|PRDX4_MOUSE 49.6 274 31052 Peroxiredoxin-4 OS=Mus musculus GN=Prdx4 PE=1 SV=1 66 19 0.288 16 17 17 16 4 4 4 7 4.632 4.852 4.754 7.984 sp|O08807|PRDX4_MOUSE, sp|P35700|PRDX1_MOUSE
204.0 1 sp|O08808|DIAP1_MOUSE 13.7 1255 139342 Protein diaphanous homolog 1 OS=Mus musculus GN=Diaph1 PE=1 SV=1 22 22 1.000 5 3 8 6 5 3 8 6 5.000 3.000 8.000 6.000
205.0 1 sp|O08810|U5S1_MOUSE 24.8 971 109359 116 kDa U5 small nuclear ribonucleoprotein component OS=Mus musculus GN=Eftud2 PE=1 SV=1 53 51 0.962 12 13 16 12 12 13 15 11 12.000 13.000 15.135 11.087 sp|O08810|U5S1_MOUSE, sp|P58252|EF2_MOUSE
206.0 1 sp|O08908|P85B_MOUSE 5.1 722 81265 Phosphatidylinositol 3-kinase regulatory subunit beta OS=Mus musculus GN=Pik3r2 PE=1 SV=2 4 1 0.250 1 0 1 2 0 0 0 1 0.000 0.000 0.000 1.125 sp|O08908|P85B_MOUSE, sp|P26450|P85A_MOUSE, sp|Q64143|P55G_MOUSE
207.0 1 sp|O08911|MK12_MOUSE 17.7 367 42043 Mitogen-activated protein kinase 12 OS=Mus musculus GN=Mapk12 PE=1 SV=1 20 12 0.600 5 6 4 5 3 4 2 3 3.120 4.138 2.074 3.118 sp|O08911|MK12_MOUSE, sp|P47811|MK14_MOUSE, sp|Q61831|MK10_MOUSE, sp|Q6PDN3|MYLK_MOUSE, sp|Q91Y86|MK08_MOUSE, sp|Q9WTU6|MK09_MOUSE
208.0 1 sp|O08915|AIP_MOUSE 26.7 330 37605 AH receptor-interacting protein OS=Mus musculus GN=Aip PE=1 SV=1 19 19 1.000 5 3 5 6 5 3 5 6 5.000 3.000 5.000 6.000
209.0 1 sp|O08917|FLOT1_MOUSE 47.4 428 47513 Flotillin-1 OS=Mus musculus GN=Flot1 PE=1 SV=1 67 67 1.000 14 14 20 19 14 14 20 19 14.000 14.000 20.000 19.000
210.0 1 sp|O08967|CYH3_MOUSE 8.0 399 46279 Cytohesin-3 OS=Mus musculus GN=Cyth3 PE=1 SV=1 8 1 0.125 2 2 2 2 0 1 0 0 0.000 1.200 0.000 0.000 sp|O08967|CYH3_MOUSE, sp|Q9QX11|CYH1_MOUSE
211.0 1 sp|O08997|ATOX1_MOUSE 58.8 68 7338 Copper transport protein ATOX1 OS=Mus musculus GN=Atox1 PE=1 SV=1 26 26 1.000 6 7 5 8 6 7 5 8 6.000 7.000 5.000 8.000
212.0 1 sp|O09012|PEX5_MOUSE 16.9 639 70755 Peroxisomal targeting signal 1 receptor OS=Mus musculus GN=Pex5 PE=1 SV=2 18 18 1.000 2 2 8 6 2 2 8 6 2.000 2.000 8.000 6.000
213.0 1 sp|O09035|DBIL5_MOUSE 29.9 87 9865 Diazepam-binding inhibitor-like 5 OS=Mus musculus GN=Dbil5 PE=1 SV=1 4 4 1.000 0 4 0 0 0 4 0 0 0.000 4.000 0.000 0.000
214.0 1 sp|O09044|SNP23_MOUSE 53.3 210 23261 Synaptosomal-associated protein 23 OS=Mus musculus GN=Snap23 PE=1 SV=1 30 30 1.000 8 7 7 8 8 7 7 8 8.000 7.000 7.000 8.000
215.0 1 sp|O09061|PSB1_MOUSE 52.1 240 26372 Proteasome subunit beta type-1 OS=Mus musculus GN=Psmb1 PE=1 SV=1 59 59 1.000 17 15 13 14 17 15 13 14 17.000 15.000 13.000 14.000
216.0 1 sp|O09106|HDAC1_MOUSE 15.8 482 55074 Histone deacetylase 1 OS=Mus musculus GN=Hdac1 PE=1 SV=1 16 7 0.438 5 5 3 3 2 3 2 0 5.000 4.500 2.667 0.000 sp|O09106|HDAC1_MOUSE, sp|P70288|HDAC2_MOUSE
217.0 1 sp|O09110|MP2K3_MOUSE 25.1 347 39296 Dual specificity mitogen-activated protein kinase kinase 3 OS=Mus musculus GN=Map2k3 PE=1 SV=2 16 10 0.625 3 4 5 4 1 2 4 3 1.667 3.000 4.571 3.500 sp|O09110|MP2K3_MOUSE, sp|P70236|MP2K6_MOUSE
218.0 1 sp|O09111|NDUBB_MOUSE 38.4 151 17444 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 11, mitochondrial OS=Mus musculus GN=Ndufb11 PE=1 SV=2 35 35 1.000 7 10 10 8 7 10 10 8 7.000 10.000 10.000 8.000
219.0 1 sp|O09114|PTGDS_MOUSE 12.7 189 21066 Prostaglandin-H2 D-isomerase OS=Mus musculus GN=Ptgds PE=1 SV=1 14 14 1.000 4 5 2 3 4 5 2 3 4.000 5.000 2.000 3.000
220.0 1 sp|O09131|GSTO1_MOUSE 54.6 240 27497 Glutathione S-transferase omega-1 OS=Mus musculus GN=Gsto1 PE=1 SV=2 79 73 0.924 19 18 21 21 18 15 20 20 19.000 17.812 21.000 21.000 sp|O09131|GSTO1_MOUSE, sp|Q8K2Q2|GSTO2_MOUSE
221.0 1 sp|O09159|MA2B1_MOUSE 20.8 1013 114647 Lysosomal alpha-mannosidase OS=Mus musculus GN=Man2b1 PE=1 SV=4 66 66 1.000 16 20 16 14 16 20 16 14 16.000 20.000 16.000 14.000
222.0 1 sp|O09164|SODE_MOUSE 42.6 251 27392 Extracellular superoxide dismutase [Cu-Zn] OS=Mus musculus GN=Sod3 PE=1 SV=1 85 85 1.000 25 23 20 17 25 23 20 17 25.000 23.000 20.000 17.000
223.0 1 sp|O09167|RL21_MOUSE 36.9 160 18562 60S ribosomal protein L21 OS=Mus musculus GN=Rpl21 PE=1 SV=3 45 45 1.000 10 13 12 10 10 13 12 10 10.000 13.000 12.000 10.000
224.0 1 sp|O09172|GSH0_MOUSE 42.3 274 30534 Glutamate--cysteine ligase regulatory subunit OS=Mus musculus GN=Gclm PE=1 SV=1 33 33 1.000 9 9 8 7 9 9 8 7 9.000 9.000 8.000 7.000
225.0 1 sp|O09173|HGD_MOUSE 27.2 445 49959 Homogentisate 1,2-dioxygenase OS=Mus musculus GN=Hgd PE=1 SV=2 19 19 1.000 3 3 12 1 3 3 12 1 3.000 3.000 12.000 1.000
226.0 1 sp|O09174|AMACR_MOUSE 24.9 381 41704 Alpha-methylacyl-CoA racemase OS=Mus musculus GN=Amacr PE=1 SV=4 17 17 1.000 3 4 6 4 3 4 6 4 3.000 4.000 6.000 4.000
227.0 1 sp|O35071|KIF1C_MOUSE 13.2 1100 122433 Kinesin-like protein KIF1C OS=Mus musculus GN=Kif1c PE=1 SV=2 38 14 0.368 9 6 13 10 2 1 7 4 3.750 2.000 10.000 6.000 sp|O35071|KIF1C_MOUSE, sp|Q60575|KIF1B_MOUSE
228.0 1 sp|O35074|PTGIS_MOUSE 31.1 501 57046 Prostacyclin synthase OS=Mus musculus GN=Ptgis PE=1 SV=1 40 40 1.000 9 11 9 11 9 11 9 11 9.000 11.000 9.000 11.000
229.0 1 sp|O35075|DSCR3_MOUSE 18.9 297 32970 Down syndrome critical region protein 3 homolog OS=Mus musculus GN=Dscr3 PE=1 SV=1 22 22 1.000 6 5 6 5 6 5 6 5 6.000 5.000 6.000 5.000
230.0 1 sp|O35083|PLCA_MOUSE 16.1 285 31709 1-acyl-sn-glycerol-3-phosphate acyltransferase alpha OS=Mus musculus GN=Agpat1 PE=1 SV=1 11 11 1.000 3 3 2 3 3 3 2 3 3.000 3.000 2.000 3.000
231.0 1 sp|O35098|DPYL4_MOUSE 2.8 572 61961 Dihydropyrimidinase-related protein 4 OS=Mus musculus GN=Dpysl4 PE=1 SV=1 4 4 1.000 0 1 2 1 0 1 2 1 0.000 1.000 2.000 1.000
232.0 1 sp|O35114|SCRB2_MOUSE 12.1 478 54043 Lysosome membrane protein 2 OS=Mus musculus GN=Scarb2 PE=1 SV=3 17 17 1.000 3 4 5 5 3 4 5 5 3.000 4.000 5.000 5.000
233.0 1 sp|O35129|PHB2_MOUSE 54.5 299 33296 Prohibitin-2 OS=Mus musculus GN=Phb2 PE=1 SV=1 59 59 1.000 13 14 15 17 13 14 15 17 13.000 14.000 15.000 17.000
234.0 1 sp|O35166|GOSR2_MOUSE 7.1 212 24725 Golgi SNAP receptor complex member 2 OS=Mus musculus GN=Gosr2 PE=1 SV=2 2 2 1.000 2 0 0 0 2 0 0 0 2.000 0.000 0.000 0.000
235.0 1 sp|O35206|COFA1_MOUSE 10.6 1367 140471 Collagen alpha-1(XV) chain OS=Mus musculus GN=Col15a1 PE=1 SV=2 105 105 1.000 26 24 32 23 26 24 32 23 26.000 24.000 32.000 23.000
236.0 1 sp|O35215|DOPD_MOUSE 88.1 118 13077 D-dopachrome decarboxylase OS=Mus musculus GN=Ddt PE=1 SV=3 87 87 1.000 19 23 21 24 19 23 21 24 19.000 23.000 21.000 24.000
237.0 1 sp|O35226|PSMD4_MOUSE 37.5 376 40703 26S proteasome non-ATPase regulatory subunit 4 OS=Mus musculus GN=Psmd4 PE=1 SV=1 54 54 1.000 13 12 15 14 13 12 15 14 13.000 12.000 15.000 14.000
238.0 1 sp|O35250|EXOC7_MOUSE 6.6 697 79959 Exocyst complex component 7 OS=Mus musculus GN=Exoc7 PE=1 SV=2 7 7 1.000 2 2 1 2 2 2 1 2 2.000 2.000 1.000 2.000
239.0 1 sp|O35286|DHX15_MOUSE 19.7 795 91006 Pre-mRNA-splicing factor ATP-dependent RNA helicase DHX15 OS=Mus musculus GN=Dhx15 PE=1 SV=2 38 38 1.000 10 8 9 11 10 8 9 11 10.000 8.000 9.000 11.000
240.0 1 sp|O35295|PURB_MOUSE 49.4 324 33901 Transcriptional activator protein Pur-beta OS=Mus musculus GN=Purb PE=1 SV=3 30 30 1.000 8 8 6 8 8 8 6 8 8.000 8.000 6.000 8.000
241.0 1 sp|O35309|NMI_MOUSE 46.5 314 35235 N-myc-interactor OS=Mus musculus GN=Nmi PE=1 SV=1 37 37 1.000 6 9 12 10 6 9 12 10 6.000 9.000 12.000 10.000
242.0 1 sp|O35316|SC6A6_MOUSE 6.8 621 69855 Sodium- and chloride-dependent taurine transporter OS=Mus musculus GN=Slc6a6 PE=1 SV=2 3 3 1.000 1 2 0 0 1 2 0 0 1.000 2.000 0.000 0.000
243.0 1 sp|O35326|SRSF5_MOUSE 21.2 269 30891 Serine/arginine-rich splicing factor 5 OS=Mus musculus GN=Srsf5 PE=1 SV=2 23 20 0.870 7 5 5 6 6 5 4 5 6.600 5.000 4.500 5.556 sp|O35326|SRSF5_MOUSE, sp|Q3TWW8|SRSF6_MOUSE, sp|Q8VE97|SRSF4_MOUSE
244.0 1 sp|O35343|IMA3_MOUSE 21.3 521 57922 Importin subunit alpha-3 OS=Mus musculus GN=Kpna4 PE=1 SV=1 36 31 0.861 8 9 8 11 7 8 8 8 7.438 8.533 8.000 9.333 sp|O35343|IMA3_MOUSE, sp|O35344|IMA4_MOUSE
245.0 1 sp|O35344|IMA4_MOUSE 25.9 521 57772 Importin subunit alpha-4 OS=Mus musculus GN=Kpna3 PE=1 SV=1 40 35 0.875 10 8 9 13 9 7 9 10 9.562 7.467 9.000 11.667 sp|O35343|IMA3_MOUSE, sp|O35344|IMA4_MOUSE
246.0 1 sp|O35345|IMA7_MOUSE 20.3 536 59964 Importin subunit alpha-7 OS=Mus musculus GN=Kpna6 PE=1 SV=2 15 12 0.800 2 1 8 4 2 1 7 2 2.000 1.000 7.778 4.000 sp|O35345|IMA7_MOUSE, sp|Q60960|IMA5_MOUSE
247.0 1 sp|O35350|CAN1_MOUSE 39.0 713 82105 Calpain-1 catalytic subunit OS=Mus musculus GN=Capn1 PE=1 SV=1 99 99 1.000 23 27 26 23 23 27 26 23 23.000 27.000 26.000 23.000
248.0 1 sp|O35379|MRP1_MOUSE 9.2 1528 171183 Multidrug resistance-associated protein 1 OS=Mus musculus GN=Abcc1 PE=1 SV=1 15 15 1.000 6 5 3 1 6 5 3 1 6.000 5.000 3.000 1.000
249.0 1 sp|O35381|AN32A_MOUSE 37.7 247 28537 Acidic leucine-rich nuclear phosphoprotein 32 family member A OS=Mus musculus GN=Anp32a PE=1 SV=1 79 66 0.835 19 21 19 20 15 18 16 17 18.000 20.077 18.182 19.217 sp|O35381|AN32A_MOUSE, sp|Q9EST5|AN32B_MOUSE
250.0 1 sp|O35382|EXOC4_MOUSE 5.9 975 110544 Exocyst complex component 4 OS=Mus musculus GN=Exoc4 PE=1 SV=2 6 6 1.000 1 2 2 1 1 2 2 1 1.000 2.000 2.000 1.000
251.0 1 sp|O35386|PAHX_MOUSE 20.4 338 38607 Phytanoyl-CoA dioxygenase, peroxisomal OS=Mus musculus GN=Phyh PE=1 SV=1 9 9 1.000 1 3 4 1 1 3 4 1 1.000 3.000 4.000 1.000
252.0 1 sp|O35405|PLD3_MOUSE 11.7 488 54388 Phospholipase D3 OS=Mus musculus GN=Pld3 PE=1 SV=1 10 10 1.000 3 3 3 1 3 3 3 1 3.000 3.000 3.000 1.000
253.0 1 sp|O35409|FOLH1_MOUSE 23.1 752 84573 Glutamate carboxypeptidase 2 OS=Mus musculus GN=Folh1 PE=1 SV=2 37 37 1.000 10 6 11 10 10 6 11 10 10.000 6.000 11.000 10.000
254.0 1 sp|O35459|ECH1_MOUSE 75.2 327 36118 Delta(3,5)-Delta(2,4)-dienoyl-CoA isomerase, mitochondrial OS=Mus musculus GN=Ech1 PE=1 SV=1 135 135 1.000 25 37 35 38 25 37 35 38 25.000 37.000 35.000 38.000
255.0 1 sp|O35465|FKBP8_MOUSE 19.9 402 43528 Peptidyl-prolyl cis-trans isomerase FKBP8 OS=Mus musculus GN=Fkbp8 PE=1 SV=2 24 24 1.000 5 8 6 5 5 8 6 5 5.000 8.000 6.000 5.000
256.0 1 sp|O35490|BHMT1_MOUSE 62.9 407 45020 Betaine--homocysteine S-methyltransferase 1 OS=Mus musculus GN=Bhmt PE=1 SV=1 111 93 0.838 19 20 41 31 14 17 36 26 18.667 20.000 40.865 31.000 sp|O35490|BHMT1_MOUSE, sp|Q91WS4|BHMT2_MOUSE
257.0 1 sp|O35516|NOTC2_MOUSE 1.8 2470 265325 Neurogenic locus notch homolog protein 2 OS=Mus musculus GN=Notch2 PE=1 SV=1 3 3 1.000 0 3 0 0 0 3 0 0 0.000 3.000 0.000 0.000
258.0 1 sp|O35522|PSB9_MUSMB 9.6 219 23426 Proteasome subunit beta type-9 OS=Mus musculus bactrianus GN=Psmb9 PE=1 SV=1 13 13 1.000 2 4 4 3 2 4 4 3 2.000 4.000 4.000 3.000
258.01 1 sp|P28076|PSB9_MOUSE redundant 9.6 219 23396 Proteasome subunit beta type-9 OS=Mus musculus GN=Psmb9 PE=1 SV=1 13 13 1.000 2 4 4 3 2 4 4 3 2.000 4.000 4.000 3.000
259.0 1 sp|O35551|RABE1_MOUSE 24.9 862 99523 Rab GTPase-binding effector protein 1 OS=Mus musculus GN=Rabep1 PE=1 SV=2 42 42 1.000 12 6 13 11 12 6 13 11 12.000 6.000 13.000 11.000
260.0 1 sp|O35566|CD151_MOUSE 7.1 253 28246 CD151 antigen OS=Mus musculus GN=Cd151 PE=1 SV=2 9 9 1.000 1 3 2 3 1 3 2 3 1.000 3.000 2.000 3.000
261.0 1 sp|O35593|PSDE_MOUSE 37.7 310 34577 26S proteasome non-ATPase regulatory subunit 14 OS=Mus musculus GN=Psmd14 PE=1 SV=2 46 46 1.000 13 11 9 13 13 11 9 13 13.000 11.000 9.000 13.000
262.0 1 sp|O35598|ADA10_MOUSE 5.9 749 83967 Disintegrin and metalloproteinase domain-containing protein 10 OS=Mus musculus GN=Adam10 PE=1 SV=2 9 9 1.000 4 2 2 1 4 2 2 1 4.000 2.000 2.000 1.000
263.0 1 sp|O35604|NPC1_MOUSE 1.3 1277 142883 Niemann-Pick C1 protein OS=Mus musculus GN=Npc1 PE=1 SV=2 3 3 1.000 1 2 0 0 1 2 0 0 1.000 2.000 0.000 0.000
264.0 1 sp|O35609|SCAM3_MOUSE 19.2 349 38458 Secretory carrier-associated membrane protein 3 OS=Mus musculus GN=Scamp3 PE=1 SV=3 15 15 1.000 4 3 5 3 4 3 5 3 4.000 3.000 5.000 3.000
265.0 1 sp|O35638|STAG2_MOUSE 2.8 1231 141280 Cohesin subunit SA-2 OS=Mus musculus GN=Stag2 PE=1 SV=3 6 6 1.000 2 1 1 2 2 1 1 2 2.000 1.000 1.000 2.000
266.0 1 sp|O35639|ANXA3_MOUSE 56.3 323 36384 Annexin A3 OS=Mus musculus GN=Anxa3 PE=1 SV=4 111 103 0.928 31 25 28 27 29 23 26 25 30.526 24.438 27.333 26.282 sp|O35639|ANXA3_MOUSE, sp|P97384|ANX11_MOUSE
267.0 1 sp|O35640|ANXA8_MOUSE 37.0 327 36724 Annexin A8 OS=Mus musculus GN=Anxa8 PE=1 SV=2 41 41 1.000 10 11 10 10 10 11 10 10 10.000 11.000 10.000 10.000
268.0 1 sp|O35643|AP1B1_MOUSE 34.4 943 103934 AP-1 complex subunit beta-1 OS=Mus musculus GN=Ap1b1 PE=1 SV=2 137 65 0.474 34 38 35 30 16 18 17 14 25.600 28.909 27.552 22.296 sp|O35643|AP1B1_MOUSE, sp|Q9DBG3|AP2B1_MOUSE
269.0 1 sp|O35658|C1QBP_MOUSE 34.2 278 31013 Complement component 1 Q subcomponent-binding protein, mitochondrial OS=Mus musculus GN=C1qbp PE=1 SV=1 40 40 1.000 9 11 12 8 9 11 12 8 9.000 11.000 12.000 8.000
270.0 1 sp|O35660|GSTM6_MOUSE 55.0 218 25621 Glutathione S-transferase Mu 6 OS=Mus musculus GN=Gstm6 PE=1 SV=4 44 30 0.682 8 16 13 7 4 11 10 5 4.131 12.243 10.252 5.080 sp|O35660|GSTM6_MOUSE, sp|P10649|GSTM1_MOUSE, sp|P15626|GSTM2_MOUSE, sp|P19639|GSTM3_MOUSE, sp|Q80W21|GSTM7_MOUSE
271.0 1 sp|O35671|ITBP1_MOUSE 17.5 200 21644 Integrin beta-1-binding protein 1 OS=Mus musculus GN=Itgb1bp1 PE=1 SV=1 7 7 1.000 2 2 1 2 2 2 1 2 2.000 2.000 1.000 2.000
272.0 1 sp|O35678|MGLL_MOUSE 58.1 303 33387 Monoglyceride lipase OS=Mus musculus GN=Mgll PE=1 SV=1 88 88 1.000 18 27 20 23 18 27 20 23 18.000 27.000 20.000 23.000
273.0 1 sp|O35682|MYADM_MOUSE 12.8 320 35284 Myeloid-associated differentiation marker OS=Mus musculus GN=Myadm PE=1 SV=2 47 47 1.000 14 11 11 11 14 11 11 11 14.000 11.000 11.000 11.000
274.0 1 sp|O35685|NUDC_MOUSE 56.9 332 38358 Nuclear migration protein nudC OS=Mus musculus GN=Nudc PE=1 SV=1 70 70 1.000 18 13 19 20 18 13 19 20 18.000 13.000 19.000 20.000
275.0 1 sp|O35737|HNRH1_MOUSE 38.1 449 49199 Heterogeneous nuclear ribonucleoprotein H OS=Mus musculus GN=Hnrnph1 PE=1 SV=3 73 14 0.192 15 16 20 22 2 3 4 5 4.344 5.935 8.174 11.261 sp|O35737|HNRH1_MOUSE, sp|P70333|HNRH2_MOUSE, sp|Q9Z2X1|HNRPF_MOUSE
276.0 1 sp|O35744|CHIL3_MOUSE 9.5 398 44458 Chitinase-like protein 3 OS=Mus musculus GN=Chil3 PE=1 SV=2 7 7 1.000 3 2 1 1 3 2 1 1 3.000 2.000 1.000 1.000
277.0 1 sp|O35841|API5_MOUSE 19.6 504 56784 Apoptosis inhibitor 5 OS=Mus musculus GN=Api5 PE=1 SV=2 30 30 1.000 10 7 7 6 10 7 7 6 10.000 7.000 7.000 6.000
278.0 1 sp|O35855|BCAT2_MOUSE 39.2 393 44127 Branched-chain-amino-acid aminotransferase, mitochondrial OS=Mus musculus GN=Bcat2 PE=1 SV=2 105 105 1.000 29 29 21 26 29 29 21 26 29.000 29.000 21.000 26.000
279.0 1 sp|O35857|TIM44_MOUSE 31.4 452 51091 Mitochondrial import inner membrane translocase subunit TIM44 OS=Mus musculus GN=Timm44 PE=1 SV=2 43 43 1.000 13 13 9 8 13 13 9 8 13.000 13.000 9.000 8.000
280.0 1 sp|O35864|CSN5_MOUSE 47.0 334 37548 COP9 signalosome complex subunit 5 OS=Mus musculus GN=Cops5 PE=1 SV=3 53 53 1.000 14 14 12 13 14 14 12 13 14.000 14.000 12.000 13.000
281.0 1 sp|O35887|CALU_MOUSE 63.8 315 37063 Calumenin OS=Mus musculus GN=Calu PE=1 SV=1 114 114 1.000 31 28 29 26 31 28 29 26 31.000 28.000 29.000 26.000
282.0 1 sp|O35900|LSM2_MOUSE 67.4 95 10834 U6 snRNA-associated Sm-like protein LSm2 OS=Mus musculus GN=Lsm2 PE=1 SV=1 12 12 1.000 3 3 3 3 3 3 3 3 3.000 3.000 3.000 3.000
283.0 1 sp|O35930|GP1BA_MOUSE 2.6 734 80054 Platelet glycoprotein Ib alpha chain OS=Mus musculus GN=Gp1ba PE=1 SV=2 3 3 1.000 0 2 0 1 0 2 0 1 0.000 2.000 0.000 1.000
284.0 1 sp|O35943|FRDA_MOUSE 13.0 207 22924 Frataxin, mitochondrial OS=Mus musculus GN=Fxn PE=1 SV=1 5 5 1.000 1 1 1 2 1 1 1 2 1.000 1.000 1.000 2.000
285.0 1 sp|O35945|AL1A7_MOUSE 56.1 501 54587 Aldehyde dehydrogenase, cytosolic 1 OS=Mus musculus GN=Aldh1a7 PE=1 SV=1 243 110 0.453 65 58 59 61 30 27 24 29 44.640 37.221 35.440 41.277 sp|O35945|AL1A7_MOUSE, sp|P24549|AL1A1_MOUSE, sp|P47738|ALDH2_MOUSE, sp|Q62148|AL1A2_MOUSE, sp|Q9CZS1|AL1B1_MOUSE, sp|Q9JHW9|AL1A3_MOUSE
286.0 1 sp|O35955|PSB10_MOUSE 16.1 273 29063 Proteasome subunit beta type-10 OS=Mus musculus GN=Psmb10 PE=1 SV=1 12 12 1.000 3 3 3 3 3 3 3 3 3.000 3.000 3.000 3.000
287.0 1 sp|O35963|RB33B_MOUSE 9.6 229 25766 Ras-related protein Rab-33B OS=Mus musculus GN=Rab33b PE=1 SV=1 30 3 0.100 5 8 8 9 0 1 1 1 0.000 1.080 1.078 1.100 sp|O35963|RB33B_MOUSE, sp|P35276|RAB3D_MOUSE, sp|P35279|RAB6A_MOUSE, sp|P35283|RAB12_MOUSE, sp|P55258|RAB8A_MOUSE, sp|P61027|RAB10_MOUSE, sp|P61028|RAB8B_MOUSE, sp|P62821|RAB1A_MOUSE, sp|P63011|RAB3A_MOUSE, sp|Q6PHN9|RAB35_MOUSE, sp|Q8CG50|RAB43_MOUSE, sp|Q91V41|RAB14_MOUSE, sp|Q91ZR1|RAB4B_MOUSE, sp|Q9D1G1|RAB1B_MOUSE
288.0 1 sp|O35969|GAMT_MOUSE 59.3 236 26336 Guanidinoacetate N-methyltransferase OS=Mus musculus GN=Gamt PE=1 SV=1 38 38 1.000 9 9 10 10 9 9 10 10 9.000 9.000 10.000 10.000
289.0 1 sp|O35972|RM23_MOUSE 26.0 146 17121 39S ribosomal protein L23, mitochondrial OS=Mus musculus GN=Mrpl23 PE=1 SV=1 8 8 1.000 2 1 3 2 2 1 3 2 2.000 1.000 3.000 2.000
290.0 1 sp|O54692|ZW10_MOUSE 3.9 779 88062 Centromere/kinetochore protein zw10 homolog OS=Mus musculus GN=Zw10 PE=1 SV=3 5 5 1.000 1 2 1 1 1 2 1 1 1.000 2.000 1.000 1.000
291.0 1 sp|O54724|PTRF_MOUSE 58.9 392 43953 Polymerase I and transcript release factor OS=Mus musculus GN=Ptrf PE=1 SV=1 591 591 1.000 150 128 160 153 150 128 160 153 150.000 128.000 160.000 153.000
292.0 1 sp|O54734|OST48_MOUSE 27.4 441 49027 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase 48 kDa subunit OS=Mus musculus GN=Ddost PE=1 SV=2 75 75 1.000 17 20 20 18 17 20 20 18 17.000 20.000 20.000 18.000
293.0 1 sp|O54754|AOXA_MOUSE 26.3 1333 146676 Aldehyde oxidase 1 OS=Mus musculus GN=Aox1 PE=1 SV=2 94 89 0.947 25 19 25 25 24 18 23 24 24.706 18.857 24.394 24.857 sp|G3X982|AOXC_MOUSE, sp|O54754|AOXA_MOUSE
294.0 1 sp|O54774|AP3D1_MOUSE 24.4 1199 135080 AP-3 complex subunit delta-1 OS=Mus musculus GN=Ap3d1 PE=1 SV=1 82 82 1.000 22 16 25 19 22 16 25 19 22.000 16.000 25.000 19.000
295.0 1 sp|O54781|SRPK2_MOUSE 15.4 681 76756 SRSF protein kinase 2 OS=Mus musculus GN=Srpk2 PE=1 SV=2 21 15 0.714 8 6 5 2 6 5 3 1 7.714 5.833 4.500 1.500 sp|O54781|SRPK2_MOUSE, sp|O70551|SRPK1_MOUSE
296.0 1 sp|O54782|MA2B2_MOUSE 8.4 1018 115608 Epididymis-specific alpha-mannosidase OS=Mus musculus GN=Man2b2 PE=1 SV=2 18 18 1.000 4 6 3 5 4 6 3 5 4.000 6.000 3.000 5.000
297.0 1 sp|O54786|DFFA_MOUSE 26.3 331 36572 DNA fragmentation factor subunit alpha OS=Mus musculus GN=Dffa PE=1 SV=2 10 10 1.000 5 1 2 2 5 1 2 2 5.000 1.000 2.000 2.000
298.0 1 sp|O54824|IL16_MOUSE 10.4 1322 141433 Pro-interleukin-16 OS=Mus musculus GN=Il16 PE=1 SV=3 18 18 1.000 7 6 2 3 7 6 2 3 7.000 6.000 2.000 3.000
299.0 1 sp|O54833|CSK22_MOUSE 15.7 350 41215 Casein kinase II subunit alpha' OS=Mus musculus GN=Csnk2a2 PE=1 SV=1 11 11 1.000 3 3 2 3 3 3 2 3 3.000 3.000 2.000 3.000
300.0 1 sp|O54865|GCYB1_MOUSE 14.8 620 70597 Guanylate cyclase soluble subunit beta-1 OS=Mus musculus GN=Gucy1b3 PE=1 SV=1 25 25 1.000 5 5 8 7 5 5 8 7 5.000 5.000 8.000 7.000
301.0 1 sp|O54879|HMGB3_MOUSE 17.0 200 23010 High mobility group protein B3 OS=Mus musculus GN=Hmgb3 PE=1 SV=3 13 7 0.538 5 2 3 3 3 1 2 1 4.000 1.250 2.333 1.400 sp|O54879|HMGB3_MOUSE, sp|P30681|HMGB2_MOUSE
302.0 1 sp|O54901|OX2G_MOUSE 13.3 278 31256 OX-2 membrane glycoprotein OS=Mus musculus GN=Cd200 PE=1 SV=1 14 14 1.000 4 3 3 4 4 3 3 4 4.000 3.000 3.000 4.000
303.0 1 sp|O54916|REPS1_MOUSE 5.3 795 86518 RalBP1-associated Eps domain-containing protein 1 OS=Mus musculus GN=Reps1 PE=1 SV=2 11 11 1.000 4 3 3 1 4 3 3 1 4.000 3.000 3.000 1.000
304.0 1 sp|O54931|AKAP2_MOUSE 29.6 893 98577 A-kinase anchor protein 2 OS=Mus musculus GN=Akap2 PE=1 SV=3 87 87 1.000 26 16 24 21 26 16 24 21 26.000 16.000 24.000 21.000
305.0 1 sp|O54941|SMCE1_MOUSE 14.4 411 46638 SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily E member 1 OS=Mus musculus GN=Smarce1 PE=1 SV=1 10 8 0.800 2 1 5 2 2 1 4 1 2.000 1.000 4.174 1.042 sp|O54941|SMCE1_MOUSE, sp|P46460|NSF_MOUSE
306.0 1 sp|O54946|DNJB6_MOUSE 9.0 365 39807 DnaJ homolog subfamily B member 6 OS=Mus musculus GN=Dnajb6 PE=1 SV=4 11 7 0.636 2 3 2 4 1 2 1 3 1.167 2.286 1.333 3.333 sp|O54946|DNJB6_MOUSE, sp|Q9QYI5|DNJB2_MOUSE
307.0 1 sp|O54950|AAKG1_MOUSE 13.9 330 37520 5'-AMP-activated protein kinase subunit gamma-1 OS=Mus musculus GN=Prkag1 PE=1 SV=2 18 18 1.000 4 3 5 6 4 3 5 6 4.000 3.000 5.000 6.000
308.0 1 sp|O54962|BAF_MOUSE 42.7 89 10102 Barrier-to-autointegration factor OS=Mus musculus GN=Banf1 PE=1 SV=1 21 21 1.000 5 7 5 4 5 7 5 4 5.000 7.000 5.000 4.000
309.0 1 sp|O54974|LEG7_MOUSE 34.6 136 15173 Galectin-7 OS=Mus musculus GN=Lgals7 PE=2 SV=3 15 15 1.000 4 4 3 4 4 4 3 4 4.000 4.000 3.000 4.000
310.0 1 sp|O54983|CRYM_MOUSE 35.1 313 33523 Ketimine reductase mu-crystallin OS=Mus musculus GN=Crym PE=1 SV=1 18 18 1.000 5 5 5 3 5 5 5 3 5.000 5.000 5.000 3.000
311.0 1 sp|O54984|ASNA_MOUSE 34.5 348 38822 ATPase Asna1 OS=Mus musculus GN=Asna1 PE=1 SV=2 38 38 1.000 10 9 10 9 10 9 10 9 10.000 9.000 10.000 9.000
312.0 1 sp|O54988|SLK_MOUSE 27.7 1233 141455 STE20-like serine/threonine-protein kinase OS=Mus musculus GN=Slk PE=1 SV=2 74 70 0.946 18 12 23 21 17 12 21 20 17.944 12.000 22.840 20.870 sp|O54988|SLK_MOUSE, sp|O55098|STK10_MOUSE, sp|Q5SXY1|CYTSB_MOUSE
313.0 1 sp|O54990|PROM1_MOUSE 12.1 867 97112 Prominin-1 OS=Mus musculus GN=Prom1 PE=1 SV=1 21 21 1.000 2 10 5 4 2 10 5 4 2.000 10.000 5.000 4.000
314.0 1 sp|O54998|FKBP7_MOUSE 29.4 218 24913 Peptidyl-prolyl cis-trans isomerase FKBP7 OS=Mus musculus GN=Fkbp7 PE=1 SV=1 25 25 1.000 7 6 6 6 7 6 6 6 7.000 6.000 6.000 6.000
315.0 1 sp|O55013|TPPC3_MOUSE 26.7 180 20302 Trafficking protein particle complex subunit 3 OS=Mus musculus GN=Trappc3 PE=1 SV=1 26 26 1.000 8 8 5 5 8 8 5 5 8.000 8.000 5.000 5.000
316.0 1 sp|O55022|PGRC1_MOUSE 59.0 195 21694 Membrane-associated progesterone receptor component 1 OS=Mus musculus GN=Pgrmc1 PE=1 SV=4 42 37 0.881 10 9 12 11 8 8 11 10 8.889 8.381 11.579 10.476 sp|O55022|PGRC1_MOUSE, sp|Q80UU9|PGRC2_MOUSE
317.0 1 sp|O55023|IMPA1_MOUSE 36.8 277 30436 Inositol monophosphatase 1 OS=Mus musculus GN=Impa1 PE=1 SV=1 47 47 1.000 12 11 11 13 12 11 11 13 12.000 11.000 11.000 13.000
318.0 1 sp|O55026|ENTP2_MOUSE 10.3 495 54319 Ectonucleoside triphosphate diphosphohydrolase 2 OS=Mus musculus GN=Entpd2 PE=1 SV=2 12 12 1.000 2 4 3 3 2 4 3 3 2.000 4.000 3.000 3.000
319.0 1 sp|O55028|BCKD_MOUSE 7.8 412 46587 [3-methyl-2-oxobutanoate dehydrogenase [lipoamide]] kinase, mitochondrial OS=Mus musculus GN=Bckdk PE=1 SV=1 7 7 1.000 2 2 2 1 2 2 2 1 2.000 2.000 2.000 1.000
320.0 1 sp|O55029|COPB2_MOUSE 37.1 905 102448 Coatomer subunit beta' OS=Mus musculus GN=Copb2 PE=1 SV=2 101 101 1.000 25 22 26 28 25 22 26 28 25.000 22.000 26.000 28.000
321.0 1 sp|O55033|NCK2_MOUSE 10.0 380 42879 Cytoplasmic protein NCK2 OS=Mus musculus GN=Nck2 PE=1 SV=1 9 3 0.333 3 2 2 2 2 1 0 0 2.250 1.200 0.000 0.000 sp|O55033|NCK2_MOUSE, sp|Q99M51|NCK1_MOUSE
322.0 1 sp|O55042|SYUA_MOUSE 65.7 140 14485 Alpha-synuclein OS=Mus musculus GN=Snca PE=1 SV=2 16 14 0.875 3 4 5 4 3 3 5 3 3.000 4.000 5.000 4.000 sp|O55042|SYUA_MOUSE, sp|Q91ZZ3|SYUB_MOUSE
323.0 1 sp|O55047|TLK2_MOUSE 3.5 718 82260 Serine/threonine-protein kinase tousled-like 2 OS=Mus musculus GN=Tlk2 PE=1 SV=2 5 1 0.200 0 1 3 1 0 0 1 0 0.000 0.000 1.100 0.000 sp|O55047|TLK2_MOUSE, sp|P18653|KS6A1_MOUSE, sp|P18654|KS6A3_MOUSE, sp|Q811L6|MAST4_MOUSE, sp|Q8C0V0|TLK1_MOUSE, sp|Q9WUT3|KS6A2_MOUSE
324.0 1 sp|O55057|PDE6D_MOUSE 20.7 150 17348 Retinal rod rhodopsin-sensitive cGMP 3',5'-cyclic phosphodiesterase subunit delta OS=Mus musculus GN=Pde6d PE=1 SV=1 9 9 1.000 2 3 2 2 2 3 2 2 2.000 3.000 2.000 2.000
325.0 1 sp|O55060|TPMT_MOUSE 50.8 240 27585 Thiopurine S-methyltransferase OS=Mus musculus GN=Tpmt PE=1 SV=1 53 53 1.000 12 14 13 14 12 14 13 14 12.000 14.000 13.000 14.000
326.0 1 sp|O55091|IMPCT_MOUSE 27.7 318 36276 Protein IMPACT OS=Mus musculus GN=Impact PE=1 SV=2 15 15 1.000 4 3 4 4 4 3 4 4 4.000 3.000 4.000 4.000
327.0 1 sp|O55098|STK10_MOUSE 6.0 966 111905 Serine/threonine-protein kinase 10 OS=Mus musculus GN=Stk10 PE=1 SV=2 12 10 0.833 2 1 5 4 2 1 4 3 2.000 1.000 4.160 3.130 sp|O54988|SLK_MOUSE, sp|O55098|STK10_MOUSE
328.0 1 sp|O55102|BL1S1_MOUSE 17.6 125 14281 Biogenesis of lysosome-related organelles complex 1 subunit 1 OS=Mus musculus GN=Bloc1s1 PE=1 SV=2 7 7 1.000 1 1 2 3 1 1 2 3 1.000 1.000 2.000 3.000
329.0 1 sp|O55106|STRN_MOUSE 29.0 780 85965 Striatin OS=Mus musculus GN=Strn PE=1 SV=2 30 27 0.900 12 4 7 7 12 3 6 6 12.000 3.250 6.400 6.333 sp|O55106|STRN_MOUSE, sp|P58404|STRN4_MOUSE, sp|Q9ERG2|STRN3_MOUSE
330.0 1 sp|O55125|NIPS1_MOUSE 8.1 284 33363 Protein NipSnap homolog 1 OS=Mus musculus GN=Nipsnap1 PE=1 SV=1 6 6 1.000 2 1 1 2 2 1 1 2 2.000 1.000 1.000 2.000
331.0 1 sp|O55126|NIPS2_MOUSE 26.3 281 32932 Protein NipSnap homolog 2 OS=Mus musculus GN=Gbas PE=1 SV=1 28 28 1.000 7 6 8 7 7 6 8 7 7.000 6.000 8.000 7.000
332.0 1 sp|O55128|SAP18_MOUSE 13.1 153 17595 Histone deacetylase complex subunit SAP18 OS=Mus musculus GN=Sap18 PE=1 SV=1 6 6 1.000 2 2 1 1 2 2 1 1 2.000 2.000 1.000 1.000
333.0 1 sp|O55131|SEPT7_MOUSE 41.1 436 50549 Septin-7 OS=Mus musculus GN=Sept7 PE=1 SV=1 134 112 0.836 35 26 39 34 30 21 33 28 32.344 22.944 36.386 30.710 sp|O55131|SEPT7_MOUSE, sp|P28661|SEPT4_MOUSE, sp|Q8C1B7|SEP11_MOUSE, sp|Q8C650|SEP10_MOUSE, sp|Q8CHH9|SEPT8_MOUSE
334.0 1 sp|O55135|IF6_MOUSE 40.4 245 26511 Eukaryotic translation initiation factor 6 OS=Mus musculus GN=Eif6 PE=1 SV=2 44 44 1.000 11 9 10 14 11 9 10 14 11.000 9.000 10.000 14.000
335.0 1 sp|O55137|ACOT1_MOUSE 23.6 419 46135 Acyl-coenzyme A thioesterase 1 OS=Mus musculus GN=Acot1 PE=1 SV=1 29 7 0.241 9 9 5 6 2 2 1 2 3.400 3.400 1.444 2.889 sp|O55137|ACOT1_MOUSE, sp|Q9QYR9|ACOT2_MOUSE
336.0 1 sp|O55142|RL35A_MOUSE 32.7 110 12554 60S ribosomal protein L35a OS=Mus musculus GN=Rpl35a PE=1 SV=2 22 22 1.000 7 5 6 4 7 5 6 4 7.000 5.000 6.000 4.000
337.0 1 sp|O55143|AT2A2_MOUSE 41.2 1044 114857 Sarcoplasmic/endoplasmic reticulum calcium ATPase 2 OS=Mus musculus GN=Atp2a2 PE=1 SV=2 179 100 0.559 39 48 46 46 18 30 24 28 35.667 46.250 42.838 44.026 sp|O55143|AT2A2_MOUSE, sp|Q64518|AT2A3_MOUSE, sp|Q8R429|AT2A1_MOUSE
338.0 1 sp|O55201|SPT5H_MOUSE 19.7 1082 120663 Transcription elongation factor SPT5 OS=Mus musculus GN=Supt5h PE=1 SV=1 27 27 1.000 8 8 3 8 8 8 3 8 8.000 8.000 3.000 8.000
339.0 1 sp|O55222|ILK_MOUSE 46.7 452 51373 Integrin-linked protein kinase OS=Mus musculus GN=Ilk PE=1 SV=2 102 102 1.000 29 26 24 23 29 26 24 23 29.000 26.000 24.000 23.000
340.0 1 sp|O55229|CHKB_MOUSE 18.3 394 45126 Choline/ethanolamine kinase OS=Mus musculus GN=Chkb PE=1 SV=3 13 13 1.000 2 3 2 6 2 3 2 6 2.000 3.000 2.000 6.000
341.0 1 sp|O55234|PSB5_MOUSE 43.9 264 28532 Proteasome subunit beta type-5 OS=Mus musculus GN=Psmb5 PE=1 SV=3 50 50 1.000 11 13 11 15 11 13 11 15 11.000 13.000 11.000 15.000
342.0 1 sp|O55239|NNMT_MOUSE 20.5 264 29597 Nicotinamide N-methyltransferase OS=Mus musculus GN=Nnmt PE=1 SV=1 23 23 1.000 6 6 3 8 6 6 3 8 6.000 6.000 3.000 8.000
343.0 1 sp|O55242|SGMR1_MOUSE 9.0 223 25250 Sigma non-opioid intracellular receptor 1 OS=Mus musculus GN=Sigmar1 PE=1 SV=1 6 6 1.000 1 1 2 2 1 1 2 2 1.000 1.000 2.000 2.000
344.0 1 sp|O70133|DHX9_MOUSE 11.2 1380 149473 ATP-dependent RNA helicase A OS=Mus musculus GN=Dhx9 PE=1 SV=2 25 25 1.000 9 5 7 4 9 5 7 4 9.000 5.000 7.000 4.000
345.0 1 sp|O70145|NCF2_MOUSE 16.8 525 59485 Neutrophil cytosol factor 2 OS=Mus musculus GN=Ncf2 PE=1 SV=1 19 19 1.000 4 2 8 5 4 2 8 5 4.000 2.000 8.000 5.000
346.0 1 sp|O70152|DPM1_MOUSE 39.2 260 29174 Dolichol-phosphate mannosyltransferase subunit 1 OS=Mus musculus GN=Dpm1 PE=1 SV=1 27 27 1.000 7 8 7 5 7 8 7 5 7.000 8.000 7.000 5.000
347.0 1 sp|O70165|FCN1_MOUSE 16.8 334 36298 Ficolin-1 OS=Mus musculus GN=Fcn1 PE=1 SV=1 22 22 1.000 6 7 5 4 6 7 5 4 6.000 7.000 5.000 4.000
348.0 1 sp|O70172|PI42A_MOUSE 12.8 405 46151 Phosphatidylinositol 5-phosphate 4-kinase type-2 alpha OS=Mus musculus GN=Pip4k2a PE=1 SV=1 9 3 0.333 2 2 1 4 0 1 1 1 0.000 1.200 1.000 1.500 sp|O70172|PI42A_MOUSE, sp|Q80XI4|PI42B_MOUSE
349.0 1 sp|O70194|EIF3D_MOUSE 35.6 548 63988 Eukaryotic translation initiation factor 3 subunit D OS=Mus musculus GN=Eif3d PE=1 SV=2 83 83 1.000 19 21 18 25 19 21 18 25 19.000 21.000 18.000 25.000
350.0 1 sp|O70200|AIF1_MOUSE 18.4 147 16910 Allograft inflammatory factor 1 OS=Mus musculus GN=Aif1 PE=1 SV=1 8 8 1.000 2 2 3 1 2 2 3 1 2.000 2.000 3.000 1.000
351.0 1 sp|O70209|PDLI3_MOUSE 43.7 316 34299 PDZ and LIM domain protein 3 OS=Mus musculus GN=Pdlim3 PE=1 SV=1 26 26 1.000 7 8 7 4 7 8 7 4 7.000 8.000 7.000 4.000
352.0 1 sp|O70228|ATP9A_MOUSE 6.5 1047 118607 Probable phospholipid-transporting ATPase IIA OS=Mus musculus GN=Atp9a PE=1 SV=3 12 12 1.000 2 3 5 2 2 3 5 2 2.000 3.000 5.000 2.000
353.0 1 sp|O70250|PGAM2_MOUSE 32.0 253 28827 Phosphoglycerate mutase 2 OS=Mus musculus GN=Pgam2 PE=1 SV=3 53 31 0.585 13 15 10 15 8 9 6 8 9.333 10.500 6.889 9.750 sp|O70250|PGAM2_MOUSE, sp|Q9DBJ1|PGAM1_MOUSE
354.0 1 sp|O70251|EF1B_MOUSE 82.2 225 24693 Elongation factor 1-beta OS=Mus musculus GN=Eef1b PE=1 SV=5 114 98 0.860 31 24 26 33 25 22 22 29 28.261 23.100 23.833 31.071 sp|O70251|EF1B_MOUSE, sp|P57776|EF1D_MOUSE
355.0 1 sp|O70252|HMOX2_MOUSE 38.4 315 35738 Heme oxygenase 2 OS=Mus musculus GN=Hmox2 PE=1 SV=1 37 37 1.000 9 9 11 8 9 9 11 8 9.000 9.000 11.000 8.000
356.0 1 sp|O70258|SGCE_MOUSE 18.5 437 49735 Epsilon-sarcoglycan OS=Mus musculus GN=Sgce PE=1 SV=2 10 10 1.000 2 3 3 2 2 3 3 2 2.000 3.000 3.000 2.000
357.0 1 sp|O70274|TP4A2_MOUSE 22.2 167 19127 Protein tyrosine phosphatase type IVA 2 OS=Mus musculus GN=Ptp4a2 PE=1 SV=1 8 4 0.500 2 2 2 2 1 1 1 1 1.500 2.000 1.500 1.500 sp|O70274|TP4A2_MOUSE, sp|Q63739|TP4A1_MOUSE
358.0 1 sp|O70305|ATX2_MOUSE 10.0 1285 136484 Ataxin-2 OS=Mus musculus GN=Atxn2 PE=1 SV=1 23 23 1.000 4 6 8 5 4 6 8 5 4.000 6.000 8.000 5.000
359.0 1 sp|O70309|ITB5_MOUSE 6.9 798 87908 Integrin beta-5 OS=Mus musculus GN=Itgb5 PE=1 SV=2 8 8 1.000 3 3 1 1 3 3 1 1 3.000 3.000 1.000 1.000
360.0 1 sp|O70310|NMT1_MOUSE 32.9 496 56888 Glycylpeptide N-tetradecanoyltransferase 1 OS=Mus musculus GN=Nmt1 PE=1 SV=1 49 37 0.755 13 14 11 11 10 10 9 8 13.000 13.636 10.385 10.182 sp|O70310|NMT1_MOUSE, sp|O70311|NMT2_MOUSE
361.0 1 sp|O70311|NMT2_MOUSE 20.4 529 60484 Glycylpeptide N-tetradecanoyltransferase 2 OS=Mus musculus GN=Nmt2 PE=1 SV=1 20 8 0.400 3 5 6 6 0 1 4 3 0.000 1.364 4.615 3.818 sp|O70310|NMT1_MOUSE, sp|O70311|NMT2_MOUSE
362.0 1 sp|O70318|E41L2_MOUSE 54.8 988 109938 Band 4.1-like protein 2 OS=Mus musculus GN=Epb41l2 PE=1 SV=2 266 244 0.917 62 63 67 74 56 57 62 69 61.536 62.336 66.396 73.624 sp|O70318|E41L2_MOUSE, sp|P48193|41_MOUSE, sp|Q9WV92|E41L3_MOUSE, sp|Q9Z2H5|E41L1_MOUSE
363.0 1 sp|O70325|GPX41_MOUSE 52.8 197 22228 Phospholipid hydroperoxide glutathione peroxidase, mitochondrial OS=Mus musculus GN=Gpx4 PE=1 SV=4 72 72 1.000 15 18 20 19 15 18 20 19 15.000 18.000 20.000 19.000
364.0 1 sp|O70362|PHLD_MOUSE 21.6 837 93254 Phosphatidylinositol-glycan-specific phospholipase D OS=Mus musculus GN=Gpld1 PE=1 SV=1 45 45 1.000 12 9 12 12 12 9 12 12 12.000 9.000 12.000 12.000
365.0 1 sp|O70370|CATS_MOUSE 29.7 340 38474 Cathepsin S OS=Mus musculus GN=Ctss PE=1 SV=2 24 24 1.000 7 6 7 4 7 6 7 4 7.000 6.000 7.000 4.000
366.0 1 sp|O70378|EMC8_MOUSE 33.8 207 23348 ER membrane protein complex subunit 8 OS=Mus musculus GN=Emc8 PE=1 SV=1 26 26 1.000 6 7 7 6 6 7 7 6 6.000 7.000 7.000 6.000
367.0 1 sp|O70400|PDLI1_MOUSE 63.0 327 35774 PDZ and LIM domain protein 1 OS=Mus musculus GN=Pdlim1 PE=1 SV=4 57 57 1.000 13 14 14 16 13 14 14 16 13.000 14.000 14.000 16.000
368.0 1 sp|O70404|VAMP8_MOUSE 17.8 101 11451 Vesicle-associated membrane protein 8 OS=Mus musculus GN=Vamp8 PE=1 SV=1 6 6 1.000 1 1 2 2 1 1 2 2 1.000 1.000 2.000 2.000
369.0 1 sp|O70423|AOC3_MOUSE 39.3 765 84533 Membrane primary amine oxidase OS=Mus musculus GN=Aoc3 PE=1 SV=3 369 369 1.000 83 95 97 94 83 95 97 94 83.000 95.000 97.000 94.000
370.0 1 sp|O70433|FHL2_MOUSE 9.7 279 32072 Four and a half LIM domains protein 2 OS=Mus musculus GN=Fhl2 PE=1 SV=1 3 3 1.000 0 0 2 1 0 0 2 1 0.000 0.000 2.000 1.000
371.0 1 sp|O70435|PSA3_MOUSE 28.6 255 28405 Proteasome subunit alpha type-3 OS=Mus musculus GN=Psma3 PE=1 SV=3 50 50 1.000 13 11 13 13 13 11 13 13 13.000 11.000 13.000 13.000
372.0 1 sp|O70439|STX7_MOUSE 40.2 261 29820 Syntaxin-7 OS=Mus musculus GN=Stx7 PE=1 SV=3 28 28 1.000 7 5 8 8 7 5 8 8 7.000 5.000 8.000 8.000
373.0 1 sp|O70469|DOK2_MOUSE 10.7 412 45522 Docking protein 2 OS=Mus musculus GN=Dok2 PE=1 SV=1 5 5 1.000 1 2 1 1 1 2 1 1 1.000 2.000 1.000 1.000
374.0 1 sp|O70475|UGDH_MOUSE 59.4 493 54831 UDP-glucose 6-dehydrogenase OS=Mus musculus GN=Ugdh PE=1 SV=1 99 99 1.000 25 25 27 22 25 25 27 22 25.000 25.000 27.000 22.000
375.0 1 sp|O70481|UBR1_MOUSE 4.2 1757 200238 E3 ubiquitin-protein ligase UBR1 OS=Mus musculus GN=Ubr1 PE=1 SV=2 9 9 1.000 2 4 2 1 2 4 2 1 2.000 4.000 2.000 1.000
376.0 1 sp|O70492|SNX3_MOUSE 53.7 162 18757 Sorting nexin-3 OS=Mus musculus GN=Snx3 PE=1 SV=3 39 27 0.692 11 8 10 10 7 6 7 7 8.750 6.857 8.615 8.750 sp|O70492|SNX3_MOUSE, sp|O70493|SNX12_MOUSE
377.0 1 sp|O70493|SNX12_MOUSE 53.9 165 19116 Sorting nexin-12 OS=Mus musculus GN=Snx12 PE=1 SV=1 40 28 0.700 13 10 9 8 9 8 6 5 11.250 9.143 7.385 6.250 sp|O70492|SNX3_MOUSE, sp|O70493|SNX12_MOUSE
378.0 1 sp|O70496|CLCN7_MOUSE 7.2 803 88712 H(+)/Cl(-) exchange transporter 7 OS=Mus musculus GN=Clcn7 PE=1 SV=1 6 6 1.000 1 2 2 1 1 2 2 1 1.000 2.000 2.000 1.000
379.0 1 sp|O70503|DHB12_MOUSE 36.5 312 34741 Very-long-chain 3-oxoacyl-CoA reductase OS=Mus musculus GN=Hsd17b12 PE=1 SV=1 58 58 1.000 15 13 16 14 15 13 16 14 15.000 13.000 16.000 14.000
380.0 1 sp|O70551|SRPK1_MOUSE 6.2 648 73088 SRSF protein kinase 1 OS=Mus musculus GN=Srpk1 PE=1 SV=2 10 4 0.400 3 2 3 2 1 1 1 1 1.286 1.167 1.500 1.500 sp|O54781|SRPK2_MOUSE, sp|O70551|SRPK1_MOUSE
381.0 1 sp|O70566|DIAP2_MOUSE 3.5 1098 124869 Protein diaphanous homolog 2 OS=Mus musculus GN=Diaph2 PE=1 SV=2 7 7 1.000 2 4 1 0 2 4 1 0 2.000 4.000 1.000 0.000
382.0 1 sp|O70571|PDK4_MOUSE 12.9 412 46596 [Pyruvate dehydrogenase (acetyl-transferring)] kinase isozyme 4, mitochondrial OS=Mus musculus GN=Pdk4 PE=1 SV=1 11 11 1.000 4 2 1 4 4 2 1 4 4.000 2.000 1.000 4.000
383.0 1 sp|O70572|NSMA_MOUSE 8.4 419 47466 Sphingomyelin phosphodiesterase 2 OS=Mus musculus GN=Smpd2 PE=1 SV=1 10 10 1.000 3 2 1 4 3 2 1 4 3.000 2.000 1.000 4.000
384.0 1 sp|O70589|CSKP_MOUSE 6.2 926 105108 Peripheral plasma membrane protein CASK OS=Mus musculus GN=Cask PE=1 SV=2 5 5 1.000 1 0 1 3 1 0 1 3 1.000 0.000 1.000 3.000
385.0 1 sp|O70591|PFD2_MOUSE 37.7 154 16534 Prefoldin subunit 2 OS=Mus musculus GN=Pfdn2 PE=1 SV=2 16 16 1.000 5 4 4 3 5 4 4 3 5.000 4.000 4.000 3.000
386.0 1 sp|O70622|RTN2_MOUSE 4.0 471 51346 Reticulon-2 OS=Mus musculus GN=Rtn2 PE=1 SV=1 10 10 1.000 3 3 2 2 3 3 2 2 3.000 3.000 2.000 2.000
387.0 1 sp|O88207|CO5A1_MOUSE 3.5 1838 183675 Collagen alpha-1(V) chain OS=Mus musculus GN=Col5a1 PE=1 SV=2 12 12 1.000 4 3 2 3 4 3 2 3 4.000 3.000 2.000 3.000
388.0 1 sp|O88271|CFDP1_MOUSE 22.0 295 32921 Craniofacial development protein 1 OS=Mus musculus GN=Cfdp1 PE=1 SV=1 8 8 1.000 3 0 3 2 3 0 3 2 3.000 0.000 3.000 2.000
389.0 1 sp|O88322|NID2_MOUSE 40.3 1403 153911 Nidogen-2 OS=Mus musculus GN=Nid2 PE=1 SV=2 217 209 0.963 56 47 58 56 54 46 55 54 54.956 46.430 56.500 54.900 sp|O88322|NID2_MOUSE, sp|P10493|NID1_MOUSE
390.0 1 sp|O88338|CAD16_MOUSE 6.0 830 89859 Cadherin-16 OS=Mus musculus GN=Cdh16 PE=1 SV=1 4 4 1.000 1 2 0 1 1 2 0 1 1.000 2.000 0.000 1.000
391.0 1 sp|O88342|WDR1_MOUSE 47.9 606 66406 WD repeat-containing protein 1 OS=Mus musculus GN=Wdr1 PE=1 SV=3 190 190 1.000 51 54 41 44 51 54 41 44 51.000 54.000 41.000 44.000
392.0 1 sp|O88351|IKKB_MOUSE 7.0 757 86689 Inhibitor of nuclear factor kappa-B kinase subunit beta OS=Mus musculus GN=Ikbkb PE=1 SV=1 6 6 1.000 1 1 2 2 1 1 2 2 1.000 1.000 2.000 2.000
393.0 1 sp|O88384|VTI1B_MOUSE 30.6 232 26713 Vesicle transport through interaction with t-SNAREs homolog 1B OS=Mus musculus GN=Vti1b PE=1 SV=1 17 17 1.000 4 5 3 5 4 5 3 5 4.000 5.000 3.000 5.000
394.0 1 sp|O88393|TGBR3_MOUSE 3.6 850 93827 Transforming growth factor beta receptor type 3 OS=Mus musculus GN=Tgfbr3 PE=1 SV=1 7 7 1.000 2 2 1 2 2 2 1 2 2.000 2.000 1.000 2.000
395.0 1 sp|O88428|PAPS2_MOUSE 28.7 621 70350 Bifunctional 3'-phosphoadenosine 5'-phosphosulfate synthase 2 OS=Mus musculus GN=Papss2 PE=1 SV=2 46 45 0.978 14 12 10 10 13 12 10 10 13.619 12.000 10.000 10.000 sp|O88428|PAPS2_MOUSE, sp|Q60967|PAPS1_MOUSE
396.0 1 sp|O88441|MTX2_MOUSE 14.1 263 29758 Metaxin-2 OS=Mus musculus GN=Mtx2 PE=1 SV=1 8 8 1.000 2 2 2 2 2 2 2 2 2.000 2.000 2.000 2.000
397.0 1 sp|O88447|KLC1_MOUSE 20.3 541 61449 Kinesin light chain 1 OS=Mus musculus GN=Klc1 PE=1 SV=3 29 26 0.897 7 6 9 7 6 6 7 7 6.667 6.000 8.336 7.000 sp|O88447|KLC1_MOUSE, sp|O88448|KLC2_MOUSE, sp|Q9DBS5|KLC4_MOUSE
398.0 1 sp|O88448|KLC2_MOUSE 4.7 599 66662 Kinesin light chain 2 OS=Mus musculus GN=Klc2 PE=1 SV=1 8 4 0.500 2 2 3 1 1 1 1 1 1.111 1.200 1.341 1.000 sp|O88447|KLC1_MOUSE, sp|O88448|KLC2_MOUSE, sp|Q9DBS5|KLC4_MOUSE
399.0 1 sp|O88451|RDH7_MOUSE 16.8 316 35660 Retinol dehydrogenase 7 OS=Mus musculus GN=Rdh7 PE=1 SV=1 6 6 1.000 0 5 0 1 0 5 0 1 0.000 5.000 0.000 1.000
400.0 1 sp|O88456|CPNS1_MOUSE 38.7 269 28463 Calpain small subunit 1 OS=Mus musculus GN=Capns1 PE=1 SV=1 59 59 1.000 12 14 16 17 12 14 16 17 12.000 14.000 16.000 17.000
401.0 1 sp|O88487|DC1I2_MOUSE 36.3 612 68393 Cytoplasmic dynein 1 intermediate chain 2 OS=Mus musculus GN=Dync1i2 PE=1 SV=1 76 76 1.000 18 17 22 19 18 17 22 19 18.000 17.000 22.000 19.000
402.0 1 sp|O88492|PLIN4_MOUSE 77.9 1403 139414 Perilipin-4 OS=Mus musculus GN=Plin4 PE=1 SV=2 628 628 1.000 157 145 164 162 157 145 164 162 157.000 145.000 164.000 162.000
403.0 1 sp|O88520|SHOC2_MOUSE 21.0 582 64892 Leucine-rich repeat protein SHOC-2 OS=Mus musculus GN=Shoc2 PE=1 SV=2 11 11 1.000 1 4 2 4 1 4 2 4 1.000 4.000 2.000 4.000
404.0 1 sp|O88522|NEMO_MOUSE 16.3 412 47972 NF-kappa-B essential modulator OS=Mus musculus GN=Ikbkg PE=1 SV=2 7 7 1.000 2 1 1 3 2 1 1 3 2.000 1.000 1.000 3.000
405.0 1 sp|O88531|PPT1_MOUSE 26.5 306 34490 Palmitoyl-protein thioesterase 1 OS=Mus musculus GN=Ppt1 PE=1 SV=2 28 28 1.000 6 7 8 7 6 7 8 7 6.000 7.000 8.000 7.000
406.0 1 sp|O88532|ZFR_MOUSE 4.7 1074 116858 Zinc finger RNA-binding protein OS=Mus musculus GN=Zfr PE=1 SV=2 3 3 1.000 0 2 1 0 0 2 1 0 0.000 2.000 1.000 0.000
407.0 1 sp|O88543|CSN3_MOUSE 32.4 423 47832 COP9 signalosome complex subunit 3 OS=Mus musculus GN=Cops3 PE=1 SV=3 30 30 1.000 8 7 10 5 8 7 10 5 8.000 7.000 10.000 5.000
408.0 1 sp|O88544|CSN4_MOUSE 48.8 406 46284 COP9 signalosome complex subunit 4 OS=Mus musculus GN=Cops4 PE=1 SV=1 59 59 1.000 12 16 16 15 12 16 16 15 12.000 16.000 16.000 15.000
409.0 1 sp|O88545|CSN6_MOUSE 33.3 324 35880 COP9 signalosome complex subunit 6 OS=Mus musculus GN=Cops6 PE=1 SV=1 32 32 1.000 7 11 8 6 7 11 8 6 7.000 11.000 8.000 6.000
410.0 1 sp|O88569|ROA2_MOUSE 56.4 353 37402 Heterogeneous nuclear ribonucleoproteins A2/B1 OS=Mus musculus GN=Hnrnpa2b1 PE=1 SV=2 92 83 0.902 24 20 20 28 20 20 17 26 22.353 20.000 18.378 27.130 sp|O88569|ROA2_MOUSE, sp|P49312|ROA1_MOUSE, sp|Q8BG05|ROA3_MOUSE, sp|Q9CX86|ROA0_MOUSE
411.0 1 sp|O88587|COMT_MOUSE 53.2 265 29486 Catechol O-methyltransferase OS=Mus musculus GN=Comt PE=1 SV=2 98 98 1.000 24 22 28 24 24 22 28 24 24.000 22.000 28.000 24.000
412.0 1 sp|O88597|BECN1_MOUSE 17.2 448 51588 Beclin-1 OS=Mus musculus GN=Becn1 PE=1 SV=3 9 9 1.000 2 1 3 3 2 1 3 3 2.000 1.000 3.000 3.000
413.0 1 sp|O88653|LTOR3_MOUSE 37.1 124 13553 Ragulator complex protein LAMTOR3 OS=Mus musculus GN=Lamtor3 PE=1 SV=1 15 15 1.000 5 6 2 2 5 6 2 2 5.000 6.000 2.000 2.000
414.0 1 sp|O88685|PRS6A_MOUSE 64.7 442 49548 26S protease regulatory subunit 6A OS=Mus musculus GN=Psmc3 PE=1 SV=2 140 140 1.000 37 33 36 34 37 33 36 34 37.000 33.000 36.000 34.000
415.0 1 sp|O88696|CLPP_MOUSE 33.8 272 29800 ATP-dependent Clp protease proteolytic subunit, mitochondrial OS=Mus musculus GN=Clpp PE=1 SV=1 42 42 1.000 10 12 10 10 10 12 10 10 10.000 12.000 10.000 10.000
416.0 1 sp|O88712|CTBP1_MOUSE 15.6 441 47744 C-terminal-binding protein 1 OS=Mus musculus GN=Ctbp1 PE=1 SV=2 17 12 0.706 5 5 4 3 4 3 3 2 4.667 4.500 3.600 2.667 sp|O88712|CTBP1_MOUSE, sp|P56546|CTBP2_MOUSE
417.0 1 sp|O88736|DHB7_MOUSE 11.7 334 37316 3-keto-steroid reductase OS=Mus musculus GN=Hsd17b7 PE=1 SV=1 6 6 1.000 1 3 2 0 1 3 2 0 1.000 3.000 2.000 0.000
418.0 1 sp|O88738|BIRC6_MOUSE 6.2 4882 532164 Baculoviral IAP repeat-containing protein 6 OS=Mus musculus GN=Birc6 PE=1 SV=2 41 41 1.000 5 14 11 11 5 14 11 11 5.000 14.000 11.000 11.000
419.0 1 sp|O88746|TOM1_MOUSE 26.2 492 54325 Target of Myb protein 1 OS=Mus musculus GN=Tom1 PE=1 SV=1 17 17 1.000 3 5 6 3 3 5 6 3 3.000 5.000 6.000 3.000
420.0 1 sp|O88792|JAM1_MOUSE 19.3 300 32423 Junctional adhesion molecule A OS=Mus musculus GN=F11r PE=1 SV=2 8 8 1.000 2 1 3 2 2 1 3 2 2.000 1.000 3.000 2.000
421.0 1 sp|O88796|RPP30_MOUSE 13.8 268 29473 Ribonuclease P protein subunit p30 OS=Mus musculus GN=Rpp30 PE=1 SV=1 4 4 1.000 1 3 0 0 1 3 0 0 1.000 3.000 0.000 0.000
422.0 1 sp|O88799|ZAN_MOUSE 0.4 5376 579908 Zonadhesin OS=Mus musculus GN=Zan PE=1 SV=1 4 4 1.000 0 2 1 1 0 2 1 1 0.000 2.000 1.000 1.000
423.0 1 sp|O88811|STAM2_MOUSE 21.0 523 57454 Signal transducing adapter molecule 2 OS=Mus musculus GN=Stam2 PE=1 SV=1 29 28 0.966 6 4 10 9 6 4 10 8 6.000 4.000 10.000 8.571 sp|O88811|STAM2_MOUSE, sp|P70297|STAM1_MOUSE
424.0 1 sp|O88844|IDHC_MOUSE 78.7 414 46674 Isocitrate dehydrogenase [NADP] cytoplasmic OS=Mus musculus GN=Idh1 PE=1 SV=2 420 417 0.993 113 98 101 108 112 97 101 107 112.737 97.708 101.000 107.764 sp|O88844|IDHC_MOUSE, sp|P54071|IDHP_MOUSE
425.0 1 sp|O88848|ARL6_MOUSE 34.9 186 20959 ADP-ribosylation factor-like protein 6 OS=Mus musculus GN=Arl6 PE=1 SV=1 12 12 1.000 3 3 3 3 3 3 3 3 3.000 3.000 3.000 3.000
426.0 1 sp|O88851|RBBP9_MOUSE 65.6 186 20911 Putative hydrolase RBBP9 OS=Mus musculus GN=Rbbp9 PE=1 SV=2 30 30 1.000 4 10 9 7 4 10 9 7 4.000 10.000 9.000 7.000
427.0 1 sp|O88935|SYN1_MOUSE 10.2 706 74096 Synapsin-1 OS=Mus musculus GN=Syn1 PE=1 SV=2 5 5 1.000 1 3 1 0 1 3 1 0 1.000 3.000 1.000 0.000
428.0 1 sp|O88947|FA10_MOUSE 16.2 481 54017 Coagulation factor X OS=Mus musculus GN=F10 PE=1 SV=1 20 20 1.000 7 4 6 3 7 4 6 3 7.000 4.000 6.000 3.000
429.0 1 sp|O88952|LIN7C_MOUSE 14.7 197 21834 Protein lin-7 homolog C OS=Mus musculus GN=Lin7c PE=1 SV=2 11 11 1.000 5 2 2 2 5 2 2 2 5.000 2.000 2.000 2.000
430.0 1 sp|O88958|GNPI1_MOUSE 32.2 289 32549 Glucosamine-6-phosphate isomerase 1 OS=Mus musculus GN=Gnpda1 PE=1 SV=3 35 28 0.800 10 7 8 10 7 5 7 9 8.500 5.667 7.636 9.562 sp|O88958|GNPI1_MOUSE, sp|Q9CRC9|GNPI2_MOUSE
431.0 1 sp|O88967|YMEL1_MOUSE 12.0 715 80027 ATP-dependent zinc metalloprotease YME1L1 OS=Mus musculus GN=Yme1l1 PE=1 SV=1 21 21 1.000 4 5 5 7 4 5 5 7 4.000 5.000 5.000 7.000
432.0 1 sp|O88968|TCO2_MOUSE 29.5 430 47585 Transcobalamin-2 OS=Mus musculus GN=Tcn2 PE=1 SV=1 28 28 1.000 8 7 3 10 8 7 3 10 8.000 7.000 3.000 10.000
433.0 1 sp|O88983|STX8_MOUSE 16.1 236 26925 Syntaxin-8 OS=Mus musculus GN=Stx8 PE=1 SV=1 15 15 1.000 4 4 3 4 4 4 3 4 4.000 4.000 3.000 4.000
434.0 1 sp|O88986|KBL_MOUSE 20.4 416 44930 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial OS=Mus musculus GN=Gcat PE=1 SV=2 19 19 1.000 3 6 7 3 3 6 7 3 3.000 6.000 7.000 3.000
435.0 1 sp|O88987|AKAP3_MOUSE 14.7 864 95555 A-kinase anchor protein 3 OS=Mus musculus GN=Akap3 PE=1 SV=2 14 14 1.000 0 10 0 4 0 10 0 4 0.000 10.000 0.000 4.000
436.0 1 sp|O89017|LGMN_MOUSE 22.3 435 49372 Legumain OS=Mus musculus GN=Lgmn PE=1 SV=1 33 33 1.000 8 11 5 9 8 11 5 9 8.000 11.000 5.000 9.000
437.0 1 sp|O89020|AFAM_MOUSE 40.1 608 69378 Afamin OS=Mus musculus GN=Afm PE=1 SV=2 79 79 1.000 16 17 24 22 16 17 24 22 16.000 17.000 24.000 22.000
438.0 1 sp|O89023|TPP1_MOUSE 10.7 562 61341 Tripeptidyl-peptidase 1 OS=Mus musculus GN=Tpp1 PE=1 SV=2 12 12 1.000 3 3 3 3 3 3 3 3 3.000 3.000 3.000 3.000
439.0 1 sp|O89032|SPD2A_MOUSE 7.5 1124 124200 SH3 and PX domain-containing protein 2A OS=Mus musculus GN=Sh3pxd2a PE=1 SV=2 5 5 1.000 0 3 1 1 0 3 1 1 0.000 3.000 1.000 1.000
440.0 1 sp|O89050|MKLN1_MOUSE 6.4 735 84877 Muskelin OS=Mus musculus GN=Mkln1 PE=1 SV=1 10 10 1.000 1 3 2 4 1 3 2 4 1.000 3.000 2.000 4.000
441.0 1 sp|O89051|ITM2B_MOUSE 12.8 266 30260 Integral membrane protein 2B OS=Mus musculus GN=Itm2b PE=1 SV=1 6 6 1.000 2 2 1 1 2 2 1 1 2.000 2.000 1.000 1.000
442.0 1 sp|O89053|COR1A_MOUSE 33.2 461 50989 Coronin-1A OS=Mus musculus GN=Coro1a PE=1 SV=5 63 59 0.937 14 13 17 19 13 12 16 18 13.542 12.522 16.516 18.500 sp|O89053|COR1A_MOUSE, sp|Q9WUM4|COR1C_MOUSE
443.0 1 sp|O89079|COPE_MOUSE 28.9 308 34567 Coatomer subunit epsilon OS=Mus musculus GN=Cope PE=1 SV=3 42 42 1.000 9 10 10 13 9 10 10 13 9.000 10.000 10.000 13.000
444.0 1 sp|O89086|RBM3_MOUSE 27.5 153 16605 RNA-binding protein 3 OS=Mus musculus GN=Rbm3 PE=1 SV=1 10 10 1.000 3 2 2 3 3 2 2 3 3.000 2.000 2.000 3.000
445.0 1 sp|O89103|C1QR1_MOUSE 26.6 644 69354 Complement component C1q receptor OS=Mus musculus GN=Cd93 PE=1 SV=1 31 31 1.000 8 6 6 11 8 6 6 11 8.000 6.000 6.000 11.000
446.0 1 sp|O89106|FHIT_MOUSE 54.7 150 17234 Bis(5'-adenosyl)-triphosphatase OS=Mus musculus GN=Fhit PE=1 SV=3 22 22 1.000 4 5 6 7 4 5 6 7 4.000 5.000 6.000 7.000
447.0 1 sp|O89110|CASP8_MOUSE 38.8 480 55356 Caspase-8 OS=Mus musculus GN=Casp8 PE=1 SV=1 59 59 1.000 13 18 16 12 13 18 16 12 13.000 18.000 16.000 12.000
448.0 1 sp|O89112|LANC1_MOUSE 18.0 399 45341 LanC-like protein 1 OS=Mus musculus GN=Lancl1 PE=1 SV=1 15 15 1.000 3 5 3 4 3 5 3 4 3.000 5.000 3.000 4.000
449.0 1 sp|P00015|CYC2_MOUSE 47.6 105 11713 Cytochrome c, testis-specific OS=Mus musculus GN=Cyct PE=1 SV=3 17 13 0.765 6 6 3 2 3 5 3 2 3.243 5.156 3.000 2.000 sp|P00015|CYC2_MOUSE, sp|P62897|CYC_MOUSE
450.0 1 sp|P00329|ADH1_MOUSE 32.5 375 39771 Alcohol dehydrogenase 1 OS=Mus musculus GN=Adh1 PE=1 SV=2 118 118 1.000 31 33 28 26 31 33 28 26 31.000 33.000 28.000 26.000
451.0 1 sp|P00342|LDHC_MOUSE 40.1 332 35911 L-lactate dehydrogenase C chain OS=Mus musculus GN=Ldhc PE=1 SV=2 130 97 0.746 33 35 28 34 22 31 19 25 23.827 31.981 20.326 26.549 sp|P00342|LDHC_MOUSE, sp|P06151|LDHA_MOUSE, sp|P16125|LDHB_MOUSE
452.0 1 sp|P00375|DYR_MOUSE 28.9 187 21606 Dihydrofolate reductase OS=Mus musculus GN=Dhfr PE=1 SV=3 24 24 1.000 4 6 7 7 4 6 7 7 4.000 6.000 7.000 7.000
453.0 1 sp|P00405|COX2_MOUSE 24.7 227 25976 Cytochrome c oxidase subunit 2 OS=Mus musculus GN=Mtco2 PE=1 SV=1 45 45 1.000 9 14 9 13 9 14 9 13 9.000 14.000 9.000 13.000
454.0 1 sp|P00493|HPRT_MOUSE 61.9 218 24570 Hypoxanthine-guanine phosphoribosyltransferase OS=Mus musculus GN=Hprt1 PE=1 SV=3 86 86 1.000 23 21 22 20 23 21 22 20 23.000 21.000 22.000 20.000
455.0 1 sp|P00683|RNAS1_MOUSE 40.3 149 16820 Ribonuclease pancreatic OS=Mus musculus GN=Rnase1 PE=1 SV=2 4 4 1.000 0 3 0 1 0 3 0 1 0.000 3.000 0.000 1.000
456.0 1 sp|P00687|AMY1_MOUSE 35.2 511 57643 Alpha-amylase 1 OS=Mus musculus GN=Amy1 PE=1 SV=2 45 22 0.489 10 15 10 10 7 5 6 4 8.235 5.962 7.000 4.923 sp|P00687|AMY1_MOUSE, sp|P00688|AMYP_MOUSE
457.0 1 sp|P00688|AMYP_MOUSE 48.6 508 57318 Pancreatic alpha-amylase OS=Mus musculus GN=Amy2 PE=1 SV=2 120 97 0.808 13 57 22 28 10 47 18 22 11.765 56.038 21.000 27.077 sp|P00687|AMY1_MOUSE, sp|P00688|AMYP_MOUSE
458.0 1 sp|P00920|CAH2_MOUSE 59.2 260 29032 Carbonic anhydrase 2 OS=Mus musculus GN=Ca2 PE=1 SV=4 174 174 1.000 45 38 48 43 45 38 48 43 45.000 38.000 48.000 43.000
459.0 1 sp|P01027|CO3_MOUSE 59.9 1663 186482 Complement C3 OS=Mus musculus GN=C3 PE=1 SV=3 714 714 1.000 179 173 171 191 179 173 171 191 179.000 173.000 171.000 191.000
460.0 1 sp|P01029|CO4B_MOUSE 26.8 1738 192913 Complement C4-B OS=Mus musculus GN=C4b PE=1 SV=3 178 178 1.000 41 49 47 41 41 49 47 41 41.000 49.000 47.000 41.000
461.0 1 sp|P01592|IGJ_MOUSE 49.7 159 18013 Immunoglobulin J chain OS=Mus musculus GN=Jchain PE=1 SV=4 19 19 1.000 4 3 6 6 4 3 6 6 4.000 3.000 6.000 6.000
462.0 1 sp|P01630|KV2A6_MOUSE 21.2 113 12496 Ig kappa chain V-II region 7S34.1 OS=Mus musculus PE=1 SV=1 5 5 1.000 0 2 2 1 0 2 2 1 0.000 2.000 2.000 1.000
463.0 1 sp|P01631|KV2A7_MOUSE 32.7 113 12273 Ig kappa chain V-II region 26-10 OS=Mus musculus PE=1 SV=1 28 28 1.000 7 7 7 7 7 7 7 7 7.000 7.000 7.000 7.000
464.0 1 sp|P01635|KV5A3_MOUSE 33.0 115 12581 Ig kappa chain V-V region K2 (Fragment) OS=Mus musculus PE=1 SV=1 18 18 1.000 5 5 5 3 5 5 5 3 5.000 5.000 5.000 3.000
465.0 1 sp|P01638|KV5A6_MOUSE 28.7 115 12986 Ig kappa chain V-V region L6 (Fragment) OS=Mus musculus PE=4 SV=1 10 10 1.000 2 2 3 3 2 2 3 3 2.000 2.000 3.000 3.000
466.0 1 sp|P01639|KV5A7_MOUSE 27.7 130 14311 Ig kappa chain V-V region MOPC 41 OS=Mus musculus GN=Gm5571 PE=1 SV=1 10 10 1.000 3 1 3 3 3 1 3 3 3.000 1.000 3.000 3.000
467.0 1 sp|P01644|KV5AB_MOUSE 41.7 108 11910 Ig kappa chain V-V region HP R16.7 OS=Mus musculus PE=1 SV=1 19 19 1.000 5 6 3 5 5 6 3 5 5.000 6.000 3.000 5.000
467.01 1 sp|P01645|KV5AC_MOUSE redundant 41.7 108 11954 Ig kappa chain V-V region HP 93G7 OS=Mus musculus PE=1 SV=1 19 19 1.000 5 6 3 5 5 6 3 5 5.000 6.000 3.000 5.000
468.0 1 sp|P01648|KV5AF_MOUSE 24.1 108 11961 Ig kappa chain V-V region HP 91A3 OS=Mus musculus PE=1 SV=1 7 7 1.000 2 2 2 1 2 2 2 1 2.000 2.000 2.000 1.000
469.0 1 sp|P01654|KV3A1_MOUSE 63.1 111 11980 Ig kappa chain V-III region PC 2880/PC 1229 OS=Mus musculus PE=1 SV=1 30 6 0.200 9 8 8 5 2 2 1 1 5.667 5.333 2.500 3.000 sp|P01654|KV3A1_MOUSE, sp|P01660|KV3A8_MOUSE, sp|P01665|KV3AD_MOUSE, sp|P03977|KV3A4_MOUSE
470.0 1 sp|P01660|KV3A8_MOUSE 47.7 111 12099 Ig kappa chain V-III region PC 3741/TEPC 111 OS=Mus musculus PE=1 SV=1 21 4 0.190 7 5 7 2 1 1 2 0 2.500 2.000 3.667 0.000 sp|P01654|KV3A1_MOUSE, sp|P01660|KV3A8_MOUSE, sp|P01665|KV3AD_MOUSE, sp|P03977|KV3A4_MOUSE
471.0 1 sp|P01665|KV3AD_MOUSE 38.7 111 12002 Ig kappa chain V-III region PC 7043 OS=Mus musculus PE=1 SV=1 18 1 0.056 6 4 6 2 0 0 1 0 0.000 0.000 1.833 0.000 sp|P01654|KV3A1_MOUSE, sp|P01660|KV3A8_MOUSE, sp|P01665|KV3AD_MOUSE, sp|P03977|KV3A4_MOUSE
471.01 1 sp|P01666|KV3AE_MOUSE redundant 38.7 111 11952 Ig kappa chain V-III region PC 7183 OS=Mus musculus PE=1 SV=1 18 1 0.056 6 4 6 2 0 0 1 0 0.000 0.000 1.833 0.000 sp|P01654|KV3A1_MOUSE, sp|P01660|KV3A8_MOUSE, sp|P01665|KV3AD_MOUSE, sp|P03977|KV3A4_MOUSE
471.02 1 sp|P01667|KV3AF_MOUSE redundant 38.7 111 12071 Ig kappa chain V-III region PC 6308 OS=Mus musculus PE=1 SV=1 18 1 0.056 6 4 6 2 0 0 1 0 0.000 0.000 1.833 0.000 sp|P01654|KV3A1_MOUSE, sp|P01660|KV3A8_MOUSE, sp|P01665|KV3AD_MOUSE, sp|P03977|KV3A4_MOUSE
471.03 1 sp|P01669|KV3AH_MOUSE redundant 38.7 111 12011 Ig kappa chain V-III region PC 7769 OS=Mus musculus PE=1 SV=1 18 1 0.056 6 4 6 2 0 0 1 0 0.000 0.000 1.833 0.000 sp|P01654|KV3A1_MOUSE, sp|P01660|KV3A8_MOUSE, sp|P01665|KV3AD_MOUSE, sp|P03977|KV3A4_MOUSE
472.0 1 sp|P01675|KV6A1_MOUSE 29.9 107 11627 Ig kappa chain V-VI region XRPC 44 OS=Mus musculus PE=1 SV=1 11 11 1.000 1 3 4 3 1 3 4 3 1.000 3.000 4.000 3.000
472.01 1 sp|P01676|KV6A2_MOUSE redundant 29.9 107 11584 Ig kappa chain V-VI region XRPC 24 OS=Mus musculus PE=1 SV=1 11 11 1.000 1 3 4 3 1 3 4 3 1.000 3.000 4.000 3.000
472.02 1 sp|P01677|KV6A3_MOUSE redundant 29.9 107 11568 Ig kappa chain V-VI region TEPC 601/TEPC 191 OS=Mus musculus PE=1 SV=1 11 11 1.000 1 3 4 3 1 3 4 3 1.000 3.000 4.000 3.000
472.03 1 sp|P01678|KV6A4_MOUSE redundant 29.9 107 11554 Ig kappa chain V-VI region SAPC 10 OS=Mus musculus PE=1 SV=1 11 11 1.000 1 3 4 3 1 3 4 3 1.000 3.000 4.000 3.000
472.04 1 sp|P01679|KV6A5_MOUSE redundant 29.9 107 11502 Ig kappa chain V-VI region J539 OS=Mus musculus PE=1 SV=1 11 11 1.000 1 3 4 3 1 3 4 3 1.000 3.000 4.000 3.000
473.0 1 sp|P01783|HVM16_MOUSE 16.2 136 15071 Ig heavy chain V region MOPC 21 (Fragment) OS=Mus musculus PE=1 SV=1 10 1 0.100 2 2 5 1 0 0 1 0 0.000 0.000 1.667 0.000 sp|P01783|HVM16_MOUSE, sp|P18525|HVM54_MOUSE, sp|P18526|HVM55_MOUSE, sp|P18527|HVM56_MOUSE, sp|P18528|HVM57_MOUSE
474.0 1 sp|P01787|HVM18_MOUSE 30.9 123 13777 Ig heavy chain V regions TEPC 15/S107/HPCM1/HPCM2/HPCM3 OS=Mus musculus PE=1 SV=1 11 11 1.000 2 3 3 3 2 3 3 3 2.000 3.000 3.000 3.000
474.01 1 sp|P01788|HVM19_MOUSE redundant 30.9 123 13805 Ig heavy chain V region H8 OS=Mus musculus PE=1 SV=1 11 11 1.000 2 3 3 3 2 3 3 3 2.000 3.000 3.000 3.000
474.02 1 sp|P01790|HVM21_MOUSE redundant 31.1 122 13652 Ig heavy chain V region M511 OS=Mus musculus PE=1 SV=1 11 11 1.000 2 3 3 3 2 3 3 3 2.000 3.000 3.000 3.000
474.03 1 sp|P01791|HVM22_MOUSE redundant 30.9 123 13895 Ig heavy chain V region HPCM6 OS=Mus musculus PE=1 SV=1 11 11 1.000 2 3 3 3 2 3 3 3 2.000 3.000 3.000 3.000
474.04 1 sp|P01794|HVM25_MOUSE redundant 30.9 123 13807 Ig heavy chain V region HPCG14 OS=Mus musculus PE=1 SV=1 11 11 1.000 2 3 3 3 2 3 3 3 2.000 3.000 3.000 3.000
475.0 1 sp|P01801|HVM32_MOUSE 42.6 115 12810 Ig heavy chain V-III region J606 OS=Mus musculus PE=1 SV=1 22 22 1.000 5 8 3 6 5 8 3 6 5.000 8.000 3.000 6.000
476.0 1 sp|P01806|HVM36_MOUSE 62.1 116 12911 Ig heavy chain V region 441 OS=Mus musculus PE=4 SV=1 32 22 0.688 11 5 9 7 8 2 6 6 11.000 5.000 8.357 6.750 sp|P01806|HVM36_MOUSE, sp|P01812|HVM42_MOUSE, sp|P18524|HVM53_MOUSE
476.01 1 sp|P01807|HVM37_MOUSE redundant 60.5 119 13246 Ig heavy chain V region X44 OS=Mus musculus PE=1 SV=1 32 22 0.688 11 5 9 7 8 2 6 6 11.000 5.000 8.357 6.750 sp|P01806|HVM36_MOUSE, sp|P01812|HVM42_MOUSE, sp|P18524|HVM53_MOUSE
476.02 1 sp|P01808|HVM38_MOUSE redundant 60.5 119 13169 Ig heavy chain V region T601 OS=Mus musculus PE=1 SV=1 32 22 0.688 11 5 9 7 8 2 6 6 11.000 5.000 8.357 6.750 sp|P01806|HVM36_MOUSE, sp|P01812|HVM42_MOUSE, sp|P18524|HVM53_MOUSE
477.0 1 sp|P01812|HVM42_MOUSE 47.9 117 13051 Ig heavy chain V region MOPC 173 OS=Mus musculus PE=1 SV=1 12 2 0.167 3 3 4 2 0 0 1 1 0.000 0.000 1.393 1.125 sp|P01806|HVM36_MOUSE, sp|P01812|HVM42_MOUSE, sp|P18524|HVM53_MOUSE
478.0 1 sp|P01831|THY1_MOUSE 24.1 162 18080 Thy-1 membrane glycoprotein OS=Mus musculus GN=Thy1 PE=1 SV=1 11 11 1.000 2 3 2 4 2 3 2 4 2.000 3.000 2.000 4.000
479.0 1 sp|P01837|IGKC_MOUSE 76.4 106 11778 Ig kappa chain C region OS=Mus musculus PE=1 SV=1 138 138 1.000 30 34 37 37 30 34 37 37 30.000 34.000 37.000 37.000
480.0 1 sp|P01843|LAC1_MOUSE 53.3 105 11575 Ig lambda-1 chain C region OS=Mus musculus PE=1 SV=1 19 19 1.000 6 7 3 3 6 7 3 3 6.000 7.000 3.000 3.000
481.0 1 sp|P01844|LAC2_MOUSE 61.5 104 11254 Ig lambda-2 chain C region OS=Mus musculus GN=Iglc2 PE=1 SV=1 22 22 1.000 7 5 5 5 7 5 5 5 7.000 5.000 5.000 5.000
482.0 1 sp|P01863|GCAA_MOUSE 34.8 330 36389 Ig gamma-2A chain C region, A allele OS=Mus musculus GN=Ighg PE=1 SV=1 129 122 0.946 32 36 31 30 32 32 31 27 32.000 35.122 31.000 29.077 sp|P01863|GCAA_MOUSE, sp|P01864|GCAB_MOUSE
482.01 1 sp|P01865|GCAM_MOUSE redundant 28.9 398 43949 Ig gamma-2A chain C region, membrane-bound form OS=Mus musculus GN=Igh-1a PE=1 SV=3 129 122 0.946 32 36 31 30 32 32 31 27 32.000 35.122 31.000 29.077 sp|P01863|GCAA_MOUSE, sp|P01864|GCAB_MOUSE
483.0 1 sp|P01864|GCAB_MOUSE 17.0 335 36595 Ig gamma-2A chain C region secreted form OS=Mus musculus PE=1 SV=1 47 40 0.851 6 13 13 15 6 9 13 12 6.000 9.878 13.000 12.923 sp|P01863|GCAA_MOUSE, sp|P01864|GCAB_MOUSE
484.0 1 sp|P01867|IGG2B_MOUSE 32.7 404 44259 Ig gamma-2B chain C region OS=Mus musculus GN=Igh-3 PE=1 SV=3 136 136 1.000 29 38 27 42 29 38 27 42 29.000 38.000 27.000 42.000
485.0 1 sp|P01868|IGHG1_MOUSE 34.6 324 35704 Ig gamma-1 chain C region secreted form OS=Mus musculus GN=Ighg1 PE=1 SV=1 128 128 1.000 30 36 26 36 30 36 26 36 30.000 36.000 26.000 36.000
485.01 1 sp|P01869|IGH1M_MOUSE redundant 28.5 393 43386 Ig gamma-1 chain C region, membrane-bound form OS=Mus musculus GN=Ighg1 PE=1 SV=2 128 128 1.000 30 36 26 36 30 36 26 36 30.000 36.000 26.000 36.000
486.0 1 sp|P01872|IGHM_MOUSE 43.4 454 49971 Ig mu chain C region OS=Mus musculus GN=Ighm PE=1 SV=2 172 172 1.000 38 44 44 46 38 44 44 46 38.000 44.000 44.000 46.000
487.0 1 sp|P01878|IGHA_MOUSE 19.5 344 36875 Ig alpha chain C region OS=Mus musculus PE=1 SV=1 39 39 1.000 9 12 10 8 9 12 10 8 9.000 12.000 10.000 8.000
488.0 1 sp|P01887|B2MG_MOUSE 22.7 119 13779 Beta-2-microglobulin OS=Mus musculus GN=B2m PE=1 SV=2 28 28 1.000 10 6 6 6 10 6 6 6 10.000 6.000 6.000 6.000
489.0 1 sp|P01897|HA1L_MOUSE 26.8 362 40711 H-2 class I histocompatibility antigen, L-D alpha chain OS=Mus musculus GN=H2-L PE=1 SV=2 48 0 0.000 12 12 14 10 0 0 0 0 0.000 0.000 0.000 0.000 sp|P01897|HA1L_MOUSE, sp|P01898|HA10_MOUSE, sp|P01899|HA11_MOUSE, sp|P01901|HA1B_MOUSE, sp|P14426|HA13_MOUSE, sp|P14429|HA17_MOUSE
490.0 1 sp|P01898|HA10_MOUSE 28.3 325 37251 H-2 class I histocompatibility antigen, Q10 alpha chain OS=Mus musculus GN=H2-Q10 PE=1 SV=3 48 20 0.417 12 13 14 9 6 6 5 3 10.905 11.762 11.397 7.375 sp|P01897|HA1L_MOUSE, sp|P01898|HA10_MOUSE, sp|P01899|HA11_MOUSE, sp|P01901|HA1B_MOUSE, sp|P01902|HA1D_MOUSE, sp|P14426|HA13_MOUSE, sp|P14429|HA17_MOUSE
491.0 1 sp|P01899|HA11_MOUSE 37.6 362 40836 H-2 class I histocompatibility antigen, D-B alpha chain OS=Mus musculus GN=H2-D1 PE=1 SV=2 66 5 0.076 15 16 21 14 1 1 2 1 9.984 10.794 14.659 9.325 sp|P01897|HA1L_MOUSE, sp|P01898|HA10_MOUSE, sp|P01899|HA11_MOUSE, sp|P01901|HA1B_MOUSE, sp|P01902|HA1D_MOUSE, sp|P14426|HA13_MOUSE, sp|P14429|HA17_MOUSE
492.0 1 sp|P01901|HA1B_MOUSE 29.5 369 41301 H-2 class I histocompatibility antigen, K-B alpha chain OS=Mus musculus GN=H2-K1 PE=1 SV=1 29 9 0.310 8 6 7 8 2 2 2 3 6.111 4.444 4.944 6.225 sp|P01897|HA1L_MOUSE, sp|P01898|HA10_MOUSE, sp|P01899|HA11_MOUSE, sp|P01901|HA1B_MOUSE, sp|P01902|HA1D_MOUSE, sp|P14426|HA13_MOUSE, sp|P14429|HA17_MOUSE
493.0 1 sp|P01902|HA1D_MOUSE 6.8 368 41489 H-2 class I histocompatibility antigen, K-D alpha chain OS=Mus musculus GN=H2-K1 PE=1 SV=1 9 0 0.000 2 2 3 2 0 0 0 0 0.000 0.000 0.000 0.000 sp|P01898|HA10_MOUSE, sp|P01899|HA11_MOUSE, sp|P01901|HA1B_MOUSE, sp|P01902|HA1D_MOUSE, sp|P14429|HA17_MOUSE
494.0 1 sp|P01942|HBA_MOUSE 52.1 142 15085 Hemoglobin subunit alpha OS=Mus musculus GN=Hba PE=1 SV=2 924 924 1.000 208 223 261 232 208 223 261 232 208.000 223.000 261.000 232.000
495.0 1 sp|P02088|HBB1_MOUSE 81.6 147 15840 Hemoglobin subunit beta-1 OS=Mus musculus GN=Hbb-b1 PE=1 SV=2 1795 1433 0.798 391 468 471 465 325 372 373 363 388.940 465.178 468.680 462.727 sp|P02088|HBB1_MOUSE, sp|P02089|HBB2_MOUSE, sp|P02104|HBE_MOUSE
496.0 1 sp|P02089|HBB2_MOUSE 49.0 147 15878 Hemoglobin subunit beta-2 OS=Mus musculus GN=Hbb-b2 PE=1 SV=2 396 34 0.086 76 106 105 109 10 10 7 7 11.967 12.505 8.796 8.923 sp|P02088|HBB1_MOUSE, sp|P02089|HBB2_MOUSE, sp|P02104|HBE_MOUSE
497.0 1 sp|P02104|HBE_MOUSE 12.2 147 16136 Hemoglobin subunit epsilon-Y2 OS=Mus musculus GN=Hbb-y PE=1 SV=2 232 8 0.034 32 63 70 67 1 2 3 2 1.092 2.318 3.525 2.349 sp|P02088|HBB1_MOUSE, sp|P02089|HBB2_MOUSE, sp|P02104|HBE_MOUSE
498.0 1 sp|P02463|CO4A1_MOUSE 6.4 1669 160677 Collagen alpha-1(IV) chain OS=Mus musculus GN=Col4a1 PE=1 SV=4 16 16 1.000 6 2 4 4 6 2 4 4 6.000 2.000 4.000 4.000
499.0 1 sp|P02468|LAMC1_MOUSE 39.7 1607 177297 Laminin subunit gamma-1 OS=Mus musculus GN=Lamc1 PE=1 SV=2 380 380 1.000 103 78 100 99 103 78 100 99 103.000 78.000 100.000 99.000
500.0 1 sp|P02469|LAMB1_MOUSE 45.9 1786 197089 Laminin subunit beta-1 OS=Mus musculus GN=Lamb1 PE=1 SV=3 439 439 1.000 107 105 110 117 107 105 110 117 107.000 105.000 110.000 117.000
501.0 1 sp|P03888|NU1M_MOUSE 6.3 318 36059 NADH-ubiquinone oxidoreductase chain 1 OS=Mus musculus GN=Mtnd1 PE=1 SV=3 5 5 1.000 1 0 2 2 1 0 2 2 1.000 0.000 2.000 2.000
502.0 1 sp|P03911|NU4M_MOUSE 8.5 459 51881 NADH-ubiquinone oxidoreductase chain 4 OS=Mus musculus GN=Mtnd4 PE=1 SV=1 14 14 1.000 3 3 4 4 3 3 4 4 3.000 3.000 4.000 4.000
503.0 1 sp|P03921|NU5M_MOUSE 3.3 607 68474 NADH-ubiquinone oxidoreductase chain 5 OS=Mus musculus GN=Mtnd5 PE=1 SV=3 12 12 1.000 5 5 1 1 5 5 1 1 5.000 5.000 1.000 1.000
504.0 1 sp|P03930|ATP8_MOUSE 34.3 67 7766 ATP synthase protein 8 OS=Mus musculus GN=Mtatp8 PE=1 SV=1 7 7 1.000 2 3 2 0 2 3 2 0 2.000 3.000 2.000 0.000
505.0 1 sp|P03953|CFAD_MOUSE 39.4 259 28057 Complement factor D OS=Mus musculus GN=Cfd PE=1 SV=1 27 27 1.000 6 8 7 6 6 8 7 6 6.000 8.000 7.000 6.000
506.0 1 sp|P03958|ADA_MOUSE 7.1 352 39991 Adenosine deaminase OS=Mus musculus GN=Ada PE=1 SV=3 7 7 1.000 1 1 3 2 1 1 3 2 1.000 1.000 3.000 2.000
507.0 1 sp|P03977|KV3A4_MOUSE 40.5 111 12042 Ig kappa chain V-III region 50S10.1 OS=Mus musculus PE=1 SV=1 29 5 0.172 8 7 9 5 1 1 2 1 2.833 2.667 5.000 3.000 sp|P01654|KV3A1_MOUSE, sp|P01660|KV3A8_MOUSE, sp|P01665|KV3AD_MOUSE, sp|P03977|KV3A4_MOUSE
508.0 1 sp|P03987|IGHG3_MOUSE 30.9 398 43929 Ig gamma-3 chain C region OS=Mus musculus PE=1 SV=2 77 77 1.000 17 21 19 20 17 21 19 20 17.000 21.000 19.000 20.000
509.0 1 sp|P03995|GFAP_MOUSE 6.0 430 49899 Glial fibrillary acidic protein OS=Mus musculus GN=Gfap PE=1 SV=4 27 0 0.000 9 5 7 6 0 0 0 0 0.000 0.000 0.000 0.000 CONT_049|gi|88052|pir||A32568, CONT_070|gi|547752|sp|Q01546|K22O_HUMAN, CONT_073|gi|87303|pir||JS0487, CONT_079|gi|125105|sp|P13647|K2C5_HUMAN, CONT_088|gi|1346343|sp|P04264|K2C1_HUMAN, CONT_089|gi|71536|pir||KRHU2, CONT_102|gi|88044|pir||S01068, CONT_120|gi|125108|sp|P08729|K2C7_HUMAN, CONT_133|gi|1346349|sp|P48669|K2CF_HUMAN, CONT_172|gi|1903216|gnl|PID|e255375, sp|P03995|GFAP_MOUSE, sp|P11679|K2C8_MOUSE, sp|P20152|VIME_MOUSE, sp|Q3UV17|K22O_MOUSE, sp|Q6NXH9|K2C73_MOUSE, sp|Q8BGZ7|K2C75_MOUSE, sp|Q922U2|K2C5_MOUSE, sp|Q9DCV7|K2C7_MOUSE
510.0 1 sp|P04104|K2C1_MOUSE 6.0 637 65605 Keratin, type II cytoskeletal 1 OS=Mus musculus GN=Krt1 PE=1 SV=4 20 0 0.000 5 3 7 5 0 0 0 0 0.000 0.000 0.000 0.000 CONT_049|gi|88052|pir||A32568, CONT_064|gi|254622|bbs|112352, CONT_070|gi|547752|sp|Q01546|K22O_HUMAN, CONT_073|gi|87303|pir||JS0487, CONT_079|gi|125105|sp|P13647|K2C5_HUMAN, CONT_088|gi|1346343|sp|P04264|K2C1_HUMAN, CONT_089|gi|71536|pir||KRHU2, CONT_102|gi|88044|pir||S01068, CONT_120|gi|125108|sp|P08729|K2C7_HUMAN, CONT_133|gi|1346349|sp|P48669|K2CF_HUMAN, sp|P04104|K2C1_MOUSE, sp|P11679|K2C8_MOUSE, sp|Q3TTY5|K22E_MOUSE, sp|Q3UV17|K22O_MOUSE, sp|Q6IFZ6|K2C1B_MOUSE, sp|Q6IFZ9|K2C74_MOUSE, sp|Q6NXH9|K2C73_MOUSE, sp|Q8BGZ7|K2C75_MOUSE, sp|Q922U2|K2C5_MOUSE, sp|Q9DCV7|K2C7_MOUSE
511.0 1 sp|P04117|FABP4_MOUSE 90.2 132 14650 Fatty acid-binding protein, adipocyte OS=Mus musculus GN=Fabp4 PE=1 SV=3 3442 3148 0.915 861 836 930 815 786 772 847 743 860.432 835.425 929.902 814.614 sp|O08716|FABP9_MOUSE, sp|P04117|FABP4_MOUSE, sp|P24526|MYP2_MOUSE
512.0 1 sp|P04186|CFAB_MOUSE 42.6 761 85004 Complement factor B OS=Mus musculus GN=Cfb PE=1 SV=2 169 169 1.000 41 44 40 44 41 44 40 44 41.000 44.000 40.000 44.000
513.0 1 sp|P04247|MYG_MOUSE 42.2 154 17069 Myoglobin OS=Mus musculus GN=Mb PE=1 SV=3 14 14 1.000 2 4 2 6 2 4 2 6 2.000 4.000 2.000 6.000
514.0 1 sp|P04627|ARAF_MOUSE 4.5 604 67581 Serine/threonine-protein kinase A-Raf OS=Mus musculus GN=Araf PE=1 SV=2 6 6 1.000 2 3 0 1 2 3 0 1 2.000 3.000 0.000 1.000
514.01 1 sp|P28028|BRAF_MOUSE redundant 3.4 804 88779 Serine/threonine-protein kinase B-raf OS=Mus musculus GN=Braf PE=1 SV=3 6 6 1.000 2 3 0 1 2 3 0 1 2.000 3.000 0.000 1.000
515.0 1 sp|P04919|B3AT_MOUSE 29.0 929 103134 Band 3 anion transport protein OS=Mus musculus GN=Slc4a1 PE=1 SV=1 164 164 1.000 38 42 43 41 38 42 43 41 38.000 42.000 43.000 41.000
516.0 1 sp|P04925|PRIO_MOUSE 4.7 254 27977 Major prion protein OS=Mus musculus GN=Prnp PE=1 SV=2 12 12 1.000 2 4 3 3 2 4 3 3 2.000 4.000 3.000 3.000
517.0 1 sp|P04939|MUP3_MOUSE 23.9 184 21464 Major urinary protein 3 OS=Mus musculus GN=Mup3 PE=1 SV=1 11 9 0.818 4 2 2 3 3 1 2 3 3.750 1.500 2.000 3.000 sp|P04939|MUP3_MOUSE, sp|Q5FW60|MUP20_MOUSE
518.0 1 sp|P05063|ALDOC_MOUSE 32.2 363 39394 Fructose-bisphosphate aldolase C OS=Mus musculus GN=Aldoc PE=1 SV=4 82 5 0.061 17 18 23 24 1 3 0 1 1.094 3.341 0.000 1.142 sp|P05063|ALDOC_MOUSE, sp|P05064|ALDOA_MOUSE
519.0 1 sp|P05064|ALDOA_MOUSE 73.1 364 39355 Fructose-bisphosphate aldolase A OS=Mus musculus GN=Aldoa PE=1 SV=2 687 610 0.888 186 144 173 184 170 129 150 161 185.906 143.659 173.000 183.858 sp|P05063|ALDOC_MOUSE, sp|P05064|ALDOA_MOUSE
520.0 1 sp|P05132|KAPCA_MOUSE 36.2 351 40570 cAMP-dependent protein kinase catalytic subunit alpha OS=Mus musculus GN=Prkaca PE=1 SV=3 78 40 0.513 21 17 19 21 8 9 10 13 15.429 15.000 16.000 19.118 sp|P05132|KAPCA_MOUSE, sp|P68181|KAPCB_MOUSE
521.0 1 sp|P05201|AATC_MOUSE 43.1 413 46247 Aspartate aminotransferase, cytoplasmic OS=Mus musculus GN=Got1 PE=1 SV=3 61 61 1.000 17 18 12 14 17 18 12 14 17.000 18.000 12.000 14.000
522.0 1 sp|P05202|AATM_MOUSE 57.0 430 47411 Aspartate aminotransferase, mitochondrial OS=Mus musculus GN=Got2 PE=1 SV=1 104 104 1.000 26 31 28 19 26 31 28 19 26.000 31.000 28.000 19.000
523.0 1 sp|P05208|CEL2A_MOUSE 42.1 271 28913 Chymotrypsin-like elastase family member 2A OS=Mus musculus GN=Cela2a PE=1 SV=1 27 27 1.000 3 14 4 6 3 14 4 6 3.000 14.000 4.000 6.000
524.0 1 sp|P05213|TBA1B_MOUSE 57.9 451 50151 Tubulin alpha-1B chain OS=Mus musculus GN=Tuba1b PE=1 SV=2 581 0 0.000 160 129 143 149 0 0 0 0 22.500 18.500 25.000 27.500 sp|P05213|TBA1B_MOUSE, sp|P05214|TBA3_MOUSE, sp|P68368|TBA4A_MOUSE, sp|P68369|TBA1A_MOUSE, sp|P68373|TBA1C_MOUSE, sp|Q3UX10|TBAL3_MOUSE, sp|Q9JJZ2|TBA8_MOUSE
525.0 1 sp|P05214|TBA3_MOUSE 56.0 450 49959 Tubulin alpha-3 chain OS=Mus musculus GN=Tuba3a PE=1 SV=1 331 1 0.003 99 84 74 74 1 0 0 0 17.894 1.333 1.333 1.333 sp|P05213|TBA1B_MOUSE, sp|P05214|TBA3_MOUSE, sp|P68368|TBA4A_MOUSE, sp|P68369|TBA1A_MOUSE, sp|P68373|TBA1C_MOUSE, sp|Q3UX10|TBAL3_MOUSE, sp|Q9JJZ2|TBA8_MOUSE
526.0 1 sp|P05480|SRC_MOUSE 22.4 541 60644 Neuronal proto-oncogene tyrosine-protein kinase Src OS=Mus musculus GN=Src PE=1 SV=4 29 13 0.448 9 8 7 5 4 4 3 2 5.481 5.349 3.852 2.810 sp|P05480|SRC_MOUSE, sp|P08103|HCK_MOUSE, sp|P25911|LYN_MOUSE, sp|P39688|FYN_MOUSE, sp|Q04736|YES_MOUSE
527.0 1 sp|P05532|KIT_MOUSE 1.7 979 109342 Mast/stem cell growth factor receptor Kit OS=Mus musculus GN=Kit PE=1 SV=3 6 0 0.000 2 2 1 1 0 0 0 0 0.000 0.000 0.000 0.000 sp|P05532|KIT_MOUSE, sp|P05622|PGFRB_MOUSE, sp|P09581|CSF1R_MOUSE, sp|P26618|PGFRA_MOUSE, sp|P35969|VGFR1_MOUSE, sp|P63085|MK01_MOUSE, sp|Q63844|MK03_MOUSE, sp|Q80Y86|MK15_MOUSE
528.0 1 sp|P05555|ITAM_MOUSE 9.9 1153 127479 Integrin alpha-M OS=Mus musculus GN=Itgam PE=1 SV=2 27 27 1.000 6 6 9 6 6 6 9 6 6.000 6.000 9.000 6.000
529.0 1 sp|P05622|PGFRB_MOUSE 2.8 1098 122804 Platelet-derived growth factor receptor beta OS=Mus musculus GN=Pdgfrb PE=1 SV=1 7 2 0.286 2 2 1 2 0 1 0 1 0.000 1.034 0.000 1.037 sp|P05532|KIT_MOUSE, sp|P05622|PGFRB_MOUSE, sp|P26618|PGFRA_MOUSE, sp|P35969|VGFR1_MOUSE, sp|P63085|MK01_MOUSE, sp|Q63844|MK03_MOUSE, sp|Q80Y86|MK15_MOUSE
530.0 1 sp|P05784|K1C18_MOUSE 52.5 423 47538 Keratin, type I cytoskeletal 18 OS=Mus musculus GN=Krt18 PE=1 SV=5 61 50 0.820 10 24 13 14 8 22 9 11 8.548 22.968 10.152 11.979 CONT_068|gi|1082558|pir||S41161, CONT_082|gi|125080|sp|P02533|K1CN_HUMAN, CONT_092|gi|71528|pir||KRHU0, CONT_094|gi|547751|sp|Q04695|K1CQ_HUMAN, CONT_156|gi|1363944|pir||JC4313, sp|P05784|K1C18_MOUSE, sp|P08730|K1C13_MOUSE, sp|P19001|K1C19_MOUSE, sp|Q61414|K1C15_MOUSE, sp|Q9QWL7|K1C17_MOUSE
531.0 1 sp|P05977|MYL1_MOUSE 38.8 188 20594 Myosin light chain 1/3, skeletal muscle isoform OS=Mus musculus GN=Myl1 PE=1 SV=2 23 9 0.391 7 6 6 4 3 3 2 1 4.096 3.714 2.600 1.402 sp|P05977|MYL1_MOUSE, sp|P09542|MYL3_MOUSE, sp|Q60605|MYL6_MOUSE
532.0 1 sp|P06151|LDHA_MOUSE 55.1 332 36498 L-lactate dehydrogenase A chain OS=Mus musculus GN=Ldha PE=1 SV=3 363 330 0.909 94 79 89 101 83 75 80 92 89.893 77.374 85.584 97.701 sp|P00342|LDHC_MOUSE, sp|P06151|LDHA_MOUSE, sp|P16125|LDHB_MOUSE
533.0 1 sp|P06330|HVM51_MOUSE 72.0 118 12934 Ig heavy chain V region AC38 205.12 OS=Mus musculus PE=1 SV=1 34 34 1.000 7 10 7 10 7 10 7 10 7.000 10.000 7.000 10.000
534.0 1 sp|P06537|GCR_MOUSE 14.2 783 86052 Glucocorticoid receptor OS=Mus musculus GN=Nr3c1 PE=1 SV=1 15 15 1.000 3 5 4 3 3 5 4 3 3.000 5.000 4.000 3.000
535.0 1 sp|P06683|CO9_MOUSE 47.8 548 62002 Complement component C9 OS=Mus musculus GN=C9 PE=1 SV=2 92 92 1.000 22 20 22 28 22 20 22 28 22.000 20.000 22.000 28.000
536.0 1 sp|P06684|CO5_MOUSE 27.5 1680 188876 Complement C5 OS=Mus musculus GN=C5 PE=1 SV=2 148 148 1.000 44 42 34 28 44 42 34 28 44.000 42.000 34.000 28.000
537.0 1 sp|P06728|APOA4_MOUSE 77.2 395 45029 Apolipoprotein A-IV OS=Mus musculus GN=Apoa4 PE=1 SV=3 305 305 1.000 76 72 80 77 76 72 80 77 76.000 72.000 80.000 77.000
538.0 1 sp|P06745|G6PI_MOUSE 47.5 558 62766 Glucose-6-phosphate isomerase OS=Mus musculus GN=Gpi PE=1 SV=4 194 194 1.000 57 49 47 41 57 49 47 41 57.000 49.000 47.000 41.000
539.0 1 sp|P06797|CATL1_MOUSE 24.6 334 37547 Cathepsin L1 OS=Mus musculus GN=Ctsl PE=1 SV=2 27 27 1.000 5 7 6 9 5 7 6 9 5.000 7.000 6.000 9.000
540.0 1 sp|P06800|PTPRC_MOUSE 12.7 1291 144603 Receptor-type tyrosine-protein phosphatase C OS=Mus musculus GN=Ptprc PE=1 SV=3 26 26 1.000 7 7 6 6 7 7 6 6 7.000 7.000 6.000 6.000
541.0 1 sp|P06801|MAOX_MOUSE 67.3 572 63953 NADP-dependent malic enzyme OS=Mus musculus GN=Me1 PE=1 SV=2 422 422 1.000 117 108 90 107 117 108 90 107 117.000 108.000 90.000 107.000
542.0 1 sp|P06802|ENPP1_MOUSE 8.7 906 103174 Ectonucleotide pyrophosphatase/phosphodiesterase family member 1 OS=Mus musculus GN=Enpp1 PE=1 SV=4 8 8 1.000 0 5 2 1 0 5 2 1 0.000 5.000 2.000 1.000
543.0 1 sp|P06869|UROK_MOUSE 14.3 433 48267 Urokinase-type plasminogen activator OS=Mus musculus GN=Plau PE=1 SV=1 7 7 1.000 4 0 1 2 4 0 1 2 4.000 0.000 1.000 2.000
544.0 1 sp|P06909|CFAH_MOUSE 52.3 1234 139136 Complement factor H OS=Mus musculus GN=Cfh PE=1 SV=2 264 264 1.000 67 64 64 69 67 64 64 69 67.000 64.000 64.000 69.000
545.0 1 sp|P07091|S10A4_MOUSE 16.8 101 11721 Protein S100-A4 OS=Mus musculus GN=S100a4 PE=1 SV=1 6 6 1.000 1 1 3 1 1 1 3 1 1.000 1.000 3.000 1.000
546.0 1 sp|P07146|TRY2_MOUSE 33.7 246 26203 Anionic trypsin-2 OS=Mus musculus GN=Prss2 PE=1 SV=1 27 27 1.000 3 12 5 7 3 12 5 7 3.000 12.000 5.000 7.000
547.0 1 sp|P07214|SPRC_MOUSE 33.8 302 34450 SPARC OS=Mus musculus GN=Sparc PE=1 SV=1 43 43 1.000 10 10 12 11 10 10 12 11 10.000 10.000 12.000 11.000
548.0 1 sp|P07309|TTHY_MOUSE 46.3 147 15776 Transthyretin OS=Mus musculus GN=Ttr PE=1 SV=1 101 101 1.000 24 21 26 30 24 21 26 30 24.000 21.000 26.000 30.000
549.0 1 sp|P07310|KCRM_MOUSE 49.3 381 43044 Creatine kinase M-type OS=Mus musculus GN=Ckm PE=1 SV=1 97 95 0.979 21 29 21 26 21 28 20 26 21.000 28.384 20.323 26.000 sp|P07310|KCRM_MOUSE, sp|Q04447|KCRB_MOUSE
550.0 1 sp|P07356|ANXA2_MOUSE 67.3 339 38676 Annexin A2 OS=Mus musculus GN=Anxa2 PE=1 SV=2 490 490 1.000 121 114 130 125 121 114 130 125 121.000 114.000 130.000 125.000
551.0 1 sp|P07724|ALBU_MOUSE 88.7 608 68692 Serum albumin OS=Mus musculus GN=Alb PE=1 SV=3 3883 1957 0.504 1030 950 975 928 522 496 472 467 1029.750 949.597 974.490 927.566 CONT_016|gi|113574|sp|P02769|ALBU_BOVIN, CONT_017|gi|113576|sp|P02768|ALBU_HUMAN, CONT_018|gi|113580|sp|P02770|ALBU_RAT, sp|P07724|ALBU_MOUSE
552.0 1 sp|P07742|RIR1_MOUSE 12.4 792 90209 Ribonucleoside-diphosphate reductase large subunit OS=Mus musculus GN=Rrm1 PE=1 SV=2 9 9 1.000 2 2 2 3 2 2 2 3 2.000 2.000 2.000 3.000
553.0 1 sp|P07758|A1AT1_MOUSE 52.8 413 46002 Alpha-1-antitrypsin 1-1 OS=Mus musculus GN=Serpina1a PE=1 SV=4 538 8 0.015 135 140 117 146 1 3 2 2 37.371 54.090 38.010 46.557 sp|P07758|A1AT1_MOUSE, sp|P22599|A1AT2_MOUSE, sp|Q00896|A1AT3_MOUSE, sp|Q00897|A1AT4_MOUSE, sp|Q00898|A1AT5_MOUSE
554.0 1 sp|P07759|SPA3K_MOUSE 37.8 418 46879 Serine protease inhibitor A3K OS=Mus musculus GN=Serpina3k PE=1 SV=2 1519 1183 0.779 388 347 404 380 299 276 311 297 382.204 342.639 399.254 376.191 sp|P07759|SPA3K_MOUSE, sp|P29621|SPA3C_MOUSE, sp|Q03734|SPA3M_MOUSE, sp|Q91WP6|SPA3N_MOUSE
555.0 1 sp|P07901|HS90A_MOUSE 60.7 733 84787 Heat shock protein HSP 90-alpha OS=Mus musculus GN=Hsp90aa1 PE=1 SV=4 437 258 0.590 119 102 105 111 67 58 66 67 93.279 76.574 83.964 87.550 sp|P07901|HS90A_MOUSE, sp|P11499|HS90B_MOUSE, sp|Q9CQN1|TRAP1_MOUSE
556.0 1 sp|P08003|PDIA4_MOUSE 49.1 638 71982 Protein disulfide-isomerase A4 OS=Mus musculus GN=Pdia4 PE=1 SV=3 302 302 1.000 75 76 77 74 75 76 77 74 75.000 76.000 77.000 74.000
557.0 1 sp|P08030|APT_MOUSE 25.6 180 19724 Adenine phosphoribosyltransferase OS=Mus musculus GN=Aprt PE=1 SV=2 18 18 1.000 4 5 4 5 4 5 4 5 4.000 5.000 4.000 5.000
558.0 1 sp|P08032|SPTA1_MOUSE 45.3 2415 279862 Spectrin alpha chain, erythrocytic 1 OS=Mus musculus GN=Spta1 PE=1 SV=3 298 283 0.950 63 80 86 69 60 76 81 66 61.342 77.660 82.873 67.335 REV_Q8CJ40, sp|P08032|SPTA1_MOUSE, sp|P16546|SPTN1_MOUSE
559.0 1 sp|P08071|TRFL_MOUSE 14.7 707 77837 Lactotransferrin OS=Mus musculus GN=Ltf PE=1 SV=4 17 17 1.000 5 6 4 2 5 6 4 2 5.000 6.000 4.000 2.000
560.0 1 sp|P08074|CBR2_MOUSE 50.8 244 25958 Carbonyl reductase [NADPH] 2 OS=Mus musculus GN=Cbr2 PE=1 SV=1 76 75 0.987 16 21 19 20 16 21 18 20 16.000 21.000 18.643 20.000 sp|P08074|CBR2_MOUSE, sp|Q91X52|DCXR_MOUSE
561.0 1 sp|P08101|FCGR2_MOUSE 7.0 330 36695 Low affinity immunoglobulin gamma Fc region receptor II OS=Mus musculus GN=Fcgr2 PE=1 SV=2 6 6 1.000 1 2 1 2 1 2 1 2 1.000 2.000 1.000 2.000
562.0 1 sp|P08103|HCK_MOUSE 8.6 524 59129 Tyrosine-protein kinase HCK OS=Mus musculus GN=Hck PE=1 SV=4 19 1 0.053 6 4 6 3 0 0 1 0 0.000 0.000 1.248 0.000 sp|P05480|SRC_MOUSE, sp|P08103|HCK_MOUSE, sp|P25911|LYN_MOUSE, sp|P30285|CDK4_MOUSE, sp|P39688|FYN_MOUSE, sp|P49615|CDK5_MOUSE, sp|P97377|CDK2_MOUSE, sp|Q04735|CDK16_MOUSE, sp|Q04736|YES_MOUSE, sp|Q64261|CDK6_MOUSE, sp|Q8K0D0|CDK17_MOUSE, sp|Q99J95|CDK9_MOUSE
563.0 1 sp|P08113|ENPL_MOUSE 50.4 802 92475 Endoplasmin OS=Mus musculus GN=Hsp90b1 PE=1 SV=2 478 458 0.958 115 127 118 118 111 124 112 111 113.537 125.851 115.594 115.223 sp|P08113|ENPL_MOUSE, sp|P11499|HS90B_MOUSE
564.0 1 sp|P08121|CO3A1_MOUSE 8.0 1464 138942 Collagen alpha-1(III) chain OS=Mus musculus GN=Col3a1 PE=1 SV=4 30 30 1.000 4 7 9 10 4 7 9 10 4.000 7.000 9.000 10.000
565.0 1 sp|P08122|CO4A2_MOUSE 6.0 1707 167323 Collagen alpha-2(IV) chain OS=Mus musculus GN=Col4a2 PE=1 SV=4 27 27 1.000 7 7 6 7 7 7 6 7 7.000 7.000 6.000 7.000
566.0 1 sp|P08207|S10AA_MOUSE 27.8 97 11186 Protein S100-A10 OS=Mus musculus GN=S100a10 PE=1 SV=2 48 48 1.000 11 10 15 12 11 10 15 12 11.000 10.000 15.000 12.000
567.0 1 sp|P08226|APOE_MOUSE 40.8 311 35866 Apolipoprotein E OS=Mus musculus GN=Apoe PE=1 SV=2 78 78 1.000 18 19 17 24 18 19 17 24 18.000 19.000 17.000 24.000
568.0 1 sp|P08249|MDHM_MOUSE 69.5 338 35611 Malate dehydrogenase, mitochondrial OS=Mus musculus GN=Mdh2 PE=1 SV=3 397 397 1.000 104 95 97 101 104 95 97 101 104.000 95.000 97.000 101.000
569.0 1 sp|P08556|RASN_MOUSE 57.7 189 21199 GTPase NRas OS=Mus musculus GN=Nras PE=1 SV=1 21 1 0.048 5 5 5 6 0 0 1 0 0.000 1.000 2.667 0.000 sp|P08556|RASN_MOUSE, sp|P32883|RASK_MOUSE, sp|Q61411|RASH_MOUSE
570.0 1 sp|P08607|C4BPA_MOUSE 16.6 469 51523 C4b-binding protein OS=Mus musculus GN=C4bpa PE=1 SV=3 31 31 1.000 7 7 10 7 7 7 10 7 7.000 7.000 10.000 7.000
571.0 1 sp|P08730|K1C13_MOUSE 12.6 437 47754 Keratin, type I cytoskeletal 13 OS=Mus musculus GN=Krt13 PE=1 SV=2 24 0 0.000 4 8 5 7 0 0 0 0 0.000 0.000 0.000 0.000 CONT_068|gi|1082558|pir||S41161, CONT_082|gi|125080|sp|P02533|K1CN_HUMAN, CONT_092|gi|71528|pir||KRHU0, CONT_094|gi|547751|sp|Q04695|K1CQ_HUMAN, CONT_156|gi|1363944|pir||JC4313, sp|P05784|K1C18_MOUSE, sp|P08730|K1C13_MOUSE, sp|P19001|K1C19_MOUSE, sp|Q61414|K1C15_MOUSE, sp|Q61781|K1C14_MOUSE, sp|Q9QWL7|K1C17_MOUSE
572.0 1 sp|P08752|GNAI2_MOUSE 54.6 355 40489 Guanine nucleotide-binding protein G(i) subunit alpha-2 OS=Mus musculus GN=Gnai2 PE=1 SV=5 109 73 0.670 25 30 27 27 17 18 18 20 21.148 24.390 22.876 23.773 sp|B2RSH2|GNAI1_MOUSE, sp|P08752|GNAI2_MOUSE, sp|P18872|GNAO_MOUSE, sp|P27601|GNA13_MOUSE, sp|P63094|GNAS2_MOUSE, sp|Q9DC51|GNAI3_MOUSE
573.0 1 sp|P08905|LYZ2_MOUSE 40.5 148 16689 Lysozyme C-2 OS=Mus musculus GN=Lyz2 PE=1 SV=2 23 23 1.000 4 6 6 7 4 6 6 7 4.000 6.000 6.000 7.000
574.0 1 sp|P09036|ISK1_MOUSE 40.0 80 8488 Serine protease inhibitor Kazal-type 1 OS=Mus musculus GN=Spink1 PE=1 SV=1 6 6 1.000 2 1 1 2 2 1 1 2 2.000 1.000 1.000 2.000
575.0 1 sp|P09041|PGK2_MOUSE 59.5 417 44852 Phosphoglycerate kinase 2 OS=Mus musculus GN=Pgk2 PE=1 SV=4 118 79 0.669 21 37 27 33 13 28 18 20 14.529 31.360 20.314 23.714 sp|P09041|PGK2_MOUSE, sp|P09411|PGK1_MOUSE
576.0 1 sp|P09055|ITB1_MOUSE 32.5 798 88231 Integrin beta-1 OS=Mus musculus GN=Itgb1 PE=1 SV=1 112 112 1.000 27 25 32 28 27 25 32 28 27.000 25.000 32.000 28.000
577.0 1 sp|P09103|PDIA1_MOUSE 56.0 509 57058 Protein disulfide-isomerase OS=Mus musculus GN=P4hb PE=1 SV=2 343 343 1.000 91 88 75 89 91 88 75 89 91.000 88.000 75.000 89.000
578.0 1 sp|P09405|NUCL_MOUSE 37.6 707 76722 Nucleolin OS=Mus musculus GN=Ncl PE=1 SV=2 157 157 1.000 36 37 43 41 36 37 43 41 36.000 37.000 43.000 41.000
579.0 1 sp|P09411|PGK1_MOUSE 67.6 417 44550 Phosphoglycerate kinase 1 OS=Mus musculus GN=Pgk1 PE=1 SV=4 243 204 0.840 63 56 61 63 55 47 52 50 61.471 52.640 58.686 59.286 sp|P09041|PGK2_MOUSE, sp|P09411|PGK1_MOUSE
580.0 1 sp|P09470|ACE_MOUSE 25.7 1312 150916 Angiotensin-converting enzyme OS=Mus musculus GN=Ace PE=1 SV=3 83 83 1.000 17 24 20 22 17 24 20 22 17.000 24.000 20.000 22.000
581.0 1 sp|P09528|FRIH_MOUSE 53.8 182 21066 Ferritin heavy chain OS=Mus musculus GN=Fth1 PE=1 SV=2 56 56 1.000 16 11 12 17 16 11 12 17 16.000 11.000 12.000 17.000
582.0 1 sp|P09542|MYL3_MOUSE 39.2 204 22421 Myosin light chain 3 OS=Mus musculus GN=Myl3 PE=1 SV=4 23 9 0.391 5 6 7 5 1 3 3 2 1.365 3.714 3.900 2.805 sp|P05977|MYL1_MOUSE, sp|P09542|MYL3_MOUSE, sp|Q60605|MYL6_MOUSE
583.0 1 sp|P09581|CSF1R_MOUSE 14.0 977 109178 Macrophage colony-stimulating factor 1 receptor OS=Mus musculus GN=Csf1r PE=1 SV=3 34 32 0.941 7 9 10 8 7 8 10 7 7.000 9.000 10.000 8.000 sp|P05532|KIT_MOUSE, sp|P09581|CSF1R_MOUSE, sp|Q61532|MK06_MOUSE, sp|Q62406|IRAK1_MOUSE
584.0 1 sp|P09671|SODM_MOUSE 41.9 222 24603 Superoxide dismutase [Mn], mitochondrial OS=Mus musculus GN=Sod2 PE=1 SV=3 58 58 1.000 15 13 16 14 15 13 16 14 15.000 13.000 16.000 14.000
585.0 1 sp|P09803|CADH1_MOUSE 7.5 884 98255 Cadherin-1 OS=Mus musculus GN=Cdh1 PE=1 SV=1 5 5 1.000 0 3 2 0 0 3 2 0 0.000 3.000 2.000 0.000
586.0 1 sp|P09925|SURF1_MOUSE 13.7 306 34798 Surfeit locus protein 1 OS=Mus musculus GN=Surf1 PE=1 SV=3 10 10 1.000 4 2 2 2 4 2 2 2 4.000 2.000 2.000 2.000
587.0 1 sp|P0C0S6|H2AZ_MOUSE 25.8 128 13553 Histone H2A.Z OS=Mus musculus GN=H2afz PE=1 SV=2 22 8 0.364 6 7 4 5 2 3 1 2 2.533 3.750 1.231 2.462 sp|P0C0S6|H2AZ_MOUSE, sp|P22752|H2A1_MOUSE, sp|P27661|H2AX_MOUSE
587.01 1 sp|Q3THW5|H2AV_MOUSE redundant 25.8 128 13509 Histone H2A.V OS=Mus musculus GN=H2afv PE=1 SV=3 22 8 0.364 6 7 4 5 2 3 1 2 2.533 3.750 1.231 2.462 sp|P0C0S6|H2AZ_MOUSE, sp|P22752|H2A1_MOUSE, sp|P27661|H2AX_MOUSE
588.0 1 sp|P0C605|KGP1_MOUSE 14.0 671 76350 cGMP-dependent protein kinase 1 OS=Mus musculus GN=Prkg1 PE=1 SV=1 22 20 0.909 5 6 5 6 5 5 5 5 5.000 5.714 5.000 5.833 sp|P0C605|KGP1_MOUSE, sp|Q61410|KGP2_MOUSE
589.0 1 sp|P0C6F1|DYH2_MOUSE 0.4 4456 511559 Dynein heavy chain 2, axonemal OS=Mus musculus GN=Dnah2 PE=1 SV=1 6 2 0.333 1 1 2 2 0 0 1 1 0.000 0.000 1.333 1.500 sp|P0C6F1|DYH2_MOUSE, sp|Q9JHH6|CBPB2_MOUSE
590.0 1 sp|P0CW02|LY6C1_MOUSE 28.2 131 14192 Lymphocyte antigen 6C1 OS=Mus musculus GN=Ly6c1 PE=2 SV=1 9 9 1.000 2 3 2 2 2 3 2 2 2.000 3.000 2.000 2.000
591.0 1 sp|P0DOV1|IFI5B_MOUSE 32.5 425 46977 Interferon-activable protein 205-B OS=Mus musculus GN=Mnda PE=1 SV=1 32 4 0.125 6 8 9 9 1 1 1 1 2.292 3.018 3.067 4.111 sp|D0QMC3|MNDAL_MOUSE, sp|P0DOV1|IFI5B_MOUSE, sp|P0DOV2|IFI4_MOUSE, sp|Q8CGE8|IFI5A_MOUSE
592.0 1 sp|P0DOV2|IFI4_MOUSE 28.3 619 69437 Interferon-activable protein 204 OS=Mus musculus GN=Ifi204 PE=1 SV=1 39 29 0.744 9 12 8 10 7 9 5 8 8.750 11.410 7.381 9.689 sp|D0QMC3|MNDAL_MOUSE, sp|P0DOV1|IFI5B_MOUSE, sp|P0DOV2|IFI4_MOUSE, sp|Q8CGE8|IFI5A_MOUSE
593.0 1 sp|P10076|ZFP26_MOUSE 3.6 861 97988 Zinc finger protein 26 OS=Mus musculus GN=Zfp26 PE=2 SV=2 5 3 0.600 2 0 2 1 2 0 1 0 2.000 0.000 2.000 0.000 sp|P10076|ZFP26_MOUSE, sp|P10078|ZFP28_MOUSE
594.0 1 sp|P10078|ZFP28_MOUSE 4.6 825 93308 Zinc finger protein 28 OS=Mus musculus GN=Zfp28 PE=2 SV=3 4 2 0.500 0 1 1 2 0 1 0 1 0.000 1.000 0.000 2.000 sp|P10076|ZFP26_MOUSE, sp|P10078|ZFP28_MOUSE
595.0 1 sp|P10107|ANXA1_MOUSE 78.0 346 38734 Annexin A1 OS=Mus musculus GN=Anxa1 PE=1 SV=2 472 472 1.000 123 106 123 120 123 106 123 120 123.000 106.000 123.000 120.000
596.0 1 sp|P10126|EF1A1_MOUSE 55.6 462 50113 Elongation factor 1-alpha 1 OS=Mus musculus GN=Eef1a1 PE=1 SV=3 433 433 1.000 113 122 101 97 113 122 101 97 113.000 122.000 101.000 97.000
597.0 1 sp|P10404|ENV1_MOUSE 7.6 641 69612 MLV-related proviral Env polyprotein OS=Mus musculus PE=1 SV=3 4 4 1.000 1 2 1 0 1 2 1 0 1.000 2.000 1.000 0.000
598.0 1 sp|P10493|NID1_MOUSE 38.0 1245 136536 Nidogen-1 OS=Mus musculus GN=Nid1 PE=1 SV=2 249 241 0.968 61 62 58 68 59 61 55 66 60.044 61.570 56.500 67.100 sp|O88322|NID2_MOUSE, sp|P10493|NID1_MOUSE
599.0 1 sp|P10518|HEM2_MOUSE 51.2 330 36023 Delta-aminolevulinic acid dehydratase OS=Mus musculus GN=Alad PE=1 SV=1 82 82 1.000 17 26 18 21 17 26 18 21 17.000 26.000 18.000 21.000
600.0 1 sp|P10605|CATB_MOUSE 43.7 339 37279 Cathepsin B OS=Mus musculus GN=Ctsb PE=1 SV=2 106 106 1.000 34 16 28 28 34 16 28 28 34.000 16.000 28.000 28.000
601.0 1 sp|P10630|IF4A2_MOUSE 56.0 407 46402 Eukaryotic initiation factor 4A-II OS=Mus musculus GN=Eif4a2 PE=1 SV=2 139 45 0.324 38 33 30 38 10 13 9 13 18.597 20.356 14.681 22.900 sp|P10630|IF4A2_MOUSE, sp|P60843|IF4A1_MOUSE, sp|Q91VC3|IF4A3_MOUSE
602.0 1 sp|P10637|TAU_MOUSE 4.0 733 76243 Microtubule-associated protein tau OS=Mus musculus GN=Mapt PE=1 SV=3 3 3 1.000 1 2 0 0 1 2 0 0 1.000 2.000 0.000 0.000
603.0 1 sp|P10639|THIO_MOUSE 74.3 105 11675 Thioredoxin OS=Mus musculus GN=Txn PE=1 SV=3 94 94 1.000 27 23 21 23 27 23 21 23 27.000 23.000 21.000 23.000
604.0 1 sp|P10648|GSTA2_MOUSE 20.7 222 25542 Glutathione S-transferase A2 OS=Mus musculus GN=Gsta2 PE=1 SV=3 9 1 0.111 3 3 2 1 0 1 0 0 1.000 2.043 0.500 0.500 sp|P10648|GSTA2_MOUSE, sp|P13745|GSTA1_MOUSE, sp|P30115|GSTA3_MOUSE
605.0 1 sp|P10649|GSTM1_MOUSE 72.0 218 25970 Glutathione S-transferase Mu 1 OS=Mus musculus GN=Gstm1 PE=1 SV=2 402 292 0.726 109 97 97 99 80 67 69 76 99.782 85.743 87.918 91.877 sp|O35660|GSTM6_MOUSE, sp|P10649|GSTM1_MOUSE, sp|P15626|GSTM2_MOUSE, sp|P19639|GSTM3_MOUSE, sp|P48774|GSTM5_MOUSE, sp|Q80W21|GSTM7_MOUSE
606.0 1 sp|P10711|TCEA1_MOUSE 32.6 301 33880 Transcription elongation factor A protein 1 OS=Mus musculus GN=Tcea1 PE=1 SV=2 13 13 1.000 6 2 2 3 6 2 2 3 6.000 2.000 2.000 3.000
607.0 1 sp|P10810|CD14_MOUSE 14.2 366 39203 Monocyte differentiation antigen CD14 OS=Mus musculus GN=Cd14 PE=1 SV=1 12 12 1.000 3 2 3 4 3 2 3 4 3.000 2.000 3.000 4.000
608.0 1 sp|P10833|RRAS_MOUSE 51.4 218 23764 Ras-related protein R-Ras OS=Mus musculus GN=Rras PE=1 SV=1 79 57 0.722 21 17 21 20 14 13 15 15 18.900 15.476 19.286 18.261 sp|P10833|RRAS_MOUSE, sp|P62071|RRAS2_MOUSE
609.0 1 sp|P10852|4F2_MOUSE 24.7 526 58336 4F2 cell-surface antigen heavy chain OS=Mus musculus GN=Slc3a2 PE=1 SV=1 50 50 1.000 13 12 13 12 13 12 13 12 13.000 12.000 13.000 12.000
610.0 1 sp|P10853|H2B1F_MOUSE 35.7 126 13936 Histone H2B type 1-F/J/L OS=Mus musculus GN=Hist1h2bf PE=1 SV=2 130 33 0.254 34 32 28 36 11 6 7 9 33.667 27.857 25.375 35.400 sp|P10853|H2B1F_MOUSE, sp|P70696|H2B1A_MOUSE, sp|Q64524|H2B2E_MOUSE
610.01 1 sp|P10854|H2B1M_MOUSE redundant 35.7 126 13936 Histone H2B type 1-M OS=Mus musculus GN=Hist1h2bm PE=1 SV=2 130 33 0.254 34 32 28 36 11 6 7 9 33.667 27.857 25.375 35.400 sp|P10853|H2B1F_MOUSE, sp|P70696|H2B1A_MOUSE, sp|Q64524|H2B2E_MOUSE
610.02 1 sp|Q64475|H2B1B_MOUSE redundant 35.7 126 13952 Histone H2B type 1-B OS=Mus musculus GN=Hist1h2bb PE=1 SV=3 130 33 0.254 34 32 28 36 11 6 7 9 33.667 27.857 25.375 35.400 sp|P10853|H2B1F_MOUSE, sp|P70696|H2B1A_MOUSE, sp|Q64524|H2B2E_MOUSE
610.03 1 sp|Q64478|H2B1H_MOUSE redundant 35.7 126 13920 Histone H2B type 1-H OS=Mus musculus GN=Hist1h2bh PE=1 SV=3 130 33 0.254 34 32 28 36 11 6 7 9 33.667 27.857 25.375 35.400 sp|P10853|H2B1F_MOUSE, sp|P70696|H2B1A_MOUSE, sp|Q64524|H2B2E_MOUSE
610.04 1 sp|Q64525|H2B2B_MOUSE redundant 35.7 126 13920 Histone H2B type 2-B OS=Mus musculus GN=Hist2h2bb PE=1 SV=3 130 33 0.254 34 32 28 36 11 6 7 9 33.667 27.857 25.375 35.400 sp|P10853|H2B1F_MOUSE, sp|P70696|H2B1A_MOUSE, sp|Q64524|H2B2E_MOUSE
610.05 1 sp|Q6ZWY9|H2B1C_MOUSE redundant 35.7 126 13906 Histone H2B type 1-C/E/G OS=Mus musculus GN=Hist1h2bc PE=1 SV=3 130 33 0.254 34 32 28 36 11 6 7 9 33.667 27.857 25.375 35.400 sp|P10853|H2B1F_MOUSE, sp|P70696|H2B1A_MOUSE, sp|Q64524|H2B2E_MOUSE
610.06 1 sp|Q8CGP1|H2B1K_MOUSE redundant 35.7 126 13920 Histone H2B type 1-K OS=Mus musculus GN=Hist1h2bk PE=1 SV=3 130 33 0.254 34 32 28 36 11 6 7 9 33.667 27.857 25.375 35.400 sp|P10853|H2B1F_MOUSE, sp|P70696|H2B1A_MOUSE, sp|Q64524|H2B2E_MOUSE
610.07 1 sp|Q8CGP2|H2B1P_MOUSE redundant 35.7 126 13992 Histone H2B type 1-P OS=Mus musculus GN=Hist1h2bp PE=1 SV=3 130 33 0.254 34 32 28 36 11 6 7 9 33.667 27.857 25.375 35.400 sp|P10853|H2B1F_MOUSE, sp|P70696|H2B1A_MOUSE, sp|Q64524|H2B2E_MOUSE
611.0 1 sp|P10922|H10_MOUSE 16.0 194 20861 Histone H1.0 OS=Mus musculus GN=H1f0 PE=2 SV=4 18 18 1.000 5 5 3 5 5 5 3 5 5.000 5.000 3.000 5.000
612.0 1 sp|P11031|TCP4_MOUSE 46.5 127 14427 Activated RNA polymerase II transcriptional coactivator p15 OS=Mus musculus GN=Sub1 PE=1 SV=3 31 31 1.000 8 8 5 10 8 8 5 10 8.000 8.000 5.000 10.000
613.0 1 sp|P11087|CO1A1_MOUSE 14.8 1453 138031 Collagen alpha-1(I) chain OS=Mus musculus GN=Col1a1 PE=1 SV=4 43 43 1.000 13 12 9 9 13 12 9 9 13.000 12.000 9.000 9.000
614.0 1 sp|P11103|PARP1_MOUSE 13.8 1013 113098 Poly [ADP-ribose] polymerase 1 OS=Mus musculus GN=Parp1 PE=1 SV=3 26 26 1.000 9 4 6 7 9 4 6 7 9.000 4.000 6.000 7.000
615.0 1 sp|P11152|LIPL_MOUSE 17.7 474 53109 Lipoprotein lipase OS=Mus musculus GN=Lpl PE=1 SV=3 30 30 1.000 6 6 10 8 6 6 10 8 6.000 6.000 10.000 8.000
616.0 1 sp|P11276|FINC_MOUSE 32.4 2477 272535 Fibronectin OS=Mus musculus GN=Fn1 PE=1 SV=4 257 257 1.000 65 65 61 66 65 65 61 66 65.000 65.000 61.000 66.000
617.0 1 sp|P11352|GPX1_MOUSE 83.1 201 22329 Glutathione peroxidase 1 OS=Mus musculus GN=Gpx1 PE=1 SV=2 222 222 1.000 59 47 58 58 59 47 58 58 59.000 47.000 58.000 58.000
618.0 1 sp|P11404|FABPH_MOUSE 35.3 133 14819 Fatty acid-binding protein, heart OS=Mus musculus GN=Fabp3 PE=1 SV=5 24 24 1.000 6 6 6 6 6 6 6 6 6.000 6.000 6.000 6.000
619.0 1 sp|P11438|LAMP1_MOUSE 8.4 406 43865 Lysosome-associated membrane glycoprotein 1 OS=Mus musculus GN=Lamp1 PE=1 SV=2 20 20 1.000 4 7 5 4 4 7 5 4 4.000 7.000 5.000 4.000
620.0 1 sp|P11499|HS90B_MOUSE 62.7 724 83280 Heat shock protein HSP 90-beta OS=Mus musculus GN=Hsp90ab1 PE=1 SV=3 488 289 0.592 120 124 120 124 64 77 75 73 90.565 102.808 97.820 98.167 sp|P07901|HS90A_MOUSE, sp|P08113|ENPL_MOUSE, sp|P11499|HS90B_MOUSE, sp|Q9CQN1|TRAP1_MOUSE
621.0 1 sp|P11531|DMD_MOUSE 2.2 3678 425827 Dystrophin OS=Mus musculus GN=Dmd PE=1 SV=3 14 14 1.000 3 5 3 3 3 5 3 3 3.000 5.000 3.000 3.000
622.0 1 sp|P11588|MUP1_MOUSE 70.0 180 20648 Major urinary protein 1 OS=Mus musculus GN=Mup1 PE=1 SV=1 95 5 0.053 24 26 22 23 2 1 1 1 12.900 9.417 7.833 8.333 sp|A2BIM8|MUP18_MOUSE, sp|P11588|MUP1_MOUSE, sp|P11589|MUP2_MOUSE, sp|Q5FW60|MUP20_MOUSE
623.0 1 sp|P11589|MUP2_MOUSE 63.3 180 20663 Major urinary protein 2 OS=Mus musculus GN=Mup2 PE=1 SV=1 93 4 0.043 23 25 22 23 1 1 1 1 6.450 8.917 7.833 8.333 sp|A2BIM8|MUP18_MOUSE, sp|P11588|MUP1_MOUSE, sp|P11589|MUP2_MOUSE, sp|Q5FW60|MUP20_MOUSE
624.0 1 sp|P11609|CD1D1_MOUSE 10.7 336 38554 Antigen-presenting glycoprotein CD1d1 OS=Mus musculus GN=Cd1d1 PE=1 SV=3 11 11 1.000 1 3 3 4 1 3 3 4 1.000 3.000 3.000 4.000
625.0 1 sp|P11672|NGAL_MOUSE 14.5 200 22875 Neutrophil gelatinase-associated lipocalin OS=Mus musculus GN=Lcn2 PE=1 SV=1 9 9 1.000 2 4 1 2 2 4 1 2 2.000 4.000 1.000 2.000
626.0 1 sp|P11679|K2C8_MOUSE 55.3 490 54565 Keratin, type II cytoskeletal 8 OS=Mus musculus GN=Krt8 PE=1 SV=4 141 41 0.291 39 35 29 38 12 12 5 12 28.088 30.604 18.973 29.797 CONT_049|gi|88052|pir||A32568, CONT_064|gi|254622|bbs|112352, CONT_070|gi|547752|sp|Q01546|K22O_HUMAN, CONT_073|gi|87303|pir||JS0487, CONT_079|gi|125105|sp|P13647|K2C5_HUMAN, CONT_088|gi|1346343|sp|P04264|K2C1_HUMAN, CONT_089|gi|71536|pir||KRHU2, CONT_102|gi|88044|pir||S01068, CONT_120|gi|125108|sp|P08729|K2C7_HUMAN, CONT_133|gi|1346349|sp|P48669|K2CF_HUMAN, CONT_172|gi|1903216|gnl|PID|e255375, sp|P03995|GFAP_MOUSE, sp|P04104|K2C1_MOUSE, sp|P11679|K2C8_MOUSE, sp|P15331|PERI_MOUSE, sp|P20152|VIME_MOUSE, sp|P31001|DESM_MOUSE, sp|Q3TTY5|K22E_MOUSE, sp|Q3UV17|K22O_MOUSE, sp|Q6IFZ6|K2C1B_MOUSE, sp|Q6IFZ9|K2C74_MOUSE, sp|Q6NXH9|K2C73_MOUSE, sp|Q8BGZ7|K2C75_MOUSE, sp|Q922U2|K2C5_MOUSE, sp|Q9DCV7|K2C7_MOUSE
627.0 1 sp|P11680|PROP_MOUSE 14.2 464 50327 Properdin OS=Mus musculus GN=Cfp PE=2 SV=2 11 11 1.000 3 2 2 4 3 2 2 4 3.000 2.000 2.000 4.000
628.0 1 sp|P11688|ITA5_MOUSE 15.9 1053 115042 Integrin alpha-5 OS=Mus musculus GN=Itga5 PE=1 SV=3 31 31 1.000 9 7 7 8 9 7 7 8 9.000 7.000 7.000 8.000
629.0 1 sp|P11725|OTC_MOUSE 35.6 354 39764 Ornithine carbamoyltransferase, mitochondrial OS=Mus musculus GN=Otc PE=1 SV=1 43 43 1.000 10 11 12 10 10 11 12 10 10.000 11.000 12.000 10.000
630.0 1 sp|P11835|ITB2_MOUSE 19.5 771 85025 Integrin beta-2 OS=Mus musculus GN=Itgb2 PE=1 SV=2 33 33 1.000 9 7 8 9 9 7 8 9 9.000 7.000 8.000 9.000
631.0 1 sp|P11859|ANGT_MOUSE 24.3 477 51990 Angiotensinogen OS=Mus musculus GN=Agt PE=1 SV=1 43 43 1.000 12 12 10 9 12 12 10 9 12.000 12.000 10.000 9.000
632.0 1 sp|P11930|NUD19_MOUSE 30.8 357 40320 Nucleoside diphosphate-linked moiety X motif 19 OS=Mus musculus GN=Nudt19 PE=1 SV=2 25 25 1.000 6 8 4 7 6 8 4 7 6.000 8.000 4.000 7.000
633.0 1 sp|P11983|TCPA_MOUSE 48.9 556 60448 T-complex protein 1 subunit alpha OS=Mus musculus GN=Tcp1 PE=1 SV=3 161 161 1.000 45 36 39 41 45 36 39 41 45.000 36.000 39.000 41.000
634.0 1 sp|P12023|A4_MOUSE 15.5 770 86721 Amyloid beta A4 protein OS=Mus musculus GN=App PE=1 SV=3 18 18 1.000 4 5 4 5 4 5 4 5 4.000 5.000 4.000 5.000
635.0 1 sp|P12246|SAMP_MOUSE 23.2 224 26247 Serum amyloid P-component OS=Mus musculus GN=Apcs PE=1 SV=2 18 18 1.000 4 5 4 5 4 5 4 5 4.000 5.000 4.000 5.000
636.0 1 sp|P12265|BGLR_MOUSE 20.7 648 74194 Beta-glucuronidase OS=Mus musculus GN=Gusb PE=1 SV=2 52 52 1.000 11 13 15 13 11 13 15 13 11.000 13.000 15.000 13.000
637.0 1 sp|P12367|KAP2_MOUSE 47.4 401 45389 cAMP-dependent protein kinase type II-alpha regulatory subunit OS=Mus musculus GN=Prkar2a PE=1 SV=2 82 59 0.720 17 22 21 22 13 15 16 15 13.743 16.522 17.176 16.522 sp|P12367|KAP2_MOUSE, sp|P31324|KAP3_MOUSE
638.0 1 sp|P12382|PFKAL_MOUSE 26.9 780 85359 ATP-dependent 6-phosphofructokinase, liver type OS=Mus musculus GN=Pfkl PE=1 SV=4 98 65 0.663 23 28 24 23 15 20 15 15 18.281 23.843 18.779 17.859 sp|P12382|PFKAL_MOUSE, sp|P47857|PFKAM_MOUSE, sp|Q9WUA3|PFKAP_MOUSE
639.0 1 sp|P12710|FABPL_MOUSE 65.4 127 14245 Fatty acid-binding protein, liver OS=Mus musculus GN=Fabp1 PE=1 SV=2 123 123 1.000 30 22 40 31 30 22 40 31 30.000 22.000 40.000 31.000
640.0 1 sp|P12787|COX5A_MOUSE 27.4 146 16101 Cytochrome c oxidase subunit 5A, mitochondrial OS=Mus musculus GN=Cox5a PE=1 SV=2 20 20 1.000 5 5 6 4 5 5 6 4 5.000 5.000 6.000 4.000
641.0 1 sp|P12815|PDCD6_MOUSE 40.8 191 21867 Programmed cell death protein 6 OS=Mus musculus GN=Pdcd6 PE=1 SV=2 21 21 1.000 4 7 6 4 4 7 6 4 4.000 7.000 6.000 4.000
642.0 1 sp|P12970|RL7A_MOUSE 42.1 266 29976 60S ribosomal protein L7a OS=Mus musculus GN=Rpl7a PE=1 SV=2 71 71 1.000 18 15 16 22 18 15 16 22 18.000 15.000 16.000 22.000
643.0 1 sp|P13020|GELS_MOUSE 52.9 780 85941 Gelsolin OS=Mus musculus GN=Gsn PE=1 SV=3 382 380 0.995 95 100 88 99 94 99 88 99 94.931 99.917 88.000 99.000
644.0 1 sp|P13439|UMPS_MOUSE 17.3 481 52292 Uridine 5'-monophosphate synthase OS=Mus musculus GN=Umps PE=1 SV=3 16 16 1.000 5 5 2 4 5 5 2 4 5.000 5.000 2.000 4.000
645.0 1 sp|P13516|ACOD1_MOUSE 11.0 355 41046 Acyl-CoA desaturase 1 OS=Mus musculus GN=Scd1 PE=1 SV=2 33 33 1.000 9 6 8 10 9 6 8 10 9.000 6.000 8.000 10.000
646.0 1 sp|P13595|NCAM1_MOUSE 10.5 1115 119426 Neural cell adhesion molecule 1 OS=Mus musculus GN=Ncam1 PE=1 SV=3 11 11 1.000 2 5 3 1 2 5 3 1 2.000 5.000 3.000 1.000
647.0 1 sp|P13597|ICAM1_MOUSE 16.6 537 58844 Intercellular adhesion molecule 1 OS=Mus musculus GN=Icam1 PE=1 SV=1 32 32 1.000 9 7 7 9 9 7 7 9 9.000 7.000 7.000 9.000
648.0 1 sp|P13634|CAH1_MOUSE 60.5 261 28330 Carbonic anhydrase 1 OS=Mus musculus GN=Ca1 PE=1 SV=4 81 81 1.000 19 22 21 19 19 22 21 19 19.000 22.000 21.000 19.000
649.0 1 sp|P13707|GPDA_MOUSE 71.6 349 37572 Glycerol-3-phosphate dehydrogenase [NAD(+)], cytoplasmic OS=Mus musculus GN=Gpd1 PE=1 SV=3 510 500 0.980 144 116 123 127 140 116 121 123 143.636 116.000 122.754 126.618 sp|P13707|GPDA_MOUSE, sp|Q3ULJ0|GPD1L_MOUSE
650.0 1 sp|P13745|GSTA1_MOUSE 21.1 223 25608 Glutathione S-transferase A1 OS=Mus musculus GN=Gsta1 PE=1 SV=2 9 0 0.000 3 2 3 1 0 0 0 0 1.000 0.000 0.500 0.500 sp|P10648|GSTA2_MOUSE, sp|P13745|GSTA1_MOUSE, sp|P24472|GSTA4_MOUSE, sp|P30115|GSTA3_MOUSE
651.0 1 sp|P14069|S10A6_MOUSE 27.0 89 10051 Protein S100-A6 OS=Mus musculus GN=S100a6 PE=1 SV=3 42 42 1.000 11 11 9 11 11 11 9 11 11.000 11.000 9.000 11.000
652.0 1 sp|P14094|AT1B1_MOUSE 21.7 304 35194 Sodium/potassium-transporting ATPase subunit beta-1 OS=Mus musculus GN=Atp1b1 PE=1 SV=1 23 23 1.000 6 8 6 3 6 8 6 3 6.000 8.000 6.000 3.000
653.0 1 sp|P14106|C1QB_MOUSE 21.7 253 26717 Complement C1q subcomponent subunit B OS=Mus musculus GN=C1qb PE=1 SV=2 11 11 1.000 3 1 3 4 3 1 3 4 3.000 1.000 3.000 4.000
654.0 1 sp|P14115|RL27A_MOUSE 41.2 148 16605 60S ribosomal protein L27a OS=Mus musculus GN=Rpl27a PE=1 SV=5 34 34 1.000 7 9 8 10 7 9 8 10 7.000 9.000 8.000 10.000
655.0 1 sp|P14131|RS16_MOUSE 37.7 146 16445 40S ribosomal protein S16 OS=Mus musculus GN=Rps16 PE=1 SV=4 43 43 1.000 11 10 12 10 11 10 12 10 11.000 10.000 12.000 10.000
656.0 1 sp|P14142|GTR4_MOUSE 12.8 509 54755 Solute carrier family 2, facilitated glucose transporter member 4 OS=Mus musculus GN=Slc2a4 PE=1 SV=3 19 19 1.000 4 4 6 5 4 4 6 5 4.000 4.000 6.000 5.000
657.0 1 sp|P14148|RL7_MOUSE 47.4 270 31419 60S ribosomal protein L7 OS=Mus musculus GN=Rpl7 PE=1 SV=2 85 85 1.000 24 20 23 18 24 20 23 18 24.000 20.000 23.000 18.000
658.0 1 sp|P14152|MDHC_MOUSE 42.2 334 36511 Malate dehydrogenase, cytoplasmic OS=Mus musculus GN=Mdh1 PE=1 SV=3 275 275 1.000 71 64 68 72 71 64 68 72 71.000 64.000 68.000 72.000
659.0 1 sp|P14206|RSSA_MOUSE 52.9 295 32838 40S ribosomal protein SA OS=Mus musculus GN=Rpsa PE=1 SV=4 96 96 1.000 22 22 29 23 22 22 29 23 22.000 22.000 29.000 23.000
660.0 1 sp|P14211|CALR_MOUSE 70.0 416 47994 Calreticulin OS=Mus musculus GN=Calr PE=1 SV=1 235 235 1.000 61 50 57 67 61 50 57 67 61.000 50.000 57.000 67.000
661.0 1 sp|P14426|HA13_MOUSE 22.4 362 40619 H-2 class I histocompatibility antigen, D-K alpha chain OS=Mus musculus GN=H2-D1 PE=1 SV=1 20 1 0.050 5 4 5 6 0 0 0 1 0.000 0.000 0.000 2.075 sp|P01897|HA1L_MOUSE, sp|P01898|HA10_MOUSE, sp|P01899|HA11_MOUSE, sp|P01901|HA1B_MOUSE, sp|P14426|HA13_MOUSE, sp|P14429|HA17_MOUSE
662.0 1 sp|P14429|HA17_MOUSE 12.3 334 37924 H-2 class I histocompatibility antigen, Q7 alpha chain OS=Mus musculus GN=H2-Q7 PE=1 SV=1 24 0 0.000 5 6 7 6 0 0 0 0 0.000 0.000 0.000 0.000 sp|P01897|HA1L_MOUSE, sp|P01898|HA10_MOUSE, sp|P01899|HA11_MOUSE, sp|P01901|HA1B_MOUSE, sp|P01902|HA1D_MOUSE, sp|P14426|HA13_MOUSE, sp|P14429|HA17_MOUSE
662.01 1 sp|P14430|HA18_MOUSE redundant 12.6 326 37410 H-2 class I histocompatibility antigen, Q8 alpha chain OS=Mus musculus GN=H2-Q8 PE=3 SV=1 24 0 0.000 5 6 7 6 0 0 0 0 0.000 0.000 0.000 0.000 sp|P01897|HA1L_MOUSE, sp|P01898|HA10_MOUSE, sp|P01899|HA11_MOUSE, sp|P01901|HA1B_MOUSE, sp|P01902|HA1D_MOUSE, sp|P14426|HA13_MOUSE, sp|P14429|HA17_MOUSE
663.0 1 sp|P14434|HA2B_MOUSE 20.3 256 28093 H-2 class II histocompatibility antigen, A-B alpha chain OS=Mus musculus GN=H2-Aa PE=1 SV=2 19 19 1.000 3 6 5 5 3 6 5 5 3.000 6.000 5.000 5.000
663.01 1 sp|P14438|HA2U_MOUSE redundant 22.9 227 25135 H-2 class II histocompatibility antigen, A-U alpha chain (Fragment) OS=Mus musculus GN=H2-Aa PE=1 SV=1 19 19 1.000 3 6 5 5 3 6 5 5 3.000 6.000 5.000 5.000
664.0 1 sp|P14483|HB2A_MOUSE 30.6 265 30128 H-2 class II histocompatibility antigen, A beta chain OS=Mus musculus GN=H2-Ab1 PE=1 SV=1 15 15 1.000 2 2 7 4 2 2 7 4 2.000 2.000 7.000 4.000
665.0 1 sp|P14576|SRP54_MOUSE 21.8 504 55720 Signal recognition particle 54 kDa protein OS=Mus musculus GN=Srp54 PE=1 SV=2 23 23 1.000 7 5 6 5 7 5 6 5 7.000 5.000 6.000 5.000
666.0 1 sp|P14602|HSPB1_MOUSE 60.8 209 23014 Heat shock protein beta-1 OS=Mus musculus GN=Hspb1 PE=1 SV=3 137 137 1.000 35 35 31 36 35 35 31 36 35.000 35.000 31.000 36.000
667.0 1 sp|P14685|PSMD3_MOUSE 49.1 530 60718 26S proteasome non-ATPase regulatory subunit 3 OS=Mus musculus GN=Psmd3 PE=1 SV=3 117 117 1.000 29 26 30 32 29 26 30 32 29.000 26.000 30.000 32.000
668.0 1 sp|P14733|LMNB1_MOUSE 47.3 588 66785 Lamin-B1 OS=Mus musculus GN=Lmnb1 PE=1 SV=3 99 87 0.879 23 24 25 27 20 21 22 24 21.502 23.144 23.423 25.441 sp|P14733|LMNB1_MOUSE, sp|P21619|LMNB2_MOUSE, sp|P48678|LMNA_MOUSE
669.0 1 sp|P14824|ANXA6_MOUSE 73.8 673 75884 Annexin A6 OS=Mus musculus GN=Anxa6 PE=1 SV=3 389 382 0.982 82 103 105 99 80 102 103 97 81.481 102.797 104.597 98.630 sp|P14824|ANXA6_MOUSE, sp|P97429|ANXA4_MOUSE
670.0 1 sp|P14847|CRP_MOUSE 23.6 225 25360 C-reactive protein OS=Mus musculus GN=Crp PE=1 SV=2 10 10 1.000 2 2 5 1 2 2 5 1 2.000 2.000 5.000 1.000
671.0 1 sp|P14869|RLA0_MOUSE 51.7 317 34216 60S acidic ribosomal protein P0 OS=Mus musculus GN=Rplp0 PE=1 SV=3 112 112 1.000 25 30 26 31 25 30 26 31 25.000 30.000 26.000 31.000
672.0 1 sp|P14873|MAP1B_MOUSE 16.1 2464 270252 Microtubule-associated protein 1B OS=Mus musculus GN=Map1b PE=1 SV=2 48 43 0.896 13 11 11 13 12 10 9 12 12.316 10.333 9.600 12.279 sp|P14873|MAP1B_MOUSE, sp|Q9QYR6|MAP1A_MOUSE
673.0 1 sp|P14901|HMOX1_MOUSE 20.8 289 32928 Heme oxygenase 1 OS=Mus musculus GN=Hmox1 PE=1 SV=1 11 11 1.000 3 3 3 2 3 3 3 2 3.000 3.000 3.000 2.000
674.0 1 sp|P15089|CBPA3_MOUSE 26.4 417 48789 Mast cell carboxypeptidase A OS=Mus musculus GN=Cpa3 PE=2 SV=1 40 40 1.000 10 8 13 9 10 8 13 9 10.000 8.000 13.000 9.000
675.0 1 sp|P15105|GLNA_MOUSE 55.0 373 42119 Glutamine synthetase OS=Mus musculus GN=Glul PE=1 SV=6 159 159 1.000 38 34 45 42 38 34 45 42 38.000 34.000 45.000 42.000
676.0 1 sp|P15208|INSR_MOUSE 4.2 1372 155608 Insulin receptor OS=Mus musculus GN=Insr PE=1 SV=2 7 6 0.857 2 2 2 1 1 2 2 1 1.500 2.000 2.000 1.000 sp|P15208|INSR_MOUSE, sp|Q60751|IGF1R_MOUSE
677.0 1 sp|P15209|NTRK2_MOUSE 7.2 821 92132 BDNF/NT-3 growth factors receptor OS=Mus musculus GN=Ntrk2 PE=1 SV=1 5 5 1.000 1 1 1 2 1 1 1 2 1.000 1.000 1.000 2.000
678.0 1 sp|P15265|MCSP_MOUSE 47.6 143 14945 Sperm mitochondrial-associated cysteine-rich protein OS=Mus musculus GN=Smcp PE=2 SV=4 13 13 1.000 2 5 2 4 2 5 2 4 2.000 5.000 2.000 4.000
679.0 1 sp|P15306|TRBM_MOUSE 17.0 577 61867 Thrombomodulin OS=Mus musculus GN=Thbd PE=1 SV=1 13 13 1.000 3 4 2 4 3 4 2 4 3.000 4.000 2.000 4.000
680.0 1 sp|P15327|PMGE_MOUSE 31.7 259 29978 Bisphosphoglycerate mutase OS=Mus musculus GN=Bpgm PE=1 SV=2 48 48 1.000 8 14 14 12 8 14 14 12 8.000 14.000 14.000 12.000
681.0 1 sp|P15331|PERI_MOUSE 8.8 475 54267 Peripherin OS=Mus musculus GN=Prph PE=1 SV=2 69 1 0.014 15 11 18 25 0 0 1 0 0.000 0.000 1.062 0.000 CONT_073|gi|87303|pir||JS0487, CONT_120|gi|125108|sp|P08729|K2C7_HUMAN, sp|P11679|K2C8_MOUSE, sp|P15331|PERI_MOUSE, sp|P20152|VIME_MOUSE, sp|P31001|DESM_MOUSE, sp|Q9DCV7|K2C7_MOUSE
682.0 1 sp|P15379|CD44_MOUSE 6.8 778 85616 CD44 antigen OS=Mus musculus GN=Cd44 PE=1 SV=3 20 20 1.000 4 3 6 7 4 3 6 7 4.000 3.000 6.000 7.000
683.0 1 sp|P15508|SPTB1_MOUSE 40.4 2128 245247 Spectrin beta chain, erythrocytic OS=Mus musculus GN=Sptb PE=1 SV=4 247 236 0.955 52 66 64 65 49 63 60 64 49.598 63.768 60.866 64.237 sp|P15508|SPTB1_MOUSE, sp|Q62261|SPTB2_MOUSE
684.0 1 sp|P15532|NDKA_MOUSE 59.2 152 17208 Nucleoside diphosphate kinase A OS=Mus musculus GN=Nme1 PE=1 SV=1 122 26 0.213 34 27 32 29 7 6 7 6 19.600 14.400 20.462 15.857 sp|P15532|NDKA_MOUSE, sp|Q01768|NDKB_MOUSE
685.0 1 sp|P15626|GSTM2_MOUSE 78.9 218 25716 Glutathione S-transferase Mu 2 OS=Mus musculus GN=Gstm2 PE=1 SV=2 222 118 0.532 56 63 52 51 28 36 24 30 35.650 46.401 33.824 36.719 sp|O35660|GSTM6_MOUSE, sp|P10649|GSTM1_MOUSE, sp|P15626|GSTM2_MOUSE, sp|P19639|GSTM3_MOUSE, sp|P48774|GSTM5_MOUSE, sp|Q80W21|GSTM7_MOUSE
686.0 1 sp|P15864|H12_MOUSE 42.0 212 21266 Histone H1.2 OS=Mus musculus GN=Hist1h1c PE=1 SV=2 85 10 0.118 25 19 19 22 4 4 1 1 16.905 13.778 10.429 9.686 sp|P15864|H12_MOUSE, sp|P43274|H14_MOUSE, sp|P43275|H11_MOUSE, sp|P43276|H15_MOUSE, sp|P43277|H13_MOUSE
687.0 1 sp|P15947|KLK1_MOUSE 19.5 261 28774 Kallikrein-1 OS=Mus musculus GN=Klk1 PE=1 SV=3 5 4 0.800 1 3 0 1 1 2 0 1 1.000 3.000 0.000 1.000 sp|P15947|KLK1_MOUSE, sp|Q61759|K1B21_MOUSE
688.0 1 sp|P15949|K1KB9_MOUSE 13.8 261 28900 Kallikrein 1-related peptidase b9 OS=Mus musculus GN=Klk1b9 PE=2 SV=1 2 2 1.000 2 0 0 0 2 0 0 0 2.000 0.000 0.000 0.000
689.0 1 sp|P16015|CAH3_MOUSE 83.5 260 29366 Carbonic anhydrase 3 OS=Mus musculus GN=Ca3 PE=1 SV=3 1279 1279 1.000 330 347 303 299 330 347 303 299 330.000 347.000 303.000 299.000
690.0 1 sp|P16045|LEG1_MOUSE 63.0 135 14866 Galectin-1 OS=Mus musculus GN=Lgals1 PE=1 SV=3 376 376 1.000 108 81 97 90 108 81 97 90 108.000 81.000 97.000 90.000
691.0 1 sp|P16054|KPCE_MOUSE 4.7 737 83560 Protein kinase C epsilon type OS=Mus musculus GN=Prkce PE=1 SV=1 5 4 0.800 0 1 3 1 0 1 2 1 0.000 1.000 2.333 1.000 sp|P16054|KPCE_MOUSE, sp|P20444|KPCA_MOUSE, sp|P28867|KPCD_MOUSE
692.0 1 sp|P16110|LEG3_MOUSE 29.9 264 27515 Galectin-3 OS=Mus musculus GN=Lgals3 PE=1 SV=3 51 51 1.000 11 8 15 17 11 8 15 17 11.000 8.000 15.000 17.000
693.0 1 sp|P16125|LDHB_MOUSE 49.1 334 36572 L-lactate dehydrogenase B chain OS=Mus musculus GN=Ldhb PE=1 SV=2 162 134 0.827 41 32 43 46 31 29 35 39 33.279 29.644 37.090 40.750 sp|P00342|LDHC_MOUSE, sp|P06151|LDHA_MOUSE, sp|P16125|LDHB_MOUSE
694.0 1 sp|P16254|SRP14_MOUSE 27.3 110 12510 Signal recognition particle 14 kDa protein OS=Mus musculus GN=Srp14 PE=1 SV=1 8 8 1.000 2 2 2 2 2 2 2 2 2.000 2.000 2.000 2.000
695.0 1 sp|P16294|FA9_MOUSE 11.3 471 52977 Coagulation factor IX OS=Mus musculus GN=F9 PE=2 SV=3 7 7 1.000 2 1 3 1 2 1 3 1 2.000 1.000 3.000 1.000
696.0 1 sp|P16301|LCAT_MOUSE 6.4 438 49746 Phosphatidylcholine-sterol acyltransferase OS=Mus musculus GN=Lcat PE=1 SV=2 7 7 1.000 2 2 1 2 2 2 1 2 2.000 2.000 1.000 2.000
697.0 1 sp|P16330|CN37_MOUSE 18.1 420 47123 2',3'-cyclic-nucleotide 3'-phosphodiesterase OS=Mus musculus GN=Cnp PE=1 SV=3 9 9 1.000 2 3 3 1 2 3 3 1 2.000 3.000 3.000 1.000
698.0 1 sp|P16331|PH4H_MOUSE 21.2 453 51899 Phenylalanine-4-hydroxylase OS=Mus musculus GN=Pah PE=1 SV=4 13 13 1.000 3 1 7 2 3 1 7 2 3.000 1.000 7.000 2.000
699.0 1 sp|P16332|MUTA_MOUSE 39.6 748 82843 Methylmalonyl-CoA mutase, mitochondrial OS=Mus musculus GN=Mut PE=1 SV=2 143 143 1.000 38 34 38 33 38 34 38 33 38.000 34.000 38.000 33.000
700.0 1 sp|P16406|AMPE_MOUSE 29.2 945 107955 Glutamyl aminopeptidase OS=Mus musculus GN=Enpep PE=1 SV=1 130 130 1.000 33 31 35 31 33 31 35 31 33.000 31.000 35.000 31.000
701.0 1 sp|P16460|ASSY_MOUSE 45.6 412 46584 Argininosuccinate synthase OS=Mus musculus GN=Ass1 PE=1 SV=1 75 75 1.000 18 16 22 19 18 16 22 19 18.000 16.000 22.000 19.000
702.0 1 sp|P16546|SPTN1_MOUSE 68.2 2472 284594 Spectrin alpha chain, non-erythrocytic 1 OS=Mus musculus GN=Sptan1 PE=1 SV=4 1162 1151 0.991 277 266 289 330 275 263 285 328 276.642 265.327 288.115 329.665 sp|P08032|SPTA1_MOUSE, sp|P16546|SPTN1_MOUSE
703.0 1 sp|P16627|HS71L_MOUSE 37.6 641 70636 Heat shock 70 kDa protein 1-like OS=Mus musculus GN=Hspa1l PE=1 SV=4 192 4 0.021 55 42 48 47 0 4 0 0 0.000 7.358 0.000 0.000 sp|P16627|HS71L_MOUSE, sp|P17156|HSP72_MOUSE, sp|P17879|HS71B_MOUSE, sp|P20029|GRP78_MOUSE, sp|P63017|HSP7C_MOUSE
704.0 1 sp|P16675|PPGB_MOUSE 15.2 474 53844 Lysosomal protective protein OS=Mus musculus GN=Ctsa PE=1 SV=1 22 22 1.000 4 6 5 7 4 6 5 7 4.000 6.000 5.000 7.000
705.0 1 sp|P16858|G3P_MOUSE 62.8 333 35810 Glyceraldehyde-3-phosphate dehydrogenase OS=Mus musculus GN=Gapdh PE=1 SV=2 814 760 0.934 194 210 212 198 181 196 196 187 193.929 209.067 211.909 197.770 sp|P16858|G3P_MOUSE, sp|Q64467|G3PT_MOUSE
706.0 1 sp|P16882|GHR_MOUSE 15.4 650 72782 Growth hormone receptor OS=Mus musculus GN=Ghr PE=1 SV=1 15 15 1.000 5 3 4 3 5 3 4 3 5.000 3.000 4.000 3.000
707.0 1 sp|P17047|LAMP2_MOUSE 8.7 415 45681 Lysosome-associated membrane glycoprotein 2 OS=Mus musculus GN=Lamp2 PE=1 SV=2 17 17 1.000 3 5 5 4 3 5 5 4 3.000 5.000 5.000 4.000
708.0 1 sp|P17156|HSP72_MOUSE 51.5 633 69641 Heat shock-related 70 kDa protein 2 OS=Mus musculus GN=Hspa2 PE=1 SV=2 294 77 0.262 89 55 77 73 25 17 17 18 35.507 21.288 22.915 25.104 sp|P16627|HS71L_MOUSE, sp|P17156|HSP72_MOUSE, sp|P17879|HS71B_MOUSE, sp|P20029|GRP78_MOUSE, sp|P38647|GRP75_MOUSE, sp|P63017|HSP7C_MOUSE
709.0 1 sp|P17182|ENOA_MOUSE 75.1 434 47140 Alpha-enolase OS=Mus musculus GN=Eno1 PE=1 SV=3 958 765 0.799 258 221 248 231 206 175 201 183 256.359 218.346 245.923 229.072 sp|P17182|ENOA_MOUSE, sp|P17183|ENOG_MOUSE, sp|P21550|ENOB_MOUSE
710.0 1 sp|P17183|ENOG_MOUSE 28.8 434 47296 Gamma-enolase OS=Mus musculus GN=Eno2 PE=1 SV=2 138 5 0.036 38 30 36 34 2 2 1 0 2.339 2.435 1.167 0.000 sp|P17182|ENOA_MOUSE, sp|P17183|ENOG_MOUSE, sp|P21550|ENOB_MOUSE
711.0 1 sp|P17225|PTBP1_MOUSE 29.4 527 56477 Polypyrimidine tract-binding protein 1 OS=Mus musculus GN=Ptbp1 PE=1 SV=2 77 65 0.844 19 24 16 18 16 20 14 15 18.366 23.077 15.647 17.456 sp|B2RU80|PTPRB_MOUSE, sp|P17225|PTBP1_MOUSE, sp|Q8BHD7|PTBP3_MOUSE, sp|Q91Z31|PTBP2_MOUSE
712.0 1 sp|P17426|AP2A1_MOUSE 25.8 977 107663 AP-2 complex subunit alpha-1 OS=Mus musculus GN=Ap2a1 PE=1 SV=1 69 39 0.565 13 16 20 20 6 9 12 12 7.355 10.909 14.233 14.400 sp|P17426|AP2A1_MOUSE, sp|P17427|AP2A2_MOUSE
713.0 1 sp|P17427|AP2A2_MOUSE 41.6 938 104015 AP-2 complex subunit alpha-2 OS=Mus musculus GN=Ap2a2 PE=1 SV=2 138 108 0.783 32 31 39 36 25 24 31 28 30.645 29.091 36.767 33.600 sp|P17426|AP2A1_MOUSE, sp|P17427|AP2A2_MOUSE
714.0 1 sp|P17439|GLCM_MOUSE 21.2 515 57621 Glucosylceramidase OS=Mus musculus GN=Gba PE=1 SV=1 32 32 1.000 10 7 9 6 10 7 9 6 10.000 7.000 9.000 6.000
715.0 1 sp|P17563|SBP1_MOUSE 77.5 472 52513 Selenium-binding protein 1 OS=Mus musculus GN=Selenbp1 PE=1 SV=2 346 76 0.220 92 93 81 80 21 18 21 16 92.000 93.000 78.273 80.000 sp|P17563|SBP1_MOUSE, sp|Q63836|SBP2_MOUSE
716.0 1 sp|P17710|HXK1_MOUSE 35.9 974 108302 Hexokinase-1 OS=Mus musculus GN=Hk1 PE=1 SV=3 107 100 0.935 24 30 26 27 22 28 25 25 22.978 29.000 26.000 26.455 sp|O08528|HXK2_MOUSE, sp|P17710|HXK1_MOUSE, sp|Q91W97|HKDC1_MOUSE
717.0 1 sp|P17717|UDB17_MOUSE 4.0 530 60855 UDP-glucuronosyltransferase 2B17 OS=Mus musculus GN=Ugt2b17 PE=1 SV=1 8 1 0.125 3 3 1 1 0 1 0 0 0.000 1.333 0.000 0.000 sp|P17717|UDB17_MOUSE, sp|Q64435|UD16_MOUSE, sp|Q6ZQM8|UD17C_MOUSE
718.0 1 sp|P17742|PPIA_MOUSE 59.1 164 17971 Peptidyl-prolyl cis-trans isomerase A OS=Mus musculus GN=Ppia PE=1 SV=2 305 305 1.000 83 69 69 84 83 69 69 84 83.000 69.000 69.000 84.000
719.0 1 sp|P17751|TPIS_MOUSE 71.9 299 32191 Triosephosphate isomerase OS=Mus musculus GN=Tpi1 PE=1 SV=4 377 377 1.000 94 95 92 96 94 95 92 96 94.000 95.000 92.000 96.000
720.0 1 sp|P17879|HS71B_MOUSE 44.5 642 70175 Heat shock 70 kDa protein 1B OS=Mus musculus GN=Hspa1b PE=1 SV=3 206 52 0.252 58 43 51 54 15 15 11 11 29.280 26.549 23.093 26.289 sp|P16627|HS71L_MOUSE, sp|P17156|HSP72_MOUSE, sp|P17879|HS71B_MOUSE, sp|P20029|GRP78_MOUSE, sp|P63017|HSP7C_MOUSE
720.01 1 sp|Q61696|HS71A_MOUSE redundant 44.6 641 70078 Heat shock 70 kDa protein 1A OS=Mus musculus GN=Hspa1a PE=1 SV=2 206 52 0.252 58 43 51 54 15 15 11 11 29.280 26.549 23.093 26.289 sp|P16627|HS71L_MOUSE, sp|P17156|HSP72_MOUSE, sp|P17879|HS71B_MOUSE, sp|P20029|GRP78_MOUSE, sp|P63017|HSP7C_MOUSE
721.0 1 sp|P17918|PCNA_MOUSE 53.3 261 28785 Proliferating cell nuclear antigen OS=Mus musculus GN=Pcna PE=1 SV=2 40 40 1.000 12 9 10 9 12 9 10 9 12.000 9.000 10.000 9.000
722.0 1 sp|P18052|PTPRA_MOUSE 17.0 829 93696 Receptor-type tyrosine-protein phosphatase alpha OS=Mus musculus GN=Ptpra PE=1 SV=3 25 20 0.800 7 7 4 7 6 6 2 6 7.000 6.857 3.333 6.857 sp|P18052|PTPRA_MOUSE, sp|P49446|PTPRE_MOUSE
723.0 1 sp|P18155|MTDC_MOUSE 17.7 350 37863 Bifunctional methylenetetrahydrofolate dehydrogenase/cyclohydrolase, mitochondrial OS=Mus musculus GN=Mthfd2 PE=1 SV=1 7 7 1.000 1 3 1 2 1 3 1 2 1.000 3.000 1.000 2.000
724.0 1 sp|P18242|CATD_MOUSE 50.7 410 44953 Cathepsin D OS=Mus musculus GN=Ctsd PE=1 SV=1 193 193 1.000 49 46 47 51 49 46 47 51 49.000 46.000 47.000 51.000
725.0 1 sp|P18419|SVS4_MOUSE 66.4 113 12515 Seminal vesicle secretory protein 4 OS=Mus musculus GN=Svs4 PE=1 SV=2 105 105 1.000 51 13 21 20 51 13 21 20 51.000 13.000 21.000 20.000
726.0 1 sp|P18524|HVM53_MOUSE 27.4 117 12866 Ig heavy chain V region RF OS=Mus musculus PE=1 SV=1 13 2 0.154 1 5 4 3 0 0 1 1 0.000 1.000 2.250 2.125 sp|P01806|HVM36_MOUSE, sp|P01812|HVM42_MOUSE, sp|P18524|HVM53_MOUSE, sp|P18526|HVM55_MOUSE
727.0 1 sp|P18525|HVM54_MOUSE 23.1 117 12872 Ig heavy chain V region 5-84 OS=Mus musculus PE=1 SV=1 18 9 0.500 4 4 7 3 2 2 3 2 3.000 3.333 5.000 3.000 sp|P01783|HVM16_MOUSE, sp|P18525|HVM54_MOUSE, sp|P18526|HVM55_MOUSE, sp|P18527|HVM56_MOUSE, sp|P18528|HVM57_MOUSE
728.0 1 sp|P18526|HVM55_MOUSE 18.8 117 12902 Ig heavy chain V region 345 OS=Mus musculus PE=1 SV=1 13 0 0.000 2 4 5 2 0 0 0 0 0.000 1.000 0.000 0.000 sp|P01783|HVM16_MOUSE, sp|P18524|HVM53_MOUSE, sp|P18525|HVM54_MOUSE, sp|P18526|HVM55_MOUSE, sp|P18527|HVM56_MOUSE, sp|P18528|HVM57_MOUSE
729.0 1 sp|P18527|HVM56_MOUSE 27.8 97 10661 Ig heavy chain V region 914 OS=Mus musculus PE=1 SV=1 11 2 0.182 3 2 5 1 1 0 1 0 1.500 0.000 1.667 0.000 sp|P01783|HVM16_MOUSE, sp|P18525|HVM54_MOUSE, sp|P18526|HVM55_MOUSE, sp|P18527|HVM56_MOUSE, sp|P18528|HVM57_MOUSE
730.0 1 sp|P18528|HVM57_MOUSE 30.6 98 11007 Ig heavy chain V region 6.96 OS=Mus musculus PE=4 SV=1 12 3 0.250 3 3 5 1 1 1 1 0 1.500 1.667 1.667 0.000 sp|P01783|HVM16_MOUSE, sp|P18525|HVM54_MOUSE, sp|P18526|HVM55_MOUSE, sp|P18527|HVM56_MOUSE, sp|P18528|HVM57_MOUSE
731.0 1 sp|P18572|BASI_MOUSE 25.4 389 42444 Basigin OS=Mus musculus GN=Bsg PE=1 SV=2 49 49 1.000 13 8 12 16 13 8 12 16 13.000 8.000 12.000 16.000
732.0 1 sp|P18653|KS6A1_MOUSE 14.4 724 81594 Ribosomal protein S6 kinase alpha-1 OS=Mus musculus GN=Rps6ka1 PE=1 SV=1 41 0 0.000 9 13 9 10 0 0 0 0 0.000 0.000 0.000 0.500 sp|O55047|TLK2_MOUSE, sp|P18653|KS6A1_MOUSE, sp|P18654|KS6A3_MOUSE, sp|Q811L6|MAST4_MOUSE, sp|Q8C0V0|TLK1_MOUSE, sp|Q9WUT3|KS6A2_MOUSE
733.0 1 sp|P18654|KS6A3_MOUSE 47.7 740 83693 Ribosomal protein S6 kinase alpha-3 OS=Mus musculus GN=Rps6ka3 PE=1 SV=2 106 59 0.557 25 27 30 24 15 13 19 12 25.000 26.929 29.900 23.857 sp|O55047|TLK2_MOUSE, sp|P18653|KS6A1_MOUSE, sp|P18654|KS6A3_MOUSE, sp|Q811L6|MAST4_MOUSE, sp|Q8C0V0|TLK1_MOUSE, sp|Q9WUT3|KS6A2_MOUSE
734.0 1 sp|P18760|COF1_MOUSE 62.0 166 18559 Cofilin-1 OS=Mus musculus GN=Cfl1 PE=1 SV=3 241 200 0.830 60 50 68 63 50 43 55 52 57.047 47.865 63.919 59.680 sp|P18760|COF1_MOUSE, sp|P45591|COF2_MOUSE, sp|Q9R0P5|DEST_MOUSE
735.0 1 sp|P18872|GNAO_MOUSE 21.5 354 40084 Guanine nucleotide-binding protein G(o) subunit alpha OS=Mus musculus GN=Gnao1 PE=1 SV=3 29 14 0.483 7 10 6 6 4 4 3 3 4.235 4.497 3.170 3.191 sp|B2RSH2|GNAI1_MOUSE, sp|P08752|GNAI2_MOUSE, sp|P18872|GNAO_MOUSE, sp|P27601|GNA13_MOUSE, sp|P63094|GNAS2_MOUSE, sp|Q9DC51|GNAI3_MOUSE
736.0 1 sp|P18894|OXDA_MOUSE 10.7 345 38661 D-amino-acid oxidase OS=Mus musculus GN=Dao PE=1 SV=3 4 4 1.000 1 3 0 0 1 3 0 0 1.000 3.000 0.000 0.000
737.0 1 sp|P19001|K1C19_MOUSE 56.1 403 44541 Keratin, type I cytoskeletal 19 OS=Mus musculus GN=Krt19 PE=1 SV=1 89 51 0.573 18 23 21 27 12 11 12 16 16.591 20.926 18.536 25.189 CONT_068|gi|1082558|pir||S41161, CONT_082|gi|125080|sp|P02533|K1CN_HUMAN, CONT_092|gi|71528|pir||KRHU0, CONT_094|gi|547751|sp|Q04695|K1CQ_HUMAN, CONT_156|gi|1363944|pir||JC4313, sp|P05784|K1C18_MOUSE, sp|P08730|K1C13_MOUSE, sp|P19001|K1C19_MOUSE, sp|Q61414|K1C15_MOUSE, sp|Q61781|K1C14_MOUSE, sp|Q9QWL7|K1C17_MOUSE
738.0 1 sp|P19096|FAS_MOUSE 58.4 2504 272425 Fatty acid synthase OS=Mus musculus GN=Fasn PE=1 SV=2 1396 1396 1.000 358 350 323 365 358 350 323 365 358.000 350.000 323.000 365.000
739.0 1 sp|P19157|GSTP1_MOUSE 61.4 210 23609 Glutathione S-transferase P 1 OS=Mus musculus GN=Gstp1 PE=1 SV=2 210 210 1.000 53 58 51 48 53 58 51 48 53.000 58.000 51.000 48.000
740.0 1 sp|P19182|IFRD1_MOUSE 3.8 449 49935 Interferon-related developmental regulator 1 OS=Mus musculus GN=Ifrd1 PE=1 SV=2 5 5 1.000 1 2 1 1 1 2 1 1 1.000 2.000 1.000 1.000
741.0 1 sp|P19221|THRB_MOUSE 40.3 618 70268 Prothrombin OS=Mus musculus GN=F2 PE=1 SV=1 110 110 1.000 27 27 30 26 27 27 30 26 27.000 27.000 30.000 26.000
742.0 1 sp|P19246|NFH_MOUSE 1.6 1090 116993 Neurofilament heavy polypeptide OS=Mus musculus GN=Nefh PE=1 SV=3 39 0 0.000 11 9 9 10 0 0 0 0 0.000 0.000 0.000 0.000 CONT_049|gi|88052|pir||A32568, CONT_064|gi|254622|bbs|112352, CONT_070|gi|547752|sp|Q01546|K22O_HUMAN, CONT_079|gi|125105|sp|P13647|K2C5_HUMAN, CONT_133|gi|1346349|sp|P48669|K2CF_HUMAN, sp|P19246|NFH_MOUSE, sp|P20152|VIME_MOUSE, sp|P31001|DESM_MOUSE, sp|Q3TTY5|K22E_MOUSE, sp|Q3UV17|K22O_MOUSE, sp|Q6NXH9|K2C73_MOUSE, sp|Q8BGZ7|K2C75_MOUSE, sp|Q922U2|K2C5_MOUSE
743.0 1 sp|P19253|RL13A_MOUSE 28.6 203 23464 60S ribosomal protein L13a OS=Mus musculus GN=Rpl13a PE=1 SV=4 42 42 1.000 11 10 11 10 11 10 11 10 11.000 10.000 11.000 10.000
744.0 1 sp|P19324|SERPH_MOUSE 43.4 417 46533 Serpin H1 OS=Mus musculus GN=Serpinh1 PE=1 SV=3 104 104 1.000 26 22 30 26 26 22 30 26 26.000 22.000 30.000 26.000
745.0 1 sp|P19536|COX5B_MOUSE 31.2 128 13813 Cytochrome c oxidase subunit 5B, mitochondrial OS=Mus musculus GN=Cox5b PE=1 SV=1 27 27 1.000 5 7 8 7 5 7 8 7 5.000 7.000 8.000 7.000
746.0 1 sp|P19639|GSTM3_MOUSE 30.3 218 25701 Glutathione S-transferase Mu 3 OS=Mus musculus GN=Gstm3 PE=1 SV=2 46 1 0.022 8 17 13 8 0 1 0 0 0.000 1.302 0.000 0.000 sp|O35660|GSTM6_MOUSE, sp|P10649|GSTM1_MOUSE, sp|P15626|GSTM2_MOUSE, sp|P19639|GSTM3_MOUSE, sp|Q80W21|GSTM7_MOUSE
747.0 1 sp|P19783|COX41_MOUSE 37.9 169 19530 Cytochrome c oxidase subunit 4 isoform 1, mitochondrial OS=Mus musculus GN=Cox4i1 PE=1 SV=2 49 49 1.000 11 11 14 13 11 11 14 13 11.000 11.000 14.000 13.000
748.0 1 sp|P19973|LSP1_MOUSE 35.5 330 36713 Lymphocyte-specific protein 1 OS=Mus musculus GN=Lsp1 PE=1 SV=2 18 18 1.000 5 2 5 6 5 2 5 6 5.000 2.000 5.000 6.000
749.0 1 sp|P20029|GRP78_MOUSE 62.7 655 72421 78 kDa glucose-regulated protein OS=Mus musculus GN=Hspa5 PE=1 SV=3 517 424 0.820 145 130 119 123 118 111 93 102 129.178 119.318 102.635 110.703 sp|P16627|HS71L_MOUSE, sp|P17156|HSP72_MOUSE, sp|P17879|HS71B_MOUSE, sp|P20029|GRP78_MOUSE, sp|P63017|HSP7C_MOUSE
750.0 1 sp|P20060|HEXB_MOUSE 30.8 536 61115 Beta-hexosaminidase subunit beta OS=Mus musculus GN=Hexb PE=1 SV=2 63 63 1.000 10 22 15 16 10 22 15 16 10.000 22.000 15.000 16.000
751.0 1 sp|P20065|TYB4_MOUSE 38.0 50 5679 Thymosin beta-4 OS=Mus musculus GN=Tmsb4x PE=1 SV=1 8 8 1.000 2 2 2 2 2 2 2 2 2.000 2.000 2.000 2.000
752.0 1 sp|P20108|PRDX3_MOUSE 43.6 257 28127 Thioredoxin-dependent peroxide reductase, mitochondrial OS=Mus musculus GN=Prdx3 PE=1 SV=1 59 59 1.000 16 13 13 17 16 13 13 17 16.000 13.000 13.000 17.000
753.0 1 sp|P20152|VIME_MOUSE 87.3 466 53687 Vimentin OS=Mus musculus GN=Vim PE=1 SV=3 1205 1047 0.869 319 249 311 326 278 220 270 279 316.843 247.162 309.466 323.961 CONT_049|gi|88052|pir||A32568, CONT_070|gi|547752|sp|Q01546|K22O_HUMAN, CONT_073|gi|87303|pir||JS0487, CONT_079|gi|125105|sp|P13647|K2C5_HUMAN, CONT_120|gi|125108|sp|P08729|K2C7_HUMAN, CONT_133|gi|1346349|sp|P48669|K2CF_HUMAN, CONT_172|gi|1903216|gnl|PID|e255375, sp|P03995|GFAP_MOUSE, sp|P11679|K2C8_MOUSE, sp|P15331|PERI_MOUSE, sp|P19246|NFH_MOUSE, sp|P20152|VIME_MOUSE, sp|P31001|DESM_MOUSE, sp|Q3UV17|K22O_MOUSE, sp|Q8BGZ7|K2C75_MOUSE, sp|Q922U2|K2C5_MOUSE, sp|Q9DCV7|K2C7_MOUSE
754.0 1 sp|P20444|KPCA_MOUSE 10.6 672 76851 Protein kinase C alpha type OS=Mus musculus GN=Prkca PE=1 SV=3 9 8 0.889 2 2 2 3 2 2 1 3 2.000 2.000 1.167 3.000 sp|P16054|KPCE_MOUSE, sp|P20444|KPCA_MOUSE, sp|P28867|KPCD_MOUSE
755.0 1 sp|P20918|PLMN_MOUSE 63.9 812 90807 Plasminogen OS=Mus musculus GN=Plg PE=1 SV=3 282 282 1.000 72 65 68 77 72 65 68 77 72.000 65.000 68.000 77.000
756.0 1 sp|P21107|TPM3_MOUSE 44.6 285 32994 Tropomyosin alpha-3 chain OS=Mus musculus GN=Tpm3 PE=1 SV=3 100 35 0.350 28 26 23 23 10 7 8 10 19.124 14.763 15.152 17.033 sp|P21107|TPM3_MOUSE, sp|P58771|TPM1_MOUSE, sp|P58774|TPM2_MOUSE, sp|Q6IRU2|TPM4_MOUSE
757.0 1 sp|P21126|UBL4A_MOUSE 29.3 157 17800 Ubiquitin-like protein 4A OS=Mus musculus GN=Ubl4a PE=1 SV=1 8 8 1.000 1 2 3 2 1 2 3 2 1.000 2.000 3.000 2.000
758.0 1 sp|P21180|CO2_MOUSE 18.6 760 84741 Complement C2 OS=Mus musculus GN=C2 PE=1 SV=2 26 26 1.000 6 8 7 5 6 8 7 5 6.000 8.000 7.000 5.000
759.0 1 sp|P21278|GNA11_MOUSE 32.9 359 42024 Guanine nucleotide-binding protein subunit alpha-11 OS=Mus musculus GN=Gna11 PE=1 SV=1 35 26 0.743 8 8 10 9 6 6 7 7 6.857 6.857 8.235 7.778 sp|P21278|GNA11_MOUSE, sp|P21279|GNAQ_MOUSE
760.0 1 sp|P21279|GNAQ_MOUSE 35.4 359 42158 Guanine nucleotide-binding protein G(q) subunit alpha OS=Mus musculus GN=Gnaq PE=1 SV=4 46 37 0.804 10 10 13 13 8 8 10 11 9.143 9.143 11.765 12.222 sp|P21278|GNA11_MOUSE, sp|P21279|GNAQ_MOUSE
761.0 1 sp|P21300|ALD1_MOUSE 63.0 316 35988 Aldose reductase-related protein 1 OS=Mus musculus GN=Akr1b7 PE=1 SV=4 139 91 0.655 28 50 26 35 17 36 16 22 21.755 47.721 20.888 30.484 sp|P21300|ALD1_MOUSE, sp|P45376|ALDR_MOUSE, sp|P45377|ALD2_MOUSE, sp|Q8VC28|AK1CD_MOUSE
762.0 1 sp|P21447|MDR1A_MOUSE 2.4 1276 140645 Multidrug resistance protein 1A OS=Mus musculus GN=Abcb1a PE=1 SV=3 7 7 1.000 1 1 3 2 1 1 3 2 1.000 1.000 3.000 2.000
763.0 1 sp|P21460|CYTC_MOUSE 29.3 140 15531 Cystatin-C OS=Mus musculus GN=Cst3 PE=1 SV=2 30 30 1.000 8 8 7 7 8 8 7 7 8.000 8.000 7.000 7.000
764.0 1 sp|P21550|ENOB_MOUSE 46.1 434 47024 Beta-enolase OS=Mus musculus GN=Eno3 PE=1 SV=3 185 43 0.232 43 50 46 46 8 12 12 11 9.302 15.219 13.910 13.928 sp|P17182|ENOA_MOUSE, sp|P17183|ENOG_MOUSE, sp|P21550|ENOB_MOUSE
765.0 1 sp|P21614|VTDB_MOUSE 67.6 476 53600 Vitamin D-binding protein OS=Mus musculus GN=Gc PE=1 SV=2 225 225 1.000 61 54 51 59 61 54 51 59 61.000 54.000 51.000 59.000
766.0 1 sp|P21619|LMNB2_MOUSE 19.5 596 67317 Lamin-B2 OS=Mus musculus GN=Lmnb2 PE=1 SV=2 32 20 0.625 8 5 9 10 5 2 6 7 5.375 2.204 6.388 7.420 sp|P14733|LMNB1_MOUSE, sp|P21619|LMNB2_MOUSE, sp|P48678|LMNA_MOUSE
767.0 1 sp|P21765|GPX5_MOUSE 48.0 221 25392 Epididymal secretory glutathione peroxidase OS=Mus musculus GN=Gpx5 PE=2 SV=3 65 41 0.631 12 22 15 16 5 17 8 11 6.750 19.833 10.667 13.391 sp|P21765|GPX5_MOUSE, sp|P46412|GPX3_MOUSE
768.0 1 sp|P21812|MCPT4_MOUSE 9.8 246 27203 Mast cell protease 4 OS=Mus musculus GN=Mcpt4 PE=1 SV=1 7 7 1.000 2 2 3 0 2 2 3 0 2.000 2.000 3.000 0.000
769.0 1 sp|P21844|CMA1_MOUSE 40.9 247 27586 Chymase OS=Mus musculus GN=Cma1 PE=1 SV=2 20 20 1.000 5 5 4 6 5 5 4 6 5.000 5.000 4.000 6.000
770.0 1 sp|P21956|MFGM_MOUSE 26.6 463 51240 Lactadherin OS=Mus musculus GN=Mfge8 PE=1 SV=3 28 28 1.000 7 9 8 4 7 9 8 4 7.000 9.000 8.000 4.000
771.0 1 sp|P21958|TAP1_MOUSE 11.6 724 78863 Antigen peptide transporter 1 OS=Mus musculus GN=Tap1 PE=1 SV=3 13 13 1.000 3 3 3 4 3 3 3 4 3.000 3.000 3.000 4.000
772.0 1 sp|P21981|TGM2_MOUSE 43.1 686 77060 Protein-glutamine gamma-glutamyltransferase 2 OS=Mus musculus GN=Tgm2 PE=1 SV=4 175 175 1.000 47 38 46 44 47 38 46 44 47.000 38.000 46.000 44.000
773.0 1 sp|P22315|HEMH_MOUSE 27.6 420 47130 Ferrochelatase, mitochondrial OS=Mus musculus GN=Fech PE=1 SV=2 34 34 1.000 8 7 10 9 8 7 10 9 8.000 7.000 10.000 9.000
774.0 1 sp|P22366|MYD88_MOUSE 6.4 296 33753 Myeloid differentiation primary response protein MyD88 OS=Mus musculus GN=Myd88 PE=1 SV=3 4 4 1.000 2 1 1 0 2 1 1 0 2.000 1.000 1.000 0.000
775.0 1 sp|P22437|PGH1_MOUSE 8.6 602 69042 Prostaglandin G/H synthase 1 OS=Mus musculus GN=Ptgs1 PE=1 SV=1 8 8 1.000 0 4 2 2 0 4 2 2 0.000 4.000 2.000 2.000
776.0 1 sp|P22599|A1AT2_MOUSE 51.8 413 45974 Alpha-1-antitrypsin 1-2 OS=Mus musculus GN=Serpina1b PE=1 SV=2 558 167 0.299 144 140 117 157 43 47 27 50 97.569 93.164 69.001 113.011 sp|P07758|A1AT1_MOUSE, sp|P22599|A1AT2_MOUSE, sp|Q00896|A1AT3_MOUSE, sp|Q00897|A1AT4_MOUSE, sp|Q00898|A1AT5_MOUSE
777.0 1 sp|P22682|CBL_MOUSE 2.4 913 100563 E3 ubiquitin-protein ligase CBL OS=Mus musculus GN=Cbl PE=1 SV=3 2 2 1.000 0 0 2 0 0 0 2 0 0.000 0.000 2.000 0.000
778.0 1 sp|P22752|H2A1_MOUSE 33.1 130 14135 Histone H2A type 1 OS=Mus musculus GN=Hist1h2ab PE=1 SV=3 71 47 0.662 20 17 17 17 13 12 11 11 19.467 15.923 16.288 16.538 sp|P0C0S6|H2AZ_MOUSE, sp|P22752|H2A1_MOUSE, sp|P27661|H2AX_MOUSE
778.01 1 sp|Q64523|H2A2C_MOUSE redundant 33.3 129 13988 Histone H2A type 2-C OS=Mus musculus GN=Hist2h2ac PE=1 SV=3 71 47 0.662 20 17 17 17 13 12 11 11 19.467 15.923 16.288 16.538 sp|P0C0S6|H2AZ_MOUSE, sp|P22752|H2A1_MOUSE, sp|P27661|H2AX_MOUSE
778.02 1 sp|Q6GSS7|H2A2A_MOUSE redundant 33.1 130 14095 Histone H2A type 2-A OS=Mus musculus GN=Hist2h2aa1 PE=1 SV=3 71 47 0.662 20 17 17 17 13 12 11 11 19.467 15.923 16.288 16.538 sp|P0C0S6|H2AZ_MOUSE, sp|P22752|H2A1_MOUSE, sp|P27661|H2AX_MOUSE
778.03 1 sp|Q8BFU2|H2A3_MOUSE redundant 33.1 130 14121 Histone H2A type 3 OS=Mus musculus GN=Hist3h2a PE=1 SV=3 71 47 0.662 20 17 17 17 13 12 11 11 19.467 15.923 16.288 16.538 sp|P0C0S6|H2AZ_MOUSE, sp|P22752|H2A1_MOUSE, sp|P27661|H2AX_MOUSE
778.04 1 sp|Q8CGP5|H2A1F_MOUSE redundant 33.1 130 14161 Histone H2A type 1-F OS=Mus musculus GN=Hist1h2af PE=1 SV=3 71 47 0.662 20 17 17 17 13 12 11 11 19.467 15.923 16.288 16.538 sp|P0C0S6|H2AZ_MOUSE, sp|P22752|H2A1_MOUSE, sp|P27661|H2AX_MOUSE
778.05 1 sp|Q8CGP6|H2A1H_MOUSE redundant 33.6 128 13950 Histone H2A type 1-H OS=Mus musculus GN=Hist1h2ah PE=1 SV=3 71 47 0.662 20 17 17 17 13 12 11 11 19.467 15.923 16.288 16.538 sp|P0C0S6|H2AZ_MOUSE, sp|P22752|H2A1_MOUSE, sp|P27661|H2AX_MOUSE
778.06 1 sp|Q8CGP7|H2A1K_MOUSE redundant 33.1 130 14149 Histone H2A type 1-K OS=Mus musculus GN=Hist1h2ak PE=1 SV=3 71 47 0.662 20 17 17 17 13 12 11 11 19.467 15.923 16.288 16.538 sp|P0C0S6|H2AZ_MOUSE, sp|P22752|H2A1_MOUSE, sp|P27661|H2AX_MOUSE
778.07 1 sp|Q8R1M2|H2AJ_MOUSE redundant 33.3 129 14045 Histone H2A.J OS=Mus musculus GN=H2afj PE=1 SV=1 71 47 0.662 20 17 17 17 13 12 11 11 19.467 15.923 16.288 16.538 sp|P0C0S6|H2AZ_MOUSE, sp|P22752|H2A1_MOUSE, sp|P27661|H2AX_MOUSE
779.0 1 sp|P22892|AP1G1_MOUSE 17.9 822 91349 AP-1 complex subunit gamma-1 OS=Mus musculus GN=Ap1g1 PE=1 SV=3 27 27 1.000 7 9 7 4 7 9 7 4 7.000 9.000 7.000 4.000
780.0 1 sp|P22907|HEM3_MOUSE 34.6 361 39344 Porphobilinogen deaminase OS=Mus musculus GN=Hmbs PE=1 SV=2 38 38 1.000 13 10 6 9 13 10 6 9 13.000 10.000 6.000 9.000
781.0 1 sp|P23116|EIF3A_MOUSE 25.6 1344 161934 Eukaryotic translation initiation factor 3 subunit A OS=Mus musculus GN=Eif3a PE=1 SV=5 116 116 1.000 30 26 27 33 30 26 27 33 30.000 26.000 27.000 33.000
782.0 1 sp|P23198|CBX3_MOUSE 36.1 183 20855 Chromobox protein homolog 3 OS=Mus musculus GN=Cbx3 PE=1 SV=2 45 30 0.667 11 11 12 11 7 8 7 8 9.154 10.000 10.500 10.182 sp|P23198|CBX3_MOUSE, sp|P83917|CBX1_MOUSE
783.0 1 sp|P23249|MOV10_MOUSE 18.1 1004 113581 Putative helicase MOV-10 OS=Mus musculus GN=Mov10 PE=1 SV=2 36 36 1.000 10 10 7 9 10 10 7 9 10.000 10.000 7.000 9.000
784.0 1 sp|P23475|XRCC6_MOUSE 4.3 608 69484 X-ray repair cross-complementing protein 6 OS=Mus musculus GN=Xrcc6 PE=1 SV=5 3 3 1.000 2 1 0 0 2 1 0 0 2.000 1.000 0.000 0.000
785.0 1 sp|P23492|PNPH_MOUSE 60.2 289 32277 Purine nucleoside phosphorylase OS=Mus musculus GN=Pnp PE=1 SV=2 157 157 1.000 45 40 37 35 45 40 37 35 45.000 40.000 37.000 35.000
786.0 1 sp|P23506|PIMT_MOUSE 55.9 227 24634 Protein-L-isoaspartate(D-aspartate) O-methyltransferase OS=Mus musculus GN=Pcmt1 PE=1 SV=3 59 59 1.000 12 14 16 17 12 14 16 17 12.000 14.000 16.000 17.000
787.0 1 sp|P23578|ACRO_MOUSE 9.2 436 48929 Acrosin OS=Mus musculus GN=Acr PE=1 SV=1 3 3 1.000 0 3 0 0 0 3 0 0 0.000 3.000 0.000 0.000
788.0 1 sp|P23591|FCL_MOUSE 36.8 321 35877 GDP-L-fucose synthase OS=Mus musculus GN=Tsta3 PE=1 SV=3 29 29 1.000 10 8 7 4 10 8 7 4 10.000 8.000 7.000 4.000
789.0 1 sp|P23780|BGAL_MOUSE 16.5 647 73120 Beta-galactosidase OS=Mus musculus GN=Glb1 PE=1 SV=1 26 26 1.000 6 6 7 7 6 6 7 7 6.000 6.000 7.000 7.000
790.0 1 sp|P23927|CRYAB_MOUSE 52.0 175 20069 Alpha-crystallin B chain OS=Mus musculus GN=Cryab PE=1 SV=2 22 22 1.000 5 4 5 8 5 4 5 8 5.000 4.000 5.000 8.000
791.0 1 sp|P23953|EST1C_MOUSE 54.9 554 61055 Carboxylesterase 1C OS=Mus musculus GN=Ces1c PE=1 SV=4 292 212 0.726 86 68 68 70 62 50 51 49 69.354 55.094 55.395 54.025 sp|P23953|EST1C_MOUSE, sp|Q8VCC2|EST1_MOUSE, sp|Q8VCT4|CES1D_MOUSE, sp|Q91WU0|CES1F_MOUSE
792.0 1 sp|P24270|CATA_MOUSE 70.8 527 59795 Catalase OS=Mus musculus GN=Cat PE=1 SV=4 356 356 1.000 93 81 90 92 93 81 90 92 93.000 81.000 90.000 92.000
793.0 1 sp|P24288|BCAT1_MOUSE 11.7 386 42791 Branched-chain-amino-acid aminotransferase, cytosolic OS=Mus musculus GN=Bcat1 PE=1 SV=2 5 5 1.000 2 1 1 1 2 1 1 1 2.000 1.000 1.000 1.000
794.0 1 sp|P24369|PPIB_MOUSE 57.4 216 23713 Peptidyl-prolyl cis-trans isomerase B OS=Mus musculus GN=Ppib PE=1 SV=2 118 118 1.000 33 25 30 30 33 25 30 30 33.000 25.000 30.000 30.000
795.0 1 sp|P24452|CAPG_MOUSE 27.8 352 39240 Macrophage-capping protein OS=Mus musculus GN=Capg PE=1 SV=2 82 82 1.000 21 15 24 22 21 15 24 22 21.000 15.000 24.000 22.000
796.0 1 sp|P24456|CP2DA_MOUSE 7.1 504 57233 Cytochrome P450 2D10 OS=Mus musculus GN=Cyp2d10 PE=1 SV=2 9 6 0.667 1 3 3 2 1 2 2 1 1.000 2.667 2.667 1.500 sp|P24456|CP2DA_MOUSE, sp|P24457|CP2DB_MOUSE
797.0 1 sp|P24457|CP2DB_MOUSE 5.0 504 56987 Cytochrome P450 2D11 OS=Mus musculus GN=Cyp2d11 PE=2 SV=2 7 4 0.571 1 2 2 2 1 1 1 1 1.000 1.333 1.333 1.500 sp|P24456|CP2DA_MOUSE, sp|P24457|CP2DB_MOUSE
798.0 1 sp|P24472|GSTA4_MOUSE 22.5 222 25564 Glutathione S-transferase A4 OS=Mus musculus GN=Gsta4 PE=1 SV=3 21 20 0.952 8 3 5 5 8 3 4 5 8.000 3.000 4.133 5.000 sp|P13745|GSTA1_MOUSE, sp|P24472|GSTA4_MOUSE, sp|P30115|GSTA3_MOUSE
799.0 1 sp|P24526|MYP2_MOUSE 14.4 132 14935 Myelin P2 protein OS=Mus musculus GN=Pmp2 PE=2 SV=2 295 1 0.003 76 64 83 72 1 0 0 0 1.095 0.000 0.000 0.000 sp|O08716|FABP9_MOUSE, sp|P04117|FABP4_MOUSE, sp|P24526|MYP2_MOUSE
800.0 1 sp|P24527|LKHA4_MOUSE 46.2 611 69050 Leukotriene A-4 hydrolase OS=Mus musculus GN=Lta4h PE=1 SV=4 182 182 1.000 47 44 47 44 47 44 47 44 47.000 44.000 47.000 44.000
801.0 1 sp|P24547|IMDH2_MOUSE 31.3 514 55814 Inosine-5'-monophosphate dehydrogenase 2 OS=Mus musculus GN=Impdh2 PE=1 SV=2 43 37 0.860 12 10 9 12 10 8 8 11 11.818 9.600 8.727 11.846 sp|P24547|IMDH2_MOUSE, sp|P50096|IMDH1_MOUSE
802.0 1 sp|P24549|AL1A1_MOUSE 54.3 501 54467 Retinal dehydrogenase 1 OS=Mus musculus GN=Aldh1a1 PE=1 SV=5 299 166 0.555 70 81 78 70 35 50 43 38 52.080 68.928 63.497 54.087 sp|O35945|AL1A7_MOUSE, sp|P24549|AL1A1_MOUSE, sp|P47738|ALDH2_MOUSE, sp|Q62148|AL1A2_MOUSE, sp|Q9CZS1|AL1B1_MOUSE, sp|Q9JHW9|AL1A3_MOUSE
803.0 1 sp|P24638|PPAL_MOUSE 14.4 423 48508 Lysosomal acid phosphatase OS=Mus musculus GN=Acp2 PE=1 SV=2 14 14 1.000 4 5 2 3 4 5 2 3 4.000 5.000 2.000 3.000
804.0 1 sp|P24668|MPRD_MOUSE 29.5 278 31172 Cation-dependent mannose-6-phosphate receptor OS=Mus musculus GN=M6pr PE=1 SV=1 25 25 1.000 5 6 7 7 5 6 7 7 5.000 6.000 7.000 7.000
805.0 1 sp|P25444|RS2_MOUSE 41.0 293 31231 40S ribosomal protein S2 OS=Mus musculus GN=Rps2 PE=1 SV=3 76 76 1.000 14 19 22 21 14 19 22 21 14.000 19.000 22.000 21.000
806.0 1 sp|P25688|URIC_MOUSE 27.1 303 35039 Uricase OS=Mus musculus GN=Uox PE=1 SV=2 28 28 1.000 5 5 10 8 5 5 10 8 5.000 5.000 10.000 8.000
807.0 1 sp|P25785|TIMP2_MOUSE 20.9 220 24328 Metalloproteinase inhibitor 2 OS=Mus musculus GN=Timp2 PE=1 SV=2 4 4 1.000 2 0 0 2 2 0 0 2 2.000 0.000 0.000 2.000
808.0 1 sp|P25799|NFKB1_MOUSE 13.3 971 105614 Nuclear factor NF-kappa-B p105 subunit OS=Mus musculus GN=Nfkb1 PE=1 SV=2 26 26 1.000 3 5 10 8 3 5 10 8 3.000 5.000 10.000 8.000
809.0 1 sp|P25911|LYN_MOUSE 35.9 512 58812 Tyrosine-protein kinase Lyn OS=Mus musculus GN=Lyn PE=1 SV=4 49 36 0.735 14 10 15 10 10 7 11 8 11.548 7.889 12.733 8.891 sp|P05480|SRC_MOUSE, sp|P08103|HCK_MOUSE, sp|P25911|LYN_MOUSE, sp|P30285|CDK4_MOUSE, sp|P39688|FYN_MOUSE, sp|P49615|CDK5_MOUSE, sp|P97377|CDK2_MOUSE, sp|Q04735|CDK16_MOUSE, sp|Q04736|YES_MOUSE, sp|Q64261|CDK6_MOUSE, sp|Q8K0D0|CDK17_MOUSE, sp|Q99J95|CDK9_MOUSE
810.0 1 sp|P25962|ADRB3_MOUSE 6.8 400 43006 Beta-3 adrenergic receptor OS=Mus musculus GN=Adrb3 PE=2 SV=2 5 5 1.000 1 0 2 2 1 0 2 2 1.000 0.000 2.000 2.000
811.0 1 sp|P26039|TLN1_MOUSE 60.1 2541 269818 Talin-1 OS=Mus musculus GN=Tln1 PE=1 SV=2 778 712 0.915 191 187 201 199 175 177 178 182 185.769 184.052 193.219 193.011 sp|P26039|TLN1_MOUSE, sp|Q71LX4|TLN2_MOUSE
812.0 1 sp|P26040|EZRI_MOUSE 45.4 586 69406 Ezrin OS=Mus musculus GN=Ezr PE=1 SV=3 224 75 0.335 61 56 59 48 20 17 18 20 28.565 24.207 26.160 26.429 sp|P26040|EZRI_MOUSE, sp|P26041|MOES_MOUSE, sp|P26043|RADI_MOUSE
813.0 1 sp|P26041|MOES_MOUSE 57.0 577 67766 Moesin OS=Mus musculus GN=Msn PE=1 SV=3 389 245 0.630 103 91 101 94 63 52 63 67 87.050 74.043 86.146 84.701 sp|P26040|EZRI_MOUSE, sp|P26041|MOES_MOUSE, sp|P26043|RADI_MOUSE
814.0 1 sp|P26043|RADI_MOUSE 50.4 583 68542 Radixin OS=Mus musculus GN=Rdx PE=1 SV=3 240 86 0.358 66 62 65 47 23 23 23 17 33.385 32.750 33.694 22.870 sp|P26040|EZRI_MOUSE, sp|P26041|MOES_MOUSE, sp|P26043|RADI_MOUSE
815.0 1 sp|P26231|CTNA1_MOUSE 32.0 906 100105 Catenin alpha-1 OS=Mus musculus GN=Ctnna1 PE=1 SV=1 56 47 0.839 12 14 14 16 11 11 12 13 11.917 14.000 14.000 16.000 sp|P26231|CTNA1_MOUSE, sp|Q61301|CTNA2_MOUSE
816.0 1 sp|P26262|KLKB1_MOUSE 27.9 638 71382 Plasma kallikrein OS=Mus musculus GN=Klkb1 PE=1 SV=2 73 73 1.000 18 22 17 16 18 22 17 16 18.000 22.000 17.000 16.000
817.0 1 sp|P26350|PTMA_MOUSE 23.4 111 12254 Prothymosin alpha OS=Mus musculus GN=Ptma PE=1 SV=2 22 22 1.000 6 4 6 6 6 4 6 6 6.000 4.000 6.000 6.000
818.0 1 sp|P26369|U2AF2_MOUSE 22.5 475 53516 Splicing factor U2AF 65 kDa subunit OS=Mus musculus GN=U2af2 PE=1 SV=3 29 29 1.000 8 8 6 7 8 8 6 7 8.000 8.000 6.000 7.000
819.0 1 sp|P26443|DHE3_MOUSE 44.3 558 61336 Glutamate dehydrogenase 1, mitochondrial OS=Mus musculus GN=Glud1 PE=1 SV=1 232 232 1.000 59 57 57 59 59 57 57 59 59.000 57.000 57.000 59.000
820.0 1 sp|P26450|P85A_MOUSE 18.0 724 83516 Phosphatidylinositol 3-kinase regulatory subunit alpha OS=Mus musculus GN=Pik3r1 PE=1 SV=2 20 17 0.850 5 2 5 8 4 2 4 7 5.000 2.000 5.000 7.875 sp|O08908|P85B_MOUSE, sp|P26450|P85A_MOUSE, sp|Q64143|P55G_MOUSE
821.0 1 sp|P26516|PSMD7_MOUSE 25.9 321 36539 26S proteasome non-ATPase regulatory subunit 7 OS=Mus musculus GN=Psmd7 PE=1 SV=2 19 19 1.000 5 5 4 5 5 5 4 5 5.000 5.000 4.000 5.000
822.0 1 sp|P26618|PGFRA_MOUSE 3.9 1089 122682 Platelet-derived growth factor receptor alpha OS=Mus musculus GN=Pdgfra PE=1 SV=3 7 2 0.286 3 2 1 1 1 1 0 0 1.074 1.034 0.000 0.000 sp|P05532|KIT_MOUSE, sp|P05622|PGFRB_MOUSE, sp|P26618|PGFRA_MOUSE, sp|P35969|VGFR1_MOUSE, sp|P63085|MK01_MOUSE, sp|Q63844|MK03_MOUSE, sp|Q80Y86|MK15_MOUSE
823.0 1 sp|P26638|SYSC_MOUSE 46.9 512 58388 Serine--tRNA ligase, cytoplasmic OS=Mus musculus GN=Sars PE=1 SV=3 95 95 1.000 25 19 27 24 25 19 27 24 25.000 19.000 27.000 24.000
824.0 1 sp|P26645|MARCS_MOUSE 67.6 309 29661 Myristoylated alanine-rich C-kinase substrate OS=Mus musculus GN=Marcks PE=1 SV=2 59 59 1.000 22 11 13 13 22 11 13 13 22.000 11.000 13.000 13.000
825.0 1 sp|P26883|FKB1A_MOUSE 13.0 108 11922 Peptidyl-prolyl cis-trans isomerase FKBP1A OS=Mus musculus GN=Fkbp1a PE=1 SV=2 23 23 1.000 8 4 5 6 8 4 5 6 8.000 4.000 5.000 6.000
826.0 1 sp|P27046|MA2A1_MOUSE 6.3 1150 131630 Alpha-mannosidase 2 OS=Mus musculus GN=Man2a1 PE=1 SV=2 10 10 1.000 2 3 2 3 2 3 2 3 2.000 3.000 2.000 3.000
827.0 1 sp|P27048|RSMB_MOUSE 16.0 231 23656 Small nuclear ribonucleoprotein-associated protein B OS=Mus musculus GN=Snrpb PE=1 SV=1 8 8 1.000 2 1 3 2 2 1 3 2 2.000 1.000 3.000 2.000
827.01 1 sp|P63163|RSMN_MOUSE redundant 15.4 240 24614 Small nuclear ribonucleoprotein-associated protein N OS=Mus musculus GN=Snrpn PE=1 SV=1 8 8 1.000 2 1 3 2 2 1 3 2 2.000 1.000 3.000 2.000
828.0 1 sp|P27546|MAP4_MOUSE 57.7 1125 117428 Microtubule-associated protein 4 OS=Mus musculus GN=Map4 PE=1 SV=3 287 287 1.000 70 67 72 78 70 67 72 78 70.000 67.000 72.000 78.000
829.0 1 sp|P27601|GNA13_MOUSE 28.1 377 44054 Guanine nucleotide-binding protein subunit alpha-13 OS=Mus musculus GN=Gna13 PE=1 SV=1 38 25 0.658 8 13 9 8 5 8 6 6 5.294 8.727 6.340 6.211 sp|B2RSH2|GNAI1_MOUSE, sp|P08752|GNAI2_MOUSE, sp|P18872|GNAO_MOUSE, sp|P27601|GNA13_MOUSE, sp|P63094|GNAS2_MOUSE, sp|Q9DC51|GNAI3_MOUSE
830.0 1 sp|P27612|PLAP_MOUSE 31.7 794 87220 Phospholipase A-2-activating protein OS=Mus musculus GN=Plaa PE=1 SV=4 79 79 1.000 21 18 20 20 21 18 20 20 21.000 18.000 20.000 20.000
831.0 1 sp|P27641|XRCC5_MOUSE 9.0 732 83056 X-ray repair cross-complementing protein 5 OS=Mus musculus GN=Xrcc5 PE=1 SV=4 7 7 1.000 0 3 1 3 0 3 1 3 0.000 3.000 1.000 3.000
832.0 1 sp|P27659|RL3_MOUSE 43.2 403 46109 60S ribosomal protein L3 OS=Mus musculus GN=Rpl3 PE=1 SV=3 87 87 1.000 21 24 22 20 21 24 22 20 21.000 24.000 22.000 20.000
833.0 1 sp|P27661|H2AX_MOUSE 37.8 143 15142 Histone H2AX OS=Mus musculus GN=H2afx PE=1 SV=2 26 2 0.077 7 6 7 6 0 1 1 0 0.000 1.327 1.481 0.000 sp|P0C0S6|H2AZ_MOUSE, sp|P22752|H2A1_MOUSE, sp|P27661|H2AX_MOUSE
834.0 1 sp|P27773|PDIA3_MOUSE 68.5 505 56678 Protein disulfide-isomerase A3 OS=Mus musculus GN=Pdia3 PE=1 SV=2 274 274 1.000 73 66 63 72 73 66 63 72 73.000 66.000 63.000 72.000
835.0 1 sp|P27808|MGAT1_MOUSE 5.4 447 51690 Alpha-1,3-mannosyl-glycoprotein 2-beta-N-acetylglucosaminyltransferase OS=Mus musculus GN=Mgat1 PE=1 SV=1 5 5 1.000 2 1 1 1 2 1 1 1 2.000 1.000 1.000 1.000
836.0 1 sp|P27870|VAV_MOUSE 3.6 845 98136 Proto-oncogene vav OS=Mus musculus GN=Vav1 PE=1 SV=1 4 4 1.000 2 1 1 0 2 1 1 0 2.000 1.000 1.000 0.000
837.0 1 sp|P28063|PSB8_MOUSE 53.6 276 30260 Proteasome subunit beta type-8 OS=Mus musculus GN=Psmb8 PE=1 SV=2 56 56 1.000 13 15 12 16 13 15 12 16 13.000 15.000 12.000 16.000
838.0 1 sp|P28271|ACOC_MOUSE 53.5 889 98124 Cytoplasmic aconitate hydratase OS=Mus musculus GN=Aco1 PE=1 SV=3 250 248 0.992 66 63 61 60 65 62 61 60 65.985 62.984 61.000 60.000 sp|P28271|ACOC_MOUSE, sp|Q811J3|IREB2_MOUSE
839.0 1 sp|P28352|APEX1_MOUSE 40.1 317 35490 DNA-(apurinic or apyrimidinic site) lyase OS=Mus musculus GN=Apex1 PE=1 SV=2 35 35 1.000 9 9 10 7 9 9 10 7 9.000 9.000 10.000 7.000
840.0 1 sp|P28474|ADHX_MOUSE 49.5 374 39547 Alcohol dehydrogenase class-3 OS=Mus musculus GN=Adh5 PE=1 SV=3 107 86 0.804 29 23 27 28 24 18 21 23 28.800 22.286 26.727 27.792 sp|P28474|ADHX_MOUSE, sp|Q64437|ADH7_MOUSE
841.0 1 sp|P28650|PURA1_MOUSE 26.9 457 50254 Adenylosuccinate synthetase isozyme 1 OS=Mus musculus GN=Adssl1 PE=1 SV=2 31 25 0.806 10 6 7 8 9 5 5 6 9.450 5.312 5.500 6.667 sp|P28650|PURA1_MOUSE, sp|P46664|PURA2_MOUSE
842.0 1 sp|P28652|KCC2B_MOUSE 10.1 542 60460 Calcium/calmodulin-dependent protein kinase type II subunit beta OS=Mus musculus GN=Camk2b PE=1 SV=2 22 0 0.000 5 4 6 7 0 0 0 0 0.000 0.000 0.000 0.000 sp|P28652|KCC2B_MOUSE, sp|Q6PHZ2|KCC2D_MOUSE, sp|Q923T9|KCC2G_MOUSE
843.0 1 sp|P28653|PGS1_MOUSE 52.8 369 41639 Biglycan OS=Mus musculus GN=Bgn PE=1 SV=1 120 116 0.967 30 27 30 33 30 27 28 31 30.000 27.000 28.549 31.653 sp|P28653|PGS1_MOUSE, sp|P28654|PGS2_MOUSE
844.0 1 sp|P28654|PGS2_MOUSE 48.6 354 39809 Decorin OS=Mus musculus GN=Dcn PE=1 SV=1 304 300 0.987 82 80 76 66 82 80 74 64 82.000 80.000 75.451 65.347 sp|P28653|PGS1_MOUSE, sp|P28654|PGS2_MOUSE
845.0 1 sp|P28656|NP1L1_MOUSE 45.5 391 45345 Nucleosome assembly protein 1-like 1 OS=Mus musculus GN=Nap1l1 PE=1 SV=2 120 104 0.867 35 28 28 29 31 24 25 24 33.638 26.462 26.786 27.000 sp|P28656|NP1L1_MOUSE, sp|Q78ZA7|NP1L4_MOUSE
846.0 1 sp|P28658|ATX10_MOUSE 21.3 475 53706 Ataxin-10 OS=Mus musculus GN=Atxn10 PE=1 SV=2 32 32 1.000 9 8 6 9 9 8 6 9 9.000 8.000 6.000 9.000
847.0 1 sp|P28659|CELF1_MOUSE 8.0 486 52107 CUGBP Elav-like family member 1 OS=Mus musculus GN=Celf1 PE=1 SV=2 9 7 0.778 1 4 1 3 1 3 1 2 1.000 3.300 1.000 2.250 sp|P28659|CELF1_MOUSE, sp|Q9Z0H4|CELF2_MOUSE
848.0 1 sp|P28660|NCKP1_MOUSE 19.5 1128 128783 Nck-associated protein 1 OS=Mus musculus GN=Nckap1 PE=1 SV=2 57 57 1.000 16 11 17 13 16 11 17 13 16.000 11.000 17.000 13.000
849.0 1 sp|P28661|SEPT4_MOUSE 29.3 478 54935 Septin-4 OS=Mus musculus GN=Sept4 PE=1 SV=1 33 29 0.879 7 6 12 8 6 5 10 8 6.667 5.625 10.947 8.000 sp|O55131|SEPT7_MOUSE, sp|P28661|SEPT4_MOUSE, sp|Q9Z2Q6|SEPT5_MOUSE
850.0 1 sp|P28665|MUG1_MOUSE 49.2 1476 165296 Murinoglobulin-1 OS=Mus musculus GN=Mug1 PE=1 SV=3 703 417 0.593 186 185 168 164 107 111 103 96 185.269 185.000 167.375 163.299 sp|P28665|MUG1_MOUSE, sp|P28666|MUG2_MOUSE
851.0 1 sp|P28666|MUG2_MOUSE 18.5 1451 162380 Murinoglobulin-2 OS=Mus musculus GN=Mug2 PE=1 SV=2 289 3 0.010 80 74 66 69 1 0 1 1 1.731 0.000 1.625 1.701 sp|P28665|MUG1_MOUSE, sp|P28666|MUG2_MOUSE
852.0 1 sp|P28740|KIF2A_MOUSE 3.4 705 79755 Kinesin-like protein KIF2A OS=Mus musculus GN=Kif2a PE=1 SV=2 6 6 1.000 3 1 1 1 3 1 1 1 3.000 1.000 1.000 1.000
853.0 1 sp|P28741|KIF3A_MOUSE 6.6 701 80169 Kinesin-like protein KIF3A OS=Mus musculus GN=Kif3a PE=1 SV=2 11 9 0.818 3 3 2 3 3 3 1 2 3.000 3.000 1.500 2.667 sp|B1AVY7|KI16B_MOUSE, sp|P28741|KIF3A_MOUSE
854.0 1 sp|P28828|PTPRM_MOUSE 11.0 1452 163652 Receptor-type tyrosine-protein phosphatase mu OS=Mus musculus GN=Ptprm PE=1 SV=2 19 19 1.000 4 7 5 3 4 7 5 3 4.000 7.000 5.000 3.000
855.0 1 sp|P28843|DPP4_MOUSE 34.2 760 87436 Dipeptidyl peptidase 4 OS=Mus musculus GN=Dpp4 PE=1 SV=3 86 86 1.000 25 22 19 20 25 22 19 20 25.000 22.000 19.000 20.000
856.0 1 sp|P28867|KPCD_MOUSE 11.9 674 77546 Protein kinase C delta type OS=Mus musculus GN=Prkcd PE=1 SV=3 15 14 0.933 2 6 4 3 2 6 3 3 2.000 6.000 3.500 3.000 sp|P16054|KPCE_MOUSE, sp|P20444|KPCA_MOUSE, sp|P28867|KPCD_MOUSE
857.0 1 sp|P29341|PABP1_MOUSE 39.2 636 70670 Polyadenylate-binding protein 1 OS=Mus musculus GN=Pabpc1 PE=1 SV=2 106 106 1.000 26 25 30 25 26 25 30 25 26.000 25.000 30.000 25.000
858.0 1 sp|P29351|PTN6_MOUSE 29.9 595 67558 Tyrosine-protein phosphatase non-receptor type 6 OS=Mus musculus GN=Ptpn6 PE=1 SV=2 53 53 1.000 14 15 13 11 14 15 13 11 14.000 15.000 13.000 11.000
859.0 1 sp|P29387|GBB4_MOUSE 22.6 340 37379 Guanine nucleotide-binding protein subunit beta-4 OS=Mus musculus GN=Gnb4 PE=1 SV=4 43 5 0.116 13 12 10 8 1 2 1 1 1.559 3.281 1.616 1.350 sp|P29387|GBB4_MOUSE, sp|P62874|GBB1_MOUSE, sp|P62880|GBB2_MOUSE, sp|Q61011|GBB3_MOUSE
860.0 1 sp|P29391|FRIL1_MOUSE 59.6 183 20802 Ferritin light chain 1 OS=Mus musculus GN=Ftl1 PE=1 SV=2 99 99 1.000 24 25 23 27 24 25 23 27 24.000 25.000 23.000 27.000
861.0 1 sp|P29416|HEXA_MOUSE 23.5 528 60612 Beta-hexosaminidase subunit alpha OS=Mus musculus GN=Hexa PE=1 SV=2 31 31 1.000 9 11 5 6 9 11 5 6 9.000 11.000 5.000 6.000
862.0 1 sp|P29452|CASP1_MOUSE 25.9 402 45640 Caspase-1 OS=Mus musculus GN=Casp1 PE=1 SV=1 34 34 1.000 10 10 9 5 10 10 9 5 10.000 10.000 9.000 5.000
863.0 1 sp|P29533|VCAM1_MOUSE 8.7 739 81317 Vascular cell adhesion protein 1 OS=Mus musculus GN=Vcam1 PE=1 SV=1 8 8 1.000 2 1 4 1 2 1 4 1 2.000 1.000 4.000 1.000
864.0 1 sp|P29621|SPA3C_MOUSE 28.5 417 46765 Serine protease inhibitor A3C OS=Mus musculus GN=Serpina3c PE=2 SV=1 117 18 0.154 38 26 28 25 5 5 5 3 6.081 6.360 5.926 4.028 sp|P07759|SPA3K_MOUSE, sp|P29621|SPA3C_MOUSE, sp|Q03734|SPA3M_MOUSE, sp|Q91WP6|SPA3N_MOUSE
865.0 1 sp|P29699|FETUA_MOUSE 55.1 345 37325 Alpha-2-HS-glycoprotein OS=Mus musculus GN=Ahsg PE=1 SV=1 154 154 1.000 40 39 36 39 40 39 36 39 40.000 39.000 36.000 39.000
866.0 1 sp|P29758|OAT_MOUSE 55.8 439 48354 Ornithine aminotransferase, mitochondrial OS=Mus musculus GN=Oat PE=1 SV=1 108 108 1.000 24 33 25 26 24 33 25 26 24.000 33.000 25.000 26.000
867.0 1 sp|P29788|VTNC_MOUSE 20.3 478 54848 Vitronectin OS=Mus musculus GN=Vtn PE=1 SV=2 48 48 1.000 11 13 9 15 11 13 9 15 11.000 13.000 9.000 15.000
868.0 1 sp|P30115|GSTA3_MOUSE 38.9 221 25360 Glutathione S-transferase A3 OS=Mus musculus GN=Gsta3 PE=1 SV=2 88 84 0.955 22 23 28 15 21 22 26 15 22.000 22.957 27.867 15.000 sp|P10648|GSTA2_MOUSE, sp|P13745|GSTA1_MOUSE, sp|P24472|GSTA4_MOUSE, sp|P30115|GSTA3_MOUSE
869.0 1 sp|P30285|CDK4_MOUSE 31.7 303 33750 Cyclin-dependent kinase 4 OS=Mus musculus GN=Cdk4 PE=1 SV=1 30 23 0.767 10 7 7 6 8 5 5 5 8.457 5.357 5.323 5.200 sp|P08103|HCK_MOUSE, sp|P25911|LYN_MOUSE, sp|P30285|CDK4_MOUSE, sp|P39688|FYN_MOUSE, sp|P49615|CDK5_MOUSE, sp|P97377|CDK2_MOUSE, sp|Q04735|CDK16_MOUSE, sp|Q04736|YES_MOUSE, sp|Q64261|CDK6_MOUSE, sp|Q8K0D0|CDK17_MOUSE, sp|Q99J95|CDK9_MOUSE
870.0 1 sp|P30355|AL5AP_MOUSE 12.4 161 18136 Arachidonate 5-lipoxygenase-activating protein OS=Mus musculus GN=Alox5ap PE=1 SV=2 5 5 1.000 1 2 2 0 1 2 2 0 1.000 2.000 2.000 0.000
871.0 1 sp|P30412|PPIC_MOUSE 38.7 212 22794 Peptidyl-prolyl cis-trans isomerase C OS=Mus musculus GN=Ppic PE=1 SV=1 39 39 1.000 10 7 10 12 10 7 10 12 10.000 7.000 10.000 12.000
872.0 1 sp|P30416|FKBP4_MOUSE 49.1 458 51572 Peptidyl-prolyl cis-trans isomerase FKBP4 OS=Mus musculus GN=Fkbp4 PE=1 SV=5 77 77 1.000 19 19 20 19 19 19 20 19 19.000 19.000 20.000 19.000
873.0 1 sp|P30681|HMGB2_MOUSE 36.2 210 24162 High mobility group protein B2 OS=Mus musculus GN=Hmgb2 PE=1 SV=3 20 14 0.700 5 4 5 6 3 3 4 4 4.000 3.750 4.667 5.600 sp|O54879|HMGB3_MOUSE, sp|P30681|HMGB2_MOUSE
874.0 1 sp|P30933|SVS5_MOUSE 42.6 122 13019 Seminal vesicle secretory protein 5 OS=Mus musculus GN=Svs5 PE=2 SV=1 53 53 1.000 20 10 11 12 20 10 11 12 20.000 10.000 11.000 12.000
875.0 1 sp|P30999|CTND1_MOUSE 15.8 938 104924 Catenin delta-1 OS=Mus musculus GN=Ctnnd1 PE=1 SV=2 31 31 1.000 9 6 8 8 9 6 8 8 9.000 6.000 8.000 8.000
876.0 1 sp|P31001|DESM_MOUSE 51.2 469 53497 Desmin OS=Mus musculus GN=Des PE=1 SV=3 153 80 0.523 39 38 34 42 20 23 14 23 21.264 24.410 14.978 24.428 CONT_073|gi|87303|pir||JS0487, CONT_120|gi|125108|sp|P08729|K2C7_HUMAN, sp|P11679|K2C8_MOUSE, sp|P15331|PERI_MOUSE, sp|P19246|NFH_MOUSE, sp|P20152|VIME_MOUSE, sp|P31001|DESM_MOUSE, sp|Q9DCV7|K2C7_MOUSE
877.0 1 sp|P31230|AIMP1_MOUSE 54.2 310 33997 Aminoacyl tRNA synthase complex-interacting multifunctional protein 1 OS=Mus musculus GN=Aimp1 PE=1 SV=2 49 49 1.000 12 12 13 12 12 12 13 12 12.000 12.000 13.000 12.000
878.0 1 sp|P31266|SUH_MOUSE 5.1 526 58537 Recombining binding protein suppressor of hairless OS=Mus musculus GN=Rbpj PE=1 SV=1 2 2 1.000 0 0 2 0 0 0 2 0 0.000 0.000 2.000 0.000
879.0 1 sp|P31324|KAP3_MOUSE 72.4 416 46167 cAMP-dependent protein kinase type II-beta regulatory subunit OS=Mus musculus GN=Prkar2b PE=1 SV=3 240 217 0.904 61 61 57 61 57 54 52 54 60.257 59.478 55.824 59.478 sp|P12367|KAP2_MOUSE, sp|P31324|KAP3_MOUSE
880.0 1 sp|P31428|DPEP1_MOUSE 41.0 410 45722 Dipeptidase 1 OS=Mus musculus GN=Dpep1 PE=1 SV=2 63 63 1.000 16 18 17 12 16 18 17 12 16.000 18.000 17.000 12.000
881.0 1 sp|P31532|SAA4_MOUSE 26.9 130 15088 Serum amyloid A-4 protein OS=Mus musculus GN=Saa4 PE=1 SV=2 9 9 1.000 3 3 2 1 3 3 2 1 3.000 3.000 2.000 1.000
882.0 1 sp|P31649|S6A13_MOUSE 8.8 602 68284 Sodium- and chloride-dependent GABA transporter 2 OS=Mus musculus GN=Slc6a13 PE=1 SV=1 7 7 1.000 0 0 4 3 0 0 4 3 0.000 0.000 4.000 3.000
883.0 1 sp|P31750|AKT1_MOUSE 35.6 480 55707 RAC-alpha serine/threonine-protein kinase OS=Mus musculus GN=Akt1 PE=1 SV=2 30 16 0.533 8 9 6 7 5 5 3 3 5.961 6.176 3.588 3.788 sp|P31750|AKT1_MOUSE, sp|Q60823|AKT2_MOUSE, sp|Q8BSK8|KS6B1_MOUSE
884.0 1 sp|P31786|ACBP_MOUSE 49.4 87 10000 Acyl-CoA-binding protein OS=Mus musculus GN=Dbi PE=1 SV=2 57 57 1.000 19 12 13 13 19 12 13 13 19.000 12.000 13.000 13.000
885.0 1 sp|P31938|MP2K1_MOUSE 29.3 393 43474 Dual specificity mitogen-activated protein kinase kinase 1 OS=Mus musculus GN=Map2k1 PE=1 SV=2 43 32 0.744 11 10 9 13 7 6 8 11 10.111 9.000 8.727 12.692 sp|P31938|MP2K1_MOUSE, sp|Q63932|MP2K2_MOUSE
886.0 1 sp|P32020|NLTP_MOUSE 38.9 547 59125 Non-specific lipid-transfer protein OS=Mus musculus GN=Scp2 PE=1 SV=3 224 224 1.000 57 58 55 54 57 58 55 54 57.000 58.000 55.000 54.000
887.0 1 sp|P32037|GTR3_MOUSE 11.8 493 53478 Solute carrier family 2, facilitated glucose transporter member 3 OS=Mus musculus GN=Slc2a3 PE=1 SV=1 27 27 1.000 4 11 4 8 4 11 4 8 4.000 11.000 4.000 8.000
888.0 1 sp|P32067|LA_MOUSE 35.4 415 47756 Lupus La protein homolog OS=Mus musculus GN=Ssb PE=1 SV=1 62 62 1.000 13 17 16 16 13 17 16 16 13.000 17.000 16.000 16.000
889.0 1 sp|P32233|DRG1_MOUSE 25.9 367 40512 Developmentally-regulated GTP-binding protein 1 OS=Mus musculus GN=Drg1 PE=1 SV=1 29 29 1.000 5 7 7 10 5 7 7 10 5.000 7.000 7.000 10.000
890.0 1 sp|P32261|ANT3_MOUSE 46.7 465 52003 Antithrombin-III OS=Mus musculus GN=Serpinc1 PE=1 SV=1 177 177 1.000 44 43 42 48 44 43 42 48 44.000 43.000 42.000 48.000
891.0 1 sp|P32848|PRVA_MOUSE 51.8 110 11930 Parvalbumin alpha OS=Mus musculus GN=Pvalb PE=1 SV=3 11 11 1.000 5 3 1 2 5 3 1 2 5.000 3.000 1.000 2.000
892.0 1 sp|P32883|RASK_MOUSE 59.8 189 21656 GTPase KRas OS=Mus musculus GN=Kras PE=1 SV=1 20 5 0.250 6 4 3 7 1 1 1 2 4.000 4.000 2.000 6.000 sp|P08556|RASN_MOUSE, sp|P32883|RASK_MOUSE, sp|Q61411|RASH_MOUSE
893.0 1 sp|P32921|SYWC_MOUSE 42.2 481 54357 Tryptophan--tRNA ligase, cytoplasmic OS=Mus musculus GN=Wars PE=1 SV=2 89 89 1.000 21 23 21 24 21 23 21 24 21.000 23.000 21.000 24.000
894.0 1 sp|P33175|KIF5A_MOUSE 9.3 1027 117017 Kinesin heavy chain isoform 5A OS=Mus musculus GN=Kif5a PE=1 SV=3 42 2 0.048 12 6 10 14 2 0 0 0 2.645 0.000 0.000 0.000 sp|P33175|KIF5A_MOUSE, sp|Q61768|KINH_MOUSE
895.0 1 sp|P33434|MMP2_MOUSE 8.6 662 74102 72 kDa type IV collagenase OS=Mus musculus GN=Mmp2 PE=1 SV=1 5 5 1.000 1 1 2 1 1 1 2 1 1.000 1.000 2.000 1.000
896.0 1 sp|P33587|PROC_MOUSE 17.2 460 51818 Vitamin K-dependent protein C OS=Mus musculus GN=Proc PE=1 SV=2 15 15 1.000 5 3 4 3 5 3 4 3 5.000 3.000 4.000 3.000
897.0 1 sp|P33622|APOC3_MOUSE 38.4 99 10982 Apolipoprotein C-III OS=Mus musculus GN=Apoc3 PE=1 SV=2 11 11 1.000 3 2 3 3 3 2 3 3 3.000 2.000 3.000 3.000
898.0 1 sp|P34022|RANG_MOUSE 40.4 203 23596 Ran-specific GTPase-activating protein OS=Mus musculus GN=Ranbp1 PE=1 SV=2 34 34 1.000 8 7 9 10 8 7 9 10 8.000 7.000 9.000 10.000
899.0 1 sp|P34152|FAK1_MOUSE 5.0 1090 123535 Focal adhesion kinase 1 OS=Mus musculus GN=Ptk2 PE=1 SV=3 10 5 0.500 2 3 3 2 1 2 1 1 1.091 2.400 1.229 1.200 sp|P34152|FAK1_MOUSE, sp|P70694|DHB5_MOUSE, sp|Q9QVP9|FAK2_MOUSE
900.0 1 sp|P34884|MIF_MOUSE 38.3 115 12504 Macrophage migration inhibitory factor OS=Mus musculus GN=Mif PE=1 SV=2 41 41 1.000 14 9 12 6 14 9 12 6 14.000 9.000 12.000 6.000
901.0 1 sp|P34914|HYES_MOUSE 65.9 554 62515 Bifunctional epoxide hydrolase 2 OS=Mus musculus GN=Ephx2 PE=1 SV=2 316 316 1.000 80 89 79 68 80 89 79 68 80.000 89.000 79.000 68.000
902.0 1 sp|P35123|UBP4_MOUSE 17.2 962 108342 Ubiquitin carboxyl-terminal hydrolase 4 OS=Mus musculus GN=Usp4 PE=1 SV=3 40 35 0.875 10 9 11 10 9 8 9 9 9.562 8.500 10.059 9.450 sp|P35123|UBP4_MOUSE, sp|Q8R5H1|UBP15_MOUSE
903.0 1 sp|P35235|PTN11_MOUSE 57.5 597 68460 Tyrosine-protein phosphatase non-receptor type 11 OS=Mus musculus GN=Ptpn11 PE=1 SV=2 107 107 1.000 23 25 29 30 23 25 29 30 23.000 25.000 29.000 30.000
904.0 1 sp|P35276|RAB3D_MOUSE 45.2 219 24416 Ras-related protein Rab-3D OS=Mus musculus GN=Rab3d PE=1 SV=1 71 19 0.268 17 18 20 16 3 5 6 5 9.933 9.688 11.320 8.500 sp|O35963|RB33B_MOUSE, sp|P35276|RAB3D_MOUSE, sp|P35279|RAB6A_MOUSE, sp|P35283|RAB12_MOUSE, sp|P55258|RAB8A_MOUSE, sp|P61027|RAB10_MOUSE, sp|P61028|RAB8B_MOUSE, sp|P62821|RAB1A_MOUSE, sp|P63011|RAB3A_MOUSE, sp|Q6PHN9|RAB35_MOUSE, sp|Q8CG50|RAB43_MOUSE, sp|Q91V41|RAB14_MOUSE, sp|Q91ZR1|RAB4B_MOUSE, sp|Q9D1G1|RAB1B_MOUSE, sp|Q9DD03|RAB13_MOUSE
905.0 1 sp|P35278|RAB5C_MOUSE 53.2 216 23412 Ras-related protein Rab-5C OS=Mus musculus GN=Rab5c PE=1 SV=2 51 27 0.529 10 15 13 13 5 8 7 7 6.923 11.500 9.100 9.471 sp|P35278|RAB5C_MOUSE, sp|P61021|RAB5B_MOUSE, sp|Q9CQD1|RAB5A_MOUSE
906.0 1 sp|P35279|RAB6A_MOUSE 31.2 208 23590 Ras-related protein Rab-6A OS=Mus musculus GN=Rab6a PE=1 SV=4 41 14 0.341 9 7 13 12 4 0 6 4 4.244 0.000 6.467 4.400 sp|O35963|RB33B_MOUSE, sp|P35276|RAB3D_MOUSE, sp|P35279|RAB6A_MOUSE, sp|P35283|RAB12_MOUSE, sp|P55258|RAB8A_MOUSE, sp|P61027|RAB10_MOUSE, sp|P61028|RAB8B_MOUSE, sp|P62821|RAB1A_MOUSE, sp|P63011|RAB3A_MOUSE, sp|Q6PHN9|RAB35_MOUSE, sp|Q8CG50|RAB43_MOUSE, sp|Q91V41|RAB14_MOUSE, sp|Q91ZR1|RAB4B_MOUSE, sp|Q9D1G1|RAB1B_MOUSE
907.0 1 sp|P35282|RAB21_MOUSE 20.7 222 24106 Ras-related protein Rab-21 OS=Mus musculus GN=Rab21 PE=1 SV=4 35 35 1.000 9 10 7 9 9 10 7 9 9.000 10.000 7.000 9.000
908.0 1 sp|P35283|RAB12_MOUSE 49.8 243 27328 Ras-related protein Rab-12 OS=Mus musculus GN=Rab12 PE=1 SV=3 53 26 0.491 14 14 12 13 9 7 5 5 9.549 7.563 5.389 5.500 sp|O35963|RB33B_MOUSE, sp|P35276|RAB3D_MOUSE, sp|P35279|RAB6A_MOUSE, sp|P35283|RAB12_MOUSE, sp|P55258|RAB8A_MOUSE, sp|P61027|RAB10_MOUSE, sp|P61028|RAB8B_MOUSE, sp|P62821|RAB1A_MOUSE, sp|P63011|RAB3A_MOUSE, sp|Q6PHN9|RAB35_MOUSE, sp|Q8CG50|RAB43_MOUSE, sp|Q91V41|RAB14_MOUSE, sp|Q91ZR1|RAB4B_MOUSE, sp|Q9D1G1|RAB1B_MOUSE
909.0 1 sp|P35285|RB22A_MOUSE 38.7 194 21802 Ras-related protein Rab-22A OS=Mus musculus GN=Rab22a PE=1 SV=2 21 17 0.810 7 6 5 3 6 5 4 2 7.000 5.714 4.667 2.500 sp|P35285|RB22A_MOUSE, sp|Q921E2|RAB31_MOUSE
910.0 1 sp|P35288|RAB23_MOUSE 38.4 237 26678 Ras-related protein Rab-23 OS=Mus musculus GN=Rab23 PE=1 SV=2 26 26 1.000 6 4 8 8 6 4 8 8 6.000 4.000 8.000 8.000
911.0 1 sp|P35290|RAB24_MOUSE 25.1 203 23144 Ras-related protein Rab-24 OS=Mus musculus GN=Rab24 PE=1 SV=2 9 9 1.000 2 2 2 3 2 2 2 3 2.000 2.000 2.000 3.000
912.0 1 sp|P35293|RAB18_MOUSE 60.7 206 23035 Ras-related protein Rab-18 OS=Mus musculus GN=Rab18 PE=1 SV=2 63 63 1.000 15 17 16 15 15 17 16 15 15.000 17.000 16.000 15.000
913.0 1 sp|P35441|TSP1_MOUSE 36.0 1170 129646 Thrombospondin-1 OS=Mus musculus GN=Thbs1 PE=1 SV=1 143 143 1.000 33 40 36 34 33 40 36 34 33.000 40.000 36.000 34.000
914.0 1 sp|P35486|ODPA_MOUSE 62.6 390 43231 Pyruvate dehydrogenase E1 component subunit alpha, somatic form, mitochondrial OS=Mus musculus GN=Pdha1 PE=1 SV=1 126 126 1.000 38 28 27 33 38 28 27 33 38.000 28.000 27.000 33.000
915.0 1 sp|P35487|ODPAT_MOUSE 29.9 391 43412 Pyruvate dehydrogenase E1 component subunit alpha, testis-specific form, mitochondrial OS=Mus musculus GN=Pdha2 PE=1 SV=1 30 30 1.000 6 13 5 6 6 13 5 6 6.000 13.000 5.000 6.000
916.0 1 sp|P35492|HUTH_MOUSE 36.8 657 72257 Histidine ammonia-lyase OS=Mus musculus GN=Hal PE=1 SV=1 86 86 1.000 21 20 20 25 21 20 20 25 21.000 20.000 20.000 25.000
917.0 1 sp|P35505|FAAA_MOUSE 59.4 419 46175 Fumarylacetoacetase OS=Mus musculus GN=Fah PE=1 SV=2 125 125 1.000 31 30 29 35 31 30 29 35 31.000 30.000 29.000 35.000
918.0 1 sp|P35550|FBRL_MOUSE 13.5 327 34306 rRNA 2'-O-methyltransferase fibrillarin OS=Mus musculus GN=Fbl PE=1 SV=2 10 10 1.000 2 5 1 2 2 5 1 2 2.000 5.000 1.000 2.000
919.0 1 sp|P35564|CALX_MOUSE 44.7 591 67277 Calnexin OS=Mus musculus GN=Canx PE=1 SV=1 126 126 1.000 26 32 34 34 26 32 34 34 26.000 32.000 34.000 34.000
920.0 1 sp|P35585|AP1M1_MOUSE 42.1 423 48542 AP-1 complex subunit mu-1 OS=Mus musculus GN=Ap1m1 PE=1 SV=3 48 42 0.875 14 10 9 15 13 9 7 13 14.000 9.900 9.000 15.000 sp|P35585|AP1M1_MOUSE, sp|Q9WVP1|AP1M2_MOUSE
921.0 1 sp|P35700|PRDX1_MOUSE 63.3 199 22176 Peroxiredoxin-1 OS=Mus musculus GN=Prdx1 PE=1 SV=1 298 251 0.842 84 70 78 66 72 57 65 57 83.368 69.148 77.246 65.016 sp|O08807|PRDX4_MOUSE, sp|P35700|PRDX1_MOUSE
922.0 1 sp|P35762|CD81_MOUSE 17.8 236 25814 CD81 antigen OS=Mus musculus GN=Cd81 PE=1 SV=2 22 22 1.000 5 4 6 7 5 4 6 7 5.000 4.000 6.000 7.000
923.0 1 sp|P35802|GPM6A_MOUSE 7.6 278 31149 Neuronal membrane glycoprotein M6-a OS=Mus musculus GN=Gpm6a PE=1 SV=1 10 10 1.000 3 2 3 2 3 2 3 2 3.000 2.000 3.000 2.000
924.0 1 sp|P35821|PTN1_MOUSE 18.8 432 49593 Tyrosine-protein phosphatase non-receptor type 1 OS=Mus musculus GN=Ptpn1 PE=1 SV=2 14 14 1.000 3 3 3 5 3 3 3 5 3.000 3.000 3.000 5.000
925.0 1 sp|P35831|PTN12_MOUSE 20.4 775 86525 Tyrosine-protein phosphatase non-receptor type 12 OS=Mus musculus GN=Ptpn12 PE=1 SV=3 25 25 1.000 6 7 7 5 6 7 7 5 6.000 7.000 7.000 5.000
926.0 1 sp|P35922|FMR1_MOUSE 27.4 614 68988 Synaptic functional regulator FMR1 OS=Mus musculus GN=Fmr1 PE=1 SV=1 40 30 0.750 10 9 10 11 8 6 8 8 9.471 8.190 9.271 10.222 sp|P35922|FMR1_MOUSE, sp|Q61584|FXR1_MOUSE, sp|Q9WVR4|FXR2_MOUSE
927.0 1 sp|P35969|VGFR1_MOUSE 1.5 1333 149874 Vascular endothelial growth factor receptor 1 OS=Mus musculus GN=Flt1 PE=1 SV=1 6 1 0.167 2 2 1 1 0 1 0 0 0.000 1.034 0.000 0.000 sp|P05532|KIT_MOUSE, sp|P05622|PGFRB_MOUSE, sp|P26618|PGFRA_MOUSE, sp|P35969|VGFR1_MOUSE, sp|P63085|MK01_MOUSE, sp|Q63844|MK03_MOUSE, sp|Q80Y86|MK15_MOUSE
928.0 1 sp|P35979|RL12_MOUSE 67.9 165 17804 60S ribosomal protein L12 OS=Mus musculus GN=Rpl12 PE=1 SV=2 54 54 1.000 16 10 13 15 16 10 13 15 16.000 10.000 13.000 15.000
929.0 1 sp|P35980|RL18_MOUSE 29.8 188 21644 60S ribosomal protein L18 OS=Mus musculus GN=Rpl18 PE=1 SV=3 33 33 1.000 5 7 14 7 5 7 14 7 5.000 7.000 14.000 7.000
930.0 1 sp|P36371|TAP2_MOUSE 10.5 702 77444 Antigen peptide transporter 2 OS=Mus musculus GN=Tap2 PE=1 SV=1 10 10 1.000 2 2 2 4 2 2 2 4 2.000 2.000 2.000 4.000
931.0 1 sp|P36536|SAR1A_MOUSE 44.9 198 22371 GTP-binding protein SAR1a OS=Mus musculus GN=Sar1a PE=1 SV=1 55 43 0.782 14 15 15 11 11 12 12 8 12.435 13.500 13.636 9.263 sp|P36536|SAR1A_MOUSE, sp|Q9CQC9|SAR1B_MOUSE
932.0 1 sp|P36552|HEM6_MOUSE 12.6 443 49714 Oxygen-dependent coproporphyrinogen-III oxidase, mitochondrial OS=Mus musculus GN=Cpox PE=1 SV=2 12 12 1.000 2 2 4 4 2 2 4 4 2.000 2.000 4.000 4.000
933.0 1 sp|P36916|GNL1_MOUSE 8.4 607 68770 Guanine nucleotide-binding protein-like 1 OS=Mus musculus GN=Gnl1 PE=1 SV=4 18 18 1.000 4 4 5 5 4 4 5 5 4.000 4.000 5.000 5.000
934.0 1 sp|P36993|PPM1B_MOUSE 34.1 390 42795 Protein phosphatase 1B OS=Mus musculus GN=Ppm1b PE=1 SV=1 53 30 0.566 15 14 12 12 8 8 7 7 10.154 10.087 8.346 8.346 sp|P36993|PPM1B_MOUSE, sp|P49443|PPM1A_MOUSE
935.0 1 sp|P37040|NCPR_MOUSE 55.6 678 77043 NADPH--cytochrome P450 reductase OS=Mus musculus GN=Por PE=1 SV=2 177 177 1.000 43 44 43 47 43 44 43 47 43.000 44.000 43.000 47.000
936.0 1 sp|P37804|TAGL_MOUSE 80.6 201 22576 Transgelin OS=Mus musculus GN=Tagln PE=1 SV=3 178 178 1.000 48 48 39 43 48 48 39 43 48.000 48.000 39.000 43.000
937.0 1 sp|P37889|FBLN2_MOUSE 9.8 1221 131832 Fibulin-2 OS=Mus musculus GN=Fbln2 PE=1 SV=2 20 20 1.000 6 6 3 5 6 6 3 5 6.000 6.000 3.000 5.000
938.0 1 sp|P38060|HMGCL_MOUSE 46.2 325 34239 Hydroxymethylglutaryl-CoA lyase, mitochondrial OS=Mus musculus GN=Hmgcl PE=1 SV=2 31 31 1.000 10 10 5 6 10 10 5 6 10.000 10.000 5.000 6.000
939.0 1 sp|P38585|TTL_MOUSE 10.9 377 43136 Tubulin--tyrosine ligase OS=Mus musculus GN=Ttl PE=1 SV=2 3 3 1.000 1 0 2 0 1 0 2 0 1.000 0.000 2.000 0.000
940.0 1 sp|P38647|GRP75_MOUSE 60.4 679 73460 Stress-70 protein, mitochondrial OS=Mus musculus GN=Hspa9 PE=1 SV=3 323 315 0.975 90 73 81 79 88 72 79 76 89.913 72.973 80.292 77.694 REV_Q6A078, sp|P17156|HSP72_MOUSE, sp|P38647|GRP75_MOUSE, sp|P63017|HSP7C_MOUSE
941.0 1 sp|P39039|MBL1_MOUSE 9.6 239 25396 Mannose-binding protein A OS=Mus musculus GN=Mbl1 PE=1 SV=1 8 8 1.000 3 2 2 1 3 2 2 1 3.000 2.000 2.000 1.000
942.0 1 sp|P39053|DYN1_MOUSE 25.0 867 97802 Dynamin-1 OS=Mus musculus GN=Dnm1 PE=1 SV=2 58 21 0.362 16 14 15 13 5 5 7 4 7.474 7.333 9.371 5.589 sp|P39053|DYN1_MOUSE, sp|P39054|DYN2_MOUSE, sp|Q8BZ98|DYN3_MOUSE
943.0 1 sp|P39054|DYN2_MOUSE 32.8 870 98144 Dynamin-2 OS=Mus musculus GN=Dnm2 PE=1 SV=2 110 63 0.573 28 24 27 31 16 13 16 18 24.806 20.800 24.244 28.940 sp|P39053|DYN1_MOUSE, sp|P39054|DYN2_MOUSE, sp|Q8BZ98|DYN3_MOUSE
944.0 1 sp|P39061|COIA1_MOUSE 6.3 1774 182169 Collagen alpha-1(XVIII) chain OS=Mus musculus GN=Col18a1 PE=1 SV=4 34 34 1.000 7 9 10 8 7 9 10 8 7.000 9.000 10.000 8.000
945.0 1 sp|P39447|ZO1_MOUSE 17.6 1745 194739 Tight junction protein ZO-1 OS=Mus musculus GN=Tjp1 PE=1 SV=2 45 45 1.000 8 10 12 15 8 10 12 15 8.000 10.000 12.000 15.000
946.0 1 sp|P39654|LOX15_MOUSE 33.3 663 75444 Arachidonate 15-lipoxygenase OS=Mus musculus GN=Alox15 PE=1 SV=4 35 35 1.000 7 11 8 9 7 11 8 9 7.000 11.000 8.000 9.000
947.0 1 sp|P39655|LOX12_MOUSE 10.7 663 75389 Arachidonate 12-lipoxygenase, 12S-type OS=Mus musculus GN=Alox12 PE=1 SV=4 12 12 1.000 2 3 2 5 2 3 2 5 2.000 3.000 2.000 5.000
948.0 1 sp|P39688|FYN_MOUSE 14.7 537 60674 Tyrosine-protein kinase Fyn OS=Mus musculus GN=Fyn PE=1 SV=4 27 3 0.111 9 7 7 4 1 1 1 0 1.663 1.452 1.444 0.000 sp|P05480|SRC_MOUSE, sp|P08103|HCK_MOUSE, sp|P25911|LYN_MOUSE, sp|P30285|CDK4_MOUSE, sp|P39688|FYN_MOUSE, sp|P49615|CDK5_MOUSE, sp|P97377|CDK2_MOUSE, sp|Q04735|CDK16_MOUSE, sp|Q04736|YES_MOUSE, sp|Q64261|CDK6_MOUSE, sp|Q8K0D0|CDK17_MOUSE, sp|Q99J95|CDK9_MOUSE
949.0 1 sp|P40124|CAP1_MOUSE 63.1 474 51564 Adenylyl cyclase-associated protein 1 OS=Mus musculus GN=Cap1 PE=1 SV=4 144 138 0.958 43 34 32 35 40 34 31 33 42.927 34.000 32.000 35.000 sp|P40124|CAP1_MOUSE, sp|Q9CYT6|CAP2_MOUSE