genevalidator 1.6.1 → 1.6.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +3 -1
- data/.travis.yml +2 -0
- data/README.md +78 -30
- data/Rakefile +11 -8
- data/aux/app_template_footer.erb +1 -6
- data/aux/app_template_header.erb +12 -32
- data/aux/files/css/style.css +2 -8
- data/aux/files/js/plots.js +564 -576
- data/aux/files/js/script.js +10 -0
- data/aux/json_footer.erb +8 -0
- data/aux/json_header.erb +19 -0
- data/aux/json_query.erb +14 -0
- data/aux/template_footer.erb +9 -58
- data/aux/template_header.erb +18 -58
- data/aux/template_query.erb +8 -36
- data/bin/genevalidator +45 -32
- data/genevalidator.gemspec +11 -7
- data/lib/genevalidator.rb +75 -455
- data/lib/genevalidator/arg_validation.rb +78 -107
- data/lib/genevalidator/blast.rb +57 -60
- data/lib/genevalidator/clusterization.rb +15 -15
- data/lib/genevalidator/exceptions.rb +32 -5
- data/lib/genevalidator/get_raw_sequences.rb +70 -33
- data/lib/genevalidator/hsp.rb +1 -4
- data/lib/genevalidator/json_to_gv_results.rb +109 -0
- data/lib/genevalidator/output.rb +177 -185
- data/lib/genevalidator/pool.rb +2 -1
- data/lib/genevalidator/sequences.rb +3 -3
- data/lib/genevalidator/tabular_parser.rb +24 -18
- data/lib/genevalidator/validation.rb +279 -0
- data/lib/genevalidator/validation_alignment.rb +31 -47
- data/lib/genevalidator/validation_blast_reading_frame.rb +19 -18
- data/lib/genevalidator/validation_duplication.rb +23 -19
- data/lib/genevalidator/validation_gene_merge.rb +30 -65
- data/lib/genevalidator/validation_length_cluster.rb +14 -53
- data/lib/genevalidator/validation_length_rank.rb +10 -11
- data/lib/genevalidator/validation_open_reading_frame.rb +18 -19
- data/lib/genevalidator/validation_report.rb +2 -5
- data/lib/genevalidator/validation_test.rb +8 -4
- data/lib/genevalidator/version.rb +1 -1
- data/test/test_all_validations.rb +51 -66
- data/test/test_blast.rb +68 -51
- data/test/test_clusterization.rb +1 -1
- data/test/test_clusterization_2d.rb +19 -13
- data/test/test_extended_array_methods.rb +1 -1
- data/test/test_files/all_validations_mrna/mrna.blast_tab6 +1806 -0
- data/test/test_files/all_validations_mrna/mrna.blast_tab7 +1865 -0
- data/test/test_files/all_validations_mrna/{all_validations_mrna.fasta.blast_xml → mrna.blast_xml} +18642 -1
- data/test/test_files/all_validations_mrna/{all_validations_mrna.fasta.blast_xml.index → mrna.blast_xml.index} +300 -0
- data/test/test_files/all_validations_mrna/{all_validations_mrna.fasta → mrna.fa} +0 -0
- data/test/test_files/all_validations_mrna/mrna.raw_seq +3970 -0
- data/test/test_files/all_validations_mrna/{all_validations_mrna.fasta.blast_xml.raw_seq.idx → mrna.raw_seq.idx} +901 -1
- data/test/test_files/all_validations_prot/{all_validations_prot.fasta.blast_tab → prot.blast_tab6} +416 -0
- data/test/test_files/all_validations_prot/prot.blast_tab7 +2400 -0
- data/test/test_files/all_validations_prot/{all_validations_prot.fasta.blast_xml → prot.blast_xml} +18299 -6723
- data/test/test_files/all_validations_prot/{all_validations_prot.fasta.blast_xml.index → prot.blast_xml.index} +408 -0
- data/test/test_files/all_validations_prot/{all_validations_prot.fasta → prot.fa} +0 -0
- data/test/test_files/all_validations_prot/{all_validations_prot.fasta.blast_xml.raw_seq → prot.raw_seq} +2735 -0
- data/test/test_files/all_validations_prot/{all_validations_prot.fasta.blast_xml.raw_seq.idx → prot.raw_seq.idx} +3032 -1808
- data/test/test_sequences.rb +46 -41
- data/test/test_validation_open_reading_frame.rb +318 -202
- data/test/test_validations.rb +48 -32
- metadata +76 -102
- data/doc/AliasDuplicationError.html +0 -134
- data/doc/AlignmentValidation.html +0 -1687
- data/doc/AlignmentValidationOutput.html +0 -659
- data/doc/Blast.html +0 -1905
- data/doc/BlastRFValidationOutput.html +0 -545
- data/doc/BlastReadingFrameValidation.html +0 -370
- data/doc/BlastUtils.html +0 -875
- data/doc/ClasspathError.html +0 -134
- data/doc/Cluster.html +0 -1316
- data/doc/DuplciationValidationOutput.html +0 -564
- data/doc/DuplicationValidation.html +0 -920
- data/doc/DuplicationValidationOutput.html +0 -564
- data/doc/FileNotFoundException.html +0 -134
- data/doc/GeneMergeValidation.html +0 -935
- data/doc/GeneMergeValidationOutput.html +0 -652
- data/doc/HierarchicalClusterization.html +0 -994
- data/doc/Hsp.html +0 -1485
- data/doc/InconsistentTabularFormat.html +0 -135
- data/doc/LengthClusterValidation.html +0 -982
- data/doc/LengthClusterValidationOutput.html +0 -515
- data/doc/LengthRankValidation.html +0 -496
- data/doc/LengthRankValidationOutput.html +0 -517
- data/doc/NoInternetError.html +0 -135
- data/doc/NoMafftInstallationError.html +0 -134
- data/doc/NoPIdentError.html +0 -134
- data/doc/NoValidationError.html +0 -134
- data/doc/NotEnoughHitsError.html +0 -135
- data/doc/ORFValidationOutput.html +0 -593
- data/doc/OpenReadingFrameValidation.html +0 -1107
- data/doc/OtherError.html +0 -123
- data/doc/Output.html +0 -1540
- data/doc/Pair.html +0 -309
- data/doc/PairCluster.html +0 -767
- data/doc/Plot.html +0 -837
- data/doc/QueryError.html +0 -134
- data/doc/ReportClassError.html +0 -135
- data/doc/Sequence.html +0 -1299
- data/doc/SequenceTypeError.html +0 -135
- data/doc/TabularEntry.html +0 -837
- data/doc/TabularParser.html +0 -1104
- data/doc/Validation.html +0 -2147
- data/doc/ValidationClassError.html +0 -134
- data/doc/ValidationOutput.html +0 -460
- data/doc/ValidationReport.html +0 -940
- data/doc/ValidationTest.html +0 -939
- data/doc/_index.html +0 -449
- data/doc/class_list.html +0 -54
- data/doc/css/common.css +0 -1
- data/doc/css/full_list.css +0 -57
- data/doc/css/style.css +0 -338
- data/doc/file.README.html +0 -151
- data/doc/file_list.html +0 -56
- data/doc/frames.html +0 -26
- data/doc/index.html +0 -151
- data/doc/js/app.js +0 -214
- data/doc/js/full_list.js +0 -178
- data/doc/js/jquery.js +0 -4
- data/doc/method_list.html +0 -1505
- data/doc/top-level-namespace.html +0 -112
- data/test/test_files/all_validations_mrna/all_validations_mrna.fasta.blast_tab +0 -967
- data/test/test_files/all_validations_mrna/all_validations_mrna.fasta.blast_tab.index +0 -967
- data/test/test_files/all_validations_mrna/all_validations_mrna.fasta.blast_tab.raw_seq +0 -4929
- data/test/test_files/all_validations_mrna/all_validations_mrna.fasta.blast_tab.raw_seq.idx +0 -1006
- data/test/test_files/all_validations_mrna/all_validations_mrna.fasta.blast_xml.raw_seq +0 -2075
- data/test/test_files/all_validations_prot/all_validations_prot.fasta.blast_tab.index +0 -1864
- data/test/test_files/all_validations_prot/all_validations_prot.fasta.blast_tab.raw_seq +0 -42411
- data/test/test_files/all_validations_prot/all_validations_prot.fasta.blast_tab.raw_seq.idx +0 -3751
@@ -1,112 +0,0 @@
|
|
1
|
-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
|
-
<head>
|
5
|
-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
6
|
-
<title>
|
7
|
-
Top Level Namespace
|
8
|
-
|
9
|
-
— Documentation by YARD 0.8.7.2
|
10
|
-
|
11
|
-
</title>
|
12
|
-
|
13
|
-
<link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
|
14
|
-
|
15
|
-
<link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
|
16
|
-
|
17
|
-
<script type="text/javascript" charset="utf-8">
|
18
|
-
hasFrames = window.top.frames.main ? true : false;
|
19
|
-
relpath = '';
|
20
|
-
framesUrl = "frames.html#!" + escape(window.location.href);
|
21
|
-
</script>
|
22
|
-
|
23
|
-
|
24
|
-
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
25
|
-
|
26
|
-
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
27
|
-
|
28
|
-
|
29
|
-
</head>
|
30
|
-
<body>
|
31
|
-
<div id="header">
|
32
|
-
<div id="menu">
|
33
|
-
|
34
|
-
<a href="_index.html">Index</a> »
|
35
|
-
|
36
|
-
|
37
|
-
<span class="title">Top Level Namespace</span>
|
38
|
-
|
39
|
-
|
40
|
-
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
|
41
|
-
</div>
|
42
|
-
|
43
|
-
<div id="search">
|
44
|
-
|
45
|
-
<a class="full_list_link" id="class_list_link"
|
46
|
-
href="class_list.html">
|
47
|
-
Class List
|
48
|
-
</a>
|
49
|
-
|
50
|
-
<a class="full_list_link" id="method_list_link"
|
51
|
-
href="method_list.html">
|
52
|
-
Method List
|
53
|
-
</a>
|
54
|
-
|
55
|
-
<a class="full_list_link" id="file_list_link"
|
56
|
-
href="file_list.html">
|
57
|
-
File List
|
58
|
-
</a>
|
59
|
-
|
60
|
-
</div>
|
61
|
-
<div class="clear"></div>
|
62
|
-
</div>
|
63
|
-
|
64
|
-
<iframe id="search_frame"></iframe>
|
65
|
-
|
66
|
-
<div id="content"><h1>Top Level Namespace
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
</h1>
|
71
|
-
|
72
|
-
<dl class="box">
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
</dl>
|
82
|
-
<div class="clear"></div>
|
83
|
-
|
84
|
-
<h2>Defined Under Namespace</h2>
|
85
|
-
<p class="children">
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
<strong class="classes">Classes:</strong> <span class='object_link'><a href="AliasDuplicationError.html" title="AliasDuplicationError (class)">AliasDuplicationError</a></span>, <span class='object_link'><a href="AlignmentValidation.html" title="AlignmentValidation (class)">AlignmentValidation</a></span>, <span class='object_link'><a href="AlignmentValidationOutput.html" title="AlignmentValidationOutput (class)">AlignmentValidationOutput</a></span>, <span class='object_link'><a href="BlastRFValidationOutput.html" title="BlastRFValidationOutput (class)">BlastRFValidationOutput</a></span>, <span class='object_link'><a href="BlastReadingFrameValidation.html" title="BlastReadingFrameValidation (class)">BlastReadingFrameValidation</a></span>, <span class='object_link'><a href="BlastUtils.html" title="BlastUtils (class)">BlastUtils</a></span>, <span class='object_link'><a href="ClasspathError.html" title="ClasspathError (class)">ClasspathError</a></span>, <span class='object_link'><a href="Cluster.html" title="Cluster (class)">Cluster</a></span>, <span class='object_link'><a href="DuplicationValidation.html" title="DuplicationValidation (class)">DuplicationValidation</a></span>, <span class='object_link'><a href="DuplicationValidationOutput.html" title="DuplicationValidationOutput (class)">DuplicationValidationOutput</a></span>, <span class='object_link'><a href="FileNotFoundException.html" title="FileNotFoundException (class)">FileNotFoundException</a></span>, <span class='object_link'><a href="GeneMergeValidation.html" title="GeneMergeValidation (class)">GeneMergeValidation</a></span>, <span class='object_link'><a href="GeneMergeValidationOutput.html" title="GeneMergeValidationOutput (class)">GeneMergeValidationOutput</a></span>, <span class='object_link'><a href="HierarchicalClusterization.html" title="HierarchicalClusterization (class)">HierarchicalClusterization</a></span>, <span class='object_link'><a href="Hsp.html" title="Hsp (class)">Hsp</a></span>, <span class='object_link'><a href="InconsistentTabularFormat.html" title="InconsistentTabularFormat (class)">InconsistentTabularFormat</a></span>, <span class='object_link'><a href="LengthClusterValidation.html" title="LengthClusterValidation (class)">LengthClusterValidation</a></span>, <span class='object_link'><a href="LengthClusterValidationOutput.html" title="LengthClusterValidationOutput (class)">LengthClusterValidationOutput</a></span>, <span class='object_link'><a href="LengthRankValidation.html" title="LengthRankValidation (class)">LengthRankValidation</a></span>, <span class='object_link'><a href="LengthRankValidationOutput.html" title="LengthRankValidationOutput (class)">LengthRankValidationOutput</a></span>, <span class='object_link'><a href="NoInternetError.html" title="NoInternetError (class)">NoInternetError</a></span>, <span class='object_link'><a href="NoMafftInstallationError.html" title="NoMafftInstallationError (class)">NoMafftInstallationError</a></span>, <span class='object_link'><a href="NoPIdentError.html" title="NoPIdentError (class)">NoPIdentError</a></span>, <span class='object_link'><a href="NoValidationError.html" title="NoValidationError (class)">NoValidationError</a></span>, <span class='object_link'><a href="NotEnoughHitsError.html" title="NotEnoughHitsError (class)">NotEnoughHitsError</a></span>, <span class='object_link'><a href="ORFValidationOutput.html" title="ORFValidationOutput (class)">ORFValidationOutput</a></span>, <span class='object_link'><a href="OpenReadingFrameValidation.html" title="OpenReadingFrameValidation (class)">OpenReadingFrameValidation</a></span>, <span class='object_link'><a href="OtherError.html" title="OtherError (class)">OtherError</a></span>, <span class='object_link'><a href="Output.html" title="Output (class)">Output</a></span>, <span class='object_link'><a href="Pair.html" title="Pair (class)">Pair</a></span>, <span class='object_link'><a href="PairCluster.html" title="PairCluster (class)">PairCluster</a></span>, <span class='object_link'><a href="Plot.html" title="Plot (class)">Plot</a></span>, <span class='object_link'><a href="QueryError.html" title="QueryError (class)">QueryError</a></span>, <span class='object_link'><a href="ReportClassError.html" title="ReportClassError (class)">ReportClassError</a></span>, <span class='object_link'><a href="Sequence.html" title="Sequence (class)">Sequence</a></span>, <span class='object_link'><a href="SequenceTypeError.html" title="SequenceTypeError (class)">SequenceTypeError</a></span>, <span class='object_link'><a href="TabularEntry.html" title="TabularEntry (class)">TabularEntry</a></span>, <span class='object_link'><a href="TabularParser.html" title="TabularParser (class)">TabularParser</a></span>, <span class='object_link'><a href="Validation.html" title="Validation (class)">Validation</a></span>, <span class='object_link'><a href="ValidationClassError.html" title="ValidationClassError (class)">ValidationClassError</a></span>, <span class='object_link'><a href="ValidationReport.html" title="ValidationReport (class)">ValidationReport</a></span>, <span class='object_link'><a href="ValidationTest.html" title="ValidationTest (class)">ValidationTest</a></span>
|
91
|
-
|
92
|
-
|
93
|
-
</p>
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
</div>
|
104
|
-
|
105
|
-
<div id="footer">
|
106
|
-
Generated on Sat Sep 28 07:01:32 2013 by
|
107
|
-
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
108
|
-
0.8.7.2 (ruby-1.9.3).
|
109
|
-
</div>
|
110
|
-
|
111
|
-
</body>
|
112
|
-
</html>
|
@@ -1,967 +0,0 @@
|
|
1
|
-
gi|514746961|ref|XM_005019748.1| sp|P67970|INS_CHICK P67970 107 1 321 1 107 107 1 86.92 2e-52
|
2
|
-
gi|514746961|ref|XM_005019748.1| sp|P51463|INS_SELRF P51463 103 61 321 17 103 87 1 87.36 8e-51
|
3
|
-
gi|514746961|ref|XM_005019748.1| sp|P01333|INS_ANAPL P01333 81 73 321 1 81 83 1 92.77 6e-48
|
4
|
-
gi|514746961|ref|XM_005019748.1| sp|P12707|INS2_XENLA P12707 106 1 321 1 106 107 1 66.36 4e-39
|
5
|
-
gi|514746961|ref|XM_005019748.1| sp|P12706|INS1_XENLA P12706 106 1 321 1 106 107 1 63.55 4e-37
|
6
|
-
gi|514746961|ref|XM_005019748.1| sp|Q62587|INS_PSAOB Q62587 110 1 321 1 110 113 1 61.95 2e-31
|
7
|
-
gi|514746961|ref|XM_005019748.1| sp|P01323|INS2_RAT P01323 110 1 321 1 110 113 1 61.95 2e-31
|
8
|
-
gi|514746961|ref|XM_005019748.1| sp|P01326|INS2_MOUSE P01326 110 1 321 1 110 113 1 60.18 4e-31
|
9
|
-
gi|514746961|ref|XM_005019748.1| sp|P01322|INS1_RAT P01322 110 1 321 1 110 113 1 61.95 4e-31
|
10
|
-
gi|514746961|ref|XM_005019748.1| sp|P30406|INS_MACFA P30406 110 1 321 1 110 113 1 65.49 4e-31
|
11
|
-
gi|514746961|ref|XM_005019748.1| sp|P01321|INS_CANFA P01321 110 1 321 1 110 110 1 65.45 9e-31
|
12
|
-
gi|514746961|ref|XM_005019748.1| sp|P30407|INS_CHLAE P30407 110 1 321 1 110 113 1 65.49 1e-30
|
13
|
-
gi|514746961|ref|XM_005019748.1| sp|P01313|INS_CRILO P01313 110 1 321 1 110 113 1 60.18 1e-30
|
14
|
-
gi|514746961|ref|XM_005019748.1| sp|Q8HXV2|INS_PONPY Q8HXV2 110 1 321 1 110 113 1 64.60 3e-30
|
15
|
-
gi|514746961|ref|XM_005019748.1| sp|P30410|INS_PANTR P30410 110 1 321 1 110 113 1 63.72 3e-30
|
16
|
-
gi|514746961|ref|XM_005019748.1| sp|P01318|INS_SHEEP P01318 105 1 321 1 105 107 1 64.49 4e-30
|
17
|
-
gi|514746961|ref|XM_005019748.1| sp|P01308|INS_HUMAN P01308 110 1 321 1 110 113 1 64.60 4e-30
|
18
|
-
gi|514746961|ref|XM_005019748.1| sp|Q6YK33|INS_GORGO Q6YK33 110 1 321 1 110 113 1 64.60 4e-30
|
19
|
-
gi|514746961|ref|XM_005019748.1| sp|P01325|INS1_MOUSE P01325 108 64 321 22 108 87 1 63.22 1e-29
|
20
|
-
gi|514746961|ref|XM_005019748.1| sp|Q98TA8|INS_PANBU Q98TA8 110 1 321 1 110 112 1 55.36 1e-29
|
21
|
-
gi|514746961|ref|XM_005019748.1| sp|P01317|INS_BOVIN P01317 105 1 321 1 105 107 1 63.55 2e-29
|
22
|
-
gi|514746961|ref|XM_005019748.1| sp|P01315|INS_PIG P01315 108 1 321 1 108 108 1 65.74 5e-28
|
23
|
-
gi|514746961|ref|XM_005019748.1| sp|Q91XI3|INS_SPETR Q91XI3 110 1 321 1 110 111 1 63.06 2e-27
|
24
|
-
gi|514746961|ref|XM_005019748.1| sp|P01311|INS_RABIT P01311 110 64 321 22 110 96 1 58.33 5e-27
|
25
|
-
gi|514746961|ref|XM_005019748.1| sp|P06306|INS_FELCA P06306 110 1 321 1 110 110 1 60.91 8e-27
|
26
|
-
gi|514746961|ref|XM_005019748.1| sp|P04667|INS_ONCKE P04667 105 70 321 22 105 84 1 57.14 8e-27
|
27
|
-
gi|514746961|ref|XM_005019748.1| sp|P69045|INS_LOPAM P69045 116 4 321 3 116 116 1 53.45 1e-26
|
28
|
-
gi|514746961|ref|XM_005019748.1| sp|P67972|INS_AOTTR P67972 108 1 321 1 108 110 1 61.82 3e-26
|
29
|
-
gi|514746961|ref|XM_005019748.1| sp|P01335|INS_CYPCA P01335 108 1 321 1 108 111 1 54.05 4e-26
|
30
|
-
gi|514746961|ref|XM_005019748.1| sp|Q9W7R2|INS_VERMO Q9W7R2 115 4 321 3 115 115 1 50.43 2e-25
|
31
|
-
gi|514746961|ref|XM_005019748.1| sp|P68243|INS_CAIMO P68243 51 73 321 1 51 83 1 61.45 8e-25
|
32
|
-
gi|514746961|ref|XM_005019748.1| sp|P68245|INS_ANSAN P68245 51 73 321 1 51 83 1 61.45 8e-25
|
33
|
-
gi|514746961|ref|XM_005019748.1| sp|P81025|INS_ORENI P81025 113 4 321 3 113 113 1 49.56 8e-25
|
34
|
-
gi|514746961|ref|XM_005019748.1| sp|O73727|INS_DANRE O73727 108 64 321 21 108 90 1 53.33 1e-22
|
35
|
-
gi|514746961|ref|XM_005019748.1| sp|P13190|INS_CALMI P13190 89 79 321 3 89 88 1 57.95 1e-22
|
36
|
-
gi|514746961|ref|XM_005019748.1| sp|P01327|INS_CHICH P01327 86 76 321 2 86 85 1 54.12 1e-22
|
37
|
-
gi|514746961|ref|XM_005019748.1| sp|P69048|INS_TRASC P69048 51 73 321 1 51 83 1 57.83 3e-22
|
38
|
-
gi|514746961|ref|XM_005019748.1| sp|P69047|INS_TRADO P69047 51 73 321 1 51 83 1 57.83 3e-22
|
39
|
-
gi|514746961|ref|XM_005019748.1| sp|P67969|INS_STRCA P67969 51 73 321 1 51 83 1 57.83 3e-22
|
40
|
-
gi|514746961|ref|XM_005019748.1| sp|P67968|INS_MELGA P67968 51 73 321 1 51 83 1 57.83 3e-22
|
41
|
-
gi|514746961|ref|XM_005019748.1| sp|P01310|INS_HORSE P01310 86 76 321 2 86 90 1 55.56 1e-21
|
42
|
-
gi|514746961|ref|XM_005019748.1| sp|P81423|INS_ACIGU P81423 52 73 321 1 52 83 1 55.42 2e-21
|
43
|
-
gi|514746961|ref|XM_005019748.1| sp|C0HJI8|INS2_HUSDA C0HJI8 52 73 321 1 52 83 1 54.22 7e-21
|
44
|
-
gi|514746961|ref|XM_005019748.1| sp|C0HJI7|INS1_HUSDA C0HJI7 58 61 321 2 58 88 1 53.41 1e-20
|
45
|
-
gi|514746961|ref|XM_005019748.1| sp|P12703|INS_ALLMI P12703 51 73 321 1 51 83 1 55.42 1e-20
|
46
|
-
gi|514746961|ref|XM_005019748.1| sp|P01320|INS_CAMDR P01320 51 76 321 2 51 82 1 54.88 2e-20
|
47
|
-
gi|514746961|ref|XM_005019748.1| sp|P01316|INS_ELEMA P01316 51 76 321 2 51 82 1 54.88 2e-20
|
48
|
-
gi|514746961|ref|XM_005019748.1| sp|P21563|INS_RODSP P21563 108 64 321 21 108 93 1 55.91 4e-20
|
49
|
-
gi|514746961|ref|XM_005019748.1| sp|P01314|INS_BALBO P01314 51 76 321 2 51 82 1 53.66 5e-20
|
50
|
-
gi|514746961|ref|XM_005019748.1| sp|P09476|INS_ATRSP P09476 52 73 321 1 52 83 1 51.81 5e-20
|
51
|
-
gi|514746961|ref|XM_005019748.1| sp|P67974|INS_PHYCD P67974 51 76 321 2 51 82 1 53.66 7e-20
|
52
|
-
gi|514746961|ref|XM_005019748.1| sp|P67973|INS_BALPH P67973 51 76 321 2 51 82 1 53.66 7e-20
|
53
|
-
gi|514746961|ref|XM_005019748.1| sp|P12708|INS_PTYDH P12708 51 73 321 1 51 83 1 51.81 1e-19
|
54
|
-
gi|514746961|ref|XM_005019748.1| sp|P01334|INS_CROAT P01334 51 73 321 1 51 83 1 51.81 1e-19
|
55
|
-
gi|514746961|ref|XM_005019748.1| sp|P01324|INS_ACOCA P01324 51 76 321 2 51 82 1 51.22 1e-19
|
56
|
-
gi|514746961|ref|XM_005019748.1| sp|P01319|INS_CAPHI P01319 51 76 321 2 51 82 1 53.66 2e-19
|
57
|
-
gi|514746961|ref|XM_005019748.1| sp|P18109|INS_DIDVI P18109 51 76 321 2 51 82 1 52.44 4e-19
|
58
|
-
gi|514746961|ref|XM_005019748.1| sp|P0C236|INS_POLSE P0C236 52 73 321 1 52 83 1 51.81 6e-19
|
59
|
-
gi|514746961|ref|XM_005019748.1| sp|P67971|INS_SAISC P67971 51 76 321 2 51 82 1 50.00 2e-18
|
60
|
-
gi|514746961|ref|XM_005019748.1| sp|P01342|INS_MYXGL P01342 115 85 321 31 115 85 1 49.41 6e-18
|
61
|
-
gi|514746961|ref|XM_005019748.1| sp|P01329|INS_CAVPO P01329 110 1 321 1 110 110 1 48.18 1e-17
|
62
|
-
gi|514746961|ref|XM_005019748.1| sp|P17715|INS_OCTDE P17715 109 67 321 23 107 86 1 51.16 1e-17
|
63
|
-
gi|514746961|ref|XM_005019748.1| sp|P29335|INS_AMICA P29335 52 73 321 1 52 83 1 46.99 2e-17
|
64
|
-
gi|514746961|ref|XM_005019748.1| sp|C0HJI3|INS2_KATPE C0HJI3 51 70 321 1 51 84 1 47.62 3e-17
|
65
|
-
gi|514746961|ref|XM_005019748.1| sp|P68992|INS_HYDCO P68992 59 79 321 3 59 81 1 53.09 3e-17
|
66
|
-
gi|514746961|ref|XM_005019748.1| sp|P68991|INS_CHIMO P68991 59 79 321 3 59 81 1 53.09 3e-17
|
67
|
-
gi|514746961|ref|XM_005019748.1| sp|P68990|INS_ONCKI P68990 50 73 321 1 50 83 1 46.99 3e-17
|
68
|
-
gi|514746961|ref|XM_005019748.1| sp|P68989|INS_ONCGO P68989 50 73 321 1 50 83 1 46.99 3e-17
|
69
|
-
gi|514746961|ref|XM_005019748.1| sp|P68987|INS_PETMA P68987 57 70 321 5 57 84 1 45.24 4e-17
|
70
|
-
gi|514746961|ref|XM_005019748.1| sp|P68988|INS_LAMFL P68988 57 70 321 5 57 84 1 45.24 4e-17
|
71
|
-
gi|514746961|ref|XM_005019748.1| sp|C0HJI5|INS1_THUOR C0HJI5 50 76 321 2 50 82 1 47.56 8e-17
|
72
|
-
gi|514746961|ref|XM_005019748.1| sp|P01328|INS_HYSCR P01328 51 76 321 2 51 82 1 48.78 1e-16
|
73
|
-
gi|514746961|ref|XM_005019748.1| sp|C0HJI2|INS1_KATPE C0HJI2 50 76 321 2 50 82 1 47.56 1e-16
|
74
|
-
gi|514746961|ref|XM_005019748.1| sp|P01340|INS_KATPE P01340 50 73 321 1 50 83 1 44.58 1e-16
|
75
|
-
gi|514746961|ref|XM_005019748.1| sp|P42633|INS_ANGRO P42633 51 73 321 1 51 83 1 45.78 1e-16
|
76
|
-
gi|514746961|ref|XM_005019748.1| sp|Q9TQY7|INS_ORNAN Q9TQY7 51 79 321 3 51 81 1 48.15 1e-16
|
77
|
-
gi|514746961|ref|XM_005019748.1| sp|F8WCM5|INSR2_HUMAN F8WCM5 200 1 177 1 59 59 1 79.66 2e-16
|
78
|
-
gi|514746961|ref|XM_005019748.1| sp|P01339|INS_THUTH P01339 51 70 321 1 51 84 1 45.24 2e-16
|
79
|
-
gi|514746961|ref|XM_005019748.1| sp|C0HJI1|INS_CARSE C0HJI1 51 70 321 1 51 84 1 45.24 2e-16
|
80
|
-
gi|514746961|ref|XM_005019748.1| sp|C0HJI6|INS2_THUOR C0HJI6 51 70 321 1 51 84 1 45.24 2e-16
|
81
|
-
gi|514746961|ref|XM_005019748.1| sp|P69046|INS_LOPPI P69046 51 70 321 1 51 84 1 45.24 2e-16
|
82
|
-
gi|514746961|ref|XM_005019748.1| sp|P81881|INS_PIAME P81881 52 67 321 1 52 85 1 45.88 2e-16
|
83
|
-
gi|514746961|ref|XM_005019748.1| sp|C0HJI4|INS_PAGMA C0HJI4 51 70 321 1 51 84 1 45.24 2e-16
|
84
|
-
gi|514746961|ref|XM_005019748.1| sp|P09477|INS_PLAFE P09477 51 82 321 5 51 80 1 46.25 3e-16
|
85
|
-
gi|514746961|ref|XM_005019748.1| sp|P01336|INS_GADMC P01336 51 73 321 2 51 83 1 44.58 4e-16
|
86
|
-
gi|514746961|ref|XM_005019748.1| sp|P01337|INS1_BATSP P01337 51 73 321 2 51 83 1 44.58 1e-15
|
87
|
-
gi|514746961|ref|XM_005019748.1| sp|P12705|INS_TORMA P12705 70 79 321 3 70 81 1 46.91 1e-15
|
88
|
-
gi|514746961|ref|XM_005019748.1| sp|P07453|INS_MYOSC P07453 50 73 321 1 50 83 1 46.99 1e-15
|
89
|
-
gi|514746961|ref|XM_005019748.1| sp|P12704|INS_SQUAC P12704 54 79 321 3 53 81 1 45.68 3e-14
|
90
|
-
gi|514746961|ref|XM_005019748.1| sp|P01338|INS2_BATSP P01338 50 73 321 2 50 83 1 42.17 5e-13
|
91
|
-
gi|514746961|ref|XM_005019748.1| sp|P83770|INSL_VIGUN P83770 51 76 321 2 51 82 1 46.34 9e-13
|
92
|
-
gi|514746961|ref|XM_005019748.1| sp|P22334|ILP_BRACL P22334 305 82 321 25 101 84 1 36.90 3e-08
|
93
|
-
gi|514746961|ref|XM_005019748.1| sp|Q02815|IGF1_ONCMY Q02815 176 70 318 43 105 83 1 36.14 3e-08
|
94
|
-
gi|514746961|ref|XM_005019748.1| sp|P17085|IGF1_ONCKI P17085 188 70 318 43 105 83 1 36.14 5e-08
|
95
|
-
gi|514746961|ref|XM_005019748.1| sp|Q02816|IGF2_ONCMY Q02816 214 61 318 46 110 86 1 36.05 8e-08
|
96
|
-
gi|514746961|ref|XM_005019748.1| sp|P51462|IGF1_COTJA P51462 124 64 318 16 80 85 1 34.12 8e-08
|
97
|
-
gi|514746961|ref|XM_005019748.1| sp|P33717|IGF2_CHICK P33717 187 82 318 29 84 79 1 34.18 1e-07
|
98
|
-
gi|514746961|ref|XM_005019748.1| sp|Q90326|IGF1B_CYPCA Q90326 161 73 318 44 105 82 1 35.37 1e-07
|
99
|
-
gi|514746961|ref|XM_005019748.1| sp|P22618|IGF_MYXGL P22618 139 79 318 40 102 80 1 36.25 1e-07
|
100
|
-
gi|514746961|ref|XM_005019748.1| sp|P18254|IGF1_CHICK P18254 153 64 318 45 109 85 1 34.12 1e-07
|
101
|
-
gi|514746961|ref|XM_005019748.1| sp|Q90325|IGF1A_CYPCA Q90325 161 73 318 44 105 82 1 35.37 1e-07
|
102
|
-
gi|514746961|ref|XM_005019748.1| sp|P07456|IGF2_BOVIN P07456 179 79 318 29 84 80 1 33.75 1e-07
|
103
|
-
gi|514746961|ref|XM_005019748.1| sp|P10764|IGF2_SHEEP P10764 179 79 318 29 84 80 1 33.75 1e-07
|
104
|
-
gi|514746961|ref|XM_005019748.1| sp|Q90WW4|IGF2A_XENLA Q90WW4 217 76 318 59 116 81 1 34.57 2e-07
|
105
|
-
gi|514746961|ref|XM_005019748.1| sp|P16501|IGF1A_XENLA P16501 153 64 318 45 109 85 1 32.94 2e-07
|
106
|
-
gi|514746961|ref|XM_005019748.1| sp|Q08279|IGF2_CAVPO Q08279 128 61 318 23 84 87 1 33.33 2e-07
|
107
|
-
gi|514746961|ref|XM_005019748.1| sp|Q95222|IGF1_RABIT Q95222 143 64 318 29 93 85 1 32.94 2e-07
|
108
|
-
gi|514746961|ref|XM_005019748.1| sp|Q28933|IGF1_SUNMU Q28933 81 70 318 3 65 83 1 31.33 2e-07
|
109
|
-
gi|514746961|ref|XM_005019748.1| sp|P17647|IGF1_CAVPO P17647 130 64 318 22 86 85 1 31.76 3e-07
|
110
|
-
gi|514746961|ref|XM_005019748.1| sp|P51459|IGF2_HORSE P51459 181 61 318 23 84 87 1 33.33 3e-07
|
111
|
-
gi|514746961|ref|XM_005019748.1| sp|P51458|IGF1_HORSE P51458 122 64 318 45 109 85 1 31.76 3e-07
|
112
|
-
gi|514746961|ref|XM_005019748.1| sp|Q68LC0|IGF1_RHIRO Q68LC0 153 64 318 45 109 85 1 31.76 3e-07
|
113
|
-
gi|514746961|ref|XM_005019748.1| sp|Q6IVA5|IGF1_AILFU Q6IVA5 153 64 318 45 109 85 1 31.76 3e-07
|
114
|
-
gi|514746961|ref|XM_005019748.1| sp|P07455|IGF1_BOVIN P07455 154 64 318 46 110 85 1 31.76 3e-07
|
115
|
-
gi|514746961|ref|XM_005019748.1| sp|P10763|IGF1_SHEEP P10763 154 64 318 46 110 85 1 31.76 3e-07
|
116
|
-
gi|514746961|ref|XM_005019748.1| sp|P51457|IGF1_CAPHI P51457 154 64 318 46 110 85 1 31.76 3e-07
|
117
|
-
gi|514746961|ref|XM_005019748.1| sp|P01344|IGF2_HUMAN P01344 180 61 318 23 84 87 1 33.33 3e-07
|
118
|
-
gi|514746961|ref|XM_005019748.1| sp|Q6JLX1|IGF1_AILME Q6JLX1 153 64 318 45 109 85 1 31.76 3e-07
|
119
|
-
gi|514746961|ref|XM_005019748.1| sp|Q6GUL6|IGF1_PANTA Q6GUL6 153 64 318 45 109 85 1 31.76 4e-07
|
120
|
-
gi|514746961|ref|XM_005019748.1| sp|P16545|IGF1_PIG P16545 153 64 318 45 109 85 1 31.76 4e-07
|
121
|
-
gi|514746961|ref|XM_005019748.1| sp|P23695|IGF2_PIG P23695 181 79 318 29 84 81 1 37.04 4e-07
|
122
|
-
gi|514746961|ref|XM_005019748.1| sp|P05019|IGF1_HUMAN P05019 195 64 318 45 109 85 1 31.76 5e-07
|
123
|
-
gi|514746961|ref|XM_005019748.1| sp|Q6INW9|IGF2B_XENLA Q6INW9 217 88 318 63 116 77 1 36.36 7e-07
|
124
|
-
gi|514746961|ref|XM_005019748.1| sp|P33712|IGF1_CANFA P33712 153 70 318 47 109 83 1 31.33 9e-07
|
125
|
-
gi|514746961|ref|XM_005019748.1| sp|P01346|IGF2_RAT P01346 180 79 318 29 84 80 1 32.50 1e-06
|
126
|
-
gi|514746961|ref|XM_005019748.1| sp|P09535|IGF2_MOUSE P09535 180 61 318 23 84 86 1 31.40 2e-06
|
127
|
-
gi|514746961|ref|XM_005019748.1| sp|P05017|IGF1_MOUSE P05017 153 64 318 45 109 85 1 34.12 2e-06
|
128
|
-
gi|514746961|ref|XM_005019748.1| sp|P08025|IGF1_RAT P08025 153 64 318 45 109 85 1 34.12 2e-06
|
129
|
-
gi|514746961|ref|XM_005019748.1| sp|P01330|INS_MYOCO P01330 51 76 321 2 50 82 1 36.59 5e-06
|
130
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P51463|INS_SELRF P51463 103 227 487 17 103 87 2 82.76 5e-46
|
131
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P51463|INS_SELRF P51463 103 61 246 17 78 62 1 85.48 6e-32
|
132
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P67970|INS_CHICK P67970 107 227 487 21 107 87 2 81.61 5e-45
|
133
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P67970|INS_CHICK P67970 107 1 246 1 82 82 1 85.37 3e-33
|
134
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01333|INS_ANAPL P01333 81 242 487 2 81 82 2 90.24 2e-44
|
135
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01333|INS_ANAPL P01333 81 73 246 1 58 58 1 96.55 6e-33
|
136
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P12707|INS2_XENLA P12707 106 203 487 1 106 106 2 61.32 3e-36
|
137
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P12707|INS2_XENLA P12707 106 1 246 1 81 82 1 62.20 2e-22
|
138
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P12706|INS1_XENLA P12706 106 203 487 1 106 106 2 59.43 1e-34
|
139
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P12706|INS1_XENLA P12706 106 1 246 1 81 82 1 59.76 8e-21
|
140
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01325|INS1_MOUSE P01325 108 212 487 17 108 93 2 60.22 1e-28
|
141
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01325|INS1_MOUSE P01325 108 64 222 22 75 54 1 64.81 1e-14
|
142
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01323|INS2_RAT P01323 110 212 487 17 110 98 2 58.16 2e-28
|
143
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01323|INS2_RAT P01323 110 1 231 1 83 83 1 60.24 9e-17
|
144
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01326|INS2_MOUSE P01326 110 212 487 17 110 98 2 58.16 3e-28
|
145
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01326|INS2_MOUSE P01326 110 1 231 1 83 83 1 57.83 1e-16
|
146
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01322|INS1_RAT P01322 110 212 487 17 110 98 2 58.16 5e-28
|
147
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01322|INS1_RAT P01322 110 1 231 1 83 83 1 59.04 1e-16
|
148
|
-
gi|514746961|ref|XM_005019748.1|dup sp|Q98TA8|INS_PANBU Q98TA8 110 242 487 25 110 87 2 56.32 6e-27
|
149
|
-
gi|514746961|ref|XM_005019748.1|dup sp|Q98TA8|INS_PANBU Q98TA8 110 1 237 1 82 84 1 52.38 3e-14
|
150
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P30406|INS_MACFA P30406 110 242 487 26 110 88 2 63.64 9e-27
|
151
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P30406|INS_MACFA P30406 110 1 192 1 64 64 1 76.56 2e-17
|
152
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P30407|INS_CHLAE P30407 110 242 487 26 110 88 2 63.64 9e-27
|
153
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P30407|INS_CHLAE P30407 110 1 192 1 64 64 1 76.56 6e-17
|
154
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01313|INS_CRILO P01313 110 248 487 28 110 86 2 62.79 1e-26
|
155
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01313|INS_CRILO P01313 110 1 189 1 63 63 1 71.43 5e-17
|
156
|
-
gi|514746961|ref|XM_005019748.1|dup sp|Q62587|INS_PSAOB Q62587 110 248 487 28 110 86 2 62.79 6e-26
|
157
|
-
gi|514746961|ref|XM_005019748.1|dup sp|Q62587|INS_PSAOB Q62587 110 1 183 1 61 61 1 73.77 4e-17
|
158
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01308|INS_HUMAN P01308 110 242 487 26 110 88 2 62.50 8e-26
|
159
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01308|INS_HUMAN P01308 110 1 177 1 59 59 1 79.66 4e-16
|
160
|
-
gi|514746961|ref|XM_005019748.1|dup sp|Q6YK33|INS_GORGO Q6YK33 110 242 487 26 110 88 2 62.50 8e-26
|
161
|
-
gi|514746961|ref|XM_005019748.1|dup sp|Q6YK33|INS_GORGO Q6YK33 110 1 177 1 59 59 1 79.66 4e-16
|
162
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01321|INS_CANFA P01321 110 248 487 28 110 83 2 66.27 8e-26
|
163
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01321|INS_CANFA P01321 110 1 231 1 78 78 1 66.67 7e-17
|
164
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P30410|INS_PANTR P30410 110 242 487 26 110 88 2 62.50 9e-26
|
165
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P30410|INS_PANTR P30410 110 1 177 1 59 59 1 77.97 3e-16
|
166
|
-
gi|514746961|ref|XM_005019748.1|dup sp|Q8HXV2|INS_PONPY Q8HXV2 110 242 487 26 110 88 2 62.50 1e-25
|
167
|
-
gi|514746961|ref|XM_005019748.1|dup sp|Q8HXV2|INS_PONPY Q8HXV2 110 1 177 1 59 59 1 79.66 2e-16
|
168
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01311|INS_RABIT P01311 110 242 487 26 110 92 2 58.70 3e-25
|
169
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01311|INS_RABIT P01311 110 64 180 22 60 39 1 79.49 3e-15
|
170
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01317|INS_BOVIN P01317 105 248 487 28 105 80 2 65.00 6e-25
|
171
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01317|INS_BOVIN P01317 105 1 189 1 63 63 1 74.60 3e-17
|
172
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01318|INS_SHEEP P01318 105 242 487 26 105 82 2 63.41 1e-24
|
173
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01318|INS_SHEEP P01318 105 1 189 1 63 63 1 76.19 4e-18
|
174
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P69045|INS_LOPAM P69045 116 248 487 29 116 90 2 55.56 1e-24
|
175
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P69045|INS_LOPAM P69045 116 4 186 3 61 61 1 65.57 1e-11
|
176
|
-
gi|514746961|ref|XM_005019748.1|dup sp|Q9W7R2|INS_VERMO Q9W7R2 115 248 487 29 115 89 2 55.06 4e-24
|
177
|
-
gi|514746961|ref|XM_005019748.1|dup sp|Q9W7R2|INS_VERMO Q9W7R2 115 4 177 3 58 58 1 60.34 1e-10
|
178
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P04667|INS_ONCKE P04667 105 242 487 24 105 82 2 54.88 5e-24
|
179
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P04667|INS_ONCKE P04667 105 70 189 22 58 40 1 77.50 5e-12
|
180
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01315|INS_PIG P01315 108 248 487 28 108 81 2 66.67 1e-23
|
181
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01315|INS_PIG P01315 108 1 183 1 61 61 1 75.41 8e-17
|
182
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P06306|INS_FELCA P06306 110 248 487 28 110 83 2 62.65 2e-23
|
183
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P06306|INS_FELCA P06306 110 1 225 1 72 75 1 64.00 7e-15
|
184
|
-
gi|514746961|ref|XM_005019748.1|dup sp|Q91XI3|INS_SPETR Q91XI3 110 248 487 28 110 84 2 61.90 5e-23
|
185
|
-
gi|514746961|ref|XM_005019748.1|dup sp|Q91XI3|INS_SPETR Q91XI3 110 1 180 1 60 60 1 78.33 1e-16
|
186
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01335|INS_CYPCA P01335 108 248 487 27 108 84 2 57.14 5e-23
|
187
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01335|INS_CYPCA P01335 108 1 186 1 59 62 1 62.90 7e-12
|
188
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P81025|INS_ORENI P81025 113 203 487 16 113 102 2 49.02 5e-23
|
189
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P81025|INS_ORENI P81025 113 4 177 3 58 58 1 60.34 9e-11
|
190
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P67972|INS_AOTTR P67972 108 242 487 26 108 85 2 60.00 6e-23
|
191
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P67972|INS_AOTTR P67972 108 1 177 1 59 59 1 76.27 2e-14
|
192
|
-
gi|514746961|ref|XM_005019748.1|dup sp|O73727|INS_DANRE O73727 108 242 487 25 108 86 2 56.98 2e-22
|
193
|
-
gi|514746961|ref|XM_005019748.1|dup sp|O73727|INS_DANRE O73727 108 64 177 21 56 38 1 68.42 3e-09
|
194
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P68243|INS_CAIMO P68243 51 242 487 2 51 82 2 58.54 1e-21
|
195
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P68243|INS_CAIMO P68243 51 73 162 1 30 30 1 100.00 2e-13
|
196
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P68245|INS_ANSAN P68245 51 242 487 2 51 82 2 58.54 1e-21
|
197
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P68245|INS_ANSAN P68245 51 73 162 1 30 30 1 100.00 2e-13
|
198
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P13190|INS_CALMI P13190 89 248 487 4 89 87 2 58.62 2e-21
|
199
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P13190|INS_CALMI P13190 89 79 174 3 34 32 1 81.25 1e-10
|
200
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01327|INS_CHICH P01327 86 242 487 2 86 85 2 52.94 8e-21
|
201
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01327|INS_CHICH P01327 86 76 219 2 49 48 1 58.33 3e-11
|
202
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01310|INS_HORSE P01310 86 242 487 2 86 90 2 54.44 7e-20
|
203
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01310|INS_HORSE P01310 86 79 189 3 39 37 1 78.38 5e-13
|
204
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P69048|INS_TRASC P69048 51 242 487 2 51 82 2 54.88 2e-19
|
205
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P69048|INS_TRASC P69048 51 73 162 1 30 30 1 96.67 9e-13
|
206
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P69047|INS_TRADO P69047 51 242 487 2 51 82 2 54.88 2e-19
|
207
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P69047|INS_TRADO P69047 51 73 162 1 30 30 1 96.67 9e-13
|
208
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P67969|INS_STRCA P67969 51 242 487 2 51 82 2 54.88 2e-19
|
209
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P67969|INS_STRCA P67969 51 73 162 1 30 30 1 96.67 9e-13
|
210
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P67968|INS_MELGA P67968 51 242 487 2 51 82 2 54.88 2e-19
|
211
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P67968|INS_MELGA P67968 51 73 162 1 30 30 1 96.67 9e-13
|
212
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01316|INS_ELEMA P01316 51 242 487 2 51 82 2 53.66 2e-18
|
213
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01316|INS_ELEMA P01316 51 76 162 2 30 29 1 93.10 5e-12
|
214
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P81423|INS_ACIGU P81423 52 242 487 2 52 82 2 52.44 2e-18
|
215
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P81423|INS_ACIGU P81423 52 73 180 1 36 36 1 83.33 9e-13
|
216
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01314|INS_BALBO P01314 51 242 487 2 51 82 2 52.44 2e-18
|
217
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01314|INS_BALBO P01314 51 76 159 2 29 28 1 92.86 2e-11
|
218
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01320|INS_CAMDR P01320 51 242 487 2 51 82 2 52.44 3e-18
|
219
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01320|INS_CAMDR P01320 51 76 162 2 30 29 1 93.10 6e-12
|
220
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P67974|INS_PHYCD P67974 51 242 487 2 51 82 2 52.44 4e-18
|
221
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P67974|INS_PHYCD P67974 51 76 159 2 29 28 1 92.86 2e-11
|
222
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P67973|INS_BALPH P67973 51 242 487 2 51 82 2 52.44 4e-18
|
223
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P67973|INS_BALPH P67973 51 76 159 2 29 28 1 92.86 2e-11
|
224
|
-
gi|514746961|ref|XM_005019748.1|dup sp|C0HJI8|INS2_HUSDA C0HJI8 52 242 487 2 52 82 2 51.22 5e-18
|
225
|
-
gi|514746961|ref|XM_005019748.1|dup sp|C0HJI8|INS2_HUSDA C0HJI8 52 73 180 1 36 36 1 80.56 2e-12
|
226
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01324|INS_ACOCA P01324 51 242 487 2 51 82 2 51.22 7e-18
|
227
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01324|INS_ACOCA P01324 51 76 162 2 30 29 1 86.21 2e-11
|
228
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P21563|INS_RODSP P21563 108 248 487 27 108 87 2 55.17 7e-18
|
229
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P21563|INS_RODSP P21563 108 64 189 21 63 43 1 74.42 1e-13
|
230
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01319|INS_CAPHI P01319 51 242 487 2 51 82 2 52.44 7e-18
|
231
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01319|INS_CAPHI P01319 51 76 162 2 30 29 1 89.66 3e-11
|
232
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01342|INS_MYXGL P01342 115 227 487 23 115 93 2 47.31 1e-17
|
233
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01342|INS_MYXGL P01342 115 85 174 31 61 31 1 64.52 5e-06
|
234
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P12703|INS_ALLMI P12703 51 242 487 2 51 82 2 52.44 1e-17
|
235
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P12703|INS_ALLMI P12703 51 73 159 1 29 29 1 93.10 2e-11
|
236
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01334|INS_CROAT P01334 51 245 487 3 51 81 2 50.62 2e-17
|
237
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01334|INS_CROAT P01334 51 73 162 1 30 30 1 76.67 8e-10
|
238
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P12708|INS_PTYDH P12708 51 245 487 3 51 81 2 50.62 2e-17
|
239
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P12708|INS_PTYDH P12708 51 73 162 1 30 30 1 80.00 3e-10
|
240
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P18109|INS_DIDVI P18109 51 242 487 2 51 82 2 51.22 2e-17
|
241
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P18109|INS_DIDVI P18109 51 76 159 2 29 28 1 92.86 2e-11
|
242
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P09476|INS_ATRSP P09476 52 242 487 2 52 82 2 48.78 4e-17
|
243
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P09476|INS_ATRSP P09476 52 73 180 1 36 36 1 80.56 2e-12
|
244
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P67971|INS_SAISC P67971 51 242 487 2 51 82 2 48.78 1e-16
|
245
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P67971|INS_SAISC P67971 51 76 162 2 30 29 1 89.66 4e-11
|
246
|
-
gi|514746961|ref|XM_005019748.1|dup sp|C0HJI7|INS1_HUSDA C0HJI7 58 230 487 3 58 87 2 49.43 1e-16
|
247
|
-
gi|514746961|ref|XM_005019748.1|dup sp|C0HJI7|INS1_HUSDA C0HJI7 58 61 180 2 42 41 1 75.61 5e-12
|
248
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P17715|INS_OCTDE P17715 109 242 487 26 107 83 2 51.81 2e-16
|
249
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P17715|INS_OCTDE P17715 109 67 177 23 58 37 1 59.46 1e-06
|
250
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P68992|INS_HYDCO P68992 59 248 487 4 59 80 2 53.75 3e-16
|
251
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P68992|INS_HYDCO P68992 59 79 177 3 35 33 1 75.76 3e-10
|
252
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P68991|INS_CHIMO P68991 59 248 487 4 59 80 2 53.75 3e-16
|
253
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P68991|INS_CHIMO P68991 59 79 177 3 35 33 1 75.76 3e-10
|
254
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P0C236|INS_POLSE P0C236 52 242 487 2 52 82 2 48.78 4e-16
|
255
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P0C236|INS_POLSE P0C236 52 73 180 1 36 36 1 77.78 4e-11
|
256
|
-
gi|514746961|ref|XM_005019748.1|dup sp|F8WCM5|INSR2_HUMAN F8WCM5 200 1 177 1 59 59 1 79.66 6e-16
|
257
|
-
gi|514746961|ref|XM_005019748.1|dup sp|F8WCM5|INSR2_HUMAN F8WCM5 200 248 343 28 59 32 2 90.62 5e-13
|
258
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01336|INS_GADMC P01336 51 248 487 5 51 80 2 45.00 7e-16
|
259
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01336|INS_GADMC P01336 51 73 159 2 30 29 1 82.76 3e-10
|
260
|
-
gi|514746961|ref|XM_005019748.1|dup sp|C0HJI5|INS1_THUOR C0HJI5 50 242 487 2 50 82 2 47.56 8e-16
|
261
|
-
gi|514746961|ref|XM_005019748.1|dup sp|C0HJI5|INS1_THUOR C0HJI5 50 76 159 2 29 28 1 78.57 1e-08
|
262
|
-
gi|514746961|ref|XM_005019748.1|dup sp|C0HJI2|INS1_KATPE C0HJI2 50 242 487 2 50 82 2 47.56 9e-16
|
263
|
-
gi|514746961|ref|XM_005019748.1|dup sp|C0HJI2|INS1_KATPE C0HJI2 50 76 159 2 29 28 1 78.57 1e-08
|
264
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P68987|INS_PETMA P68987 57 248 487 9 57 80 2 46.25 1e-15
|
265
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P68987|INS_PETMA P68987 57 70 180 5 41 37 1 67.57 3e-10
|
266
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P68988|INS_LAMFL P68988 57 248 487 9 57 80 2 46.25 1e-15
|
267
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P68988|INS_LAMFL P68988 57 70 180 5 41 37 1 67.57 3e-10
|
268
|
-
gi|514746961|ref|XM_005019748.1|dup sp|C0HJI3|INS2_KATPE C0HJI3 51 248 487 5 51 80 2 47.50 2e-15
|
269
|
-
gi|514746961|ref|XM_005019748.1|dup sp|C0HJI3|INS2_KATPE C0HJI3 51 70 159 1 30 30 1 86.67 1e-10
|
270
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P68990|INS_ONCKI P68990 50 242 487 2 50 82 2 45.12 2e-15
|
271
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P68990|INS_ONCKI P68990 50 73 159 1 29 29 1 86.21 1e-10
|
272
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P68989|INS_ONCGO P68989 50 242 487 2 50 82 2 45.12 2e-15
|
273
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P68989|INS_ONCGO P68989 50 73 159 1 29 29 1 86.21 1e-10
|
274
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P09477|INS_PLAFE P09477 51 248 487 5 51 80 2 46.25 2e-15
|
275
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P09477|INS_PLAFE P09477 51 82 159 5 30 26 1 88.46 2e-09
|
276
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P29335|INS_AMICA P29335 52 242 487 2 52 82 2 45.12 3e-15
|
277
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P29335|INS_AMICA P29335 52 73 180 1 36 36 1 75.00 5e-11
|
278
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P69046|INS_LOPPI P69046 51 248 487 5 51 80 2 46.25 3e-15
|
279
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P69046|INS_LOPPI P69046 51 70 159 1 30 30 1 80.00 9e-10
|
280
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01339|INS_THUTH P01339 51 248 487 5 51 80 2 46.25 3e-15
|
281
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01339|INS_THUTH P01339 51 73 159 2 30 29 1 82.76 5e-10
|
282
|
-
gi|514746961|ref|XM_005019748.1|dup sp|C0HJI1|INS_CARSE C0HJI1 51 248 487 5 51 80 2 46.25 3e-15
|
283
|
-
gi|514746961|ref|XM_005019748.1|dup sp|C0HJI1|INS_CARSE C0HJI1 51 73 159 2 30 29 1 82.76 5e-10
|
284
|
-
gi|514746961|ref|XM_005019748.1|dup sp|C0HJI6|INS2_THUOR C0HJI6 51 248 487 5 51 80 2 46.25 3e-15
|
285
|
-
gi|514746961|ref|XM_005019748.1|dup sp|C0HJI6|INS2_THUOR C0HJI6 51 73 159 2 30 29 1 82.76 5e-10
|
286
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P42633|INS_ANGRO P42633 51 242 487 2 51 82 2 45.12 3e-15
|
287
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P42633|INS_ANGRO P42633 51 73 159 1 29 29 1 79.31 1e-09
|
288
|
-
gi|514746961|ref|XM_005019748.1|dup sp|C0HJI4|INS_PAGMA C0HJI4 51 248 487 5 51 80 2 46.25 4e-15
|
289
|
-
gi|514746961|ref|XM_005019748.1|dup sp|C0HJI4|INS_PAGMA C0HJI4 51 70 159 1 30 30 1 80.00 1e-09
|
290
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01328|INS_HYSCR P01328 51 242 487 2 51 82 2 47.56 4e-15
|
291
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01328|INS_HYSCR P01328 51 76 162 2 30 29 1 82.76 2e-09
|
292
|
-
gi|514746961|ref|XM_005019748.1|dup sp|Q9TQY7|INS_ORNAN Q9TQY7 51 245 487 3 51 81 2 46.91 7e-15
|
293
|
-
gi|514746961|ref|XM_005019748.1|dup sp|Q9TQY7|INS_ORNAN Q9TQY7 51 79 159 3 29 27 1 85.19 2e-09
|
294
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01329|INS_CAVPO P01329 110 248 487 28 110 83 2 46.99 8e-15
|
295
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01329|INS_CAVPO P01329 110 1 189 1 63 63 1 58.73 5e-10
|
296
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P12705|INS_TORMA P12705 70 245 487 3 70 81 2 46.91 8e-15
|
297
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P12705|INS_TORMA P12705 70 79 180 3 36 34 1 64.71 6e-08
|
298
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P07453|INS_MYOSC P07453 50 248 487 4 50 80 2 47.50 1e-14
|
299
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P07453|INS_MYOSC P07453 50 73 159 1 29 29 1 82.76 1e-09
|
300
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P81881|INS_PIAME P81881 52 248 487 6 52 80 2 46.25 2e-14
|
301
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P81881|INS_PIAME P81881 52 67 159 1 31 31 1 77.42 2e-09
|
302
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01337|INS1_BATSP P01337 51 248 487 5 51 80 2 45.00 2e-14
|
303
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01337|INS1_BATSP P01337 51 73 159 2 30 29 1 82.76 1e-09
|
304
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01340|INS_KATPE P01340 50 242 487 2 50 82 2 41.46 8e-14
|
305
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01340|INS_KATPE P01340 50 73 159 1 29 29 1 93.10 9e-11
|
306
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P12704|INS_SQUAC P12704 54 245 487 3 53 81 2 45.68 3e-13
|
307
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P12704|INS_SQUAC P12704 54 79 174 3 34 32 1 65.62 9e-08
|
308
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01338|INS2_BATSP P01338 50 248 487 5 50 80 2 42.50 5e-12
|
309
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01338|INS2_BATSP P01338 50 73 153 2 28 27 1 81.48 5e-08
|
310
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P83770|INSL_VIGUN P83770 51 242 487 2 51 82 2 45.12 2e-11
|
311
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P83770|INSL_VIGUN P83770 51 76 162 2 30 29 1 82.76 4e-09
|
312
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P22334|ILP_BRACL P22334 305 248 487 25 101 84 2 36.90 9e-08
|
313
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P33717|IGF2_CHICK P33717 187 242 484 27 84 81 2 34.57 3e-07
|
314
|
-
gi|514746961|ref|XM_005019748.1|dup sp|Q02815|IGF1_ONCMY Q02815 176 254 484 49 105 77 2 37.66 5e-07
|
315
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P17085|IGF1_ONCKI P17085 188 254 484 49 105 77 2 37.66 7e-07
|
316
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P22618|IGF_MYXGL P22618 139 254 484 43 102 77 2 37.66 9e-07
|
317
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P10764|IGF2_SHEEP P10764 179 248 484 30 84 79 2 34.18 2e-06
|
318
|
-
gi|514746961|ref|XM_005019748.1|dup sp|Q90325|IGF1A_CYPCA Q90325 161 254 484 49 105 77 2 36.36 2e-06
|
319
|
-
gi|514746961|ref|XM_005019748.1|dup sp|Q90326|IGF1B_CYPCA Q90326 161 254 484 49 105 77 2 36.36 2e-06
|
320
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P07456|IGF2_BOVIN P07456 179 248 484 30 84 79 2 34.18 2e-06
|
321
|
-
gi|514746961|ref|XM_005019748.1|dup sp|Q08279|IGF2_CAVPO Q08279 128 212 484 18 84 92 2 32.61 2e-06
|
322
|
-
gi|514746961|ref|XM_005019748.1|dup sp|Q28933|IGF1_SUNMU Q28933 81 248 484 7 65 79 2 31.65 3e-06
|
323
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P51459|IGF2_HORSE P51459 181 212 484 18 84 92 2 32.61 3e-06
|
324
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P01344|IGF2_HUMAN P01344 180 212 484 18 84 92 2 32.61 4e-06
|
325
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P23695|IGF2_PIG P23695 181 248 484 30 84 80 2 37.50 4e-06
|
326
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P51462|IGF1_COTJA P51462 124 227 484 15 80 86 2 32.56 6e-06
|
327
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P17647|IGF1_CAVPO P17647 130 227 484 21 86 86 2 31.40 7e-06
|
328
|
-
gi|514746961|ref|XM_005019748.1|dup sp|Q6INW9|IGF2B_XENLA Q6INW9 217 254 484 63 116 77 2 36.36 7e-06
|
329
|
-
gi|514746961|ref|XM_005019748.1|dup sp|Q02816|IGF2_ONCMY Q02816 214 254 484 55 110 77 2 37.66 7e-06
|
330
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P51458|IGF1_HORSE P51458 122 227 484 44 109 86 2 31.40 7e-06
|
331
|
-
gi|514746961|ref|XM_005019748.1|dup sp|Q90WW4|IGF2A_XENLA Q90WW4 217 254 484 63 116 77 2 35.06 9e-06
|
332
|
-
gi|514746961|ref|XM_005019748.1|dup sp|Q6GUL6|IGF1_PANTA Q6GUL6 153 227 484 44 109 86 2 31.40 1e-05
|
333
|
-
gi|514746961|ref|XM_005019748.1|dup sp|P10763|IGF1_SHEEP P10763 154 227 484 45 110 86 2 31.40 1e-05
|
334
|
-
gi|251823817|ref|NM_010785.2| sp|Q9D067|MDM1_MOUSE Q9D067 708 159 2222 1 708 708 3 97.03 0.0
|
335
|
-
gi|251823817|ref|NM_010785.2| sp|Q5PQN4|MDM1_RAT Q5PQN4 719 159 2222 1 719 720 3 81.25 0.0
|
336
|
-
gi|251823817|ref|NM_010785.2| sp|Q8TC05|MDM1_HUMAN Q8TC05 714 159 2219 1 713 720 3 66.81 0.0
|
337
|
-
gi|251823817|ref|NM_010785.2| sp|Q5RC32|MDM1_PONAB Q5RC32 724 159 2216 1 722 729 3 65.84 0.0
|
338
|
-
gi|251823817|ref|NM_010785.2| sp|Q5ZMW6|MDM1_CHICK Q5ZMW6 691 159 2219 1 690 755 3 39.47 4e-112
|
339
|
-
gi|251823817|ref|NM_010785.2| sp|Q5RHU7|MDM1_DANRE Q5RHU7 656 159 2219 1 655 747 3 33.60 2e-69
|
340
|
-
gi|251823817|ref|NM_010785.2|dup sp|Q9D067|MDM1_MOUSE Q9D067 708 1294 3132 76 708 633 1 96.68 0.0
|
341
|
-
gi|251823817|ref|NM_010785.2|dup sp|Q9D067|MDM1_MOUSE Q9D067 708 159 1304 1 382 382 3 99.48 0.0
|
342
|
-
gi|251823817|ref|NM_010785.2|dup sp|Q5PQN4|MDM1_RAT Q5PQN4 719 1294 3132 76 719 645 1 79.53 0.0
|
343
|
-
gi|251823817|ref|NM_010785.2|dup sp|Q5PQN4|MDM1_RAT Q5PQN4 719 159 1304 1 391 392 3 84.69 0.0
|
344
|
-
gi|251823817|ref|NM_010785.2|dup sp|Q8TC05|MDM1_HUMAN Q8TC05 714 1303 3129 79 713 642 1 64.49 0.0
|
345
|
-
gi|251823817|ref|NM_010785.2|dup sp|Q8TC05|MDM1_HUMAN Q8TC05 714 159 1304 1 381 385 3 72.47 5e-178
|
346
|
-
gi|251823817|ref|NM_010785.2|dup sp|Q5RC32|MDM1_PONAB Q5RC32 724 1303 3126 79 722 651 1 63.44 0.0
|
347
|
-
gi|251823817|ref|NM_010785.2|dup sp|Q5RC32|MDM1_PONAB Q5RC32 724 159 1304 1 391 395 3 71.65 5e-178
|
348
|
-
gi|251823817|ref|NM_010785.2|dup sp|Q5ZMW6|MDM1_CHICK Q5ZMW6 691 1357 3129 90 690 659 1 36.57 2e-75
|
349
|
-
gi|251823817|ref|NM_010785.2|dup sp|Q5ZMW6|MDM1_CHICK Q5ZMW6 691 159 1301 1 346 396 3 39.14 6e-68
|
350
|
-
gi|251823817|ref|NM_010785.2|dup sp|Q5RHU7|MDM1_DANRE Q5RHU7 656 1579 3129 140 655 574 1 34.32 4e-52
|
351
|
-
gi|251823817|ref|NM_010785.2|dup sp|Q5RHU7|MDM1_DANRE Q5RHU7 656 159 1274 1 355 391 3 35.29 8e-47
|
352
|
-
gi|251823817|ref|NM_010785.2|dup2 sp|Q9D067|MDM1_MOUSE Q9D067 708 1486 2922 210 708 499 1 95.79 0.0
|
353
|
-
gi|251823817|ref|NM_010785.2|dup2 sp|Q9D067|MDM1_MOUSE Q9D067 708 159 1133 1 325 325 3 100.00 0.0
|
354
|
-
gi|251823817|ref|NM_010785.2|dup2 sp|Q9D067|MDM1_MOUSE Q9D067 708 1136 1483 210 325 116 2 100.00 3e-66
|
355
|
-
gi|251823817|ref|NM_010785.2|dup2 sp|Q5PQN4|MDM1_RAT Q5PQN4 719 1486 2922 209 719 511 1 79.65 0.0
|
356
|
-
gi|251823817|ref|NM_010785.2|dup2 sp|Q5PQN4|MDM1_RAT Q5PQN4 719 159 1133 1 324 325 3 86.15 0.0
|
357
|
-
gi|251823817|ref|NM_010785.2|dup2 sp|Q5PQN4|MDM1_RAT Q5PQN4 719 1136 1534 209 334 133 2 78.95 5e-58
|
358
|
-
gi|251823817|ref|NM_010785.2|dup2 sp|Q8TC05|MDM1_HUMAN Q8TC05 714 1486 2919 206 713 511 1 63.41 1e-174
|
359
|
-
gi|251823817|ref|NM_010785.2|dup2 sp|Q8TC05|MDM1_HUMAN Q8TC05 714 159 1133 1 324 328 3 70.43 2e-139
|
360
|
-
gi|251823817|ref|NM_010785.2|dup2 sp|Q8TC05|MDM1_HUMAN Q8TC05 714 1136 1483 206 324 119 2 62.18 4e-36
|
361
|
-
gi|251823817|ref|NM_010785.2|dup2 sp|Q5RC32|MDM1_PONAB Q5RC32 724 1486 2916 206 722 520 1 62.12 1e-171
|
362
|
-
gi|251823817|ref|NM_010785.2|dup2 sp|Q5RC32|MDM1_PONAB Q5RC32 724 159 1133 1 324 328 3 71.34 2e-141
|
363
|
-
gi|251823817|ref|NM_010785.2|dup2 sp|Q5RC32|MDM1_PONAB Q5RC32 724 1136 1483 206 324 119 2 64.71 4e-38
|
364
|
-
gi|251823817|ref|NM_010785.2|dup2 sp|Q5ZMW6|MDM1_CHICK Q5ZMW6 691 1546 2919 178 690 523 1 40.34 2e-63
|
365
|
-
gi|251823817|ref|NM_010785.2|dup2 sp|Q5ZMW6|MDM1_CHICK Q5ZMW6 691 159 1133 1 277 333 3 37.54 7e-47
|
366
|
-
gi|251823817|ref|NM_010785.2|dup2 sp|Q5RHU7|MDM1_DANRE Q5RHU7 656 1480 2919 176 655 537 1 33.15 2e-41
|
367
|
-
gi|251823817|ref|NM_010785.2|dup2 sp|Q5RHU7|MDM1_DANRE Q5RHU7 656 159 1133 1 309 344 3 32.56 2e-27
|
368
|
-
Brasy-EspV1T00061 sp|P0C540|ACT7_ORYSJ P0C540 376 277 564 213 308 96 1 94.79 3e-131
|
369
|
-
Brasy-EspV1T00061 sp|P0C540|ACT7_ORYSJ P0C540 376 2 268 121 209 89 2 95.51 3e-131
|
370
|
-
Brasy-EspV1T00061 sp|P0C540|ACT7_ORYSJ P0C540 376 557 769 306 376 71 2 91.55 3e-131
|
371
|
-
Brasy-EspV1T00061 sp|P0C542|ACT7_ORYSI P0C542 376 277 564 213 308 96 1 94.79 3e-131
|
372
|
-
Brasy-EspV1T00061 sp|P0C542|ACT7_ORYSI P0C542 376 2 268 121 209 89 2 95.51 3e-131
|
373
|
-
Brasy-EspV1T00061 sp|P0C542|ACT7_ORYSI P0C542 376 557 769 306 376 71 2 91.55 3e-131
|
374
|
-
Brasy-EspV1T00061 sp|P53492|ACT7_ARATH P53492 377 277 564 214 309 96 1 92.71 9e-131
|
375
|
-
Brasy-EspV1T00061 sp|P53492|ACT7_ARATH P53492 377 2 268 122 210 89 2 95.51 9e-131
|
376
|
-
Brasy-EspV1T00061 sp|P53492|ACT7_ARATH P53492 377 557 769 307 377 71 2 92.96 9e-131
|
377
|
-
Brasy-EspV1T00061 sp|A3C6D7|ACT2_ORYSJ A3C6D7 377 277 564 214 309 96 1 92.71 1e-129
|
378
|
-
Brasy-EspV1T00061 sp|A3C6D7|ACT2_ORYSJ A3C6D7 377 2 268 122 210 89 2 94.38 1e-129
|
379
|
-
Brasy-EspV1T00061 sp|A3C6D7|ACT2_ORYSJ A3C6D7 377 557 769 307 377 71 2 90.14 1e-129
|
380
|
-
Brasy-EspV1T00061 sp|P0C539|ACT2_ORYSI P0C539 377 277 564 214 309 96 1 92.71 1e-129
|
381
|
-
Brasy-EspV1T00061 sp|P0C539|ACT2_ORYSI P0C539 377 2 268 122 210 89 2 94.38 1e-129
|
382
|
-
Brasy-EspV1T00061 sp|P0C539|ACT2_ORYSI P0C539 377 557 769 307 377 71 2 90.14 1e-129
|
383
|
-
Brasy-EspV1T00061 sp|Q05214|ACT1_TOBAC Q05214 377 277 564 214 309 96 1 85.42 1e-128
|
384
|
-
Brasy-EspV1T00061 sp|Q05214|ACT1_TOBAC Q05214 377 2 268 122 210 89 2 96.63 1e-128
|
385
|
-
Brasy-EspV1T00061 sp|Q05214|ACT1_TOBAC Q05214 377 557 769 307 377 71 2 92.96 1e-128
|
386
|
-
Brasy-EspV1T00061 sp|P46258|ACT3_PEA P46258 377 277 564 214 309 96 1 85.42 5e-128
|
387
|
-
Brasy-EspV1T00061 sp|P46258|ACT3_PEA P46258 377 2 268 122 210 89 2 94.38 5e-128
|
388
|
-
Brasy-EspV1T00061 sp|P46258|ACT3_PEA P46258 377 557 769 307 377 71 2 92.96 5e-128
|
389
|
-
Brasy-EspV1T00061 sp|P53497|ACT12_ARATH P53497 377 277 558 214 307 94 1 87.23 7e-126
|
390
|
-
Brasy-EspV1T00061 sp|P53497|ACT12_ARATH P53497 377 2 268 122 210 89 2 96.63 7e-126
|
391
|
-
Brasy-EspV1T00061 sp|P53497|ACT12_ARATH P53497 377 545 769 303 377 75 2 86.67 7e-126
|
392
|
-
Brasy-EspV1T00061 sp|P53494|ACT4_ARATH P53494 377 277 558 214 307 94 1 86.17 1e-125
|
393
|
-
Brasy-EspV1T00061 sp|P53494|ACT4_ARATH P53494 377 2 268 122 210 89 2 96.63 1e-125
|
394
|
-
Brasy-EspV1T00061 sp|P53494|ACT4_ARATH P53494 377 545 769 303 377 75 2 86.67 1e-125
|
395
|
-
Brasy-EspV1T00061 sp|P07829|ACT3_DICDI P07829 376 2 268 121 209 89 2 94.38 2e-124
|
396
|
-
Brasy-EspV1T00061 sp|P07829|ACT3_DICDI P07829 376 277 564 213 308 96 1 83.33 2e-124
|
397
|
-
Brasy-EspV1T00061 sp|P07829|ACT3_DICDI P07829 376 557 769 306 376 71 2 87.32 2e-124
|
398
|
-
Brasy-EspV1T00061 sp|P30168|ACT6_SOLTU P30168 377 277 564 214 309 96 1 83.33 4e-124
|
399
|
-
Brasy-EspV1T00061 sp|P30168|ACT6_SOLTU P30168 377 2 268 122 210 89 2 91.01 4e-124
|
400
|
-
Brasy-EspV1T00061 sp|P30168|ACT6_SOLTU P30168 377 557 769 307 377 71 2 91.55 4e-124
|
401
|
-
Brasy-EspV1T00061 sp|Q964E1|ACTC_BIOOB Q964E1 376 2 268 121 209 89 2 94.38 8e-124
|
402
|
-
Brasy-EspV1T00061 sp|Q964E1|ACTC_BIOOB Q964E1 376 277 564 213 308 96 1 83.33 8e-124
|
403
|
-
Brasy-EspV1T00061 sp|Q964E1|ACTC_BIOOB Q964E1 376 557 769 306 376 71 2 87.32 8e-124
|
404
|
-
Brasy-EspV1T00061 sp|P02580|ACT3_SOYBN P02580 376 277 558 213 306 94 1 89.36 2e-123
|
405
|
-
Brasy-EspV1T00061 sp|P02580|ACT3_SOYBN P02580 376 5 268 122 209 88 2 92.05 2e-123
|
406
|
-
Brasy-EspV1T00061 sp|P02580|ACT3_SOYBN P02580 376 557 769 306 376 71 2 91.55 2e-123
|
407
|
-
Brasy-EspV1T00061 sp|P12716|ACTC_PISOC P12716 376 2 268 121 209 89 2 95.51 2e-123
|
408
|
-
Brasy-EspV1T00061 sp|P12716|ACTC_PISOC P12716 376 277 564 213 308 96 1 82.29 2e-123
|
409
|
-
Brasy-EspV1T00061 sp|P12716|ACTC_PISOC P12716 376 557 769 306 376 71 2 85.92 2e-123
|
410
|
-
Brasy-EspV1T00061 sp|Q93131|ACTC_BRAFL Q93131 375 2 268 120 208 89 2 95.51 3e-123
|
411
|
-
Brasy-EspV1T00061 sp|Q93131|ACTC_BRAFL Q93131 375 277 564 212 307 96 1 79.17 3e-123
|
412
|
-
Brasy-EspV1T00061 sp|Q93131|ACTC_BRAFL Q93131 375 557 769 305 375 71 2 88.73 3e-123
|
413
|
-
Brasy-EspV1T00061 sp|Q964E0|ACTC_BIOTE Q964E0 376 2 268 121 209 89 2 94.38 3e-123
|
414
|
-
Brasy-EspV1T00061 sp|Q964E0|ACTC_BIOTE Q964E0 376 277 564 213 308 96 1 81.25 3e-123
|
415
|
-
Brasy-EspV1T00061 sp|Q964E0|ACTC_BIOTE Q964E0 376 557 769 306 376 71 2 87.32 3e-123
|
416
|
-
Brasy-EspV1T00061 sp|Q93129|ACTC_BRABE Q93129 375 2 268 120 208 89 2 95.51 3e-123
|
417
|
-
Brasy-EspV1T00061 sp|Q93129|ACTC_BRABE Q93129 375 277 564 212 307 96 1 79.17 3e-123
|
418
|
-
Brasy-EspV1T00061 sp|Q93129|ACTC_BRABE Q93129 375 557 769 305 375 71 2 88.73 3e-123
|
419
|
-
Brasy-EspV1T00061 sp|Q964E3|ACTC_BIOAL Q964E3 376 2 268 121 209 89 2 93.26 4e-123
|
420
|
-
Brasy-EspV1T00061 sp|Q964E3|ACTC_BIOAL Q964E3 376 277 564 213 308 96 1 81.25 4e-123
|
421
|
-
Brasy-EspV1T00061 sp|Q964E3|ACTC_BIOAL Q964E3 376 557 769 306 376 71 2 87.32 4e-123
|
422
|
-
Brasy-EspV1T00061 sp|P30163|ACT2_ONCVO P30163 376 2 268 121 209 89 2 95.51 9e-123
|
423
|
-
Brasy-EspV1T00061 sp|P30163|ACT2_ONCVO P30163 376 277 564 213 308 96 1 80.21 9e-123
|
424
|
-
Brasy-EspV1T00061 sp|P30163|ACT2_ONCVO P30163 376 557 769 306 376 71 2 87.32 9e-123
|
425
|
-
Brasy-EspV1T00061 sp|O17503|ACTC_BRALA O17503 375 2 268 120 208 89 2 94.38 9e-123
|
426
|
-
Brasy-EspV1T00061 sp|O17503|ACTC_BRALA O17503 375 277 564 212 307 96 1 79.17 9e-123
|
427
|
-
Brasy-EspV1T00061 sp|O17503|ACTC_BRALA O17503 375 557 769 305 375 71 2 88.73 9e-123
|
428
|
-
Brasy-EspV1T00061 sp|P53461|ACTC_HALRO P53461 376 2 268 121 209 89 2 95.51 9e-123
|
429
|
-
Brasy-EspV1T00061 sp|P53461|ACTC_HALRO P53461 376 277 564 213 308 96 1 80.21 9e-123
|
430
|
-
Brasy-EspV1T00061 sp|P53461|ACTC_HALRO P53461 376 557 769 306 376 71 2 85.92 9e-123
|
431
|
-
Brasy-EspV1T00061 sp|P92179|ACTC_BIOGL P92179 376 2 268 121 209 89 2 93.26 1e-122
|
432
|
-
Brasy-EspV1T00061 sp|P92179|ACTC_BIOGL P92179 376 277 564 213 308 96 1 81.25 1e-122
|
433
|
-
Brasy-EspV1T00061 sp|P92179|ACTC_BIOGL P92179 376 557 769 306 376 71 2 87.32 1e-122
|
434
|
-
Brasy-EspV1T00061 sp|P30162|ACT1_ONCVO P30162 376 2 268 121 209 89 2 95.51 1e-122
|
435
|
-
Brasy-EspV1T00061 sp|P30162|ACT1_ONCVO P30162 376 277 564 213 308 96 1 79.17 1e-122
|
436
|
-
Brasy-EspV1T00061 sp|P30162|ACT1_ONCVO P30162 376 557 769 306 376 71 2 84.51 1e-122
|
437
|
-
Brasy-EspV1T00061 sp|Q964E2|ACTC_BIOPF Q964E2 376 2 268 121 209 89 2 94.38 2e-122
|
438
|
-
Brasy-EspV1T00061 sp|Q964E2|ACTC_BIOPF Q964E2 376 277 564 213 308 96 1 80.21 2e-122
|
439
|
-
Brasy-EspV1T00061 sp|Q964E2|ACTC_BIOPF Q964E2 376 557 769 306 376 71 2 87.32 2e-122
|
440
|
-
Brasy-EspV1T00061 sp|P10984|ACT2_CAEEL P10984 376 2 268 121 209 89 2 95.51 2e-122
|
441
|
-
Brasy-EspV1T00061 sp|P10984|ACT2_CAEEL P10984 376 277 564 213 308 96 1 78.12 2e-122
|
442
|
-
Brasy-EspV1T00061 sp|P10984|ACT2_CAEEL P10984 376 557 769 306 376 71 2 87.32 2e-122
|
443
|
-
Brasy-EspV1T00061 sp|P53472|ACTA_STRPU P53472 376 2 268 121 209 89 2 94.38 3e-122
|
444
|
-
Brasy-EspV1T00061 sp|P53472|ACTA_STRPU P53472 376 277 564 213 308 96 1 80.21 3e-122
|
445
|
-
Brasy-EspV1T00061 sp|P53472|ACTA_STRPU P53472 376 557 769 306 376 71 2 87.32 3e-122
|
446
|
-
Brasy-EspV1T00061 sp|P84336|ACTB_CAMDR P84336 375 2 268 120 208 89 2 94.38 3e-122
|
447
|
-
Brasy-EspV1T00061 sp|P84336|ACTB_CAMDR P84336 375 277 564 212 307 96 1 80.21 3e-122
|
448
|
-
Brasy-EspV1T00061 sp|P84336|ACTB_CAMDR P84336 375 557 769 305 375 71 2 87.32 3e-122
|
449
|
-
Brasy-EspV1T00061 sp|O65316|ACT_MESVI O65316 377 2 268 122 210 89 2 94.38 3e-122
|
450
|
-
Brasy-EspV1T00061 sp|O65316|ACT_MESVI O65316 377 277 564 214 309 96 1 81.25 3e-122
|
451
|
-
Brasy-EspV1T00061 sp|O65316|ACT_MESVI O65316 377 557 769 307 377 71 2 88.73 3e-122
|
452
|
-
Brasy-EspV1T00061 sp|P10986|ACT4_CAEEL P10986 376 2 268 121 209 89 2 94.38 4e-122
|
453
|
-
Brasy-EspV1T00061 sp|P10986|ACT4_CAEEL P10986 376 277 564 213 308 96 1 78.12 4e-122
|
454
|
-
Brasy-EspV1T00061 sp|P10986|ACT4_CAEEL P10986 376 557 769 306 376 71 2 87.32 4e-122
|
455
|
-
Brasy-EspV1T00061 sp|Q964D9|ACTC_PLATR Q964D9 376 2 268 121 209 89 2 93.26 4e-122
|
456
|
-
Brasy-EspV1T00061 sp|Q964D9|ACTC_PLATR Q964D9 376 277 564 213 308 96 1 79.17 4e-122
|
457
|
-
Brasy-EspV1T00061 sp|Q964D9|ACTC_PLATR Q964D9 376 557 769 306 376 71 2 87.32 4e-122
|
458
|
-
Brasy-EspV1T00061 sp|P0DM42|ACT3_CAEEL P0DM42 376 2 268 121 209 89 2 94.38 7e-122
|
459
|
-
Brasy-EspV1T00061 sp|P0DM42|ACT3_CAEEL P0DM42 376 277 564 213 308 96 1 77.08 7e-122
|
460
|
-
Brasy-EspV1T00061 sp|P0DM42|ACT3_CAEEL P0DM42 376 557 769 306 376 71 2 87.32 7e-122
|
461
|
-
Brasy-EspV1T00061 sp|P0DM41|ACT1_CAEEL P0DM41 376 2 268 121 209 89 2 94.38 7e-122
|
462
|
-
Brasy-EspV1T00061 sp|P0DM41|ACT1_CAEEL P0DM41 376 277 564 213 308 96 1 77.08 7e-122
|
463
|
-
Brasy-EspV1T00061 sp|P0DM41|ACT1_CAEEL P0DM41 376 557 769 306 376 71 2 87.32 7e-122
|
464
|
-
Brasy-EspV1T00061 sp|P41341|ACTY_LIMPO P41341 376 2 268 121 209 89 2 95.51 7e-122
|
465
|
-
Brasy-EspV1T00061 sp|P41341|ACTY_LIMPO P41341 376 277 564 213 308 96 1 79.17 7e-122
|
466
|
-
Brasy-EspV1T00061 sp|P41341|ACTY_LIMPO P41341 376 557 769 306 376 71 2 87.32 7e-122
|
467
|
-
Brasy-EspV1T00061 sp|P69003|ACT1_HELTB P69003 376 2 268 121 209 89 2 94.38 8e-122
|
468
|
-
Brasy-EspV1T00061 sp|P69003|ACT1_HELTB P69003 376 277 564 213 308 96 1 81.25 8e-122
|
469
|
-
Brasy-EspV1T00061 sp|P69003|ACT1_HELTB P69003 376 557 769 306 376 71 2 87.32 8e-122
|
470
|
-
Brasy-EspV1T00061 sp|P69002|ACT1_HELER P69002 376 2 268 121 209 89 2 94.38 8e-122
|
471
|
-
Brasy-EspV1T00061 sp|P69002|ACT1_HELER P69002 376 277 564 213 308 96 1 81.25 8e-122
|
472
|
-
Brasy-EspV1T00061 sp|P69002|ACT1_HELER P69002 376 557 769 306 376 71 2 87.32 8e-122
|
473
|
-
Brasy-EspV1T00061 sp|P53470|ACT1_SCHMA P53470 376 2 268 121 209 89 2 93.26 1e-121
|
474
|
-
Brasy-EspV1T00061 sp|P53470|ACT1_SCHMA P53470 376 277 564 213 308 96 1 82.29 1e-121
|
475
|
-
Brasy-EspV1T00061 sp|P53470|ACT1_SCHMA P53470 376 557 769 306 376 71 2 85.92 1e-121
|
476
|
-
Brasy-EspV1T00061 sp|Q55EU6|ACT23_DICDI Q55EU6 358 2 268 105 193 89 2 95.51 1e-121
|
477
|
-
Brasy-EspV1T00061 sp|Q55EU6|ACT23_DICDI Q55EU6 358 277 564 197 291 96 1 81.25 1e-121
|
478
|
-
Brasy-EspV1T00061 sp|Q55EU6|ACT23_DICDI Q55EU6 358 557 769 289 358 71 2 87.32 1e-121
|
479
|
-
Brasy-EspV1T00061 sp|O18500|ACT2_SACKO O18500 376 2 268 121 209 89 2 93.26 3e-121
|
480
|
-
Brasy-EspV1T00061 sp|O18500|ACT2_SACKO O18500 376 277 564 213 308 96 1 78.12 3e-121
|
481
|
-
Brasy-EspV1T00061 sp|O18500|ACT2_SACKO O18500 376 545 769 302 376 75 2 84.00 3e-121
|
482
|
-
Brasy-EspV1T00061 sp|P69005|ACTD_STRPU P69005 376 2 268 121 209 89 2 94.38 3e-121
|
483
|
-
Brasy-EspV1T00061 sp|P69005|ACTD_STRPU P69005 376 277 564 213 308 96 1 79.17 3e-121
|
484
|
-
Brasy-EspV1T00061 sp|P69005|ACTD_STRPU P69005 376 557 769 306 376 71 2 87.32 3e-121
|
485
|
-
Brasy-EspV1T00061 sp|P69004|ACT2_STRFN P69004 376 2 268 121 209 89 2 94.38 3e-121
|
486
|
-
Brasy-EspV1T00061 sp|P69004|ACT2_STRFN P69004 376 277 564 213 308 96 1 79.17 3e-121
|
487
|
-
Brasy-EspV1T00061 sp|P69004|ACT2_STRFN P69004 376 557 769 306 376 71 2 87.32 3e-121
|
488
|
-
Brasy-EspV1T00061 sp|P17304|ACTM_APLCA P17304 376 2 268 121 209 89 2 93.26 4e-121
|
489
|
-
Brasy-EspV1T00061 sp|P17304|ACTM_APLCA P17304 376 277 564 213 308 96 1 80.21 4e-121
|
490
|
-
Brasy-EspV1T00061 sp|P17304|ACTM_APLCA P17304 376 557 769 306 376 71 2 87.32 4e-121
|
491
|
-
Brasy-EspV1T00061 sp|P53458|ACT5_DIPDE P53458 371 2 268 116 204 89 2 94.38 4e-121
|
492
|
-
Brasy-EspV1T00061 sp|P53458|ACT5_DIPDE P53458 371 277 564 208 303 96 1 80.21 4e-121
|
493
|
-
Brasy-EspV1T00061 sp|P53458|ACT5_DIPDE P53458 371 557 769 301 371 71 2 84.51 4e-121
|
494
|
-
Brasy-EspV1T00061 sp|P53465|ACT1_LYTPI P53465 376 2 268 121 209 89 2 91.01 7e-121
|
495
|
-
Brasy-EspV1T00061 sp|P53465|ACT1_LYTPI P53465 376 277 564 213 308 96 1 81.25 7e-121
|
496
|
-
Brasy-EspV1T00061 sp|P53465|ACT1_LYTPI P53465 376 557 769 306 376 71 2 87.32 7e-121
|
497
|
-
Brasy-EspV1T00061 sp|Q25472|ACT2_MOLOC Q25472 378 2 268 123 211 89 2 92.13 8e-121
|
498
|
-
Brasy-EspV1T00061 sp|Q25472|ACT2_MOLOC Q25472 378 277 564 215 310 96 1 79.17 8e-121
|
499
|
-
Brasy-EspV1T00061 sp|Q25472|ACT2_MOLOC Q25472 378 557 769 308 378 71 2 85.92 8e-121
|
500
|
-
Brasy-EspV1T00061 sp|P53473|ACTB_STRPU P53473 376 2 268 121 209 89 2 94.38 9e-121
|
501
|
-
Brasy-EspV1T00061 sp|P53473|ACTB_STRPU P53473 376 277 564 213 308 96 1 80.21 9e-121
|
502
|
-
Brasy-EspV1T00061 sp|P53473|ACTB_STRPU P53473 376 557 769 306 376 71 2 85.92 9e-121
|
503
|
-
Brasy-EspV1T00061 sp|P68555|ACT_TAESO P68555 376 2 268 121 209 89 2 93.26 1e-120
|
504
|
-
Brasy-EspV1T00061 sp|P68555|ACT_TAESO P68555 376 277 564 213 308 96 1 79.17 1e-120
|
505
|
-
Brasy-EspV1T00061 sp|P68555|ACT_TAESO P68555 376 557 769 306 376 71 2 85.92 1e-120
|
506
|
-
Brasy-EspV1T00061 sp|P68556|ACT1_DIPDE P68556 376 2 268 121 209 89 2 93.26 1e-120
|
507
|
-
Brasy-EspV1T00061 sp|P68556|ACT1_DIPDE P68556 376 277 564 213 308 96 1 79.17 1e-120
|
508
|
-
Brasy-EspV1T00061 sp|P68556|ACT1_DIPDE P68556 376 557 769 306 376 71 2 85.92 1e-120
|
509
|
-
Brasy-EspV1T00061 sp|P53460|ACT1_HALRO P53460 378 2 268 123 211 89 2 92.13 1e-120
|
510
|
-
Brasy-EspV1T00061 sp|P53460|ACT1_HALRO P53460 378 277 564 215 310 96 1 81.25 1e-120
|
511
|
-
Brasy-EspV1T00061 sp|P53460|ACT1_HALRO P53460 378 557 769 308 378 71 2 84.51 1e-120
|
512
|
-
Brasy-EspV1T00061 sp|P10990|ACT1_STRFN P10990 376 2 268 121 209 89 2 94.38 1e-120
|
513
|
-
Brasy-EspV1T00061 sp|P10990|ACT1_STRFN P10990 376 277 564 213 308 96 1 79.17 1e-120
|
514
|
-
Brasy-EspV1T00061 sp|P10990|ACT1_STRFN P10990 376 557 769 306 376 71 2 87.32 1e-120
|
515
|
-
Brasy-EspV1T00061 sp|P07837|ACT2_BOMMO P07837 376 2 268 121 209 89 2 95.51 2e-120
|
516
|
-
Brasy-EspV1T00061 sp|P07837|ACT2_BOMMO P07837 376 277 564 213 308 96 1 78.12 2e-120
|
517
|
-
Brasy-EspV1T00061 sp|P07837|ACT2_BOMMO P07837 376 557 769 306 376 71 2 84.51 2e-120
|
518
|
-
Brasy-EspV1T00061 sp|P49128|ACT1_AEDAE P49128 376 2 268 121 209 89 2 95.51 2e-120
|
519
|
-
Brasy-EspV1T00061 sp|P49128|ACT1_AEDAE P49128 376 277 564 213 308 96 1 78.12 2e-120
|
520
|
-
Brasy-EspV1T00061 sp|P49128|ACT1_AEDAE P49128 376 557 769 306 376 71 2 84.51 2e-120
|
521
|
-
Brasy-EspV1T00061 sp|Q6P640|ACTC_XENTR Q6P640 377 2 268 122 210 89 2 91.01 2e-120
|
522
|
-
Brasy-EspV1T00061 sp|Q6P640|ACTC_XENTR Q6P640 377 277 564 214 309 96 1 80.21 2e-120
|
523
|
-
Brasy-EspV1T00061 sp|Q6P640|ACTC_XENTR Q6P640 377 557 769 307 377 71 2 85.92 2e-120
|
524
|
-
Brasy-EspV1T00061 sp|P68035|ACTC_RAT P68035 377 2 268 122 210 89 2 91.01 2e-120
|
525
|
-
Brasy-EspV1T00061 sp|P68035|ACTC_RAT P68035 377 277 564 214 309 96 1 80.21 2e-120
|
526
|
-
Brasy-EspV1T00061 sp|P68035|ACTC_RAT P68035 377 557 769 307 377 71 2 85.92 2e-120
|
527
|
-
Brasy-EspV1T00061 sp|P68033|ACTC_MOUSE P68033 377 2 268 122 210 89 2 91.01 2e-120
|
528
|
-
Brasy-EspV1T00061 sp|P68033|ACTC_MOUSE P68033 377 277 564 214 309 96 1 80.21 2e-120
|
529
|
-
Brasy-EspV1T00061 sp|P68033|ACTC_MOUSE P68033 377 557 769 307 377 71 2 85.92 2e-120
|
530
|
-
Brasy-EspV1T00061 sp|P68032|ACTC_HUMAN P68032 377 2 268 122 210 89 2 91.01 2e-120
|
531
|
-
Brasy-EspV1T00061 sp|P68032|ACTC_HUMAN P68032 377 277 564 214 309 96 1 80.21 2e-120
|
532
|
-
Brasy-EspV1T00061 sp|P68032|ACTC_HUMAN P68032 377 557 769 307 377 71 2 85.92 2e-120
|
533
|
-
Brasy-EspV1T00061 sp|P68034|ACTC_CHICK P68034 377 2 268 122 210 89 2 91.01 2e-120
|
534
|
-
Brasy-EspV1T00061 sp|P68034|ACTC_CHICK P68034 377 277 564 214 309 96 1 80.21 2e-120
|
535
|
-
Brasy-EspV1T00061 sp|P68034|ACTC_CHICK P68034 377 557 769 307 377 71 2 85.92 2e-120
|
536
|
-
Brasy-EspV1T00061 sp|Q3ZC07|ACTC_BOVIN Q3ZC07 377 2 268 122 210 89 2 91.01 2e-120
|
537
|
-
Brasy-EspV1T00061 sp|Q3ZC07|ACTC_BOVIN Q3ZC07 377 277 564 214 309 96 1 80.21 2e-120
|
538
|
-
Brasy-EspV1T00061 sp|Q3ZC07|ACTC_BOVIN Q3ZC07 377 557 769 307 377 71 2 85.92 2e-120
|
539
|
-
Brasy-EspV1T00061 sp|P23343|ACT1_DAUCA P23343 380 277 564 213 308 96 1 86.46 3e-120
|
540
|
-
Brasy-EspV1T00061 sp|P23343|ACT1_DAUCA P23343 380 2 268 121 209 89 2 87.64 3e-120
|
541
|
-
Brasy-EspV1T00061 sp|P23343|ACT1_DAUCA P23343 380 557 769 306 377 72 2 88.89 3e-120
|
542
|
-
Brasy-EspV1T00061 sp|P27130|ACT2_HALRO P27130 378 2 268 123 211 89 2 91.01 3e-120
|
543
|
-
Brasy-EspV1T00061 sp|P27130|ACT2_HALRO P27130 378 277 564 215 310 96 1 80.21 3e-120
|
544
|
-
Brasy-EspV1T00061 sp|P27130|ACT2_HALRO P27130 378 557 769 308 378 71 2 85.92 3e-120
|
545
|
-
Brasy-EspV1T00061 sp|P62738|ACTA_RAT P62738 377 2 268 122 210 89 2 91.01 3e-120
|
546
|
-
Brasy-EspV1T00061 sp|P62738|ACTA_RAT P62738 377 277 564 214 309 96 1 80.21 3e-120
|
547
|
-
Brasy-EspV1T00061 sp|P62738|ACTA_RAT P62738 377 557 769 307 377 71 2 85.92 3e-120
|
548
|
-
Brasy-EspV1T00061 sp|P62740|ACTA_RABIT P62740 377 2 268 122 210 89 2 91.01 3e-120
|
549
|
-
Brasy-EspV1T00061 sp|P62740|ACTA_RABIT P62740 377 277 564 214 309 96 1 80.21 3e-120
|
550
|
-
Brasy-EspV1T00061 sp|P62740|ACTA_RABIT P62740 377 557 769 307 377 71 2 85.92 3e-120
|
551
|
-
Brasy-EspV1T00061 sp|P62737|ACTA_MOUSE P62737 377 2 268 122 210 89 2 91.01 3e-120
|
552
|
-
Brasy-EspV1T00061 sp|P62737|ACTA_MOUSE P62737 377 277 564 214 309 96 1 80.21 3e-120
|
553
|
-
Brasy-EspV1T00061 sp|P62737|ACTA_MOUSE P62737 377 557 769 307 377 71 2 85.92 3e-120
|
554
|
-
Brasy-EspV1T00061 sp|P62736|ACTA_HUMAN P62736 377 2 268 122 210 89 2 91.01 3e-120
|
555
|
-
Brasy-EspV1T00061 sp|P62736|ACTA_HUMAN P62736 377 277 564 214 309 96 1 80.21 3e-120
|
556
|
-
Brasy-EspV1T00061 sp|P62736|ACTA_HUMAN P62736 377 557 769 307 377 71 2 85.92 3e-120
|
557
|
-
Brasy-EspV1T00061 sp|P62739|ACTA_BOVIN P62739 377 2 268 122 210 89 2 91.01 3e-120
|
558
|
-
Brasy-EspV1T00061 sp|P62739|ACTA_BOVIN P62739 377 277 564 214 309 96 1 80.21 3e-120
|
559
|
-
Brasy-EspV1T00061 sp|P62739|ACTA_BOVIN P62739 377 557 769 307 377 71 2 85.92 3e-120
|
560
|
-
Brasy-EspV1T00061 sp|P10981|ACT5_DROME P10981 376 2 268 121 209 89 2 95.51 3e-120
|
561
|
-
Brasy-EspV1T00061 sp|P10981|ACT5_DROME P10981 376 277 564 213 308 96 1 77.08 3e-120
|
562
|
-
Brasy-EspV1T00061 sp|P10981|ACT5_DROME P10981 376 557 769 306 376 71 2 84.51 3e-120
|
563
|
-
Brasy-EspV1T00061 sp|Q6P8G3|ACT3_XENTR Q6P8G3 377 2 268 122 210 89 2 91.01 3e-120
|
564
|
-
Brasy-EspV1T00061 sp|Q6P8G3|ACT3_XENTR Q6P8G3 377 277 564 214 309 96 1 80.21 3e-120
|
565
|
-
Brasy-EspV1T00061 sp|Q6P8G3|ACT3_XENTR Q6P8G3 377 557 769 307 377 71 2 85.92 3e-120
|
566
|
-
Brasy-EspV1T00061 sp|P63269|ACTH_RAT P63269 376 2 268 121 209 89 2 91.01 4e-120
|
567
|
-
Brasy-EspV1T00061 sp|P63269|ACTH_RAT P63269 376 277 564 213 308 96 1 80.21 4e-120
|
568
|
-
Brasy-EspV1T00061 sp|P63269|ACTH_RAT P63269 376 557 769 306 376 71 2 85.92 4e-120
|
569
|
-
Brasy-EspV1T00061 sp|P63268|ACTH_MOUSE P63268 376 2 268 121 209 89 2 91.01 4e-120
|
570
|
-
Brasy-EspV1T00061 sp|P63268|ACTH_MOUSE P63268 376 277 564 213 308 96 1 80.21 4e-120
|
571
|
-
Brasy-EspV1T00061 sp|P63268|ACTH_MOUSE P63268 376 557 769 306 376 71 2 85.92 4e-120
|
572
|
-
Brasy-EspV1T00061 sp|P63267|ACTH_HUMAN P63267 376 2 268 121 209 89 2 91.01 4e-120
|
573
|
-
Brasy-EspV1T00061 sp|P63267|ACTH_HUMAN P63267 376 277 564 213 308 96 1 80.21 4e-120
|
574
|
-
Brasy-EspV1T00061 sp|P63267|ACTH_HUMAN P63267 376 557 769 306 376 71 2 85.92 4e-120
|
575
|
-
Brasy-EspV1T00061 sp|P63270|ACTH_CHICK P63270 376 2 268 121 209 89 2 91.01 4e-120
|
576
|
-
Brasy-EspV1T00061 sp|P63270|ACTH_CHICK P63270 376 277 564 213 308 96 1 80.21 4e-120
|
577
|
-
Brasy-EspV1T00061 sp|P63270|ACTH_CHICK P63270 376 557 769 306 376 71 2 85.92 4e-120
|
578
|
-
Brasy-EspV1T00061 sp|Q5E9B5|ACTH_BOVIN Q5E9B5 376 2 268 121 209 89 2 91.01 4e-120
|
579
|
-
Brasy-EspV1T00061 sp|Q5E9B5|ACTH_BOVIN Q5E9B5 376 277 564 213 308 96 1 80.21 4e-120
|
580
|
-
Brasy-EspV1T00061 sp|Q5E9B5|ACTH_BOVIN Q5E9B5 376 557 769 306 376 71 2 85.92 4e-120
|
581
|
-
Brasy-EspV1T00061 sp|P53456|ACT2_DIPDE P53456 376 2 268 121 209 89 2 92.13 4e-120
|
582
|
-
Brasy-EspV1T00061 sp|P53456|ACT2_DIPDE P53456 376 277 564 213 308 96 1 79.17 4e-120
|
583
|
-
Brasy-EspV1T00061 sp|P53456|ACT2_DIPDE P53456 376 557 769 306 376 71 2 85.92 4e-120
|
584
|
-
Brasy-EspV1T00061 sp|P04752|ACT3_XENLA P04752 377 2 268 122 210 89 2 91.01 4e-120
|
585
|
-
Brasy-EspV1T00061 sp|P04752|ACT3_XENLA P04752 377 277 564 214 309 96 1 81.25 4e-120
|
586
|
-
Brasy-EspV1T00061 sp|P04752|ACT3_XENLA P04752 377 557 769 307 377 71 2 84.51 4e-120
|
587
|
-
Brasy-EspV1T00061 sp|P53466|ACT2_LYTPI P53466 376 2 268 121 209 89 2 92.13 5e-120
|
588
|
-
Brasy-EspV1T00061 sp|P53466|ACT2_LYTPI P53466 376 277 564 213 308 96 1 80.21 5e-120
|
589
|
-
Brasy-EspV1T00061 sp|P53466|ACT2_LYTPI P53466 376 557 769 306 376 71 2 84.51 5e-120
|
590
|
-
Brasy-EspV1T00061 sp|P53475|ACTN_STYCL P53475 378 2 268 123 211 89 2 89.89 5e-120
|
591
|
-
Brasy-EspV1T00061 sp|P53475|ACTN_STYCL P53475 378 277 564 215 310 96 1 80.21 5e-120
|
592
|
-
Brasy-EspV1T00061 sp|P53475|ACTN_STYCL P53475 378 557 769 308 378 71 2 85.92 5e-120
|
593
|
-
Brasy-EspV1T00061 sp|P53459|ACT6_DIPDE P53459 373 2 268 118 206 89 2 94.38 5e-120
|
594
|
-
Brasy-EspV1T00061 sp|P53459|ACT6_DIPDE P53459 373 277 564 210 305 96 1 77.08 5e-120
|
595
|
-
Brasy-EspV1T00061 sp|P53459|ACT6_DIPDE P53459 373 557 769 303 373 71 2 84.51 5e-120
|
596
|
-
Brasy-EspV1T00061 sp|P26198|ACTM_STYCL P26198 378 2 268 123 211 89 2 89.89 5e-120
|
597
|
-
Brasy-EspV1T00061 sp|P26198|ACTM_STYCL P26198 378 277 564 215 310 96 1 80.21 5e-120
|
598
|
-
Brasy-EspV1T00061 sp|P26198|ACTM_STYCL P26198 378 557 769 308 378 71 2 85.92 5e-120
|
599
|
-
Brasy-EspV1T00061 sp|P53501|ACT3_DROME P53501 376 2 268 121 209 89 2 95.51 5e-120
|
600
|
-
Brasy-EspV1T00061 sp|P53501|ACT3_DROME P53501 376 277 564 213 308 96 1 77.08 5e-120
|
601
|
-
Brasy-EspV1T00061 sp|P53501|ACT3_DROME P53501 376 557 769 306 376 71 2 83.10 5e-120
|
602
|
-
Brasy-EspV1T00061 sp|P53482|ACTSB_TAKRU P53482 377 2 268 122 210 89 2 91.01 6e-120
|
603
|
-
Brasy-EspV1T00061 sp|P53482|ACTSB_TAKRU P53482 377 277 564 214 309 96 1 80.21 6e-120
|
604
|
-
Brasy-EspV1T00061 sp|P53482|ACTSB_TAKRU P53482 377 557 769 307 377 71 2 85.92 6e-120
|
605
|
-
Brasy-EspV1T00061 sp|P45886|ACT3_BACDO P45886 376 2 268 121 209 89 2 96.63 6e-120
|
606
|
-
Brasy-EspV1T00061 sp|P45886|ACT3_BACDO P45886 376 277 564 213 308 96 1 77.08 6e-120
|
607
|
-
Brasy-EspV1T00061 sp|P45886|ACT3_BACDO P45886 376 545 769 302 376 75 2 81.33 6e-120
|
608
|
-
Brasy-EspV1T00061 sp|P08023|ACTA_CHICK P08023 377 2 268 122 210 89 2 89.89 6e-120
|
609
|
-
Brasy-EspV1T00061 sp|P08023|ACTA_CHICK P08023 377 277 564 214 309 96 1 80.21 6e-120
|
610
|
-
Brasy-EspV1T00061 sp|P08023|ACTA_CHICK P08023 377 557 769 307 377 71 2 85.92 6e-120
|
611
|
-
Brasy-EspV1T00061 sp|P20399|ACT2_XENTR P20399 377 2 268 122 210 89 2 91.01 7e-120
|
612
|
-
Brasy-EspV1T00061 sp|P20399|ACT2_XENTR P20399 377 277 564 214 309 96 1 80.21 7e-120
|
613
|
-
Brasy-EspV1T00061 sp|P20399|ACT2_XENTR P20399 377 557 769 307 377 71 2 84.51 7e-120
|
614
|
-
Brasy-EspV1T00061 sp|P04751|ACTC_XENLA P04751 377 2 268 122 210 89 2 91.01 7e-120
|
615
|
-
Brasy-EspV1T00061 sp|P04751|ACTC_XENLA P04751 377 277 564 214 309 96 1 80.21 7e-120
|
616
|
-
Brasy-EspV1T00061 sp|P04751|ACTC_XENLA P04751 377 557 769 307 377 71 2 85.92 7e-120
|
617
|
-
Brasy-EspV1T00061 sp|Q00214|ACTM_STYPL Q00214 379 2 268 124 212 89 2 92.13 8e-120
|
618
|
-
Brasy-EspV1T00061 sp|Q00214|ACTM_STYPL Q00214 379 277 564 216 311 96 1 80.21 8e-120
|
619
|
-
Brasy-EspV1T00061 sp|Q00214|ACTM_STYPL Q00214 379 557 769 309 379 71 2 84.51 8e-120
|
620
|
-
Brasy-EspV1T00061 sp|P83968|ACT6_DROSI P83968 376 2 268 121 209 89 2 94.38 9e-120
|
621
|
-
Brasy-EspV1T00061 sp|P83968|ACT6_DROSI P83968 376 277 564 213 308 96 1 78.12 9e-120
|
622
|
-
Brasy-EspV1T00061 sp|P83968|ACT6_DROSI P83968 376 557 769 306 376 71 2 84.51 9e-120
|
623
|
-
Brasy-EspV1T00061 sp|P83967|ACT6_DROME P83967 376 2 268 121 209 89 2 94.38 9e-120
|
624
|
-
Brasy-EspV1T00061 sp|P83967|ACT6_DROME P83967 376 277 564 213 308 96 1 78.12 9e-120
|
625
|
-
Brasy-EspV1T00061 sp|P83967|ACT6_DROME P83967 376 557 769 306 376 71 2 84.51 9e-120
|
626
|
-
Brasy-EspV1T00061 sp|P83969|ACT1_BACDO P83969 376 2 268 121 209 89 2 94.38 9e-120
|
627
|
-
Brasy-EspV1T00061 sp|P83969|ACT1_BACDO P83969 376 277 564 213 308 96 1 78.12 9e-120
|
628
|
-
Brasy-EspV1T00061 sp|P83969|ACT1_BACDO P83969 376 557 769 306 376 71 2 84.51 9e-120
|
629
|
-
Brasy-EspV1T00061 sp|O15998|ACTM_CIOSA O15998 378 2 268 123 211 89 2 89.89 1e-119
|
630
|
-
Brasy-EspV1T00061 sp|O15998|ACTM_CIOSA O15998 378 277 564 215 310 96 1 80.21 1e-119
|
631
|
-
Brasy-EspV1T00061 sp|O15998|ACTM_CIOSA O15998 378 557 769 308 378 71 2 84.51 1e-119
|
632
|
-
Brasy-EspV1T00061 sp|P53480|ACTC_TAKRU P53480 377 2 268 122 210 89 2 91.01 1e-119
|
633
|
-
Brasy-EspV1T00061 sp|P53480|ACTC_TAKRU P53480 377 277 564 214 309 96 1 79.17 1e-119
|
634
|
-
Brasy-EspV1T00061 sp|P53480|ACTC_TAKRU P53480 377 557 769 307 377 71 2 85.92 1e-119
|
635
|
-
Brasy-EspV1T00061 sp|P68136|ACTS_RAT P68136 377 2 268 122 210 89 2 91.01 1e-119
|
636
|
-
Brasy-EspV1T00061 sp|P68136|ACTS_RAT P68136 377 277 564 214 309 96 1 79.17 1e-119
|
637
|
-
Brasy-EspV1T00061 sp|P68136|ACTS_RAT P68136 377 557 769 307 377 71 2 84.51 1e-119
|
638
|
-
Brasy-EspV1T00061 sp|P68135|ACTS_RABIT P68135 377 2 268 122 210 89 2 91.01 1e-119
|
639
|
-
Brasy-EspV1T00061 sp|P68135|ACTS_RABIT P68135 377 277 564 214 309 96 1 79.17 1e-119
|
640
|
-
Brasy-EspV1T00061 sp|P68135|ACTS_RABIT P68135 377 557 769 307 377 71 2 84.51 1e-119
|
641
|
-
Brasy-EspV1T00061 sp|Q5R9Q5|ACTS_PONAB Q5R9Q5 377 2 268 122 210 89 2 91.01 1e-119
|
642
|
-
Brasy-EspV1T00061 sp|Q5R9Q5|ACTS_PONAB Q5R9Q5 377 277 564 214 309 96 1 79.17 1e-119
|
643
|
-
Brasy-EspV1T00061 sp|Q5R9Q5|ACTS_PONAB Q5R9Q5 377 557 769 307 377 71 2 84.51 1e-119
|
644
|
-
Brasy-EspV1T00061 sp|P68137|ACTS_PIG P68137 377 2 268 122 210 89 2 91.01 1e-119
|
645
|
-
Brasy-EspV1T00061 sp|P68137|ACTS_PIG P68137 377 277 564 214 309 96 1 79.17 1e-119
|
646
|
-
Brasy-EspV1T00061 sp|P68137|ACTS_PIG P68137 377 557 769 307 377 71 2 84.51 1e-119
|
647
|
-
Brasy-EspV1T00061 sp|P68134|ACTS_MOUSE P68134 377 2 268 122 210 89 2 91.01 1e-119
|
648
|
-
Brasy-EspV1T00061 sp|P68134|ACTS_MOUSE P68134 377 277 564 214 309 96 1 79.17 1e-119
|
649
|
-
Brasy-EspV1T00061 sp|P68134|ACTS_MOUSE P68134 377 557 769 307 377 71 2 84.51 1e-119
|
650
|
-
Brasy-EspV1T00061 sp|P68133|ACTS_HUMAN P68133 377 2 268 122 210 89 2 91.01 1e-119
|
651
|
-
Brasy-EspV1T00061 sp|P68133|ACTS_HUMAN P68133 377 277 564 214 309 96 1 79.17 1e-119
|
652
|
-
Brasy-EspV1T00061 sp|P68133|ACTS_HUMAN P68133 377 557 769 307 377 71 2 84.51 1e-119
|
653
|
-
Brasy-EspV1T00061 sp|P68139|ACTS_CHICK P68139 377 2 268 122 210 89 2 91.01 1e-119
|
654
|
-
Brasy-EspV1T00061 sp|P68139|ACTS_CHICK P68139 377 277 564 214 309 96 1 79.17 1e-119
|
655
|
-
Brasy-EspV1T00061 sp|P68139|ACTS_CHICK P68139 377 557 769 307 377 71 2 84.51 1e-119
|
656
|
-
Brasy-EspV1T00061 sp|P68138|ACTS_BOVIN P68138 377 2 268 122 210 89 2 91.01 1e-119
|
657
|
-
Brasy-EspV1T00061 sp|P68138|ACTS_BOVIN P68138 377 277 564 214 309 96 1 79.17 1e-119
|
658
|
-
Brasy-EspV1T00061 sp|P68138|ACTS_BOVIN P68138 377 557 769 307 377 71 2 84.51 1e-119
|
659
|
-
Brasy-EspV1T00061 sp|P18601|ACT2_ARTSX P18601 376 2 268 121 209 89 2 93.26 2e-119
|
660
|
-
Brasy-EspV1T00061 sp|P18601|ACT2_ARTSX P18601 376 277 564 213 308 96 1 78.12 2e-119
|
661
|
-
Brasy-EspV1T00061 sp|P18601|ACT2_ARTSX P18601 376 557 769 306 376 71 2 84.51 2e-119
|
662
|
-
Brasy-EspV1T00061 sp|P18499|ACTF_STRPU P18499 376 2 268 121 209 89 2 93.26 2e-119
|
663
|
-
Brasy-EspV1T00061 sp|P18499|ACTF_STRPU P18499 376 277 564 213 308 96 1 78.12 2e-119
|
664
|
-
Brasy-EspV1T00061 sp|P18499|ACTF_STRPU P18499 376 557 769 306 376 71 2 85.92 2e-119
|
665
|
-
Brasy-EspV1T00061 sp|P53457|ACT3_DIPDE P53457 377 2 268 122 210 89 2 92.13 2e-119
|
666
|
-
Brasy-EspV1T00061 sp|P53457|ACT3_DIPDE P53457 377 277 564 214 309 96 1 76.04 2e-119
|
667
|
-
Brasy-EspV1T00061 sp|P53457|ACT3_DIPDE P53457 377 557 769 307 377 71 2 85.92 2e-119
|
668
|
-
Brasy-EspV1T00061 sp|P53474|ACTE_STRPU P53474 376 2 268 121 209 89 2 93.26 2e-119
|
669
|
-
Brasy-EspV1T00061 sp|P53474|ACTE_STRPU P53474 376 277 564 213 308 96 1 79.17 2e-119
|
670
|
-
Brasy-EspV1T00061 sp|P53474|ACTE_STRPU P53474 376 557 769 306 376 71 2 85.92 2e-119
|
671
|
-
Brasy-EspV1T00061 sp|Q03342|ACT3_ECHGR Q03342 309 2 268 54 142 89 2 93.26 2e-119
|
672
|
-
Brasy-EspV1T00061 sp|Q03342|ACT3_ECHGR Q03342 309 277 564 146 241 96 1 81.25 2e-119
|
673
|
-
Brasy-EspV1T00061 sp|Q03342|ACT3_ECHGR Q03342 309 557 769 239 309 71 2 83.10 2e-119
|
674
|
-
Brasy-EspV1T00061 sp|P10995|ACT2_XENLA P10995 377 2 268 122 210 89 2 91.01 3e-119
|
675
|
-
Brasy-EspV1T00061 sp|P10995|ACT2_XENLA P10995 377 277 564 214 309 96 1 79.17 3e-119
|
676
|
-
Brasy-EspV1T00061 sp|P10995|ACT2_XENLA P10995 377 557 769 307 377 71 2 84.51 3e-119
|
677
|
-
Brasy-EspV1T00061 sp|Q98972|ACTS_ORYLA Q98972 377 2 268 122 210 89 2 88.76 4e-119
|
678
|
-
Brasy-EspV1T00061 sp|Q98972|ACTS_ORYLA Q98972 377 277 564 214 309 96 1 79.17 4e-119
|
679
|
-
Brasy-EspV1T00061 sp|Q98972|ACTS_ORYLA Q98972 377 557 769 307 377 71 2 85.92 4e-119
|
680
|
-
Brasy-EspV1T00061 sp|P50138|ACT_PUCGR P50138 375 2 268 120 208 89 2 91.01 4e-119
|
681
|
-
Brasy-EspV1T00061 sp|P50138|ACT_PUCGR P50138 375 277 558 212 305 94 1 78.72 4e-119
|
682
|
-
Brasy-EspV1T00061 sp|P50138|ACT_PUCGR P50138 375 557 769 305 375 71 2 88.73 4e-119
|
683
|
-
Brasy-EspV1T00061 sp|P68264|ACTS_OREMO P68264 377 2 268 122 210 89 2 88.76 4e-119
|
684
|
-
Brasy-EspV1T00061 sp|P68264|ACTS_OREMO P68264 377 277 564 214 309 96 1 79.17 4e-119
|
685
|
-
Brasy-EspV1T00061 sp|P68264|ACTS_OREMO P68264 377 557 769 307 377 71 2 85.92 4e-119
|
686
|
-
Brasy-EspV1T00061 sp|P68140|ACTSA_TAKRU P68140 377 2 268 122 210 89 2 88.76 4e-119
|
687
|
-
Brasy-EspV1T00061 sp|P68140|ACTSA_TAKRU P68140 377 277 564 214 309 96 1 79.17 4e-119
|
688
|
-
Brasy-EspV1T00061 sp|P68140|ACTSA_TAKRU P68140 377 557 769 307 377 71 2 85.92 4e-119
|
689
|
-
Brasy-EspV1T00061 sp|Q90X97|ACTS_ATRMM Q90X97 377 2 268 122 210 89 2 89.89 5e-119
|
690
|
-
Brasy-EspV1T00061 sp|Q90X97|ACTS_ATRMM Q90X97 377 277 564 214 309 96 1 79.17 5e-119
|
691
|
-
Brasy-EspV1T00061 sp|Q90X97|ACTS_ATRMM Q90X97 377 557 769 307 377 71 2 84.51 5e-119
|
692
|
-
Brasy-EspV1T00061 sp|P49055|ACTS_CARAU P49055 377 2 268 122 210 89 2 88.76 8e-119
|
693
|
-
Brasy-EspV1T00061 sp|P49055|ACTS_CARAU P49055 377 277 564 214 309 96 1 79.17 8e-119
|
694
|
-
Brasy-EspV1T00061 sp|P49055|ACTS_CARAU P49055 377 557 769 307 377 71 2 84.51 8e-119
|
695
|
-
Brasy-EspV1T00061 sp|P53479|ACTS_CYPCA P53479 377 2 268 122 210 89 2 88.76 9e-119
|
696
|
-
Brasy-EspV1T00061 sp|P53479|ACTS_CYPCA P53479 377 277 564 214 309 96 1 79.17 9e-119
|
697
|
-
Brasy-EspV1T00061 sp|P53479|ACTS_CYPCA P53479 377 557 769 307 377 71 2 84.51 9e-119
|
698
|
-
Brasy-EspV1T00061 sp|Q07903|ACTC_STRPU Q07903 376 2 268 121 209 89 2 94.38 1e-118
|
699
|
-
Brasy-EspV1T00061 sp|Q07903|ACTC_STRPU Q07903 376 277 564 213 308 96 1 79.17 1e-118
|
700
|
-
Brasy-EspV1T00061 sp|Q07903|ACTC_STRPU Q07903 376 557 769 306 376 71 2 83.10 1e-118
|
701
|
-
Brasy-EspV1T00061 sp|P02574|ACT4_DROME P02574 376 2 268 121 209 89 2 95.51 2e-118
|
702
|
-
Brasy-EspV1T00061 sp|P02574|ACT4_DROME P02574 376 277 564 213 308 96 1 76.04 2e-118
|
703
|
-
Brasy-EspV1T00061 sp|P02574|ACT4_DROME P02574 376 557 769 306 376 71 2 84.51 2e-118
|
704
|
-
Brasy-EspV1T00061 sp|P53467|ACTM_MOLOC P53467 378 277 564 215 310 96 1 80.21 8e-118
|
705
|
-
Brasy-EspV1T00061 sp|P53467|ACTM_MOLOC P53467 378 2 268 123 211 89 2 86.52 8e-118
|
706
|
-
Brasy-EspV1T00061 sp|P53467|ACTM_MOLOC P53467 378 557 769 308 378 71 2 83.10 8e-118
|
707
|
-
Brasy-EspV1T00061 sp|P48465|ACT_CRYNH P48465 375 277 558 212 305 94 1 79.79 3e-117
|
708
|
-
Brasy-EspV1T00061 sp|P48465|ACT_CRYNH P48465 375 2 268 120 208 89 2 85.39 3e-117
|
709
|
-
Brasy-EspV1T00061 sp|P48465|ACT_CRYNH P48465 375 557 769 305 375 71 2 87.32 3e-117
|
710
|
-
Brasy-EspV1T00061 sp|Q8BFZ3|ACTBL_MOUSE Q8BFZ3 376 2 268 121 209 89 2 92.13 3e-117
|
711
|
-
Brasy-EspV1T00061 sp|Q8BFZ3|ACTBL_MOUSE Q8BFZ3 376 277 564 213 308 96 1 75.00 3e-117
|
712
|
-
Brasy-EspV1T00061 sp|Q8BFZ3|ACTBL_MOUSE Q8BFZ3 376 557 769 306 376 71 2 81.69 3e-117
|
713
|
-
Brasy-EspV1T00061 sp|P35432|ACT1_ECHGR P35432 375 2 268 120 208 89 2 89.89 2e-116
|
714
|
-
Brasy-EspV1T00061 sp|P35432|ACT1_ECHGR P35432 375 277 564 212 307 96 1 76.04 2e-116
|
715
|
-
Brasy-EspV1T00061 sp|P35432|ACT1_ECHGR P35432 375 557 769 305 375 71 2 83.10 2e-116
|
716
|
-
Brasy-EspV1T00061 sp|P53689|ACT_PHARH P53689 375 277 558 212 305 94 1 80.85 3e-116
|
717
|
-
Brasy-EspV1T00061 sp|P53689|ACT_PHARH P53689 375 2 268 120 208 89 2 87.64 3e-116
|
718
|
-
Brasy-EspV1T00061 sp|P53689|ACT_PHARH P53689 375 557 769 305 375 71 2 85.92 3e-116
|
719
|
-
Brasy-EspV1T00061 sp|Q562R1|ACTBL_HUMAN Q562R1 376 2 268 121 209 89 2 91.01 9e-116
|
720
|
-
Brasy-EspV1T00061 sp|Q562R1|ACTBL_HUMAN Q562R1 376 277 564 213 308 96 1 75.00 9e-116
|
721
|
-
Brasy-EspV1T00061 sp|Q562R1|ACTBL_HUMAN Q562R1 376 557 769 306 376 71 2 81.69 9e-116
|
722
|
-
Brasy-EspV1T00061 sp|Q9Y702|ACT1_SCHCO Q9Y702 375 2 268 120 208 89 2 87.64 1e-115
|
723
|
-
Brasy-EspV1T00061 sp|Q9Y702|ACT1_SCHCO Q9Y702 375 277 564 212 307 96 1 77.08 1e-115
|
724
|
-
Brasy-EspV1T00061 sp|Q9Y702|ACT1_SCHCO Q9Y702 375 557 769 305 375 71 2 84.51 1e-115
|
725
|
-
Brasy-EspV1T00061 sp|Q9Y707|ACT2_SUIBO Q9Y707 375 2 268 120 208 89 2 87.64 1e-115
|
726
|
-
Brasy-EspV1T00061 sp|Q9Y707|ACT2_SUIBO Q9Y707 375 277 564 212 307 96 1 75.00 1e-115
|
727
|
-
Brasy-EspV1T00061 sp|Q9Y707|ACT2_SUIBO Q9Y707 375 557 769 305 375 71 2 83.10 1e-115
|
728
|
-
Brasy-EspV1T00061 sp|P02581|ACT1_SOYBN P02581 377 277 564 214 309 96 1 83.33 2e-115
|
729
|
-
Brasy-EspV1T00061 sp|P02581|ACT1_SOYBN P02581 377 5 268 123 210 88 2 82.95 2e-115
|
730
|
-
Brasy-EspV1T00061 sp|P02581|ACT1_SOYBN P02581 377 557 769 307 377 71 2 85.92 2e-115
|
731
|
-
Brasy-EspV1T00061 sp|P43239|ACT1_PNECA P43239 375 2 268 120 208 89 2 91.01 3e-115
|
732
|
-
Brasy-EspV1T00061 sp|P43239|ACT1_PNECA P43239 375 277 564 212 307 96 1 77.08 3e-115
|
733
|
-
Brasy-EspV1T00061 sp|P43239|ACT1_PNECA P43239 375 545 769 301 375 75 2 84.00 3e-115
|
734
|
-
Brasy-EspV1T00061 sp|P53455|ACT_AJECG P53455 375 277 564 212 307 96 1 73.96 3e-115
|
735
|
-
Brasy-EspV1T00061 sp|P53455|ACT_AJECG P53455 375 2 268 120 208 89 2 82.02 3e-115
|
736
|
-
Brasy-EspV1T00061 sp|P53455|ACT_AJECG P53455 375 557 769 305 375 71 2 88.73 3e-115
|
737
|
-
Brasy-EspV1T00061 sp|P07828|ACT18_DICDI P07828 380 2 268 121 209 89 2 86.52 5e-115
|
738
|
-
Brasy-EspV1T00061 sp|P07828|ACT18_DICDI P07828 380 277 564 213 308 96 1 72.92 5e-115
|
739
|
-
Brasy-EspV1T00061 sp|P07828|ACT18_DICDI P07828 380 557 766 306 375 70 2 82.86 5e-115
|
740
|
-
Brasy-EspV1T00061 sp|Q03341|ACT2_ECHGR Q03341 376 2 271 121 210 90 2 92.22 3e-114
|
741
|
-
Brasy-EspV1T00061 sp|Q03341|ACT2_ECHGR Q03341 376 277 558 213 306 94 1 76.60 3e-114
|
742
|
-
Brasy-EspV1T00061 sp|Q03341|ACT2_ECHGR Q03341 376 557 769 306 376 71 2 74.65 3e-114
|
743
|
-
Brasy-EspV1T00061 sp|Q6S8J3|POTEE_HUMAN Q6S8J3 1075 2 268 820 908 89 2 85.39 6e-114
|
744
|
-
Brasy-EspV1T00061 sp|Q6S8J3|POTEE_HUMAN Q6S8J3 1075 277 564 912 1007 96 1 78.12 6e-114
|
745
|
-
Brasy-EspV1T00061 sp|Q6S8J3|POTEE_HUMAN Q6S8J3 1075 557 769 1005 1075 71 2 78.87 6e-114
|
746
|
-
Brasy-EspV1T00061 sp|O17502|ACTM_BRALA O17502 380 2 268 125 213 89 2 89.89 1e-113
|
747
|
-
Brasy-EspV1T00061 sp|O17502|ACTM_BRALA O17502 380 277 564 217 312 96 1 73.96 1e-113
|
748
|
-
Brasy-EspV1T00061 sp|O17502|ACTM_BRALA O17502 380 557 769 310 380 71 2 74.65 1e-113
|
749
|
-
Brasy-EspV1T00061 sp|P27131|ACT1_NAEFO P27131 375 2 268 120 208 89 2 92.13 1e-113
|
750
|
-
Brasy-EspV1T00061 sp|P27131|ACT1_NAEFO P27131 375 277 558 212 305 94 1 77.66 1e-113
|
751
|
-
Brasy-EspV1T00061 sp|P27131|ACT1_NAEFO P27131 375 557 769 305 375 71 2 76.06 1e-113
|
752
|
-
Brasy-EspV1T00061 sp|P93375|ACT7_TOBAC P93375 336 277 564 194 289 96 1 89.58 2e-113
|
753
|
-
Brasy-EspV1T00061 sp|P93375|ACT7_TOBAC P93375 336 2 268 102 190 89 2 92.13 2e-113
|
754
|
-
Brasy-EspV1T00061 sp|P93375|ACT7_TOBAC P93375 336 557 706 287 336 50 2 94.00 2e-113
|
755
|
-
Brasy-EspV1T00061 sp|O74258|ACT_OGAPD O74258 376 2 268 121 209 89 2 82.02 2e-113
|
756
|
-
Brasy-EspV1T00061 sp|O74258|ACT_OGAPD O74258 376 277 564 213 308 96 1 70.83 2e-113
|
757
|
-
Brasy-EspV1T00061 sp|O74258|ACT_OGAPD O74258 376 557 769 306 376 71 2 90.14 2e-113
|
758
|
-
Brasy-EspV1T00061 sp|P10365|ACT_THELA P10365 375 2 268 120 208 89 2 84.27 2e-113
|
759
|
-
Brasy-EspV1T00061 sp|P10365|ACT_THELA P10365 375 277 564 212 307 96 1 71.88 2e-113
|
760
|
-
Brasy-EspV1T00061 sp|P10365|ACT_THELA P10365 375 557 769 305 375 71 2 85.92 2e-113
|
761
|
-
Brasy-EspV1T00061 sp|Q9Y701|ACT1_SUIBO Q9Y701 375 2 268 120 208 89 2 87.64 3e-113
|
762
|
-
Brasy-EspV1T00061 sp|Q9Y701|ACT1_SUIBO Q9Y701 375 277 564 212 307 96 1 73.96 3e-113
|
763
|
-
Brasy-EspV1T00061 sp|Q9Y701|ACT1_SUIBO Q9Y701 375 557 769 305 375 71 2 83.10 3e-113
|
764
|
-
Brasy-EspV1T00061 sp|A5A3E0|POTEF_HUMAN A5A3E0 1075 2 268 820 908 89 2 85.39 8e-113
|
765
|
-
Brasy-EspV1T00061 sp|A5A3E0|POTEF_HUMAN A5A3E0 1075 277 564 912 1007 96 1 77.08 8e-113
|
766
|
-
Brasy-EspV1T00061 sp|A5A3E0|POTEF_HUMAN A5A3E0 1075 557 769 1005 1075 71 2 77.46 8e-113
|
767
|
-
Brasy-EspV1T00061 sp|A5DQP9|ACT_PICGU A5DQP9 360 2 268 105 193 89 2 84.27 8e-113
|
768
|
-
Brasy-EspV1T00061 sp|A5DQP9|ACT_PICGU A5DQP9 360 277 564 197 292 96 1 68.75 8e-113
|
769
|
-
Brasy-EspV1T00061 sp|A5DQP9|ACT_PICGU A5DQP9 360 557 769 290 360 71 2 90.14 8e-113
|
770
|
-
Brasy-EspV1T00061 sp|Q93132|ACTM_BRAFL Q93132 378 2 268 123 211 89 2 84.27 1e-112
|
771
|
-
Brasy-EspV1T00061 sp|Q93132|ACTM_BRAFL Q93132 378 277 564 215 310 96 1 73.96 1e-112
|
772
|
-
Brasy-EspV1T00061 sp|Q93132|ACTM_BRAFL Q93132 378 557 769 308 378 71 2 76.06 1e-112
|
773
|
-
Brasy-EspV1T00061 sp|P0CG38|POTEI_HUMAN P0CG38 1075 2 268 820 908 89 2 85.39 3e-112
|
774
|
-
Brasy-EspV1T00061 sp|P0CG38|POTEI_HUMAN P0CG38 1075 277 564 912 1007 96 1 76.04 3e-112
|
775
|
-
Brasy-EspV1T00061 sp|P0CG38|POTEI_HUMAN P0CG38 1075 557 769 1005 1075 71 2 77.46 3e-112
|
776
|
-
Brasy-EspV1T00061 sp|Q9BYX7|ACTBM_HUMAN Q9BYX7 375 2 268 120 208 89 2 86.52 3e-112
|
777
|
-
Brasy-EspV1T00061 sp|Q9BYX7|ACTBM_HUMAN Q9BYX7 375 277 564 212 307 96 1 76.04 3e-112
|
778
|
-
Brasy-EspV1T00061 sp|Q9BYX7|ACTBM_HUMAN Q9BYX7 375 557 769 305 375 71 2 83.10 3e-112
|
779
|
-
Brasy-EspV1T00061 sp|Q9UVZ8|ACT_CANDC Q9UVZ8 376 2 268 121 209 89 2 80.90 3e-112
|
780
|
-
Brasy-EspV1T00061 sp|Q9UVZ8|ACT_CANDC Q9UVZ8 376 277 564 213 308 96 1 67.71 3e-112
|
781
|
-
Brasy-EspV1T00061 sp|Q9UVZ8|ACT_CANDC Q9UVZ8 376 557 769 306 376 71 2 90.14 3e-112
|
782
|
-
Brasy-EspV1T00061 sp|P14235|ACT_CANAX P14235 376 2 268 121 209 89 2 80.90 3e-112
|
783
|
-
Brasy-EspV1T00061 sp|P14235|ACT_CANAX P14235 376 277 564 213 308 96 1 67.71 3e-112
|
784
|
-
Brasy-EspV1T00061 sp|P14235|ACT_CANAX P14235 376 557 769 306 376 71 2 90.14 3e-112
|
785
|
-
Brasy-EspV1T00061 sp|Q93130|ACTM_BRABE Q93130 379 2 268 124 212 89 2 84.27 4e-112
|
786
|
-
Brasy-EspV1T00061 sp|Q93130|ACTM_BRABE Q93130 379 277 564 216 311 96 1 73.96 4e-112
|
787
|
-
Brasy-EspV1T00061 sp|Q93130|ACTM_BRABE Q93130 379 557 769 309 379 71 2 74.65 4e-112
|
788
|
-
Brasy-EspV1T00061 sp|P26183|ACT_CRYPV P26183 376 2 268 121 209 89 2 89.89 4e-112
|
789
|
-
Brasy-EspV1T00061 sp|P26183|ACT_CRYPV P26183 376 277 564 213 308 96 1 67.71 4e-112
|
790
|
-
Brasy-EspV1T00061 sp|P26183|ACT_CRYPV P26183 376 557 769 306 376 71 2 81.69 4e-112
|
791
|
-
Brasy-EspV1T00061 sp|P93373|ACT3_TOBAC P93373 339 277 564 196 291 96 1 90.62 5e-112
|
792
|
-
Brasy-EspV1T00061 sp|P93373|ACT3_TOBAC P93373 339 2 268 102 192 91 2 91.21 5e-112
|
793
|
-
Brasy-EspV1T00061 sp|P93373|ACT3_TOBAC P93373 339 557 709 289 339 51 2 90.20 5e-112
|
794
|
-
Brasy-EspV1T00061 sp|P0CG39|POTEJ_HUMAN P0CG39 1038 2 268 783 871 89 2 85.39 1e-111
|
795
|
-
Brasy-EspV1T00061 sp|P0CG39|POTEJ_HUMAN P0CG39 1038 277 564 875 970 96 1 73.96 1e-111
|
796
|
-
Brasy-EspV1T00061 sp|P0CG39|POTEJ_HUMAN P0CG39 1038 557 769 968 1038 71 2 78.87 1e-111
|
797
|
-
Brasy-EspV1T00061 sp|Q2U7A3|ACT_ASPOR Q2U7A3 375 277 564 212 307 96 1 75.00 1e-111
|
798
|
-
Brasy-EspV1T00061 sp|Q2U7A3|ACT_ASPOR Q2U7A3 375 2 268 120 208 89 2 78.65 1e-111
|
799
|
-
Brasy-EspV1T00061 sp|Q2U7A3|ACT_ASPOR Q2U7A3 375 557 769 305 375 71 2 83.10 1e-111
|
800
|
-
Brasy-EspV1T00061 sp|Q9UVX4|ACT_COPC7 Q9UVX4 375 2 268 120 208 89 2 87.64 2e-111
|
801
|
-
Brasy-EspV1T00061 sp|Q9UVX4|ACT_COPC7 Q9UVX4 375 277 561 212 306 95 1 76.84 2e-111
|
802
|
-
Brasy-EspV1T00061 sp|Q9UVX4|ACT_COPC7 Q9UVX4 375 557 769 305 375 71 2 77.46 2e-111
|
803
|
-
Brasy-EspV1T00061 sp|P45521|ACT_PROCL P45521 322 2 268 67 155 89 2 86.52 1e-110
|
804
|
-
Brasy-EspV1T00061 sp|P45521|ACT_PROCL P45521 322 277 564 159 254 96 1 66.67 1e-110
|
805
|
-
Brasy-EspV1T00061 sp|P45521|ACT_PROCL P45521 322 557 769 252 322 71 2 78.87 1e-110
|
806
|
-
Brasy-EspV1T00061 sp|P53483|ACTX_TAKRU P53483 376 2 268 121 209 89 2 83.15 2e-110
|
807
|
-
Brasy-EspV1T00061 sp|P53483|ACTX_TAKRU P53483 376 277 564 213 308 96 1 72.92 2e-110
|
808
|
-
Brasy-EspV1T00061 sp|P53483|ACTX_TAKRU P53483 376 557 769 306 376 71 2 84.51 2e-110
|
809
|
-
Brasy-EspV1T00061 sp|P86287|ACT1_PLAFX P86287 376 2 268 121 209 89 2 85.39 2e-109
|
810
|
-
Brasy-EspV1T00061 sp|P86287|ACT1_PLAFX P86287 376 277 558 213 306 94 1 69.15 2e-109
|
811
|
-
Brasy-EspV1T00061 sp|P86287|ACT1_PLAFX P86287 376 557 769 306 376 71 2 77.46 2e-109
|
812
|
-
Brasy-EspV1T00061 sp|Q8I4X0|ACT1_PLAF7 Q8I4X0 376 2 268 121 209 89 2 85.39 2e-109
|
813
|
-
Brasy-EspV1T00061 sp|Q8I4X0|ACT1_PLAF7 Q8I4X0 376 277 558 213 306 94 1 69.15 2e-109
|
814
|
-
Brasy-EspV1T00061 sp|Q8I4X0|ACT1_PLAF7 Q8I4X0 376 557 769 306 376 71 2 77.46 2e-109
|
815
|
-
Brasy-EspV1T00061 sp|Q7RME1|ACT1_PLAYO Q7RME1 376 2 268 121 209 89 2 85.39 2e-109
|
816
|
-
Brasy-EspV1T00061 sp|Q7RME1|ACT1_PLAYO Q7RME1 376 277 558 213 306 94 1 69.15 2e-109
|
817
|
-
Brasy-EspV1T00061 sp|Q7RME1|ACT1_PLAYO Q7RME1 376 557 769 306 376 71 2 77.46 2e-109
|
818
|
-
Brasy-EspV1T00061 sp|P10988|ACT1_PLAFO P10988 376 2 268 121 209 89 2 85.39 8e-109
|
819
|
-
Brasy-EspV1T00061 sp|P10988|ACT1_PLAFO P10988 376 277 558 213 306 94 1 69.15 8e-109
|
820
|
-
Brasy-EspV1T00061 sp|P10988|ACT1_PLAFO P10988 376 557 769 306 376 71 2 76.06 8e-109
|
821
|
-
Brasy-EspV1T00061 sp|Q4Z1L3|ACT1_PLABA Q4Z1L3 375 2 268 120 208 89 2 85.39 4e-108
|
822
|
-
Brasy-EspV1T00061 sp|Q4Z1L3|ACT1_PLABA Q4Z1L3 375 277 558 212 305 94 1 69.15 4e-108
|
823
|
-
Brasy-EspV1T00061 sp|Q4Z1L3|ACT1_PLABA Q4Z1L3 375 557 769 305 375 71 2 76.06 4e-108
|
824
|
-
Brasy-EspV1T00061 sp|P30169|ACT7_SOLTU P30169 377 277 564 214 309 96 1 84.38 6e-108
|
825
|
-
Brasy-EspV1T00061 sp|P30169|ACT7_SOLTU P30169 377 545 769 303 377 75 2 88.00 6e-108
|
826
|
-
Brasy-EspV1T00061 sp|P30169|ACT7_SOLTU P30169 377 2 268 122 210 89 2 66.29 6e-108
|
827
|
-
Brasy-EspV1T00061 sp|Q9NJV4|ACT1_NAEGR Q9NJV4 374 2 268 119 207 89 2 91.01 1e-107
|
828
|
-
Brasy-EspV1T00061 sp|Q9NJV4|ACT1_NAEGR Q9NJV4 374 277 558 211 304 94 1 69.15 1e-107
|
829
|
-
Brasy-EspV1T00061 sp|Q9NJV4|ACT1_NAEGR Q9NJV4 374 557 769 304 374 71 2 71.83 1e-107
|
830
|
-
Brasy-EspV1T00061 sp|P23344|ACT2_DAUCA P23344 381 2 256 124 210 87 2 86.21 8e-107
|
831
|
-
Brasy-EspV1T00061 sp|P23344|ACT2_DAUCA P23344 381 277 573 216 315 100 1 73.00 8e-107
|
832
|
-
Brasy-EspV1T00061 sp|P23344|ACT2_DAUCA P23344 381 557 769 310 381 72 2 86.11 8e-107
|
833
|
-
Brasy-EspV1T00061 sp|P10993|ACT2_TETPY P10993 376 277 564 213 308 96 1 68.75 5e-106
|
834
|
-
Brasy-EspV1T00061 sp|P10993|ACT2_TETPY P10993 376 2 268 121 209 89 2 76.40 5e-106
|
835
|
-
Brasy-EspV1T00061 sp|P10993|ACT2_TETPY P10993 376 557 769 306 376 71 2 83.10 5e-106
|
836
|
-
Brasy-EspV1T00061 sp|P53491|ACT_ACEPE P53491 353 2 268 102 190 89 2 91.01 7e-106
|
837
|
-
Brasy-EspV1T00061 sp|P53491|ACT_ACEPE P53491 353 557 769 283 353 71 2 81.69 7e-106
|
838
|
-
Brasy-EspV1T00061 sp|P53491|ACT_ACEPE P53491 353 277 564 194 285 96 1 65.62 7e-106
|
839
|
-
Brasy-EspV1T00061 sp|P10992|ACT1_TETTH P10992 376 2 268 121 209 89 2 76.40 6e-105
|
840
|
-
Brasy-EspV1T00061 sp|P10992|ACT1_TETTH P10992 376 277 564 213 308 96 1 66.67 6e-105
|
841
|
-
Brasy-EspV1T00061 sp|P10992|ACT1_TETTH P10992 376 557 769 306 376 71 2 83.10 6e-105
|
842
|
-
Brasy-EspV1T00061 sp|Q9Y896|ACT2_SCHCO Q9Y896 375 2 268 120 208 89 2 79.78 3e-104
|
843
|
-
Brasy-EspV1T00061 sp|Q9Y896|ACT2_SCHCO Q9Y896 375 277 564 212 307 96 1 65.62 3e-104
|
844
|
-
Brasy-EspV1T00061 sp|Q9Y896|ACT2_SCHCO Q9Y896 375 557 769 305 375 71 2 76.06 3e-104
|
845
|
-
Brasy-EspV1T00061 sp|Q554S6|ACT17_DICDI Q554S6 374 277 564 213 306 96 1 70.83 3e-103
|
846
|
-
Brasy-EspV1T00061 sp|Q554S6|ACT17_DICDI Q554S6 374 545 769 300 374 75 2 82.67 3e-103
|
847
|
-
Brasy-EspV1T00061 sp|Q554S6|ACT17_DICDI Q554S6 374 2 268 121 209 89 2 69.66 3e-103
|
848
|
-
Brasy-EspV1T00061 sp|Q54HF1|ACT24_DICDI Q54HF1 377 277 564 214 309 96 1 75.00 3e-102
|
849
|
-
Brasy-EspV1T00061 sp|Q54HF1|ACT24_DICDI Q54HF1 377 5 268 122 210 89 2 71.91 3e-102
|
850
|
-
Brasy-EspV1T00061 sp|Q54HF1|ACT24_DICDI Q54HF1 377 545 766 303 376 74 2 79.73 3e-102
|
851
|
-
Brasy-EspV1T00061 sp|P27132|ACT2_NAEFO P27132 371 2 268 116 204 89 2 84.27 5e-102
|
852
|
-
Brasy-EspV1T00061 sp|P27132|ACT2_NAEFO P27132 371 277 558 208 301 94 1 70.21 5e-102
|
853
|
-
Brasy-EspV1T00061 sp|P27132|ACT2_NAEFO P27132 371 557 769 301 371 71 2 74.65 5e-102
|
854
|
-
Brasy-EspV1T00061 sp|P53499|ACT_CHOCR P53499 373 2 268 118 206 89 2 79.78 2e-101
|
855
|
-
Brasy-EspV1T00061 sp|P53499|ACT_CHOCR P53499 373 277 558 210 303 94 1 61.70 2e-101
|
856
|
-
Brasy-EspV1T00061 sp|P53499|ACT_CHOCR P53499 373 557 769 303 373 71 2 76.06 2e-101
|
857
|
-
Brasy-EspV1T00061 sp|Q54HF0|ACT25_DICDI Q54HF0 385 277 564 228 317 96 1 69.79 2e-100
|
858
|
-
Brasy-EspV1T00061 sp|Q54HF0|ACT25_DICDI Q54HF0 385 557 769 315 385 71 2 83.10 2e-100
|
859
|
-
Brasy-EspV1T00061 sp|Q54HF0|ACT25_DICDI Q54HF0 385 2 268 136 224 89 2 71.91 2e-100
|
860
|
-
Brasy-EspV1T00061 sp|Q4YU79|ACT2_PLABA Q4YU79 376 2 268 120 208 89 2 82.02 4e-99
|
861
|
-
Brasy-EspV1T00061 sp|Q4YU79|ACT2_PLABA Q4YU79 376 277 558 212 306 95 1 61.05 4e-99
|
862
|
-
Brasy-EspV1T00061 sp|Q4YU79|ACT2_PLABA Q4YU79 376 569 769 310 376 67 2 77.61 4e-99
|
863
|
-
Brasy-EspV1T00061 sp|P24263|ACTD_PHYPO P24263 367 277 564 210 300 96 1 71.88 3e-97
|
864
|
-
Brasy-EspV1T00061 sp|P24263|ACTD_PHYPO P24263 367 2 268 118 206 89 2 77.53 3e-97
|
865
|
-
Brasy-EspV1T00061 sp|P24263|ACTD_PHYPO P24263 367 557 769 298 367 71 2 70.42 3e-97
|
866
|
-
Brasy-EspV1T00061 sp|P12433|ACT2_TRYBB P12433 376 2 268 121 209 89 2 77.53 2e-96
|
867
|
-
Brasy-EspV1T00061 sp|P12433|ACT2_TRYBB P12433 376 277 558 213 306 95 1 57.89 2e-96
|
868
|
-
Brasy-EspV1T00061 sp|P12433|ACT2_TRYBB P12433 376 557 769 306 376 71 2 74.65 2e-96
|
869
|
-
Brasy-EspV1T00061 sp|P12432|ACT1_TRYBB P12432 376 2 268 121 209 89 2 77.53 7e-96
|
870
|
-
Brasy-EspV1T00061 sp|P12432|ACT1_TRYBB P12432 376 277 558 213 306 95 1 58.95 7e-96
|
871
|
-
Brasy-EspV1T00061 sp|P12432|ACT1_TRYBB P12432 376 557 769 306 376 71 2 73.24 7e-96
|
872
|
-
Brasy-EspV1T00061 sp|P53477|ACT_TRYCR P53477 376 2 268 121 209 89 2 77.53 3e-95
|
873
|
-
Brasy-EspV1T00061 sp|P53477|ACT_TRYCR P53477 376 277 558 213 306 95 1 55.79 3e-95
|
874
|
-
Brasy-EspV1T00061 sp|P53477|ACT_TRYCR P53477 376 557 769 306 376 71 2 73.24 3e-95
|
875
|
-
Brasy-EspV1T00061 sp|P93738|ACT9_ARATH P93738 366 2 268 111 199 89 2 75.28 5e-95
|
876
|
-
Brasy-EspV1T00061 sp|P93738|ACT9_ARATH P93738 366 277 561 203 297 95 1 65.26 5e-95
|
877
|
-
Brasy-EspV1T00061 sp|P93738|ACT9_ARATH P93738 366 557 766 296 365 70 2 70.00 5e-95
|
878
|
-
Brasy-EspV1T00061 sp|P45520|ACT_LEIMA P45520 376 2 268 121 209 89 2 77.53 2e-93
|
879
|
-
Brasy-EspV1T00061 sp|P45520|ACT_LEIMA P45520 376 277 558 213 306 95 1 60.00 2e-93
|
880
|
-
Brasy-EspV1T00061 sp|P45520|ACT_LEIMA P45520 376 557 769 306 376 71 2 73.24 2e-93
|
881
|
-
Brasy-EspV1T00061 sp|Q10AZ4|ACT3_ORYSJ Q10AZ4 377 277 564 214 309 96 1 91.67 1e-92
|
882
|
-
Brasy-EspV1T00061 sp|Q10AZ4|ACT3_ORYSJ Q10AZ4 377 2 268 122 210 89 2 94.38 1e-92
|
883
|
-
Brasy-EspV1T00061 sp|Q10AZ4|ACT3_ORYSJ Q10AZ4 377 524 769 283 377 95 2 73.68 5e-38
|
884
|
-
Brasy-EspV1T00061 sp|A2XNS1|ACT3_ORYSI A2XNS1 377 277 564 214 309 96 1 91.67 1e-92
|
885
|
-
Brasy-EspV1T00061 sp|A2XNS1|ACT3_ORYSI A2XNS1 377 2 268 122 210 89 2 94.38 1e-92
|
886
|
-
Brasy-EspV1T00061 sp|A2XNS1|ACT3_ORYSI A2XNS1 377 524 769 283 377 95 2 73.68 5e-38
|
887
|
-
Brasy-EspV1T00061 sp|P30171|ACT11_SOLTU P30171 377 277 564 214 309 96 1 88.54 1e-92
|
888
|
-
Brasy-EspV1T00061 sp|P30171|ACT11_SOLTU P30171 377 2 268 122 210 89 2 96.63 1e-92
|
889
|
-
Brasy-EspV1T00061 sp|P30171|ACT11_SOLTU P30171 377 524 769 283 377 95 2 73.68 3e-38
|
890
|
-
Brasy-EspV1T00061 sp|P81228|ACT5_SOLTU P81228 336 277 564 194 289 96 1 87.50 4e-92
|
891
|
-
Brasy-EspV1T00061 sp|P81228|ACT5_SOLTU P81228 336 2 268 102 190 89 2 96.63 4e-92
|
892
|
-
Brasy-EspV1T00061 sp|P81228|ACT5_SOLTU P81228 336 524 706 263 336 74 2 68.92 1e-22
|
893
|
-
Brasy-EspV1T00061 sp|P53504|ACT1_SORBI P53504 377 277 600 214 321 108 1 78.70 4e-92
|
894
|
-
Brasy-EspV1T00061 sp|P53504|ACT1_SORBI P53504 377 2 268 122 210 89 2 96.63 4e-92
|
895
|
-
Brasy-EspV1T00061 sp|P53504|ACT1_SORBI P53504 377 545 769 303 377 75 2 82.67 6e-33
|
896
|
-
Brasy-EspV1T00061 sp|P93371|ACT5_TOBAC P93371 336 277 564 194 289 96 1 88.54 5e-92
|
897
|
-
Brasy-EspV1T00061 sp|P93371|ACT5_TOBAC P93371 336 2 268 102 190 89 2 95.51 5e-92
|
898
|
-
Brasy-EspV1T00061 sp|P93371|ACT5_TOBAC P93371 336 524 706 263 336 74 2 68.92 4e-23
|
899
|
-
Brasy-EspV1T00061 sp|O81221|ACT_GOSHI O81221 377 277 564 214 309 96 1 87.50 6e-92
|
900
|
-
Brasy-EspV1T00061 sp|O81221|ACT_GOSHI O81221 377 2 268 122 210 89 2 95.51 6e-92
|
901
|
-
Brasy-EspV1T00061 sp|O81221|ACT_GOSHI O81221 377 524 769 283 377 95 2 73.68 2e-38
|
902
|
-
Brasy-EspV1T00061 sp|P93372|ACT4_TOBAC P93372 336 277 564 194 289 96 1 88.54 2e-91
|
903
|
-
Brasy-EspV1T00061 sp|P93372|ACT4_TOBAC P93372 336 2 268 102 190 89 2 94.38 2e-91
|
904
|
-
Brasy-EspV1T00061 sp|P93372|ACT4_TOBAC P93372 336 524 706 263 336 74 2 68.92 4e-23
|
905
|
-
Brasy-EspV1T00061 sp|P30164|ACT1_PEA P30164 376 277 564 213 308 96 1 90.62 2e-91
|
906
|
-
Brasy-EspV1T00061 sp|P30164|ACT1_PEA P30164 376 2 268 121 209 89 2 93.26 2e-91
|
907
|
-
Brasy-EspV1T00061 sp|P30164|ACT1_PEA P30164 376 524 769 282 376 95 2 73.68 4e-38
|
908
|
-
Brasy-EspV1T00061 sp|P81229|ACT8_SOLTU P81229 336 277 564 194 289 96 1 86.46 3e-91
|
909
|
-
Brasy-EspV1T00061 sp|P81229|ACT8_SOLTU P81229 336 2 268 102 190 89 2 96.63 3e-91
|
910
|
-
Brasy-EspV1T00061 sp|P81229|ACT8_SOLTU P81229 336 524 706 263 336 74 2 68.92 2e-22
|
911
|
-
Brasy-EspV1T00061 sp|P30172|ACT12_SOLTU P30172 357 277 564 194 289 96 1 88.54 3e-91
|
912
|
-
Brasy-EspV1T00061 sp|P30172|ACT12_SOLTU P30172 357 2 268 102 190 89 2 94.38 3e-91
|
913
|
-
Brasy-EspV1T00061 sp|P30172|ACT12_SOLTU P30172 357 524 769 263 357 95 2 72.63 8e-38
|
914
|
-
Brasy-EspV1T00061 sp|P30173|ACT13_SOLTU P30173 377 277 564 214 309 96 1 88.54 3e-91
|
915
|
-
Brasy-EspV1T00061 sp|P30173|ACT13_SOLTU P30173 377 2 268 122 210 89 2 94.38 3e-91
|
916
|
-
Brasy-EspV1T00061 sp|P30173|ACT13_SOLTU P30173 377 524 769 283 377 95 2 72.63 1e-37
|
917
|
-
Brasy-EspV1T00061 sp|P30167|ACT3_SOLTU P30167 377 277 564 214 309 96 1 85.42 3e-91
|
918
|
-
Brasy-EspV1T00061 sp|P30167|ACT3_SOLTU P30167 377 2 268 122 210 89 2 96.63 3e-91
|
919
|
-
Brasy-EspV1T00061 sp|P30167|ACT3_SOLTU P30167 377 524 769 283 377 95 2 72.63 6e-38
|
920
|
-
Brasy-EspV1T00061 sp|P93376|ACT6_TOBAC P93376 336 277 564 194 289 96 1 89.58 4e-91
|
921
|
-
Brasy-EspV1T00061 sp|P93376|ACT6_TOBAC P93376 336 2 268 102 190 89 2 94.38 4e-91
|
922
|
-
Brasy-EspV1T00061 sp|P93376|ACT6_TOBAC P93376 336 524 706 263 336 74 2 68.92 4e-23
|
923
|
-
Brasy-EspV1T00061 sp|Q96484|ACT3_SOLLC Q96484 336 277 564 194 289 96 1 86.46 4e-91
|
924
|
-
Brasy-EspV1T00061 sp|Q96484|ACT3_SOLLC Q96484 336 2 268 102 190 89 2 95.51 4e-91
|
925
|
-
Brasy-EspV1T00061 sp|Q96484|ACT3_SOLLC Q96484 336 524 706 263 336 74 2 68.92 4e-23
|
926
|
-
Brasy-EspV1T00061 sp|Q96483|ACT2_SOLLC Q96483 336 277 564 194 289 96 1 89.58 5e-91
|
927
|
-
Brasy-EspV1T00061 sp|Q96483|ACT2_SOLLC Q96483 336 2 268 102 190 89 2 94.38 5e-91
|
928
|
-
Brasy-EspV1T00061 sp|Q96483|ACT2_SOLLC Q96483 336 524 706 263 336 74 2 68.92 4e-23
|
929
|
-
Brasy-EspV1T00061 sp|Q96482|ACT1_SOLLC Q96482 336 277 564 194 289 96 1 86.46 7e-91
|
930
|
-
Brasy-EspV1T00061 sp|Q96482|ACT1_SOLLC Q96482 336 2 268 102 190 89 2 94.38 7e-91
|
931
|
-
Brasy-EspV1T00061 sp|Q96482|ACT1_SOLLC Q96482 336 524 706 263 336 74 2 68.92 4e-23
|
932
|
-
Brasy-EspV1T00061 sp|P30165|ACT2_PEA P30165 376 277 564 213 308 96 1 90.62 8e-91
|
933
|
-
Brasy-EspV1T00061 sp|P30165|ACT2_PEA P30165 376 2 268 121 209 89 2 92.13 8e-91
|
934
|
-
Brasy-EspV1T00061 sp|P30165|ACT2_PEA P30165 376 524 769 282 376 95 2 72.63 9e-38
|
935
|
-
Brasy-EspV1T00061 sp|P93584|ACT9_SOLTU P93584 336 277 558 194 287 94 1 87.23 9e-91
|
936
|
-
Brasy-EspV1T00061 sp|P93584|ACT9_SOLTU P93584 336 2 268 102 190 89 2 95.51 9e-91
|
937
|
-
Brasy-EspV1T00061 sp|P93584|ACT9_SOLTU P93584 336 524 706 263 336 74 2 67.57 7e-22
|
938
|
-
Brasy-EspV1T00061 sp|Q10DV7|ACT1_ORYSJ Q10DV7 377 277 564 214 309 96 1 85.42 1e-90
|
939
|
-
Brasy-EspV1T00061 sp|Q10DV7|ACT1_ORYSJ Q10DV7 377 2 268 122 210 89 2 96.63 1e-90
|
940
|
-
Brasy-EspV1T00061 sp|Q10DV7|ACT1_ORYSJ Q10DV7 377 524 769 283 377 95 2 73.68 3e-38
|
941
|
-
Brasy-EspV1T00061 sp|A2XLF2|ACT1_ORYSI A2XLF2 377 277 564 214 309 96 1 85.42 1e-90
|
942
|
-
Brasy-EspV1T00061 sp|A2XLF2|ACT1_ORYSI A2XLF2 377 2 268 122 210 89 2 96.63 1e-90
|
943
|
-
Brasy-EspV1T00061 sp|A2XLF2|ACT1_ORYSI A2XLF2 377 524 769 283 377 95 2 73.68 3e-38
|
944
|
-
Brasy-EspV1T00061 sp|P53496|ACT11_ARATH P53496 377 277 564 214 309 96 1 85.42 1e-90
|
945
|
-
Brasy-EspV1T00061 sp|P53496|ACT11_ARATH P53496 377 2 268 122 210 89 2 95.51 1e-90
|
946
|
-
Brasy-EspV1T00061 sp|P53496|ACT11_ARATH P53496 377 524 769 283 377 95 2 73.68 3e-38
|
947
|
-
Brasy-EspV1T00061 sp|P0CJ47|ACT3_ARATH P0CJ47 377 277 564 214 309 96 1 85.42 5e-90
|
948
|
-
Brasy-EspV1T00061 sp|P0CJ47|ACT3_ARATH P0CJ47 377 2 268 122 210 89 2 95.51 5e-90
|
949
|
-
Brasy-EspV1T00061 sp|P0CJ47|ACT3_ARATH P0CJ47 377 524 769 283 377 95 2 73.68 3e-38
|
950
|
-
Brasy-EspV1T00061 sp|P0CJ46|ACT1_ARATH P0CJ46 377 277 564 214 309 96 1 85.42 5e-90
|
951
|
-
Brasy-EspV1T00061 sp|P0CJ46|ACT1_ARATH P0CJ46 377 2 268 122 210 89 2 95.51 5e-90
|
952
|
-
Brasy-EspV1T00061 sp|P0CJ46|ACT1_ARATH P0CJ46 377 524 769 283 377 95 2 73.68 3e-38
|
953
|
-
Brasy-EspV1T00061 sp|P02582|ACT1_MAIZE P02582 375 277 564 212 307 96 1 88.54 4e-89
|
954
|
-
Brasy-EspV1T00061 sp|P02582|ACT1_MAIZE P02582 375 2 268 120 208 89 2 91.01 4e-89
|
955
|
-
Brasy-EspV1T00061 sp|P02582|ACT1_MAIZE P02582 375 524 769 281 375 95 2 70.53 1e-36
|
956
|
-
Brasy-EspV1T00061 sp|P02576|ACTA_PHYPO P02576 376 2 268 121 209 89 2 95.51 2e-88
|
957
|
-
Brasy-EspV1T00061 sp|P02576|ACTA_PHYPO P02576 376 277 564 213 308 96 1 83.33 2e-88
|
958
|
-
Brasy-EspV1T00061 sp|P02576|ACTA_PHYPO P02576 376 524 769 282 376 95 2 69.47 7e-37
|
959
|
-
Brasy-EspV1T00061 sp|Q96292|ACT2_ARATH Q96292 377 277 558 214 307 94 1 82.98 8e-88
|
960
|
-
Brasy-EspV1T00061 sp|Q96292|ACT2_ARATH Q96292 377 2 268 122 210 89 2 93.26 8e-88
|
961
|
-
Brasy-EspV1T00061 sp|Q96292|ACT2_ARATH Q96292 377 524 769 283 377 95 2 71.58 2e-36
|
962
|
-
Brasy-EspV1T00061 sp|Q96293|ACT8_ARATH Q96293 377 277 558 214 307 94 1 82.98 8e-88
|
963
|
-
Brasy-EspV1T00061 sp|Q96293|ACT8_ARATH Q96293 377 2 268 122 210 89 2 93.26 8e-88
|
964
|
-
Brasy-EspV1T00061 sp|Q96293|ACT8_ARATH Q96293 377 524 769 283 377 95 2 71.58 2e-36
|
965
|
-
Brasy-EspV1T00061 sp|Q54GX7|ACT10_DICDI Q54GX7 376 2 268 121 209 89 2 94.38 1e-87
|
966
|
-
Brasy-EspV1T00061 sp|Q54GX7|ACT10_DICDI Q54GX7 376 277 564 213 308 96 1 82.29 1e-87
|
967
|
-
Brasy-EspV1T00061 sp|Q54GX7|ACT10_DICDI Q54GX7 376 524 769 282 376 95 2 70.53 9e-38
|