bio-table 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +85 -22
- data/VERSION +1 -1
- data/bin/bio-table +45 -18
- data/features/cli.feature +11 -1
- data/lib/bio-table.rb +1 -0
- data/lib/bio-table/filter.rb +2 -1
- data/lib/bio-table/formatter.rb +19 -1
- data/lib/bio-table/rdf.rb +106 -0
- data/lib/bio-table/table_apply.rb +10 -2
- data/lib/bio-table/tableload.rb +8 -4
- data/lib/bio-table/tablerow.rb +2 -1
- data/lib/bio-table/tablewriter.rb +1 -1
- data/test/data/regression/table1-STDIN.ref +1138 -0
- data/test/data/regression/table1-columns-indexed.ref +0 -2
- data/test/data/regression/table1-columns-regex.ref +0 -2
- data/test/data/regression/table1-columns.ref +0 -2
- data/test/data/regression/table1-rdf1.ref +415 -0
- metadata +24 -21
@@ -0,0 +1,106 @@
|
|
1
|
+
require 'uri'
|
2
|
+
|
3
|
+
module BioTable
|
4
|
+
module RDF
|
5
|
+
|
6
|
+
def RDF::namespaces
|
7
|
+
"""
|
8
|
+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
9
|
+
@prefix : <http://biobeat.org/rdf/biotable/ns#> .
|
10
|
+
"""
|
11
|
+
end
|
12
|
+
|
13
|
+
# Write a table header as Turtle RDF.
|
14
|
+
#
|
15
|
+
# If we have a column name 'AXB1' the following gets written:
|
16
|
+
#
|
17
|
+
# [:AXB1 rdf:label "AXB1"; a :colname; :index 3 ].
|
18
|
+
#
|
19
|
+
# This method returns a list of these.
|
20
|
+
def RDF::header(row)
|
21
|
+
list = []
|
22
|
+
if row - row.uniq != []
|
23
|
+
$stderr.print row - row.uniq
|
24
|
+
raise "RDF expects unique column names!"
|
25
|
+
end
|
26
|
+
row.each_with_index do | field,i |
|
27
|
+
s = ":#{make_identifier(field)} rdf:label \"#{field}\" ; a :colname; :index #{i} ."
|
28
|
+
list << s
|
29
|
+
end
|
30
|
+
list
|
31
|
+
end
|
32
|
+
|
33
|
+
# Write a table row as Turtle RDF
|
34
|
+
#
|
35
|
+
# If we have a row, each row element gets written with the header colname as an id, e.g.
|
36
|
+
#
|
37
|
+
# [:rs13475701 rdf:label "rs13475701"; a :rowname; :Chromosome 1 ; :Pos 0 ; :AXB1 "AA"].
|
38
|
+
#
|
39
|
+
# The method returns a String.
|
40
|
+
|
41
|
+
def RDF::row(row, header, use_blank_nodes)
|
42
|
+
list = []
|
43
|
+
rowname = make_identifier(row[0])
|
44
|
+
list << ":#{rowname}"+(use_blank_nodes ? " :row [ " : " ") + "rdf:label \"#{row[0]}\" ; a :rowname"
|
45
|
+
row.each_with_index do | field,i |
|
46
|
+
s = ":#{make_identifier(header[i])} "
|
47
|
+
if BioTable::Filter.valid_number?(field)
|
48
|
+
s += field.to_s
|
49
|
+
else
|
50
|
+
s += "\"#{field}\""
|
51
|
+
end
|
52
|
+
list << s
|
53
|
+
end
|
54
|
+
list.join(" ; ")+(use_blank_nodes ? " ] ." : " .")
|
55
|
+
end
|
56
|
+
|
57
|
+
# Convenience class for writing RDF - tracks header values
|
58
|
+
class Writer
|
59
|
+
|
60
|
+
def initialize use_blank_nodes
|
61
|
+
@use_blank_nodes = use_blank_nodes
|
62
|
+
@rownames = {}
|
63
|
+
end
|
64
|
+
|
65
|
+
def write row, type
|
66
|
+
if type == :header
|
67
|
+
print RDF.namespaces
|
68
|
+
@header = row.all_fields
|
69
|
+
rdf = RDF.header(@header)
|
70
|
+
print "# Table\n"
|
71
|
+
print rdf.join("\n"),"\n\n"
|
72
|
+
else
|
73
|
+
if @rownames[row.rowname]
|
74
|
+
if @use_blank_nodes
|
75
|
+
logger = Bio::Log::LoggerPlus['bio-table']
|
76
|
+
logger.warn "Duplicate row name <#{row.rowname}>"
|
77
|
+
else
|
78
|
+
raise "RDF expects unique row names! Duplicate <#{row.rowname}> found"
|
79
|
+
end
|
80
|
+
else
|
81
|
+
@rownames[row.rowname] = true
|
82
|
+
end
|
83
|
+
rdf = RDF.row(row.all_fields,@header,@use_blank_nodes)
|
84
|
+
print rdf,"\n"
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
private
|
90
|
+
|
91
|
+
# An identifier is used for the subject and predicate in RDF. This is a case-sensitive
|
92
|
+
# (shortened) URI. You can change default behaviour for identifiers using the options
|
93
|
+
# --transform-ids (i.e. in the input side, rather than the output side)
|
94
|
+
#
|
95
|
+
def RDF::make_identifier(s)
|
96
|
+
clean_s = s.gsub(/[^[:print:]]/, '').gsub(/[#)(,]/,"").gsub(/[%]/,"perc").gsub(/(\s|\.|\$)+/,"_")
|
97
|
+
valid_id = if clean_s =~ /^\d/
|
98
|
+
'r' + clean_s
|
99
|
+
else
|
100
|
+
clean_s
|
101
|
+
end
|
102
|
+
valid_id
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
end
|
@@ -7,6 +7,8 @@ module BioTable
|
|
7
7
|
def initialize options
|
8
8
|
@logger = Bio::Log::LoggerPlus['bio-table']
|
9
9
|
|
10
|
+
# @skip = options[:skip]
|
11
|
+
# @logger.debug "Skipping #{@skip} lines" if @skip
|
10
12
|
@num_filter = options[:num_filter]
|
11
13
|
@logger.debug "Filtering on #{@num_filter}" if @num_filter
|
12
14
|
@rewrite = options[:rewrite]
|
@@ -15,13 +17,17 @@ module BioTable
|
|
15
17
|
@logger.debug "Filtering on columns #{@use_columns}" if @use_columns
|
16
18
|
@column_filter = options[:column_filter]
|
17
19
|
@logger.debug "Filtering on column names #{@column_filter}" if @column_filter
|
20
|
+
@transform_ids = options[:transform_ids]
|
21
|
+
@logger.debug "Transform ids #{@transform_ids}" if @transform_ids
|
18
22
|
@include_rownames = options[:with_rownames]
|
19
23
|
@logger.debug "Include row names" if @include_rownames
|
20
24
|
@first_column = (@include_rownames ? 0 : 1)
|
21
25
|
end
|
22
26
|
|
23
27
|
def parse_header(line, options)
|
24
|
-
LineParser::parse(line, options[:in_format])
|
28
|
+
header = LineParser::parse(line, options[:in_format])
|
29
|
+
return Formatter::transform_header_ids(@transform_ids, header) if @transform_ids
|
30
|
+
header
|
25
31
|
end
|
26
32
|
|
27
33
|
def column_index(header)
|
@@ -33,8 +39,10 @@ module BioTable
|
|
33
39
|
|
34
40
|
def parse_row(line_num, line, column_idx, last_fields, options)
|
35
41
|
fields = LineParser::parse(line, options[:in_format])
|
42
|
+
return nil,nil if fields.compact == []
|
43
|
+
fields = Formatter::transform_row_ids(@transform_ids, fields) if @transform_ids
|
36
44
|
fields = Filter::apply_column_filter(fields,column_idx)
|
37
|
-
return nil,nil if fields == []
|
45
|
+
return nil,nil if fields.compact == []
|
38
46
|
rowname = fields[0]
|
39
47
|
data_fields = fields[@first_column..-1]
|
40
48
|
if data_fields.size > 0
|
data/lib/bio-table/tableload.rb
CHANGED
@@ -8,26 +8,30 @@ module BioTable
|
|
8
8
|
# Note that this class does not hold data in memory(!)
|
9
9
|
#
|
10
10
|
# Note that you need to pass in :with_header to get the header row
|
11
|
-
def TableLoader::emit generator, options
|
11
|
+
def TableLoader::emit generator, options = {}
|
12
12
|
table_apply = TableApply.new(options)
|
13
13
|
column_index = nil, prev_line = nil
|
14
|
+
skip = options[:skip]
|
15
|
+
skip = 0 if skip == nil
|
14
16
|
Enumerator.new { |yielder|
|
15
17
|
# fields = LineParser::parse(line,options[:in_format])
|
16
18
|
generator.each_with_index do |line, line_num|
|
17
19
|
# p [line_num, line]
|
18
|
-
if line_num == 0
|
20
|
+
if line_num-skip == 0
|
19
21
|
header = table_apply.parse_header(line, options)
|
20
22
|
# Validator::valid_header?(header, @header) # compare against older header when merging
|
21
23
|
column_index,header = table_apply.column_index(header) # we may rewrite the header
|
22
|
-
yielder.yield header if options[:write_header] != false
|
24
|
+
yielder.yield header,:header if options[:write_header] != false
|
23
25
|
prev_line = header[1..-1]
|
26
|
+
elsif line_num-skip < 0
|
27
|
+
# do nothing
|
24
28
|
else
|
25
29
|
rowname, data_fields = table_apply.parse_row(line_num, line, column_index, prev_line, options)
|
26
30
|
if data_fields
|
27
31
|
list = []
|
28
32
|
list << rowname if not options[:with_rownames] # otherwise doubles rownames
|
29
33
|
list += data_fields if data_fields
|
30
|
-
yielder.yield list
|
34
|
+
yielder.yield list,:row
|
31
35
|
prev_line = data_fields
|
32
36
|
end
|
33
37
|
end
|
data/lib/bio-table/tablerow.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
module BioTable
|
2
2
|
|
3
|
-
# Abstraction of a parsed table row
|
3
|
+
# Abstraction of a parsed table row (validation mostly)
|
4
4
|
class TableRow
|
5
5
|
attr_reader :rowname, :fields
|
6
6
|
def initialize rowname, fields = []
|
@@ -33,6 +33,7 @@ module BioTable
|
|
33
33
|
end
|
34
34
|
true
|
35
35
|
end
|
36
|
+
|
36
37
|
end
|
37
38
|
|
38
39
|
end
|
@@ -0,0 +1,1138 @@
|
|
1
|
+
#Gene,AJ,B6,Axb1,Axb2,Axb4,Axb12,AXB13,Axb15,Axb19,Axb23,Axb24,Bxa1,Bxa2,Bxa4,Bxa7,Bxa8,Bxa12,Bxa11,Bxa13,Bxa15,Bxa16,Axb5,Axb6,Axb8,Axb1,Bxa24,Bxa25,Bxa26,gene_symbol,gene_desc
|
2
|
+
105853,0.06,0,0,0,0,0,0.11,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Mal2,"MAL2 proteolipid protein"
|
3
|
+
105855,236.88,213.95,213.15,253.49,198,231.56,200.96,255.2,214.04,231.46,,,233.23,241.26,237.53,171.87,237.13,162.3,252.13,284.85,188.76,253.43,220.15,305.52,,217.42,,,Nckap1l,"NCK associated protein 1 like,NCK associated protein 1 like,"
|
4
|
+
105859,0,0.14,0,0,0.07,0.04,0,0,0,0,,,0.02,0,0,0,0,0,0.06,0,0,0,0.02,0,,0,,,Csdc2,"RNA-binding protein pippin"
|
5
|
+
105866,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Krt72,"keratin 72"
|
6
|
+
105887,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Ugt3a1,"UDP glycosyltransferases 3 family, polypeptide"
|
7
|
+
105892,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0.05,0.06,0,0,0,0,0,0,0,,0,,,9030619P08Rik,"RIKEN cDNA 9030619P08"
|
8
|
+
105988,10.04,4.09,3.6,2.36,4.03,6.46,2.26,6.26,3.35,3.97,,,7.91,6.25,5.11,5.51,4.87,3.38,2.31,3.94,8.27,3.64,8.49,4.33,,3.07,,,Espl1,"extra spindle poles-like 1,extra spindle poles-like 1,"
|
9
|
+
106014,0,0,0,0.07,0,0.04,0,0,0,0,,,0,0,0,0,0,0.05,0,0.04,0,0.04,0,0.04,,0,,,AW049604,"TAFA5 protein"
|
10
|
+
106021,16.25,17.89,14.53,14.31,11.24,18.06,8.76,17.98,15.71,17.12,,,17.62,16.37,16.27,14.73,18.63,10.76,17.63,16.64,18.54,19.15,20.07,21.54,,11.42,,,Topors,"topoisomerase 1-binding RING finger"
|
11
|
+
106025,17.34,32.29,34.65,32.94,29.62,25.76,26.04,22.93,28.84,24.83,,,23.56,29.42,25.75,32.36,28.46,33.97,24.72,26.95,27.29,26.28,24.56,26.48,,31.46,,,Sharpin,"SHANK-associated RH domain interacting protein"
|
12
|
+
106039,44.57,40.92,33.58,37,43.32,43.41,34.74,44.54,50.29,48,,,42.12,43.53,38.36,42.62,44.6,38.25,46.03,41.58,39.23,46.83,35.57,45.47,,37.77,,,Gga1,"golgi associated, gamma adaptin ear containing,"
|
13
|
+
106042,0,0.07,0,0,0,0,0,0,0.05,0.01,,,0,0.03,0,0,0.02,0.02,0.02,0,0.05,0.05,0.01,0.04,,0,,,Prickle1,"prickle like 1,prickle like 1,"
|
14
|
+
106052,2.99,4.46,5.69,5.97,5.07,3.54,7.62,3.78,4.75,3.21,,,4.2,3.5,4.92,4.37,3.37,5.35,4.2,3.43,3.3,3.99,3.91,2.88,,5.5,,,Fbxo4,"F-box protein 4"
|
15
|
+
106064,6.34,7.26,4.21,8.28,5.07,6.71,6.5,6.94,11.28,11.96,,,6.98,8.72,6.39,8.14,8.56,4.58,9.06,8.46,7.23,9.58,7.89,7.25,,5.41,,,AW549877,"hypothetical protein LOC106064,hypothetical protein LOC106064,"
|
16
|
+
106068,9.65,6.98,5.38,4.19,4.04,10.21,3.67,6.8,5.08,5.68,,,7.19,7.91,8.05,4.08,8.86,2.48,4.78,6.67,7.69,5.6,7.86,7.25,,3.69,,,Slc45a4,"solute carrier family 45, member 4,solute carrier family 45, member 4,solute carrier family 45, member 4,"
|
17
|
+
106073,79.34,71.02,75.82,88.43,75.67,60.73,86.58,73.15,73.54,72.4,,,64.14,61.04,72.67,54.4,70.42,73.83,81.7,62.48,64.28,72.42,53.01,62.02,,86.98,,,D15Mgi27,"hypothetical protein LOC106073"
|
18
|
+
106143,30.3,31.47,26.64,31.96,18.2,29.9,27.82,29.14,24.1,30.87,,,31.93,29.46,29.56,27.31,32.35,26.58,28.98,33.39,27.24,28.87,36.24,26.21,,30.48,,,Cggbp1,"CGG triplet repeat binding protein 1,CGG triplet repeat binding protein 1,"
|
19
|
+
106200,4.35,8.51,3.98,9.56,8.6,9.47,10.17,9.58,9.08,11.48,,,11.04,10.13,12.77,10.9,12.69,10.54,10.65,11.18,12.17,9.83,10.02,9.87,,10,,,Txndc11,"thioredoxin domain containing 11 isoform 1,thioredoxin domain containing 11 isoform 1,"
|
20
|
+
106205,3.38,5.31,4.9,4.16,5.14,6.74,3.34,5.12,6.18,7.39,,,4.9,6.88,4.5,7.24,5.18,2.15,4.75,5.18,6.02,3.95,4.75,6.36,,2.82,,,Zc3h7a,"zinc finger CCCH type containing 7"
|
21
|
+
106248,2.67,2.84,2.73,3.44,1.92,2.36,3.76,3.34,3.18,3.71,,,2.65,4.44,3.04,2.31,3.19,3,3.02,2.39,3.23,3.14,2.64,2.71,,4.56,,,Qtrtd1,"queuine tRNA-ribosyltransferase domain"
|
22
|
+
106298,26.04,23.15,25.35,26.91,20.5,23.4,22.14,24.66,21.79,26.12,,,24.73,24.21,25.12,21.61,24.83,22.53,21.65,21.56,21.11,22,22.93,22.15,,29.06,,,Rrn3,"RRN3 RNA polymerase I transcription factor"
|
23
|
+
106326,14.8,17.73,11.3,14.36,9.13,19.6,9.76,14.67,17.76,16.75,,,19.19,18.63,13.05,14.28,17.66,9.62,19.23,17.31,16.68,17.4,22.4,15.1,,11.55,,,Osbpl11,"oxysterol binding protein-like 11"
|
24
|
+
106338,3.05,6.3,3.34,4.74,4.18,5.18,6.11,7.11,4.54,5.92,,,5.35,6.23,6.48,4.55,6.3,3.45,5.61,6.65,5.09,6.54,5.18,7.29,,6.93,,,Nsun3,"NOL1/NOP2/Sun domain family 3"
|
25
|
+
106344,20.03,23.33,18.46,16.5,25.71,16.02,21.6,16.24,16.13,15.1,,,25.21,22.7,25.86,29.33,16.4,34.99,13.27,15.76,27.82,16.92,29.33,13.43,,26.06,,,Rfc4,"replication factor C (activator 1) 4"
|
26
|
+
106347,0.06,0,0,0,0.08,0,0,0,0,0,,,0,0,0,0.08,0,0,0,0.02,0,0,0,0,,0,,,Ildr1,"immunoglobulin-like domain containing receptor"
|
27
|
+
106369,0.01,0.36,0.12,0.27,0.35,0.25,0.08,0.37,0.3,0.26,,,0.24,0.3,0.18,0.56,0.29,0.39,0.4,0.25,0.13,0.13,0.44,0.16,,0.14,,,Ypel1,"yippee-like 1,yippee-like 1,"
|
28
|
+
106389,0,0.29,0,0.06,0.43,0.07,0.21,0.03,0,0.05,,,0.14,0.1,0,0,0,0.02,0.04,0.08,0,0.02,0,0,,0,,,Eaf2,"ELL associated factor 2"
|
29
|
+
106393,0.59,1.07,1.19,0.39,0.53,0.75,0.58,0.84,0.51,0.58,,,1.01,0.69,0.85,0.59,0.86,0.71,0.83,1,0.99,0.99,1.04,0.66,,0.79,,,Srl,"sarcalumenin,sarcalumenin,"
|
30
|
+
106407,0,0,0,0,0,0.04,0,0.07,0,0,,,0,0.11,0,0,0,0,0.05,0,0,0,0.09,0,,0,,,Osta,"organic solute transporter alpha"
|
31
|
+
106489,3.87,8.98,11.27,10.6,11.92,7.65,13.05,5.24,8.61,5.25,,,5.25,5.88,5.85,9.59,7.21,10.73,6.74,5.43,7.12,8.72,5.7,5.33,,9.98,,,n/a,n/a
|
32
|
+
106504,41.59,36.19,33.11,32.53,30.96,41.17,34.07,40.67,41.33,35.15,,,44.05,40.12,34.69,32.85,41.58,34.69,42.24,43.74,42.7,35.65,39.32,40.4,,33.61,,,Stk38,"serine/threonine kinase 38,serine/threonine kinase 38,"
|
33
|
+
106512,89.47,83.36,94.54,73.22,100.37,82.24,90.51,90.04,79.98,67.65,,,83.74,75.9,86.58,98.49,83.21,92.08,101.37,90.16,81.74,86.87,66.89,103.71,,70.63,,,Gpsm3,"G-protein signalling modulator 3 (AGS3-like, C."
|
34
|
+
106522,0,0.72,1.16,0.62,0.22,1.01,0.28,0.05,0.99,0.32,,,0.11,0.5,0.26,0.9,0.74,0.27,0.49,0.67,1.24,0.51,0.5,0.29,,0.55,,,AW548124,"hypothetical protein LOC106522"
|
35
|
+
106529,64.28,87.5,84.48,79.73,93.77,76.33,71.62,72.99,65.18,66.34,,,91.99,81.89,85.14,98.05,87.43,104.95,77.39,77.93,93.26,87.68,99.88,68.89,,85.15,,,Gpsn2,"glycoprotein, synaptic 2,glycoprotein, synaptic 2,"
|
36
|
+
106557,0.13,0.21,0,0.06,0.14,0,0.47,0.11,0,0.11,,,0.06,0.15,0.42,0.05,0,0.16,0,0.17,0,0.13,0.08,0.13,,0,,,Ldhal6b,"lactate dehydrogenase A-like 6B"
|
37
|
+
106564,6.8,8.23,8.28,9.86,9.72,5.61,12.34,6.45,7.01,5.28,,,7.09,4.93,6.44,12.44,6.08,13.03,7.8,6.17,7.48,6.57,5.71,4.83,,9.46,,,Ppcs,"phosphopantothenoylcysteine synthetase"
|
38
|
+
106565,0.11,0,0,0,0,0,0.18,0.06,0,0,,,0,0,0,0,0,0.04,0.09,0,0,0,0,0,,0,,,Dlk2,"EGF-like-domain, multiple 9,EGF-like-domain, multiple 9,EGF-like-domain, multiple 9,"
|
39
|
+
106572,6.5,13.62,8.95,10.9,7.21,10.67,6.61,8.61,8.82,9.53,,,12.19,7.48,8.28,4.84,9.9,4.29,8.79,8.58,10.15,11.17,15.56,9.07,,10.67,,,Rab31,Rab31-like
|
40
|
+
106581,45.11,48.54,58.42,44.17,37.05,61.54,34.68,48.63,59.61,45.17,,,51.32,46.28,46.99,43.44,59.67,46.85,61.59,60.45,54.22,56.27,53.85,50.35,,41.71,,,Itfg3,"integrin alpha FG-GAP repeat containing 3,integrin alpha FG-GAP repeat containing 3,"
|
41
|
+
106582,41.42,25.63,15.05,17.04,24.07,22.98,15.66,16.95,16.96,15.9,,,36.82,31.51,27.45,28.97,28.93,30.14,18.24,18.47,31.34,20.84,45.31,19.74,,21.92,,,Nrm,nurim
|
42
|
+
106585,4.46,3.99,3.92,2.83,4.53,5.66,2.15,4.43,8.07,6.77,,,4.13,6.32,2.57,7.13,4.55,3.06,7.57,6.05,5.74,4.07,3.22,7.18,,1.93,,,Ankrd12,"ankyrin repeat domain 12,ankyrin repeat domain 12,"
|
43
|
+
106628,19.69,23.29,19.28,20.98,23.54,18.84,21.78,19.01,21.75,22.82,,,18.06,18.56,20.48,17.77,17.81,18.67,23.68,19.87,17.15,20.99,20.24,20.89,,20.86,,,Trip10,"thyroid hormone receptor interactor 10,thyroid hormone receptor interactor 10,thyroid hormone receptor interactor 10,thyroid hormone receptor interactor 10,"
|
44
|
+
106633,4.19,3.65,4.08,2.62,2.33,4.95,2.27,5.14,3.32,4.11,,,6.58,4.92,3.01,2.77,4.14,3.17,3.24,4.22,5.42,4.06,6.45,4.46,,1.79,,,Ift140,"intraflagellar transport 140,intraflagellar transport 140,"
|
45
|
+
106639,1.92,3.78,1.78,2.57,2.62,1.84,1.67,1.4,1.83,1.79,,,2.5,2.59,1.8,1.07,2,2.32,2.62,2.65,2.06,2.77,3.81,2.25,,1.82,,,AI662250,"vimentin-type IF-associated coiled-coil protein"
|
46
|
+
106648,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0.02,0,0,0,0,0,,0,,,Cyp4f15,"cytochrome P450, family 4, subfamily f,,cytochrome P450, family 4, subfamily f,,"
|
47
|
+
106672,76.8,108.36,145.43,142.49,200.62,65.62,167.37,83.73,128.19,112.65,,,61.9,93.82,83.57,137.29,96.06,157.47,98.15,91.39,95.75,108.95,87.99,81.8,,182.62,,,AI413582,"hypothetical protein LOC106672"
|
48
|
+
106707,6.26,9.03,14.04,8.49,9.83,7.95,9.77,9.12,7.65,6.08,,,8.81,8.45,9.84,10.28,8.01,9.37,8.65,6.83,8.76,8.48,9.73,9.4,,7.72,,,Rpusd1,"RNA pseudouridylate synthase domain containing,RNA pseudouridylate synthase domain containing,"
|
49
|
+
106722,0,0,0.32,0,0,0,0,0,0.04,0,,,0.07,0,0,0.07,0,0.03,0,0,0,0,0,0,,0,,,AU023871,"hypothetical protein LOC106722"
|
50
|
+
106759,12.28,8.53,13.72,10.99,8.38,12.95,8.64,9.62,10.7,10.93,,,10.95,9.63,10.86,10.21,13.14,8.29,12.97,12.36,10.38,12.11,7.34,10.86,,9.97,,,Ticam1,"TICAM-1,TICAM-1,"
|
51
|
+
106766,0,0.33,0.51,0.04,0.4,0.1,0.1,0.12,0.18,0.03,,,0.05,0.03,0.11,0.44,0.04,0.12,0.03,0.08,0.03,0.19,0.16,0.05,,0,,,Stap2,"signal transducing adaptor family member 2"
|
52
|
+
106794,1.79,2.23,1.45,1.68,2,2.85,1.82,3.25,3.21,2.99,,,3.94,2.92,2.46,2.13,2.95,1.79,3.54,2.95,3.45,2.23,2.4,2.94,,1.16,,,Dhx57,"DEAH (Asp-Glu-Ala-Asp/His) box polypeptide 57,DEAH (Asp-Glu-Ala-Asp/His) box polypeptide 57,DEAH (Asp-Glu-Ala-Asp/His) box polypeptide 57,"
|
53
|
+
106795,28.25,16.51,10.52,6.52,14.52,14.99,3.52,9.16,6.31,9.37,,,16.39,14.85,22.57,13.28,10.87,18.32,6.23,9.8,18.78,6.27,19.1,8.53,,10.42,,,Tcf19,"transcription factor 19,transcription factor 19,"
|
54
|
+
106821,15.07,20.94,9.85,12.15,21.54,9.12,19.94,11.32,14.56,18.03,,,19.79,18.25,10.78,21.2,15.79,18.96,15.07,13.13,20.88,10.68,12.76,14.86,,23.87,,,AI314976,"hypothetical protein LOC106821,hypothetical protein LOC106821,hypothetical protein LOC106821,"
|
55
|
+
106840,10.89,9.68,8.97,11.4,7.86,8.3,11.2,8.76,7.49,9.45,,,8.28,7.36,8.18,5.18,9.61,7.76,9.74,7.57,9.68,9.64,9.72,7.71,,10.13,,,Unc119b,"unc-119 homolog B"
|
56
|
+
106861,0.19,1.03,0.65,0.82,1.1,0.89,0.65,3.01,0.67,0.94,,,0.62,0.62,0.41,1.46,0.69,0.87,1.09,0.92,0.23,1.35,0.44,1.24,,1.68,,,Abhd3,"abhydrolase domain containing 3"
|
57
|
+
106869,28.94,60.85,53.52,51.88,30.83,39.34,48.37,31.26,39.08,45.18,,,39.57,57.14,60.3,54.41,42.59,47.74,55.54,42.52,54.17,48.28,61.27,40.72,,63.42,,,Tnfaip8,"tumor necrosis factor, alpha-induced protein 8"
|
58
|
+
106877,0.3,0.79,0.09,0.46,0.27,1.08,0,0.19,0.5,0.62,,,0.56,1.59,1.22,1.1,0.42,0.29,0.77,0.42,1.51,0.82,0.76,1.04,,0.32,,,Afap1l1,"actin filament associated protein 1-like 1"
|
59
|
+
106878,11.95,16.36,19.9,20.44,19.6,9.5,22.67,11.88,13.09,16.95,,,12.67,12.77,20.24,17.57,9.37,13.81,13.87,8.89,14.16,11.56,8.13,12.05,,22.02,,,2010002N04Rik,"putative small membrane protein NID67"
|
60
|
+
106894,8.03,7.12,9.67,6.38,5.27,9.23,4.61,8.44,8.64,9.6,,,7.36,9.6,6.66,7.87,8.21,5.6,9.54,8.98,8.37,8.9,6.78,10.07,,5.71,,,A630042L21Rik,"hypothetical protein LOC106894 isoform 2,hypothetical protein LOC106894 isoform 2,"
|
61
|
+
106931,0.58,1.16,0.39,0.68,0.55,0.86,0.45,1.67,0.9,1,,,0.56,0.76,1.2,1.36,1.06,0.41,0.89,0.75,1.12,1.07,0.63,1.03,,0.42,,,Kctd1,"potassium channel tetramerisation domain,potassium channel tetramerisation domain,potassium channel tetramerisation domain,"
|
62
|
+
106947,19.18,19.01,18.57,22.37,18.92,16.1,17.22,16.98,16.66,16.34,,,18.11,15.76,18.53,17.53,19.21,16.94,20.03,15.82,15.79,19.76,17.03,17.92,,21.43,,,Slc39a3,"solute carrier family 39 (zinc transporter),,solute carrier family 39 (zinc transporter),,solute carrier family 39 (zinc transporter),,"
|
63
|
+
106952,16.71,15.74,10.1,7.31,11.9,14.25,7.24,19.18,11.75,10.82,,,20.26,16.17,18.98,9.52,14.03,8.91,14.96,16.66,18.5,14.61,14.59,16.24,,8.49,,,Centd3,"centaurin, delta 3,centaurin, delta 3,centaurin, delta 3,centaurin, delta 3,"
|
64
|
+
106957,39.27,41.28,49.16,54.75,29.67,41.57,43.08,46.61,35.99,48.06,,,38.76,40.92,40.04,31.02,44.58,29.27,42.45,38.93,33.17,45.1,42.97,42.8,,42.34,,,Slc39a6,"solute carrier family 39 (metal ion"
|
65
|
+
107022,8.21,5.47,4.6,6.24,5.92,4.36,3.51,6.85,8.91,3.84,,,7.55,6.71,7.06,4.54,7.62,5.35,6.38,8.04,5.09,5.04,6.7,7.05,,5.28,,,Gramd3,"GRAM domain containing 3,GRAM domain containing 3,GRAM domain containing 3,"
|
66
|
+
107029,38.85,36.9,26.62,37.39,39.71,26.15,36.25,35.15,30.39,25.39,,,49.12,39.94,36.15,30.88,36.52,43.8,31.46,36.2,33.31,26.91,50.4,25.3,,40.34,,,Me2,"malic enzyme 2, NAD(+)-dependent, mitochondrial"
|
67
|
+
107035,14.94,15.02,12.37,13.82,8.42,17.93,10.66,16.82,18.83,16.22,,,16.51,16.33,15.77,12.91,17.98,9.81,17.14,18.71,15.09,19.85,15.03,18.12,,11.89,,,Fbxo38,"MoKA,MoKA,"
|
68
|
+
107045,36.05,26.63,30.41,24.46,23.89,29.09,19.62,31.35,21.56,26.83,,,36.38,30.45,36.9,21.33,30.71,27.45,27.09,32.28,27.44,30.21,28.48,33.07,,24.78,,,Lars,"leucyl-tRNA synthetase"
|
69
|
+
107047,14.49,23.24,31.95,21.75,33.51,12.76,17.19,17.49,14.19,13.71,,,17.11,15.44,18.71,23.77,15.91,28.38,14.75,12.8,19.61,21.75,19.99,14.54,,26.34,,,Tnfsf5ip1,"Clast3 protein"
|
70
|
+
107065,0,0,0,0,0,0,0,0.03,0,0.02,,,0,0.03,0,0.01,0.03,0,0,0.04,0.03,0,0.02,0,,0,,,Lrrtm2,"leucine rich repeat transmembrane neuronal 2"
|
71
|
+
107071,26.85,44.77,56.42,48.85,64,31.86,54.87,36.22,37.58,39.35,,,31.75,37.06,43.5,50.18,30.33,50.69,39.78,32.39,33.7,38.26,32.47,38.05,,64.2,,,Wdr74,"WD repeat domain 74"
|
72
|
+
107094,13.24,12.73,14.12,11.65,9.71,12.9,11.36,11.91,10.28,15.93,,,11.34,12.68,12.97,8.31,11.63,7.16,9.93,9.87,9.57,11,9.55,12.51,,10.78,,,Rrp12,"ribosomal RNA processing 12 homolog"
|
73
|
+
107141,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Cyp2c50,"cytochrome P450, family 2, subfamily c,,cytochrome P450, family 2, subfamily c,,"
|
74
|
+
107146,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Glyat,glycine-N-acyltransferase
|
75
|
+
107173,10.97,15.44,15.06,17.16,19.72,10.14,19.85,7.87,15.34,12.65,,,12.38,12.85,13.62,15.91,11.69,20.1,14.34,9.53,12.93,15.32,13.15,11,,18.82,,,Gpr137,"expressed sequence AI428855"
|
76
|
+
107182,7.67,8.66,6.29,6.9,5.17,9.7,4.09,9.39,8.2,11.08,,,9.23,9.39,5.97,5.97,9.78,4.96,8.56,9.24,7.93,7.9,8.7,7.97,,5.23,,,Btaf1,"BTAF1 RNA polymerase II, B-TFIID transcription"
|
77
|
+
107221,0,0.14,0,0,0.23,0.22,0.48,0.19,0.07,0.05,,,0.06,0.04,0.2,0.11,0,0,0.26,0.17,0.05,0.18,0.08,0,,0.21,,,Gpr120,"G protein-coupled receptor 120"
|
78
|
+
107227,4.13,6.13,6.56,5.11,7.16,4.26,5.91,3.75,6.93,5.79,,,9.12,7.4,3.24,5.36,6.57,6.62,7.42,5.56,6.37,4.87,9.42,5.02,,6.34,,,Macrod1,"LRP16 protein"
|
79
|
+
107242,19.02,23.29,12.59,23.09,22.69,20.26,20.51,10.36,19.2,11.54,,,20.21,12.1,12.46,12.46,11.88,12.47,13.81,11.25,15.5,16.08,14.48,19.05,,16.77,,,AI837181,"basophilic leukemia expressed protein"
|
80
|
+
107250,0.27,0.25,0,0.6,1.39,0.32,1.25,0.17,0.15,0.44,,,0.09,0.59,0.31,0.48,0.14,0.93,0.48,0.34,0.45,0.26,0.43,0.53,,0.85,,,Kazald1,"Kazal-type serine peptidase inhibitor domain 1,Kazal-type serine peptidase inhibitor domain 1,"
|
81
|
+
107260,70.72,74.34,83.79,88.56,99.39,64.52,97.57,63.84,72.06,63.1,,,64.04,70.53,67.82,86.95,67.46,94.82,74.31,60.71,64.73,78.84,62.87,68.51,,93.68,,,Otub1,"otubain 1"
|
82
|
+
107271,36.54,32.87,28.27,29.47,26.35,30.2,22.77,33.22,23.8,24.63,,,42.52,35.94,39.57,28.18,29.08,34.2,27.7,25.8,33.16,27.29,31.16,31,,34.6,,,Yars,"tyrosyl-tRNA synthetase"
|
83
|
+
107272,51.98,36.97,23.83,36.85,30.11,32.32,29.39,33.2,17.88,23.38,,,51.23,51.35,50.47,38.88,31.3,57.75,20.95,29.46,54.92,25.24,65.64,23.24,,49.34,,,Psat1,"phosphoserine aminotransferase 1,phosphoserine aminotransferase 1,phosphoserine aminotransferase 1,"
|
84
|
+
107305,15.57,20.74,18.77,19.51,18.56,20.96,18.67,20.06,18.32,19.41,,,21.41,21.86,24.38,17.8,19.58,16.29,23.55,19.77,17.66,19.13,15.37,22.09,,17.39,,,Vps37c,"vacuolar protein sorting 37C,vacuolar protein sorting 37C,"
|
85
|
+
107321,232.51,289.34,284.53,332.03,281.9,225.35,357.17,278.82,268.17,205.42,,,259.8,261.06,266.56,343.26,264.4,298.62,273.6,258.54,219.75,301.23,250.61,217.75,,340.72,,,Lpxn,leupaxin
|
86
|
+
107328,0.92,0.75,0,1.42,2.36,1.15,1.16,1.34,0.76,0.84,,,1.02,0.87,1.21,1.45,0.81,0.79,1.05,1.23,1.23,1.18,1.56,0.67,,0.67,,,Trpt1,"tRNA splicing 2' phosphotransferase 1"
|
87
|
+
107338,10.01,9,9.03,6.97,7.51,11.71,6.45,11.18,9.98,11.41,,,12.17,10.67,9.19,7.04,11.15,5.52,10.09,11.96,11.44,9.44,10.09,11.28,,5.7,,,Gbf1,"golgi-specific brefeldin A-resistance factor 1,golgi-specific brefeldin A-resistance factor 1,golgi-specific brefeldin A-resistance factor 1,golgi-specific brefeldin A-resistance factor 1,"
|
88
|
+
107351,0.28,0,0,0.18,0,0,0.06,0.02,0,0.04,,,0.01,0.39,0.06,0.04,0.25,0.02,0.31,0.04,0.4,0,0.46,0,,0.03,,,Ankrd15,"ankyrin repeat domain 15,ankyrin repeat domain 15,ankyrin repeat domain 15,"
|
89
|
+
107358,59.93,61.44,51.96,55.84,38.41,44.12,41.75,54.93,41.28,49.58,,,59.54,45.9,54.89,41.99,52.97,45.49,52.4,51.82,53.4,56.25,68.12,47.51,,55.83,,,Tm9sf3,"transmembrane protein 9 superfamily member 3"
|
90
|
+
107368,8.56,7.45,6.24,6.15,5.78,8.16,4.29,9.08,7.3,7.69,,,10.67,6.95,7.02,5.21,9.53,5.69,6.61,9.32,7.94,7.37,8.31,8.41,,5.24,,,Pdzd8,"PDZ domain containing 8"
|
91
|
+
107371,14.63,15,11.89,11.09,10.27,14.02,9.76,13.66,12.74,13.51,,,14.06,13.33,16.44,11.27,12.64,10.11,13.7,13.43,14.84,13.45,13.62,14.65,,10.53,,,Exoc6,"exocyst complex component 6,exocyst complex component 6,"
|
92
|
+
107373,82.99,64.13,54.07,48.27,53.85,68.24,33.73,64.81,51.53,62.79,,,84.95,68.61,69.49,62.5,66.98,54.21,63.64,72.53,79.24,62.79,99.12,63.4,,43.54,,,4632417K18Rik,"hypothetical protein LOC107373"
|
93
|
+
107375,12.9,25.14,25.34,21.88,23.36,17.9,22.98,18.21,23.08,20.45,,,19.59,22.52,25.36,22.6,18.73,19.37,20.52,22.56,22.81,18.03,18.76,20.65,,26.35,,,Slc25a45,"solute carrier family 25, member 45,solute carrier family 25, member 45,"
|
94
|
+
107392,62.54,78.07,89.53,76.14,124.55,55.7,114.64,58.3,69.49,57.96,,,65.57,69.66,59.99,123.3,48.54,102.73,66.65,57.2,73.75,65.69,59.59,74.82,,90.45,,,Brms1,"breast cancer metastasis-suppressor 1"
|
95
|
+
107435,53.6,52.17,43.63,37.38,39.57,43.31,29.96,35.59,28.56,34.7,,,50.17,48.26,59.46,53.6,39.63,60.31,32.89,34.48,49.35,35.17,68.79,30.3,,53.05,,,Hat1,"histone aminotransferase 1,histone aminotransferase 1,"
|
96
|
+
107448,0.23,0.38,0.12,0.25,0.03,0.73,0.11,0.21,0.01,0.4,,,0.07,0.39,0,0.21,0.62,0,0.19,0.07,0.36,0.14,0.61,0.01,,0.23,,,Unc5a,"netrin receptor Unc5h1,netrin receptor Unc5h1,"
|
97
|
+
107449,0.23,0.36,0,0.31,0.23,0.44,0.52,0.5,0.35,0.39,,,0.76,0.27,0.16,0.35,0.25,0.23,0.42,0.27,0.28,0.45,0.39,0.35,,0.25,,,Unc5b,"unc-5 homolog B,unc-5 homolog B,unc-5 homolog B,"
|
98
|
+
107476,0.66,1.2,1.13,0.8,0.62,1.65,0.6,1.21,1.14,1.1,,,1.7,1.01,0.7,0.83,1.69,1.18,0.95,1.14,1.72,1.4,2.18,1.45,,0.45,,,Acaca,"acetyl-Coenzyme A carboxylase alpha"
|
99
|
+
107477,0.31,0.12,0.33,0.08,0,0.31,0,0.18,0.28,0.16,,,0.03,0.1,0,0.14,0.03,0,0.3,0.23,0.29,0.09,0.18,0.54,,0,,,Guca1b,"guanylate cyclase activator 1B"
|
100
|
+
107503,37.71,45.46,43.04,46.48,23.2,40.85,37.31,43.18,49.38,45.37,,,45.65,34,55.47,32.3,30.39,37.91,60.44,25.55,39.29,28.1,26.27,41.95,,48.12,,,Atf5,"ativating transcription factor 5,ativating transcription factor 5,"
|
101
|
+
107508,46.77,29.21,30.4,18.72,26.17,43.31,18.98,44.64,30.16,37.47,,,45.01,39.74,35.46,39.33,36,26.41,36.78,39.82,41.99,37.1,39.32,46.24,,16.84,,,Eprs,"glutamyl-prolyl-tRNA synthetase,glutamyl-prolyl-tRNA synthetase,glutamyl-prolyl-tRNA synthetase,"
|
102
|
+
107513,33.65,32.06,28,35.27,26.01,27.6,32.04,29.15,21.33,28.22,,,33.3,29.33,34.61,27.68,28.44,33.17,26.77,25.38,32.61,28.72,34.97,24.92,,37.94,,,Ssr1,"signal sequence receptor, alpha,signal sequence receptor, alpha,"
|
103
|
+
107515,0.16,0.17,0,0.15,0.29,0.04,0,0.19,0.1,0.17,,,0.22,0.18,0.17,0.07,0.13,0.25,0.11,0.07,0.22,0.08,0.05,0.17,,0.05,,,Lgr4,"G protein-coupled receptor 48"
|
104
|
+
107526,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Gimap4,"GTPase, IMAP family member 4 isoform b"
|
105
|
+
107527,0.38,0.12,0,0.28,0.51,0.19,0.09,0.65,0.03,0.61,,,0.1,0.31,0.27,0,0.14,0.21,0.34,0.49,0.06,0.43,0.72,0.6,,0.18,,,Il1rl2,"interleukin 1 receptor-like 2,interleukin 1 receptor-like 2,"
|
106
|
+
107528,3.23,3.56,2.12,3.12,3.4,3.79,1.97,3.04,3.76,3.43,,,3.51,3.72,4.5,2.55,4.7,2.68,2.48,4.62,4.05,3.56,4.76,3.75,,1.86,,,Magee1,"melanoma antigen, family E, 1"
|
107
|
+
107566,41.4,34.72,44,39.66,22.79,34.44,22.5,34.96,29.24,34.04,,,39.33,32.59,32.65,28.21,37.13,28.41,25.58,26.94,43.45,27.63,36.18,29.72,,43.8,,,Arl2bp,"ADP-ribosylation factor-like 2 binding protein"
|
108
|
+
107568,19.96,36.9,17.17,28.82,13.06,36.21,13.4,19.18,30.22,22.48,,,40.61,28.44,18.47,21.92,36.82,14.18,36.45,34.24,27.13,42.53,50.47,30.55,,16.21,,,Wwp1,"WW domain-containing protein 1"
|
109
|
+
107569,23.69,23.18,28.34,28.22,31.59,28.75,47.58,32.36,26.99,21.51,,,20.88,28.47,28.1,34,22.43,34.21,18.68,25.78,21.01,20.66,21.96,28.46,,39.6,,,Nt5c3,"5'-nucleotidase, cytosolic III,5'-nucleotidase, cytosolic III,"
|
110
|
+
107581,0,0,0,0,0,0,0,0.02,0,0,,,0,0,0,0,0,0,0,0.01,0,0,0,0,,0,,,Col16a1,"procollagen, type XVI, alpha 1,procollagen, type XVI, alpha 1,"
|
111
|
+
107585,0,0,0.23,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Dio3,"deiodinase, iodothyronine type III"
|
112
|
+
107586,0,0,0.24,0,0,0,0,0.08,0,0,,,0.05,0,0,0,0,0.06,0,0,0,0,0,0,,0,,,Ovol2,"ovo-like 2 isoform A"
|
113
|
+
107587,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Osr2,"odd-skipped related 2"
|
114
|
+
107589,0.3,0.12,0.25,0.03,0,0.18,0.01,0.16,0.22,0.11,,,0.15,0.07,0.36,0.04,0.17,0.1,0.11,0.16,0.35,0.09,0.08,0.02,,0.1,,,Mylk,"myosin, light polypeptide kinase,myosin, light polypeptide kinase,"
|
115
|
+
107605,0,0.09,0.02,0,0,0.03,0,0,0.03,0,,,0.03,0.01,0,0,0.02,0.05,0.03,0.01,0.03,0,0.01,0,,0,,,Rdh1,"retinol dehydrogenase 1 (all trans)"
|
116
|
+
107607,0.63,0.63,0.95,0.44,0.6,2.18,1.15,1.35,0.9,0.84,,,0.23,0.93,1.19,0.94,1.2,0.27,0.79,0.93,0.91,1.04,0.85,1.58,,0.51,,,Nod1,"nucleotide-binding oligomerization domain,nucleotide-binding oligomerization domain,"
|
117
|
+
107650,13.06,13.8,13.78,13.06,9.31,14.31,13.07,14.49,13.96,13.74,,,14.13,14.81,13.83,10.27,15.45,10.04,12.44,14.79,12.76,14,13.05,13.89,,13.54,,,Pi4kb,"phosphatidylinositol 4-kinase, catalytic, beta,phosphatidylinositol 4-kinase, catalytic, beta,phosphatidylinositol 4-kinase, catalytic, beta,"
|
118
|
+
107652,17.52,15.73,16.63,10.53,14.48,16.46,10.18,11.44,15.39,15.38,,,17.57,12.4,16.83,11.79,13.88,13.06,14.51,15.01,20.9,13.19,17.32,16.07,,11.19,,,Uap1,"UDP-N-acetylglucosamine pyrophosphorylase 1,UDP-N-acetylglucosamine pyrophosphorylase 1,UDP-N-acetylglucosamine pyrophosphorylase 1,UDP-N-acetylglucosamine pyrophosphorylase 1,"
|
119
|
+
107656,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Krt9,"keratin complex 1, acidic, gene 9"
|
120
|
+
107684,27.95,55.26,41.03,43.92,50.42,74.39,37.1,26.47,55.25,54.4,,,77.14,56.1,60.43,17.72,24.89,16.53,56.58,72.66,58.73,19.18,22.77,77.76,,38,,,Coro2a,"coronin, actin binding protein 2A,coronin, actin binding protein 2A,coronin, actin binding protein 2A,"
|
121
|
+
107686,48.89,71.74,97.33,92.77,158.47,57.48,103.34,55.04,65.8,57.03,,,64.72,77.63,72.58,120.35,53.39,140.21,60.03,54.13,92.64,68.83,71.46,61.42,,121.23,,,Snrpd2,"small nuclear ribonucleoprotein D2"
|
122
|
+
107701,16.73,18,20.46,18,14.91,16.13,18.87,20.77,18.21,18.24,,,17.99,18.71,19.3,17.69,18.99,18.02,20.9,19.82,18.21,21.44,18.89,20.17,,16.51,,,Sf3b4,"splicing factor 3b, subunit 4"
|
123
|
+
107702,851.76,1309.25,1796.85,1847.55,2280.84,872.11,3092.64,1295.64,1461.21,1235.63,,,923.1,1174.67,1108.1,1627.55,963.7,2095.88,1137.19,1022.39,1104.8,1260.3,886.81,1091.46,,2273.54,,,Rnh1,"ribonuclease/angiogenin inhibitor 1,ribonuclease/angiogenin inhibitor 1,ribonuclease/angiogenin inhibitor 1,"
|
124
|
+
107723,23.52,19.73,18.13,16.35,10.63,25.3,12.52,18.81,17.91,21.69,,,25.9,20.24,22.86,14.22,24.84,12.61,20.8,21.23,21.99,19.56,23.17,19.78,,12.39,,,Slc12a6,"solute carrier family 12, member 6 isoform 2,solute carrier family 12, member 6 isoform 2,solute carrier family 12, member 6 isoform 2,solute carrier family 12, member 6 isoform 2,"
|
125
|
+
107732,45.11,29.72,41.52,36.36,36.17,34.91,64.29,27.36,27.15,27.26,,,26.11,43.23,48.36,32.75,26.63,49.05,40.56,40.86,39.41,28.96,30.01,24.77,,43.25,,,Mrpl10,"mitochondrial ribosomal protein L10"
|
126
|
+
107733,5,9.35,13.7,8.95,14.47,5.99,11.39,4.64,8.58,7.46,,,6.95,7.49,7.01,15.83,4.94,16.7,6.01,6.24,8.44,5.96,7.09,5.22,,15.56,,,Mrpl41,"mitochondrial ribosomal protein L41"
|
127
|
+
107734,74.61,102.03,103.57,109.47,145.06,80.82,143.67,82.27,83.75,75.46,,,82.04,99,105.71,153.48,75.07,154.91,86,77.26,107.29,100.13,96.43,87.81,,152.4,,,Mrpl30,"mitochondrial ribosomal protein L30"
|
128
|
+
107746,38.1,26.38,28.84,24.3,23.3,32.95,16.88,34.5,31.85,38.26,,,32.48,32.75,25.55,23.34,33.52,20.12,31.62,32.35,31.34,29.88,31.33,35.78,,17.49,,,Rapgef1,"Rap guanine nucleotide exchange factor (GEF) 1"
|
129
|
+
107747,4.12,7.84,3.39,5.97,3,10.06,6.12,5.32,4.22,3.02,,,7.98,8.49,2.79,5.66,8.16,4.19,9.15,7.89,6.08,7.26,11.71,6.1,,3.27,,,Aldh1l1,"aldehyde dehydrogenase 1 family, member L1,aldehyde dehydrogenase 1 family, member L1,"
|
130
|
+
107751,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Prrxl1,"paired related homeobox protein-like 1"
|
131
|
+
107753,0,0,0,0,0,0,0,0.18,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Lgals2,"lectin, galactose-binding, soluble 2"
|
132
|
+
107765,0,0,0,0,0,0,0,0,0,0,,,0,0,0.13,0,0,0.04,0,0,0,0,0,0,,0,,,Ankrd1,"ankyrin repeat domain 1 (cardiac muscle)"
|
133
|
+
107766,7.19,5.4,5.93,5.69,3.03,3.36,3.57,7.96,2.24,0.71,,,9.23,3.17,10.76,8.16,1.29,5.46,5.13,2.74,4.66,3.2,4.49,1.15,,3.6,,,Haao,"3-hydroxyanthranilate 3,4-dioxygenase,3-hydroxyanthranilate 3,4-dioxygenase,"
|
134
|
+
107767,8.46,12.72,8.97,10.61,6.76,9.78,7.75,12.17,12.9,13.5,,,8.97,12.28,11.64,9.54,15.28,11.35,11.54,15.71,10.96,14.35,17.37,9.08,,13.22,,,Scamp1,"secretory carrier membrane protein 1,secretory carrier membrane protein 1,secretory carrier membrane protein 1,"
|
135
|
+
107769,68.27,73.29,64.75,56.09,56.8,62.83,38.94,39.58,47.54,47.93,,,77.88,63.2,94.55,50.67,57.39,52.09,51.02,51.84,74.89,47.55,82.24,43.16,,63.41,,,Tm6sf1,"transmembrane 6 superfamily member 1,transmembrane 6 superfamily member 1,transmembrane 6 superfamily member 1,"
|
136
|
+
107770,0,0,0,0.08,0,0,0,0,0.08,0,,,0,0.03,0,0,0,0,0.06,0,0,0,0.16,0,,0,,,Tm6sf2,"transmembrane 6 superfamily member 2,transmembrane 6 superfamily member 2,"
|
137
|
+
107771,15.59,20.2,22.49,19.06,20.11,17.16,15.53,12.45,15.09,14.33,,,23.27,20.33,13.57,21.88,21.56,21.87,20.63,14.6,19.15,19.28,19.44,12.57,,19.17,,,Bmyc,"brain expressed myelocytomatosis oncogene"
|
138
|
+
107815,0.12,0.2,0.13,0.07,0.2,0.1,0,0.07,0.05,0.07,,,0.05,0.2,0.18,0,0.17,0.06,0.09,0.04,0.1,0.04,0.16,0.12,,0,,,Scml2,"sex comb on midleg-like 2,sex comb on midleg-like 2,sex comb on midleg-like 2,"
|
139
|
+
107817,12.05,20.4,20.12,16.67,24.68,14.12,22.24,15.64,15.13,18.03,,,14.12,17.73,15.64,19.71,16.58,17.6,16.09,13.24,18.14,13.01,16.72,19.82,,23.33,,,Jmjd6,"jumonji domain containing 6"
|
140
|
+
107823,35.4,28.25,19.38,15.23,21.49,32.73,11.49,38.13,22.34,29.56,,,34.63,29.41,33.86,29.59,38.05,17.14,24.35,30.17,39.18,24,43.69,39.35,,17.59,,,Whsc1,"Wolf-Hirschhorn syndrome candidate 1,Wolf-Hirschhorn syndrome candidate 1,Wolf-Hirschhorn syndrome candidate 1,"
|
141
|
+
107829,28.83,34.35,36.57,32.68,34.41,30.28,33.32,36.88,33.24,36.42,,,33.71,30.97,35.65,33.09,30.61,29.66,37.71,29.05,29.84,33.21,29.11,37.25,,37.02,,,Thoc5,"THO complex 5"
|
142
|
+
107831,0,0,0,0,0,0,0.1,0,0,0,,,0,0,0.01,0,0,0,0,0,0,0,0,0,,0,,,Bai1,"brain-specific angiogenesis inhibitor 1,brain-specific angiogenesis inhibitor 1,brain-specific angiogenesis inhibitor 1,brain-specific angiogenesis inhibitor 1,brain-specific angiogenesis inhibitor 1,"
|
143
|
+
107849,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Prl2c5,"prolactin family 2, subfamily c, member 5"
|
144
|
+
107868,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0.01,0,0,0,0,0,0,0,,0,,,Usp9y,"ubiquitin specific peptidase 9, Y chromosome"
|
145
|
+
107869,0.43,0.15,0.16,0.22,0.04,0.11,0.04,0.21,0.29,0.21,,,0.23,0.16,0.25,0.75,0.03,0.24,0.16,0.36,0.07,0.19,0.1,0.34,,0.08,,,Cth,cystathionase
|
146
|
+
107885,3.5,8.13,5.3,8.2,6.83,5.43,12.75,6.85,7.54,7.48,,,3.74,5.94,5.95,12.07,6.16,12.87,5.15,6.79,11.14,5.95,6.49,3.19,,13.19,,,Mthfs,"5, 10-methenyltetrahydrofolate synthetase,5, 10-methenyltetrahydrofolate synthetase,5, 10-methenyltetrahydrofolate synthetase,5, 10-methenyltetrahydrofolate synthetase,5, 10-methenyltetrahydrofolate synthetase,"
|
147
|
+
107889,0,0,0,0.03,0,0,0,0.48,0,0.16,,,0,0.06,0,0,0,0,0.13,0,0.42,0,0,0,,0.04,,,Gcm2,"glial cells missing homolog 2,glial cells missing homolog 2,"
|
148
|
+
107895,6.92,8.68,5.26,5.69,2.24,12.1,1.95,7.95,4.87,9.29,,,8.42,7.88,6.13,1.29,8.15,0.64,6.38,6.91,6.96,8.01,10.45,6.41,,3.38,,,Mgat5,"mannoside acetylglucosaminyltransferase 5,mannoside acetylglucosaminyltransferase 5,mannoside acetylglucosaminyltransferase 5,mannoside acetylglucosaminyltransferase 5,"
|
149
|
+
107932,68.86,39.62,37.57,25.63,36.4,67.73,19.13,55.81,53.49,55.17,,,54.93,53.21,35.38,37.38,54.74,25.07,50.07,60.51,55.64,42.67,54.61,67.82,,19.65,,,Chd4,"chromodomain helicase DNA binding protein 4,chromodomain helicase DNA binding protein 4,"
|
150
|
+
107934,0.09,0.22,0,0.16,0.09,0.24,0.15,0.13,0.34,0.31,,,0.08,0.12,0.07,0.11,0.17,0.06,0.4,0.2,0.15,0.15,0.11,0.21,,0.17,,,Celsr3,"cadherin EGF LAG seven-pass G-type receptor 3,cadherin EGF LAG seven-pass G-type receptor 3,"
|
151
|
+
107939,12.56,8.44,9.9,7.71,6.16,10.2,5.48,9.56,8.96,11.05,,,9.64,9.57,9.29,7.23,10.15,8.34,9.62,9.09,10.67,9.01,9.56,10.32,,6.27,,,Pom121,"nuclear pore membrane protein 121"
|
152
|
+
107951,22.44,24.43,23.47,27.36,26.21,24.11,22.54,24.2,26.52,23.09,,,22.85,24.42,23.97,22.24,23.78,23.03,26.96,23.22,23.97,26.24,23.2,25.18,,24.5,,,Cdk9,"cyclin-dependent kinase 9,cyclin-dependent kinase 9,"
|
153
|
+
107970,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0.1,,0,,,Hist1h1t,"histone 1, H1t"
|
154
|
+
107971,0.19,0.52,0.04,0.14,0.13,0.18,0.36,0.32,0.42,0.38,,,0.36,0.25,0.18,0.32,0.37,0.34,0.56,0.51,0.29,0.23,0.44,0.36,,0.12,,,Frs3,"fibroblast growth factor receptor substrate 3"
|
155
|
+
107975,10.53,8.93,7,6.46,8.34,10.76,5.28,9.15,10.59,9.73,,,10.49,8.86,10.72,7.94,11.52,6.18,10.35,9.46,12.59,9.2,9.7,9.96,,6.8,,,Pacs1,"phosphofurin acidic cluster sorting protein 1,phosphofurin acidic cluster sorting protein 1,phosphofurin acidic cluster sorting protein 1,"
|
156
|
+
107976,46.57,49.12,46.51,53.31,37.92,37.89,44.62,51.34,49.77,44.76,,,52.65,44.26,48.63,45.63,44.67,46.59,52.25,43.24,41.74,52.35,44.02,40.19,,47.33,,,Bre,"brain and reproductive organ-expressed protein,brain and reproductive organ-expressed protein,"
|
157
|
+
107986,4.06,6.19,8.37,4.97,7.59,5.57,6.55,5.92,7.51,8.25,,,5.92,8.03,8.14,6.17,7.54,7.41,8.65,10.63,7.99,7.05,7.09,8.77,,5.81,,,Ddb2,"damage specific DNA binding protein 2"
|
158
|
+
107993,0,0,0,0,0,0.15,0,0,0,0,,,0,0,0,0,0.07,0,0.09,0,0,0,0,0,,0,,,Bfsp2,"beaded filament structural protein 2, phakinin,beaded filament structural protein 2, phakinin,"
|
159
|
+
107995,33.87,23.45,22.11,14.24,28.14,21.59,14.24,20.9,13.97,14.63,,,32.76,20.88,20.99,24.35,16.92,37.32,9.61,13.49,32.1,16.51,35.33,17.66,,22.46,,,Cdc20,"cell division cycle 20 homolog,cell division cycle 20 homolog,"
|
160
|
+
107999,7.8,8.77,14.04,9.06,15.47,8.14,11.72,8.85,10.12,9.77,,,8.57,8.02,7.88,12.41,8.87,10,6.69,7.36,6.51,7.87,7.4,9.06,,7.59,,,Gtpbp6,"GTP binding protein 6 (putative)"
|
161
|
+
108000,5.91,2.02,2.22,0.74,2.58,5.1,0.66,3.34,2.3,2.64,,,4.27,4.35,1.83,3.79,2.96,2.23,1.42,3.09,6.11,1.39,4.11,4.57,,0.85,,,Cenpf,"centromere protein F,centromere protein F,centromere protein F,"
|
162
|
+
108011,5.34,4.12,4.44,3.55,3.58,4.39,2.84,4.45,4.01,5.11,,,4.73,4.24,3.87,2.98,5.37,2.41,4.04,4.47,4.11,4.57,5.03,4.36,,3.31,,,Ap4e1,"adaptor-related protein complex AP-4, epsilon 1,adaptor-related protein complex AP-4, epsilon 1,"
|
163
|
+
108012,28.23,26.23,22.22,20.51,17.96,18.81,19.03,24.82,19.52,22.54,,,27.15,20.47,26.06,20.07,25.28,22.78,22.93,25.13,21.2,25.08,27.79,18.49,,26.87,,,Ap1s2,"adaptor-related protein complex 1 sigma 2,adaptor-related protein complex 1 sigma 2,"
|
164
|
+
108013,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Brunol4,"bruno-like 4, RNA binding protein,bruno-like 4, RNA binding protein,bruno-like 4, RNA binding protein,bruno-like 4, RNA binding protein,"
|
165
|
+
108014,100.69,101.93,105.5,109.9,130.89,83.6,111.39,81.92,79.94,79.12,,,91.22,91.55,91.37,87.69,81.14,108.72,89.96,79.06,92.06,96.63,85.77,87.76,,116.24,,,Sfrs9,"splicing factor, arginine/serine rich 9"
|
166
|
+
108015,0,0.02,0,0,0,0.03,0,0,0,0,,,0,0,0,0,0,0,0,0,0.02,0,0,0,,0,,,Chrnb4,"cholinergic receptor, nicotinic, beta,cholinergic receptor, nicotinic, beta,"
|
167
|
+
108017,0,0,0,0.19,0,0,0,0,0,0,,,0,0.23,0,0,0,0,0,0,0,0.21,0.36,0,,0,,,Fxyd4,"corticosteroid-induced protein,corticosteroid-induced protein,"
|
168
|
+
108030,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0.01,0,0,0,0,0,,0,,,Lin7a,"lin 7 homolog a isoform 1"
|
169
|
+
108037,62.38,51.55,46.35,39.14,50.64,42.91,37,45.36,30.4,32.45,,,75.21,62.49,59.58,49.62,41.73,71.62,34.45,37.47,56.26,35.83,58.48,35.02,,51.99,,,Shmt2,"serine hydroxymethyltransferase 2,serine hydroxymethyltransferase 2,"
|
170
|
+
108043,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Chrnb3,"cholinergic receptor, nicotinic, beta"
|
171
|
+
108052,0.09,0,0,0,0,0.03,0,0,0,0.02,,,0.08,0.02,0.22,0,0.11,0.03,0,0.02,0.02,0.06,0,0,,0.03,,,Slc14a1,"solute carrier family 14 (urea transporter),,solute carrier family 14 (urea transporter),,"
|
172
|
+
108058,30.93,29.46,24.42,31.01,16,22.82,20.95,28.6,27.57,27.23,,,30.82,22.94,22,25.12,30.28,20.23,28.02,24.73,25.38,32.4,33.07,24.28,,25.72,,,Camk2d,"calcium/calmodulin-dependent protein kinase II,,calcium/calmodulin-dependent protein kinase II,,calcium/calmodulin-dependent protein kinase II,,"
|
173
|
+
108062,21.36,18.99,13.15,13.71,10.64,16.3,12.83,18.5,11.7,13,,,20.11,17.5,17.05,14.24,17.08,15.01,16.46,18.97,14.55,19.87,21.63,17.25,,13.34,,,Cstf2,"cleavage stimulation factor, 3' pre-RNA subunit,cleavage stimulation factor, 3' pre-RNA subunit,cleavage stimulation factor, 3' pre-RNA subunit,"
|
174
|
+
108067,17.7,13.08,17.22,19.94,16.88,12.39,19.06,14.03,14.54,13.35,,,16.09,16.08,16.53,12.56,11.65,13.49,14.46,12.51,10.4,15.22,11.93,16.24,,17.63,,,Eif2b3,"eukaryotic translation initiation factor 2B,"
|
175
|
+
108069,0,0,0.09,0,0,0,0,0,0,0,,,0,0.02,0.02,0,0,0,0,0,0,0,0,0,,0,,,Grm3,"glutamate receptor, metabotropic 3"
|
176
|
+
108071,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Grm5,"glutamate receptor, metabotropic 5,glutamate receptor, metabotropic 5,"
|
177
|
+
108072,0,0,0,0,0,0,0.07,0,0,0,,,0,0,0.04,0,0,0.01,0,0,0,0,0,0,,0,,,Grm6,"glutamate receptor, metabotropic 6,glutamate receptor, metabotropic 6,"
|
178
|
+
108073,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Grm7,"glutamate receptor, metabotropic 7"
|
179
|
+
108075,0,0,0.14,0,0,0.03,0,0.03,0.02,0,,,0,0.01,0,0,0.03,0,0.07,0.06,0.02,0.01,0,0,,0,,,Ltbp4,"latent transforming growth factor beta binding,latent transforming growth factor beta binding,latent transforming growth factor beta binding,"
|
180
|
+
108077,23.95,21.63,19.2,16.16,18.45,22.35,14.59,18.34,20.98,18.22,,,27.35,22.26,19.83,21.73,23.18,12.97,18.87,18.57,23.94,20.71,22.9,20.81,,16.63,,,Skiv2l,"superkiller viralicidic activity 2-like"
|
181
|
+
108078,0.11,0,0,0.05,0.06,0,0.04,0.02,0.03,0.11,,,0,0.03,0.05,0,0,0.04,0,0,0,0.01,0,0.19,,0.18,,,Olr1,"oxidized low density lipoprotein (lectin-like)"
|
182
|
+
108079,0,0.02,0,0.03,0,0.05,0,0.04,0.02,0,,,0.02,0.01,0.05,0,0.02,0.01,0.02,0,0,0.1,0.03,0,,0,,,Prkaa2,"AMP-activated protein kinase alpha 2 catalytic"
|
183
|
+
108083,27.67,22.44,16.81,16.46,14.63,26.94,11.78,22.85,21.41,22.27,,,26.37,22.31,20.58,19.11,25.74,13.65,23.44,22.38,24.77,21.86,23.7,25.09,,16.53,,,Pip4k2b,"phosphatidylinositol-5-phosphate 4-kinase, type"
|
184
|
+
108086,12.1,9.79,10.76,8.95,8.9,12.62,7.72,12.47,12.26,12.94,,,13.21,12.15,9.73,9.08,14.27,8.47,13.56,13.01,11.79,11.93,11.9,13.13,,7.86,,,Rnf216,"ubiquitin conjugating enzyme 7 interacting,ubiquitin conjugating enzyme 7 interacting,"
|
185
|
+
108089,0.2,0.15,0.11,0.12,0.16,0.22,0.26,0.36,0.11,0.14,,,0.3,0.2,0.16,0.07,0.28,0.18,0.13,0.12,0.24,0.39,0.21,0.13,,0.06,,,Rnf144a,"ring finger protein 144"
|
186
|
+
108096,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Slco1a5,"solute carrier organic anion transporter family,,solute carrier organic anion transporter family,,"
|
187
|
+
108097,0.47,1.13,0.59,0.71,1.32,0.92,0.8,1.08,1.4,1.53,,,0.96,1.16,1.11,0.58,1.03,0.69,1.14,1.05,0.61,1.05,1.09,0.96,,0.53,,,Prkab2,"AMP-activated protein kinase beta 2"
|
188
|
+
108098,21.69,36.57,37.87,31.78,40.09,20.27,42.34,26.21,23.29,23.41,,,21.62,32.14,33.74,44.59,23.95,55.43,21.94,30.67,27.42,27.4,25.71,26.52,,41.27,,,Med21,"SRB7 (supressor of RNA polymerase B) homolog"
|
189
|
+
108099,5.69,6.22,7.55,5.88,6.21,6.94,4.14,6.12,6.43,7.82,,,8.21,6.56,4.9,6.17,6.83,8.56,6.61,6.23,5.99,6.34,7.75,6.85,,4.83,,,Prkag2,"AMP-activated protein kinase gamma2 subunit,AMP-activated protein kinase gamma2 subunit,"
|
190
|
+
108100,27.78,24.54,26.45,24.3,34.96,25.53,22.7,34.44,34.05,21.19,,,23.68,25.46,20.15,29.22,24.4,25.55,28.08,23.8,25.6,28.86,35.1,33.47,,20.41,,,Baiap2,"brain-specific angiogenesis inhibitor"
|
191
|
+
108101,111.73,135.65,126.88,109.88,125.27,130.48,103.01,117.32,115.46,102.84,,,143.98,121.03,147.52,108.44,136.17,113,125.35,129.52,131.44,114.41,119.52,121.59,,120.82,,,BC032204,"UNC-112 related protein 2,UNC-112 related protein 2,"
|
192
|
+
108105,0,0,0,0.03,0.05,0,0,0.07,0,0.03,,,0.04,0.01,0,0,0.01,0,0.02,0.02,0,0.01,0.01,0.01,,0,,,B3gnt5,"UDP-GlcNAc:betaGal,UDP-GlcNAc:betaGal,"
|
193
|
+
108112,8.34,6.27,9.13,7.46,9.66,11.17,4.77,10.69,12.57,11.19,,,9.19,11.8,8.96,12.45,10.32,9.31,13.03,12.59,12.31,7.84,9.15,11.07,,4.59,,,Eif4ebp3,"eukaryotic translation initiation factor 4E"
|
194
|
+
108114,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Slc22a7,"solute carrier family 22 member 7"
|
195
|
+
108115,40.45,25.93,23.54,23.09,24.07,44.34,24.4,35.73,48.13,24.05,,,27.48,21.82,18.13,37.28,38.95,48.3,27.23,26.07,28.84,23.74,39.92,44.59,,20.19,,,Slco4a1,"solute carrier organic anion transporter family,,solute carrier organic anion transporter family,,"
|
196
|
+
108116,0.27,1.77,3.32,0.24,1.85,2.19,0.66,4.46,0.87,1.26,,,2.62,2.38,3.54,1.3,0.67,0.46,0.47,1.99,2.41,2.05,1.08,0.57,,0.21,,,Slco3a1,"solute carrier organic anion transporter family,"
|
197
|
+
108121,5.77,9.98,10.5,11.73,15.28,7.62,9.41,8.69,8.04,8.16,,,7.96,9.98,9.94,12.83,9.24,13.76,8.88,9.09,9.15,7.51,10.6,9.47,,14.58,,,U2af1,"U2 small nuclear ribonucleoprotein auxiliary"
|
198
|
+
108123,25.45,19.76,15.17,17.97,14.28,18.34,17.89,21.32,16.74,22.25,,,24.4,24.4,25.07,19.21,23.18,17.48,19.62,23.39,18.91,19.21,18.53,22.37,,19.05,,,Napg,"N-ethylmaleimide sensitive fusion protein"
|
199
|
+
108124,53.68,63.85,65.5,71.03,61.34,47.22,57.34,63.63,68.43,67.81,,,51.47,61.59,64.86,58.04,61.05,69.34,58.63,58.54,55.39,60.19,51.05,56.36,,73.9,,,Napa,"N-ethylmaleimide sensitive fusion protein"
|
200
|
+
108138,7.53,10.38,9.27,11.76,9.89,7.69,7.67,8.04,8.82,8.02,,,9.68,7.61,7.84,8.97,8.45,12.82,9.47,8.57,8.12,9.06,7.9,7.73,,11.13,,,Xrcc4,"X-ray repair complementing defective repair in"
|
201
|
+
108143,70.97,81.83,67.97,78.94,104.31,64.6,72.56,70.36,57.41,59.05,,,79.27,80.32,83.99,92.18,52.04,111.08,88.19,67.06,62.49,107.57,83.36,63.58,,145.85,,,Taf9,"TAF9 RNA polymerase II, TATA box binding protein,TAF9 RNA polymerase II, TATA box binding protein,"
|
202
|
+
108147,31.65,47.66,49.08,49.95,40.59,33.74,38.2,41.17,33.33,39.82,,,40.34,36.94,46.67,30.77,36.92,29.85,35.42,34.45,36.57,43.07,45.87,36.43,,52.96,,,Atic,"5-aminoimidazole-4-carboxamide ribonucleotide,5-aminoimidazole-4-carboxamide ribonucleotide,"
|
203
|
+
108148,35.68,38.89,33.6,29.38,28.47,38.74,22.78,43.12,30.53,32.39,,,38.49,33.54,40.84,31.51,44.26,31.93,40.53,32.74,37.76,31.69,44.23,33.8,,34.44,,,Galnt2,UDP-N-acetyl-alpha-D-galactosamine:polypeptide
|
204
|
+
108150,35.76,28.13,19.47,26.09,20.38,34.58,16.33,47.52,19.15,25.1,,,38.92,28.74,27.14,26.49,33.24,19.99,29.88,34.81,28.27,36.68,39.32,38.29,,18.99,,,Galnt7,"UDP-N-acetyl-alpha-D-galactosamine: polypeptide"
|
205
|
+
108151,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Sema3d,"semaphorin 3D,semaphorin 3D,semaphorin 3D,"
|
206
|
+
108153,0.02,0,0,0,0,0,0,0,0,0.01,,,0,0.01,0.03,0,0.01,0,0,0,0.03,0,0.01,0,,0,,,Adamts7,"a disintegrin-like and metalloprotease,a disintegrin-like and metalloprotease,"
|
207
|
+
108154,0.3,0.03,0,0.02,0.23,0.02,0.11,0.11,0.12,0.05,,,0.03,0.09,0.05,0.01,0.1,0.02,0.02,0.06,0.23,0.01,0.03,0.05,,0,,,Adamts6,"a disintegrin-like and metalloprotease"
|
208
|
+
108155,18.09,20.16,13.7,15.06,11.01,19.71,9.14,15.81,20.65,17.43,,,23.27,19.61,13.23,17.68,20.62,13.44,16.37,19.43,22.44,17.49,21.63,15.7,,11.58,,,Ogt,"O-linked N-acetylglucosamine transferase,O-linked N-acetylglucosamine transferase,"
|
209
|
+
108156,21.76,22.29,25.76,16.91,16.78,21.95,12.09,21.61,17.41,23.01,,,25.95,23.07,22.61,18.22,23.72,20.81,22.18,20.1,23.65,21.87,30.34,21.52,,21.25,,,Mthfd1,"methylenetetrahydrofolate dehydrogenase 1"
|
210
|
+
108159,11.91,10.41,9.35,8.55,13.55,6.16,9.81,11.43,5.96,7.11,,,12.49,11.66,9.06,11.03,6.8,15.82,7.37,11.13,12.23,12.25,9,10.13,,10.28,,,Ubxd6,"UBX domain containing 6"
|
211
|
+
108160,56.81,56.46,51.19,53.2,58.07,51.11,53.14,54.41,63.6,73.5,,,47.72,55.1,50.63,61.36,45.59,50.08,66.04,51.07,52.57,56.14,41.45,64.67,,59.42,,,D0HXS9928E,"DNA segment, human DXS9928E"
|
212
|
+
108645,31.96,45.42,44.07,49.61,50.05,30.66,58.68,37.41,37.26,33.87,,,35.88,38.54,35.15,57.21,38.21,55.74,35.81,36.55,40.65,39.59,38.35,31.91,,54.2,,,Mat2b,"methionine adenosyltransferase II, beta,methionine adenosyltransferase II, beta,"
|
213
|
+
108652,4.52,7.95,13.04,6.15,9.75,6,15.33,5.9,6.05,6.52,,,7.02,7.91,7.89,12.85,6.96,10.45,7.95,6.39,6.72,6.47,7,5.6,,10.39,,,Slc35b3,"solute carrier family 35, member B3,solute carrier family 35, member B3,"
|
214
|
+
108653,0,0,0.09,0,0,0,0,0.04,0,0,,,0,0,0.01,0,0,0.02,0,0,0,0,0,0,,0,,,4933426K21Rik,"hypothetical protein LOC108653,hypothetical protein LOC108653,"
|
215
|
+
108654,4.52,4.41,3.99,4.31,2.7,3.76,3.05,4.2,3.57,4.2,,,5.1,3.89,3.32,2.43,4.32,3.64,3.68,4.61,3.94,3.69,5.46,3.73,,3.36,,,4933403F05Rik,"hypothetical protein LOC108654"
|
216
|
+
108655,18.75,19.71,19,12.57,14.77,23.35,10.63,21.7,25.72,20.43,,,25.11,21.88,19.02,19.43,24.6,15.17,20.04,20.8,24.25,19.13,26.8,20.76,,10.13,,,Foxp1,"forkhead box P1,forkhead box P1,forkhead box P1,forkhead box P1,forkhead box P1,forkhead box P1,forkhead box P1,"
|
217
|
+
108657,20.1,16.32,15.6,14.53,12.91,19.09,13.48,19.39,17.64,18.81,,,21.61,17.56,16.46,12.87,19.48,12.09,19.31,18.05,17.85,18.48,16.72,19.22,,12.24,,,Rnpepl1,"arginyl aminopeptidase (aminopeptidase B)-like"
|
218
|
+
108664,87.01,120.6,113.05,133.28,73.64,83.33,126.73,96.89,99.79,104.67,,,93.45,87.04,101.7,95.08,88.22,104.26,104.64,89.4,85.64,116,103.01,89.33,,130.92,,,Atp6v1h,"ATPase, H+ transporting, lysosomal V1 subunit H"
|
219
|
+
108670,57.59,86.82,76.66,42.08,80.77,101.3,104.17,116.64,92.08,50.49,,,78.06,49.68,66.77,109.24,74.93,57.88,38.11,41.22,86.06,93.86,15.36,57.26,,54.28,,,Epsti1,"epithelial stromal interaction 1 isoform a"
|
220
|
+
108671,35.18,30.85,23.76,22.31,30.06,27.92,21.18,23,21.35,18.92,,,35.05,33.24,30.53,34.19,24.93,37.43,20.76,23.46,39.39,21.25,42.8,23.54,,26.4,,,Dnajc9,"DnaJ homolog, subfamily C, member 9"
|
221
|
+
108672,0.24,0.18,0.83,0.23,0.03,0.2,0.33,0.48,0.32,0.16,,,0.42,0.22,0.31,0.26,0.32,0.26,0.26,0.27,0.38,0.52,0.31,0.21,,0.67,,,Zdhhc15,"zinc finger, DHHC domain containing 15"
|
222
|
+
108673,19.65,17.58,22.36,20.23,19.24,24.51,23.63,27.27,17.05,22.95,,,15.65,25.48,21.12,23.88,19.75,20.33,24.61,20.6,18.51,24.18,10.64,26.5,,21.01,,,Ccdc86,"coiled-coil domain containing 86"
|
223
|
+
108679,39.49,46.77,39.56,58.02,54.29,33.78,69.42,37.14,40.55,46.07,,,41.67,44.55,46.57,48.51,43.16,58.85,43.43,39.86,36.15,42.62,42.71,39.3,,70.81,,,Cops8,"COP9 signalosome subunit 8"
|
224
|
+
108682,4.81,6,5,4.54,3.04,6.88,5.1,4.62,5.43,5.25,,,5.95,7.27,6.2,4.78,5.37,4.16,5.67,5,5.11,4.57,7.13,4.14,,5.63,,,Gpt2,"glutamic pyruvate transaminase (alanine,glutamic pyruvate transaminase (alanine,glutamic pyruvate transaminase (alanine,"
|
225
|
+
108686,4.65,2.48,2.96,1.38,3.12,5.21,1.03,4.7,3.29,4.15,,,4.49,5,2.11,4.4,3.67,2.05,3.97,5.82,4.02,3.03,4.42,5.58,,1.13,,,Ccdc88a,"coiled coil domain containing 88A"
|
226
|
+
108687,10.57,16.3,17.44,20.02,14.37,19,22.33,19.8,18.95,19.69,,,16.88,16.5,18.83,14.44,19.23,17.11,16.99,15.95,17.63,18.9,14.56,16.12,,22.3,,,Edem2,"putative alpha-mannosidase"
|
227
|
+
108689,13.47,14.57,13.92,12.54,14.28,12.69,13.49,13.73,12.29,12.43,,,14.7,13.27,14.63,10.75,11.89,13.47,11.12,11.75,12.66,12.9,18.13,13.19,,12.04,,,Obfc1,"oligonucleotide/oligosaccharide-binding fold,oligonucleotide/oligosaccharide-binding fold,"
|
228
|
+
108699,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0.09,0,0.16,0.28,0,0,0,,0,,,Chn1,"chimerin (chimaerin) 1 isoform 1,chimerin (chimaerin) 1 isoform 1,"
|
229
|
+
108705,47.85,69.93,68.89,74.15,54.06,50.99,67.2,67.09,68.52,64.1,,,61.22,57.54,63.47,63.94,68.57,63.98,72,58.82,56.28,71.68,68.19,61.9,,78.47,,,Pttg1ip,"pituitary tumor-transforming gene 1"
|
230
|
+
108707,5.19,3.5,5.77,3.63,3.32,4.2,3,4.42,2.63,3.39,,,4.37,3.26,3.97,3.58,2.91,2.86,3.24,2.73,3.07,4.49,2.96,3.31,,4.12,,,1810008A18Rik,"hypothetical protein LOC108707,hypothetical protein LOC108707,"
|
231
|
+
108723,10.91,8.21,4.72,3.5,8.82,10.67,3.02,23.5,13.1,2.81,,,11.83,4.08,9.45,15.88,12.07,3.51,8.27,7.99,10.07,11.68,2.18,6.97,,2.26,,,Card11,"caspase recruitment domain family, member 11,caspase recruitment domain family, member 11,"
|
232
|
+
108735,0.78,1.24,1.1,0.99,0.73,1,0.92,1.05,0.84,0.68,,,0.9,0.45,0.7,0.61,0.81,1.13,0.77,0.96,1.17,0.99,0.85,0.76,,1.06,,,Sft2d2,"SFT2 domain containing 2"
|
233
|
+
108737,23.63,16.83,12.31,12.77,9.62,15.86,11.13,18.95,13.15,16.44,,,17.41,14.62,15.4,7.36,18.88,8.21,14.18,16.23,17.04,15.26,21.59,15.19,,12.61,,,Oxsr1,"oxidative-stress responsive 1,oxidative-stress responsive 1,"
|
234
|
+
108755,0.35,0.87,0.72,0.94,2.11,0.27,1.77,0.55,0.92,0.99,,,0.43,1,0.43,0.59,0.7,1.41,0.99,0.83,0.57,0.52,0.77,0.71,,1.24,,,Lyrm2,"LYR motif containing 2"
|
235
|
+
108760,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0.01,0,0,0,0,0,0,,0,,,Galntl1,"UDP-N-acetyl-alpha-D-galactosamine:polypeptide,UDP-N-acetyl-alpha-D-galactosamine:polypeptide,UDP-N-acetyl-alpha-D-galactosamine:polypeptide,"
|
236
|
+
108767,22.91,16.83,14.32,11.93,14.72,20.46,12.87,14.47,21.25,11.59,,,16.62,14.51,17.75,13.85,19.18,19.9,20.15,21.59,18.24,16.16,19.5,16.66,,15.79,,,Pnrc1,"proline-rich nuclear receptor coactivator 1"
|
237
|
+
108800,0.16,0.07,0,0.07,0.07,0.15,0.02,0.13,0.11,0.25,,,0.06,0.08,0.11,0.1,0.06,0.01,0.18,0.2,0.14,0.2,0.18,0.16,,0.04,,,Ston2,"stonin 2"
|
238
|
+
108802,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0.09,0,0,0,0,0,0,,0,,,Calr4,"calreticulin 4,calreticulin 4,"
|
239
|
+
108803,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,4933402P03Rik,"hypothetical protein LOC108803"
|
240
|
+
108811,2.95,2.81,2.1,0.65,0.75,2.53,3.43,3.45,2.89,1.84,,,3.2,1.58,1.63,3.37,2.06,2.01,1.07,1.77,2.09,2.05,1.37,1.67,,0.64,,,Ccdc122,"coiled-coil domain containing 122"
|
241
|
+
108812,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0.06,0,0,0,0,0,0,,0,,,Als2cr12,"amyotrophic lateral sclerosis 2 (juvenile)"
|
242
|
+
108816,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,n/a,n/a
|
243
|
+
108837,9.97,7.72,6.16,6.9,7.61,9.94,5.61,10.95,6.47,9.75,,,9.68,8.12,9.51,6.65,9.69,6.11,7.61,8.86,8.64,8,10.85,8.86,,5.53,,,Ibtk,"inhibitor of Bruton's tyrosine kinase,inhibitor of Bruton's tyrosine kinase,"
|
244
|
+
108841,1.78,3.35,3.46,2.88,2,2.78,3.45,3.52,4.33,4,,,2.45,2.79,2.13,2.32,3.41,1.74,2.91,2.68,2.1,2.46,3.33,2.68,,4.45,,,Rdh13,"retinol dehydrogenase 13 (all-trans and 9-cis),retinol dehydrogenase 13 (all-trans and 9-cis),"
|
245
|
+
108853,2.64,2.39,0.69,1.77,4.85,3.01,3.39,2.2,2.73,2.5,,,3.12,3.57,2.87,2.77,3.08,3.34,3.98,3.12,4.07,2.7,2.8,2.98,,3.2,,,Mtrf1l,"mitochondrial translational release factor"
|
246
|
+
108888,13.21,15.83,10.69,13.55,14.17,14.82,10.84,15.06,16.2,17.48,,,14.87,16.36,13.02,15.29,13.6,11.65,14.47,11.92,13.55,15.69,13.44,16.07,,11.28,,,Atad3a,"AAA-ATPase TOB3"
|
247
|
+
108897,0,0,0.18,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0.02,0,,0,,,2810003C17Rik,"ionized calcium binding adapter molecule 2"
|
248
|
+
108899,0.42,0.2,0.1,0.05,0.11,0.23,0.08,0.2,0.14,0.1,,,0.44,0.12,0.07,0.01,0.18,0.01,0.18,0.18,0.13,0.05,0.2,0.2,,0.19,,,2700081O15Rik,"hypothetical protein LOC108899,hypothetical protein LOC108899,"
|
249
|
+
108900,2.24,2.3,3.34,1.89,3.61,2.87,3.73,1.15,2.23,2.08,,,2.62,2.47,3.2,3.49,1.72,3.98,1.04,2.44,2.84,1.3,3.08,2.06,,3.62,,,2700049P18Rik,"hypothetical protein LOC108900"
|
250
|
+
108902,17.68,20.65,20.42,19.62,18.96,16.98,16.8,18.81,18.85,18.19,,,17.01,18.06,19.11,17.49,21.58,23.62,18.65,17.92,18.22,21.8,22.78,18.89,,22.12,,,B3gnt1,"beta-1,3-N-acetylglucosaminyltransferase bGnT-6,beta-1,3-N-acetylglucosaminyltransferase bGnT-6,"
|
251
|
+
108903,36.48,35.95,29.82,32.23,23.83,32.08,30.11,33.22,27.06,28.07,,,37.58,28.51,38.59,21.34,30.26,22.56,27.13,28.43,29.64,32.79,33.23,25.71,,37,,,Tbcd,"tubulin-specific chaperone d"
|
252
|
+
108907,33.38,18.88,13.76,7.19,13.89,17.86,7.75,16.32,10.34,12.87,,,25.52,20.23,24.28,24.38,17.71,24.13,8.26,14.27,26,13.35,37.65,16.09,,10.69,,,Nusap1,"nucleolar and spindle associated protein 1"
|
253
|
+
108909,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,2610208M17Rik,"axin interaction partner and dorsalization,axin interaction partner and dorsalization,axin interaction partner and dorsalization,"
|
254
|
+
108911,83.28,90.65,79.06,72.35,71.22,89.45,51.65,86.48,63.31,60.2,,,99.88,74.93,81.7,59.96,69.62,51.69,63.99,59.23,87.37,80.58,93.72,79.49,,63.27,,,Rcc2,RCC1-like
|
255
|
+
108927,0.15,0.26,0.02,0.33,0.4,0,0.42,0.37,0.04,0.22,,,0,0.21,0.79,0.18,0.2,0.24,0.19,0.08,0.16,0.12,0.08,0.05,,0,,,Lhfp,"lipoma HMGIC fusion partner"
|
256
|
+
108943,1.68,2.2,0.72,1.52,1.66,1.69,1.37,1.65,1.57,1.45,,,2.73,1.92,1.92,1.72,2.13,1.81,2.27,1.84,2.54,2.02,2.59,2.45,,1.75,,,Rg9mtd2,"RNA (guanine-9-) methyltransferase domain,RNA (guanine-9-) methyltransferase domain,"
|
257
|
+
108946,3.04,3.87,4.38,2.7,2.68,4.11,2.23,3.99,4.95,4.86,,,3.51,4.45,3.68,2.83,4.99,2.22,3.43,3.71,3.92,4.01,4.69,3.94,,2.2,,,Zzz3,"zinc finger, ZZ domain containing 3"
|
258
|
+
108954,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Ppp1r15b,"protein phosphatase 1, regulatory subunit 15B"
|
259
|
+
108956,0,0.03,0,0,0.26,0,0,1.28,0.02,0.2,,,0,0,0,0.38,0.09,0.16,0.44,0,0.44,0.27,0.06,0,,0,,,2210421G13Rik,"hypothetical protein LOC108956"
|
260
|
+
108958,4.08,3.81,4.15,3.73,4.76,4.26,4.74,4.21,4.88,5.28,,,4.89,4.89,4.03,3.7,4.76,3.79,5.28,4.68,4.71,4.93,5.59,4.82,,4.72,,,5730472N09Rik,"hypothetical protein LOC108958,hypothetical protein LOC108958,"
|
261
|
+
108960,12.53,14.13,18.6,15.68,15.85,15.96,21.73,20.96,15.88,21.01,,,11.08,15.97,18.46,13.17,16.25,11.49,17.72,19.7,13.87,15.53,9.77,21.02,,16.64,,,Irak2,"interleukin-1 receptor-associated kinase 2,interleukin-1 receptor-associated kinase 2,interleukin-1 receptor-associated kinase 2,"
|
262
|
+
108961,15.59,8.3,6.34,3.17,7.55,12.21,3.23,8.49,6.22,7.42,,,15.73,12.41,10.66,11.51,10.87,8.95,6.59,9.1,15.58,6.36,20.17,8.5,,4.43,,,E2f8,"E2F transcription factor 8,E2F transcription factor 8,"
|
263
|
+
108978,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,4930555G01Rik,"hypothetical protein LOC108978"
|
264
|
+
108989,21.25,14.87,12.73,6.23,14.97,23.71,4.04,20.98,22.79,20.17,,,20.07,24.17,8.92,16.92,16.78,7.55,16.89,24.41,27.18,9.82,15.39,29.01,,6.64,,,Tpr,"nuclear pore complex-associated protein Tpr,nuclear pore complex-associated protein Tpr,nuclear pore complex-associated protein Tpr,"
|
265
|
+
108995,0.05,0.04,0,0.03,0.74,0.17,0,0.26,0.03,0.13,,,0.13,0.26,0.05,0.21,0.15,0.13,0.15,0.06,0.05,0.2,0.23,0.13,,0.24,,,Tbc1d10c,"TBC1 domain family, member 10c,TBC1 domain family, member 10c,"
|
266
|
+
109006,14.9,12.73,9.88,22.82,25.13,8.05,12.22,19,17.89,9.26,,,15.81,9.13,18.29,12.24,15.51,12.34,8.85,15.15,18.29,17.86,7.57,15.43,,14.19,,,Ciapin1,"cytokine induced apoptosis inhibitor 1"
|
267
|
+
109019,14.64,10.45,15.86,15.4,15.45,10.96,14.38,22.92,12.49,11.16,,,11.18,9.44,15.46,14.85,11.84,17.33,16.67,14.82,15.32,17.23,14.66,14.23,,14.9,,,Obfc2a,"oligonucleotide/oligosaccharide-binding fold,oligonucleotide/oligosaccharide-binding fold,"
|
268
|
+
109032,20.66,15.59,14.27,17.4,25.88,27.13,24.46,24.32,17.18,13.9,,,16.62,19.86,25.17,26.47,18.93,15.92,17.37,19.49,23.1,18.05,8.76,24.7,,19.91,,,Sp110,"Sp110 nuclear body protein,Sp110 nuclear body protein,Sp110 nuclear body protein,"
|
269
|
+
109042,0,0.68,1.01,0.27,1.83,0.15,0.7,0.17,0.63,0.1,,,0.54,0.49,0,0.45,0.09,1.22,0.5,0.48,0.1,0.4,1.07,0.81,,0.35,,,Prkcdbp,"protein kinase C, delta binding protein"
|
270
|
+
109050,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,6530418L21Rik,"hypothetical protein LOC109050,hypothetical protein LOC109050,"
|
271
|
+
109052,0.01,0,0,0,0,0.02,0,0,0,0.01,,,0,0.01,0,0.01,0.04,0.01,0.03,0.01,0.01,0.01,0.02,0.02,,0.02,,,Krt75,"keratin 75"
|
272
|
+
109054,30.75,33.94,27.82,26.51,36.7,22.29,37.06,27.42,27.56,22.31,,,20.07,25.45,31.64,45.33,28.99,54.52,26.47,24.85,25.1,25.91,29.71,21.18,,42.75,,,Pfdn4,"prefoldin 4"
|
273
|
+
109065,5.07,5.84,6.56,4.8,5.46,4.54,4.5,5.06,5.27,5.49,,,5.46,5.57,5.68,6.17,4.95,5.81,3.79,3.91,5.17,4.42,7.23,4.91,,5.24,,,1110034A24Rik,"hypothetical protein LOC109065"
|
274
|
+
109075,14.27,20.39,24.69,23.81,35.89,14.36,28.73,17.01,19.75,16.42,,,15.26,19.58,16,20.55,17.67,25.61,16.32,16.59,16.83,18.91,14.78,15.99,,29.5,,,Exosc4,"exosome component 4"
|
275
|
+
109077,14.63,14.28,14.25,13.75,10.99,11.4,9.86,12.49,9.73,12.47,,,14.39,10.83,13.01,9.89,13.42,11.88,13.2,12.2,13.49,11.75,13.75,12.72,,11.81,,,Ints5,"integrator complex subunit 5"
|
276
|
+
109079,13.68,10.53,9.25,8.98,8.86,8.64,5.7,9.17,7.01,8.7,,,11.97,10.53,10.85,9.86,10.13,10.28,7.81,8.6,10.63,7.98,13.67,7.94,,8.45,,,Sephs1,"selenophosphate synthetase 1,selenophosphate synthetase 1,"
|
277
|
+
109082,21.44,22.71,19.52,19.91,22.74,26.81,20.5,22.92,23.3,14.64,,,23.03,23.24,22.89,27.95,22.64,21.91,20.11,22.41,22.33,20.87,14.64,24.52,,23.92,,,Fbxw17,"F-box and WD-40 domain protein 17"
|
278
|
+
109093,12.7,15.09,12.64,15.91,16.75,8.94,13.28,14.63,13.84,15.24,,,13.29,12.62,12.85,16.29,12.59,13.25,13.19,12.43,10.56,15.07,13.9,12.11,,18.91,,,Rars2,"arginyl-tRNA synthetase-like"
|
279
|
+
109108,13.81,14.75,14.59,13.81,11.63,14.2,14.04,15.16,15.19,15.7,,,14.3,16.32,15.48,14.08,16.37,12.54,14.41,14.86,13.02,13.68,12.82,14.03,,16.86,,,Slc30a9,"solute carrier family 30 (zinc transporter),,solute carrier family 30 (zinc transporter),,solute carrier family 30 (zinc transporter),,"
|
280
|
+
109113,44.3,39.61,39.56,42.76,25.93,40.93,34.01,45.4,38.07,37.52,,,44.92,38.96,38.09,40.57,43.58,33.18,46.14,38.45,38.28,45.12,45.17,36.75,,30.02,,,Uhrf2,"ubiquitin-like, containing PHD and RING finger,ubiquitin-like, containing PHD and RING finger,"
|
281
|
+
109115,10.51,10.13,11.72,10.6,10.88,7.15,11.69,11.12,9.74,10.49,,,9.1,9.87,7.69,12.18,8.55,12.63,12.11,9.33,8.44,10.16,10.43,11.47,,11.64,,,Supt3h,"suppressor of Ty 3 homolog"
|
282
|
+
109129,45.45,63.88,50.6,71.04,80.37,48.71,81.39,54.01,52.41,57.54,,,54.08,60.31,62.65,74.14,50.34,78.01,48.14,50.33,53.09,50.83,54.88,49.58,,85.41,,,2010311D03Rik,"hypothetical protein LOC109129"
|
283
|
+
109135,1.39,1.11,0.34,0.56,0.82,1.04,0.4,1.2,0.63,0.85,,,1.52,1.11,0.83,0.86,1.03,0.57,0.84,0.68,0.89,0.88,0.81,1.33,,0.38,,,Plekha5,"phosphoinositol 3-phosphate-binding protein-2,phosphoinositol 3-phosphate-binding protein-2,phosphoinositol 3-phosphate-binding protein-2,phosphoinositol 3-phosphate-binding protein-2,phosphoinositol 3-phosphate-binding protein-2,"
|
284
|
+
109136,2.45,2.38,1.87,2.37,3.36,1.5,3.22,1.7,2.46,2.5,,,1.83,2.31,2.32,3.16,1.52,3.03,2.33,1.86,2.02,2.27,1.37,1.79,,3.01,,,Mmaa,"methylmalonic aciduria type A"
|
285
|
+
109145,10.03,18.6,12.45,13.47,17.31,13.66,18.46,15.23,11.33,12.61,,,19.46,15.99,17.91,18.31,15.04,20.7,12.52,13.92,21.58,15.69,18.69,13.6,,22.11,,,Gins4,SLD5
|
286
|
+
109151,1.83,2.1,1.53,1.35,1.75,2.83,0.9,3.04,2.64,3.02,,,2.79,2.73,1.66,1.64,3.26,1.13,1.98,3.71,2.55,1.98,2.41,2.97,,1.03,,,Chd9,"chromodomain helicase DNA binding protein 9,chromodomain helicase DNA binding protein 9,"
|
287
|
+
109154,68.81,54.81,42.44,46.78,40.36,63.99,36.64,51.31,32.27,48.7,,,64.61,48.84,56.15,33.67,48.34,39.1,44.27,44.94,67.86,45.06,63.62,38.73,,37.85,,,2410014A08Rik,"hypothetical protein LOC109154"
|
288
|
+
109161,9.57,10.41,9.52,9.95,6.85,9.29,9.35,8.98,9.04,10.07,,,9.06,9.87,8.64,11.49,9.21,10.37,9.71,9.01,7.86,8.68,9.54,9.33,,10.64,,,Ube2q2,"ubiquitin-conjugating enzyme E2Q 2"
|
289
|
+
109168,4.02,6.33,5.18,5.66,2.46,6.23,5.26,5.88,3.72,4.39,,,6.26,4.52,6.38,3.25,5.53,2.68,3.06,5.29,4.96,5.26,7.96,5.49,,4.76,,,5730596K20Rik,"hypothetical protein LOC109168"
|
290
|
+
109205,0,0.06,0,0.02,0.04,0,0,0.03,0,0.04,,,0.03,0,0.02,0,0.01,0.01,0,0,0.09,0.01,0.02,0.08,,0,,,Sobp,"sine oculis-binding protein homolog,sine oculis-binding protein homolog,"
|
291
|
+
109212,40.18,27.67,21.63,13.74,24.53,26.02,14.05,15.85,15.12,12.29,,,36.77,24.27,27.2,31.67,25.85,49.13,13.26,15.98,39.43,17.81,45.94,16.91,,22.78,,,6720460F02Rik,"hypothetical protein LOC109212"
|
292
|
+
109218,0,0,0,0.08,0,0,0,0.04,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Tmem139,"hypothetical protein LOC109218"
|
293
|
+
109225,55.15,253.8,243.69,323.83,223.14,202.69,614.56,211.98,416.25,247.56,,,110.75,132.82,305.54,582.38,145.64,226.68,259.92,153.4,127.28,342.97,109.95,176.22,,243.65,,,Ms4a7,"membrane-spanning 4-domains, subfamily A, member"
|
294
|
+
109229,16.8,13.36,20.54,16.24,11.23,11.71,24.54,13.53,11.66,13.24,,,12.87,10.74,14.46,12.88,14.69,16.03,16.01,14.14,14.09,15.8,15.09,11.22,,20.69,,,Ppp4r1l,"protein phosphatase 4, regulatory subunit 1-like"
|
295
|
+
109232,3.81,12.41,5.4,6.59,6.87,5.27,7.34,4.38,5.83,6.79,,,6.11,8.39,6.89,8.22,6.33,7.52,6.46,7.01,8.88,7.89,9.21,4.05,,10.99,,,Sccpdh,"saccharopine dehydrogenase (putative)"
|
296
|
+
109241,0.99,1.05,0.62,0.76,1,1.6,0.85,1.38,1.17,1.54,,,1.32,1.36,0.93,0.52,1.57,0.4,1.32,1.44,1.25,1.13,1.09,1.12,,0.47,,,Mbd5,"methyl-CpG binding domain protein 5,methyl-CpG binding domain protein 5,methyl-CpG binding domain protein 5,"
|
297
|
+
109242,2.15,1.31,1.06,0.85,1.03,1.81,0.22,1.36,0.68,1.3,,,2.36,1.65,1.69,1.09,1.73,1.05,0.87,1.38,2.1,1.25,2.89,1.19,,0.48,,,Kif24,"kinesin family member 24,kinesin family member 24,"
|
298
|
+
109245,0.32,2.94,0,5.45,2.92,0.84,1.81,3.09,1.73,1.03,,,2.72,3.28,1.33,3.26,1.24,0.39,3.75,1.49,0.77,5.93,3.53,5.45,,2.02,,,Lrrc39,"leucine rich repeat containing 39 isoform 1"
|
299
|
+
109246,0.18,0.23,0.24,0.23,0.13,0.18,0,0.15,0.07,0.18,,,0.13,0.24,0.1,0.04,0.3,0.17,0.23,0.22,0.52,0.07,0.28,0.13,,0,,,Tspan9,"tetraspan NET-5,tetraspan NET-5,tetraspan NET-5,"
|
300
|
+
109254,0,0,0.04,0,0,0,0,0,0,0,,,0,0.07,0,0,0.04,0,0,0,0,0,0,0,,0,,,9530008L14Rik,"hypothetical protein LOC109254,hypothetical protein LOC109254,"
|
301
|
+
109263,3.8,3.76,2.1,3.58,2.84,4.06,2.4,4.39,3.94,4.65,,,4.35,3.73,3.41,2.52,4.23,2.31,3.67,4.77,4.21,3.93,5.06,4.99,,1.7,,,Rlf,"rearranged L-myc fusion sequence,rearranged L-myc fusion sequence,rearranged L-myc fusion sequence,"
|
302
|
+
109264,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Me3,"malic enzyme 3, NADP(+)-dependent,,malic enzyme 3, NADP(+)-dependent,,malic enzyme 3, NADP(+)-dependent,,"
|
303
|
+
109270,0.14,0.4,0,0.19,0.13,1.18,0.6,0.08,0,0.04,,,0.8,0.47,0.2,0.07,0.11,0.08,0.31,0.14,0.1,0.35,0.07,0.71,,0.04,,,Arhgap8,"Rho GTPase activating protein 8,Rho GTPase activating protein 8,Rho GTPase activating protein 8,"
|
304
|
+
109272,0,0,0,0,0.03,0,0,0,0,0,,,0.07,0,0,0,0.02,0,0,0,0,0,0,0,,0,,,8030451F13Rik,"myosin binding protein C, slow type,myosin binding protein C, slow type,"
|
305
|
+
109275,8.01,8.86,8.05,8.26,8.53,8.18,7.6,7.57,8.58,8.23,,,9.44,7.68,7.63,8.3,7.57,9.57,9.95,7.97,9.79,8.98,6.78,8.15,,8.47,,,Actr5,"ARP5 actin-related protein 5 homolog,ARP5 actin-related protein 5 homolog,"
|
306
|
+
109280,0,0,0,0,0,0,0,0,0,0.03,,,0,0,0,0,0.08,0,0.03,0,0,0.04,0,0,,0,,,9330176C04Rik,"hypothetical protein LOC109280"
|
307
|
+
109284,50.62,46.35,46.93,55.66,60.05,45.34,42.92,38.97,43.77,37.85,,,51.5,40.12,47.5,41.82,42.38,46.8,46.87,41.98,44.53,49.38,44.15,43.71,,57.65,,,C030046I01Rik,"hypothetical protein LOC109284"
|
308
|
+
109294,0.01,0,0,0,0.01,0.04,0.01,0,0.03,0,,,0.04,0,0.01,0.03,0.01,0.03,0,0,0.01,0,0,0,,0.01,,,C030045D06Rik,"hypothetical protein LOC109294"
|
309
|
+
109305,29.26,36.24,40.02,32.96,37.26,26.84,32.87,30.79,30.65,28.78,,,36.18,33.18,40.84,34.89,31.37,37.99,32.53,32.52,32.47,34.22,28.92,28.58,,40.73,,,Orai1,"transmembrane protein 142A,transmembrane protein 142A,"
|
310
|
+
109314,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,A030004J04Rik,"hypothetical protein LOC109314"
|
311
|
+
109323,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,C1qtnf7,"C1q and tumor necrosis factor related protein 7,C1q and tumor necrosis factor related protein 7,"
|
312
|
+
109331,19.9,14.47,12.48,10.46,13.79,15.69,7.09,15.43,17.34,17.71,,,16.33,15.56,13.66,14.82,16.35,10.67,15.16,14.16,17.33,12.89,14.82,18.07,,9.24,,,Rnf20,"ring finger protein 20,ring finger protein 20,"
|
313
|
+
109332,0.14,0.08,0,0.05,0.14,0.08,0.22,0.6,0.05,0.06,,,0.14,0.05,0.12,0,0.05,0.13,0.05,0.11,0.05,0.09,0.06,0.08,,0.09,,,Cdcp1,"CUB domain-containing protein 1,CUB domain-containing protein 1,"
|
314
|
+
109333,7.43,7.27,4.9,5.57,4.99,9.41,6.49,9.9,7.64,9.99,,,9,8.19,7.86,6.29,9.16,4.9,7.16,9.17,8.62,7.96,8.56,8.67,,6.21,,,Pkn2,"protein kinase N2,protein kinase N2,"
|
315
|
+
109342,0,0,0,0,0,0,0,0,0.05,0,,,0,0.03,0.05,0,0,0,0,0,0,0,0.02,0.08,,0.17,,,Slc5a10,"solute carrier family 5 (sodium/glucose,solute carrier family 5 (sodium/glucose,"
|
316
|
+
109346,2.95,2.81,2.39,2.83,5.62,2.22,3.62,2.9,2.9,3.02,,,3.23,2.49,3.01,3.7,2.69,5.25,1.92,2.09,3.48,2.16,2.72,2.79,,5.57,,,Ankrd39,"ankyrin repeat domain 39"
|
317
|
+
109349,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,C630035N08Rik,"hypothetical protein LOC109349"
|
318
|
+
109359,29.54,31.02,29.09,29.62,19.34,27.25,26.35,31.62,28.77,31.68,,,26.04,27.48,30.09,25.17,30.62,25.58,37.53,33.28,25.64,34.08,31.09,31.23,,28.43,,,C430003P19Rik,"hypothetical protein LOC109359,hypothetical protein LOC109359,"
|
319
|
+
109552,56.27,45.76,36.91,49.02,58.03,31.26,58.47,41.91,43.71,38.04,,,39.93,39.49,42.09,46.48,38.69,61.83,37.9,40.92,38.82,37.01,39.84,36,,60.42,,,Sri,"sorcin isoform 1"
|
320
|
+
109575,0,0,0,0.15,0,0,0,0.14,0,0.03,,,0,0,0.1,0,0,0,0,0.02,0,0,0,0.16,,0,,,Tbx10,"T-box 10 isoform 1"
|
321
|
+
109593,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Lmo3,"LIM domain only 3,LIM domain only 3,"
|
322
|
+
109594,1.44,0.29,0,0.46,0,0.1,0.05,0.09,0.28,0.37,,,0.59,0.34,0.16,0.47,0.65,0.48,0.2,0.06,1.27,0.33,0.32,0.1,,0.93,,,Lmo1,"LIM domain only 1"
|
323
|
+
109624,0.24,0.06,0.35,0.13,0.3,0.21,0.16,0.36,0.07,0.27,,,0.38,0.23,0.22,0.2,0.13,0.15,0.13,0.16,0.2,0.35,0.1,0.08,,0.03,,,Cald1,"caldesmon 1"
|
324
|
+
109637,0.92,0.03,0,0.08,0,0.61,0,0.08,0.17,0.52,,,0.05,0.2,0,0.11,0.25,0.11,0.18,0.32,0.12,0.12,0.24,0.09,,0.3,,,Upk1a,"uroplakin 1A,uroplakin 1A,"
|
325
|
+
109648,1171.23,771.99,1289.35,1663.19,1628.95,856.49,2315.92,1825.82,1347.59,1186.82,,,627.45,952.99,1281.94,1116.12,1016.32,1699.46,1142.85,946.81,666.24,1076.77,385.55,1298.5,,1542.05,,,Npy,"neuropeptide Y"
|
326
|
+
109652,0.6,0.88,0.85,0.05,1.56,0.56,1.71,0.94,0.52,0.63,,,0.43,1.39,1.61,2.68,1.17,2.15,0.25,1.98,1.5,0.96,1.63,1.89,,2.33,,,Acy1,"aminoacylase 1"
|
327
|
+
109658,20.9,22.98,16.05,15.98,13.75,23.68,15.36,22.42,20.03,22.89,,,25.6,21.7,22.4,18.11,22.76,15.43,21.98,22.59,22.99,21.81,25.14,23.44,,15.85,,,Txlna,"taxilin alpha,taxilin alpha,"
|
328
|
+
109660,0,0.1,0,0,0,0,0,0.13,0.14,0,,,0.21,0.13,0,0,0.07,0,0,0.04,0.1,0.04,0,0.52,,0.13,,,Ctrl,chymotrypsin-like
|
329
|
+
109663,0,0,0,0.1,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Hoxc11,"homeobox C11"
|
330
|
+
109672,128.29,168.71,224.15,156.6,215.57,133.13,188.13,185.07,181,132.51,,,148.8,170.87,166.07,241.91,161.31,311.4,159.99,162.61,185.37,149.35,163.42,143.88,,227.93,,,Cyb5,"cytochrome b-5"
|
331
|
+
109674,12.64,13.13,12.78,11.98,15.55,16.98,9.8,17,14.38,14.69,,,15.31,16.03,16.74,12.28,15.44,12.63,14.36,12.99,14.81,13.86,15.25,15.81,,12.85,,,Ampd2,"adenosine monophosphate deaminase 2 (isoform L),adenosine monophosphate deaminase 2 (isoform L),adenosine monophosphate deaminase 2 (isoform L),"
|
332
|
+
109676,1.1,0.44,0.97,0.6,1.07,1,0.27,0.51,0.23,0.29,,,1.16,0.69,0.18,2.12,0.51,0.14,0.4,0.27,1.14,0.69,0.14,0.23,,0.07,,,Ank2,"ankyrin 2, brain isoform 3"
|
333
|
+
109685,0.34,0.14,0,0.1,0.06,0.06,0.11,0,0.23,0.15,,,0.08,0.09,0.18,0.3,0.15,0,0.46,0.24,0.15,0.17,0.16,0.38,,0.13,,,Hyal3,"hyaluronoglucosaminidase 3"
|
334
|
+
109689,35.64,36.28,23.17,22.59,19.3,40.58,16.88,38.11,32.47,37.12,,,50.2,29.82,42.2,19.92,33.59,22.93,31.41,36.96,38.03,32.69,43.86,30.58,,21.83,,,Arrb1,"arrestin, beta 1 isoform A"
|
335
|
+
109697,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Cpa1,"carboxypeptidase A1"
|
336
|
+
109700,0.06,0,0.05,0.06,0.01,0.1,0,0.01,0.12,0.01,,,0.01,0.03,0,0.01,0.04,0.02,0.02,0.03,0.07,0.03,0.14,0.07,,0,,,Itga1,"integrin alpha 1,integrin alpha 1,"
|
337
|
+
109711,71.45,63.55,78.92,49.59,58.76,62.94,44.43,98.31,61.27,68.94,,,80.8,68.71,52.31,59.11,69.01,54.99,75.75,73.97,70.17,86.1,72.68,87.21,,42.6,,,Actn1,"actinin, alpha 1,actinin, alpha 1,"
|
338
|
+
109731,0,0,0,0.14,0,0.1,0.05,0.02,0.26,0,,,0,0,0,0,0,0,0.07,0,0,0.05,0,0,,0,,,Maob,"amine oxidase (flavin-containing)"
|
339
|
+
109754,154.44,109.54,122.34,104.12,103.61,132.78,99.98,108.43,117.77,127.13,,,135.58,136.84,109.33,123.72,114.88,116.74,137.24,133.29,121.51,133.06,125.21,152.53,,112.74,,,Cyb5r3,"diaphorase 1"
|
340
|
+
109778,156.6,121.94,162.42,106.17,217.53,146.49,231.12,134.71,98.32,121.49,,,97.1,171.82,187,237.32,147.12,163.74,90.47,85.96,129.58,149.84,200.22,81.83,,132.79,,,Blvra,"biliverdin reductase A,biliverdin reductase A,"
|
341
|
+
109785,3.95,3.88,4.14,3.88,3.75,3.56,3.42,4.23,3.25,4.29,,,5.34,4.66,3.46,3.28,4.43,3.31,3.78,4.05,4.68,4.42,4.72,3.67,,4.17,,,Pgm3,"phosphoglucomutase 3,phosphoglucomutase 3,phosphoglucomutase 3,"
|
342
|
+
109791,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Clps,"colipase, pancreatic"
|
343
|
+
109801,18.98,10.43,13.06,19.13,5.66,11.66,7.62,13.96,6.76,10.5,,,8.34,9.19,8.13,7.48,6.47,7.25,8.2,6.81,7.35,17.68,8.9,4.45,,11.5,,,Glo1,"glyoxalase 1"
|
344
|
+
109815,72.84,70.03,65.14,86.45,85.84,55.04,80.67,58.7,60.97,55.26,,,55.26,59.16,63.07,68.46,61.71,93.95,63.23,51.37,62.3,62.75,54.88,61.04,,95.14,,,H47,"selenoprotein S"
|
345
|
+
109820,0,0,0,0,0,0,0,0,0,0.06,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Pgc,"progastricsin (pepsinogen C)"
|
346
|
+
109821,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,F11,"coagulation factor XI"
|
347
|
+
109857,6.31,9.24,20.51,11.2,17.7,8.88,12.94,9.64,4.02,5.07,,,9.81,9.56,5.92,12.22,10.83,5.6,6.8,8.19,13.14,8.13,9.47,8.2,,17.02,,,Cbr3,"carbonyl reductase 3"
|
348
|
+
109880,1.6,1.96,1.45,2.32,1.17,2.29,1.37,2.81,2.37,3.16,,,2.6,2.66,2.02,2.06,2.66,1.34,2.67,2.75,2.68,2.59,2.5,2.46,,1.24,,,Braf,"Braf transforming,Braf transforming,Braf transforming,"
|
349
|
+
109889,0.22,0.07,0,0.04,0.09,0.01,0.07,0.12,0.16,0.08,,,0.04,0.03,0.06,0,0.07,0.1,0.12,0.07,0.03,0.04,0.07,0.03,,0.07,,,Mzf1,"myeloid zinc finger 1,myeloid zinc finger 1,myeloid zinc finger 1,"
|
350
|
+
109900,44.24,54.97,54.4,60.32,70.9,49.88,73.58,50.1,58.67,52.74,,,50.91,55.21,48.56,68.72,53.2,64.23,53.56,54.17,56.25,55.9,50.92,45.2,,69.18,,,Asl,"argininosuccinate lyase"
|
351
|
+
109901,1.67,3.48,4.53,2.82,3.24,2.09,2.78,2.1,3.65,0.74,,,2.46,3.1,2.17,3.11,1.84,4.59,2.54,1.62,1.99,4.52,2.51,2.69,,2.42,,,Ela1,"elastase 1, pancreatic"
|
352
|
+
109904,0,0,0,0,0,0,0.04,0.02,0.1,0.01,,,0,0,0,0,0,0,0.02,0,0,0,0,0,,0,,,Mcf2,"mcf.2 transforming,mcf.2 transforming,"
|
353
|
+
109905,30.42,35.35,35.69,33.64,41.66,23.36,30.56,30.39,24.63,25.61,,,28.76,26.6,36.02,42.2,29.25,42.64,27.96,32.51,39.06,28.1,32.28,21.96,,41.49,,,Rap1a,"RAS-related protein-1a"
|
354
|
+
109910,36.41,30.54,26.1,22.39,20.88,32.42,17.15,31.67,30.17,30.83,,,35.28,33.45,31.98,25.88,34.58,21.81,32.6,33.16,30.42,31.5,36.91,31.87,,17.99,,,Zfp91,"zinc finger protein 91"
|
355
|
+
109929,4.39,3.58,4.67,3.95,2.29,2.97,3.52,4.38,3.64,3.98,,,3.64,3.61,3.61,3.44,4.3,3.39,3.82,3.26,5.16,3.15,4.49,4.34,,4.72,,,Zbtb25,"zinc finger and BTB domain containing 25"
|
356
|
+
109934,69.35,53,59.49,53.37,51.66,74.11,45.56,93.67,64.78,90.53,,,70.52,65.19,49.16,51.31,70.36,41.11,70.44,72.63,65.52,71.31,54.52,77.42,,36.5,,,Abr,"active BCR-related isoform 1"
|
357
|
+
109978,0,0.06,0,0,0,0,0,0,0,0,,,0.02,0,0.05,0,0,0.04,0,0.01,0,0,0,0,,0,,,Art4,"ADP-ribosyltransferase 4"
|
358
|
+
109979,0,0,0,0,0,0.08,0,0.13,0,0,,,0,0.11,0,0,0,0.12,0.1,0,0,0,0.04,0.15,,0.05,,,Art3,"ADP-ribosyltransferase 3,ADP-ribosyltransferase 3,ADP-ribosyltransferase 3,ADP-ribosyltransferase 3,ADP-ribosyltransferase 3,"
|
359
|
+
110006,260.06,294.57,271,343.95,223.64,385.59,340.42,266.38,291.23,332.95,,,368.66,365.26,394.32,289.81,394.45,319.95,364.21,397.6,346.62,387.66,317.44,244.51,,226.98,,,Gusb,"glucuronidase, beta"
|
360
|
+
110012,33.61,42.56,48.34,45.57,73.03,32.89,67.66,30.84,38.49,29.45,,,34.26,38.38,32.12,41.33,27.68,56.47,37.53,28.78,36.11,34.12,31.07,33.4,,58.7,,,Gtrgeo22,"hypothetical protein LOC110012"
|
361
|
+
110033,32.09,22.16,20.54,10.29,23.05,22.17,10.98,17.51,13.25,14.18,,,31.62,24.02,25.45,24.95,20.03,27.15,11.5,16.63,33.37,14.85,34.26,17.78,,19.2,,,Kif22,"kinesin family member 22"
|
362
|
+
110052,61.38,22.97,23.89,14.71,16.48,38.04,10.74,23.02,22.85,26.55,,,38.34,35.03,30.62,29.41,27.94,20.55,19.85,24.25,36.12,22.85,41.21,31.15,,16.9,,,Dek,"DEK oncogene (DNA binding),DEK oncogene (DNA binding),"
|
363
|
+
110058,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Syt17,"synaptotagmin XVII,synaptotagmin XVII,synaptotagmin XVII,synaptotagmin XVII,"
|
364
|
+
110074,26.87,21.62,16.9,13.73,24.63,13.47,14.81,11.1,11.05,11.45,,,21.06,20.56,22.62,26.09,16.77,33.57,9.81,10.81,23.29,12.09,28.38,11.06,,24.11,,,Dut,"deoxyuridine triphosphatase,deoxyuridine triphosphatase,"
|
365
|
+
110075,0,0,0,0,0,0,0,0,0,0.01,,,0,0,0.24,0,0,0,0,0,0,0,0,0,,0,,,Bmp3,"bone morphogenetic protein 3,bone morphogenetic protein 3,"
|
366
|
+
110078,34.26,31.91,26.69,24.9,23.12,31.4,21.41,34.15,28.1,28.13,,,36.85,30.56,32.14,26.71,36.68,23.63,30.5,34.82,32.85,30.62,35.26,30.5,,22.83,,,Pygb,"brain glycogen phosphorylase"
|
367
|
+
110082,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Dnahc5,"dynein, axonemal, heavy chain 5"
|
368
|
+
110094,22.02,25.06,25.41,22.99,23.81,26.8,17.49,27.71,20.98,21.73,,,33.46,25.65,18.17,24.27,24.63,17.12,23.86,27.52,23.64,27.6,26.82,27.31,,19.26,,,Phka2,"phosphorylase kinase alpha 2,phosphorylase kinase alpha 2,phosphorylase kinase alpha 2,"
|
369
|
+
110095,10.67,21.6,18.16,13.56,13.5,20.4,8.02,11.88,21.35,12.97,,,13.74,13.05,19.43,9.92,14.08,13.05,18.8,20.29,16.24,14.05,20.8,15.05,,16.01,,,Pygl,"liver glycogen phosphorylase"
|
370
|
+
110109,33.16,38.08,35.04,29.54,35.06,29.52,23.61,33.55,30.62,34.35,,,31.3,32.1,26.08,29.08,31.39,27.11,37.77,29.13,30.49,33.22,26.82,34.8,,29.91,,,Nol1,"nucleolar protein 1"
|
371
|
+
110115,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Cyp11b1,"cytochrome P450, family 11, subfamily b,"
|
372
|
+
110119,7.09,11.22,9.97,10.77,13.85,8.65,13.18,10.3,10.26,11.72,,,11.28,9.57,10.09,13.18,9.12,11.63,9.72,11.37,11.26,10.94,7.71,10.82,,14.09,,,Mpi,"mannose phosphate isomerase"
|
373
|
+
110135,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,,0,,,Fgb,"fibrinogen, B beta polypeptide"
|
374
|
+
110147,68.55,56.77,44.51,46.96,49.31,66.09,38.91,51.36,49.61,40.57,,,64.12,51.31,51.78,49.08,56.12,45.42,49.06,51.66,62.13,50.8,60.76,54.6,,40.16,,,Ehmt2,"euchromatic histone lysine N-methyltransferase 2,euchromatic histone lysine N-methyltransferase 2,"
|
375
|
+
110157,24.05,29.85,29.03,28.75,27.17,28.5,25.88,32.18,30.42,30.69,,,31.2,30.74,32.62,26.15,29.37,25.09,27.98,28.69,29.77,28.96,29.69,27.36,,27.21,,,Raf1,"protein kinase raf 1,protein kinase raf 1,protein kinase raf 1,"
|
376
|
+
110168,0,0.09,0,0.07,0,0.15,0,0.19,0.1,0.1,,,0.04,0.19,0,0.17,0.07,0,0.1,0,0,0,0.04,0.04,,0,,,Gpr18,"G protein-coupled receptor 18"
|
377
|
+
110172,54.79,58.96,60.95,79.17,61.06,62.44,66.8,54.47,55.38,51.5,,,69.42,53.55,75.5,63.23,57.74,68.3,49.93,48.57,61.73,55.5,49.72,44,,72.57,,,Slc35b1,"solute carrier family 35, member B1"
|
378
|
+
110173,9.97,18.59,12.35,13.67,14.56,14.63,12.69,18.49,14.23,16.23,,,20.48,16.47,20.68,13.14,18.88,14.3,13.67,20.54,15.99,16.15,21.33,17.06,,16.05,,,Manba,"mannosidase, beta A, lysosomal,mannosidase, beta A, lysosomal,mannosidase, beta A, lysosomal,"
|
379
|
+
110187,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0.31,0,0,0,,0,,,Abpg,"androgen binding protein gamma"
|
380
|
+
110196,11.21,27.98,12.13,16.57,16.77,12.76,14.31,13.07,9.22,10.51,,,29.03,16.7,7.62,24.09,15.31,28.3,10.92,14.73,23.27,15.13,36.77,10.05,,15.15,,,Fdps,"farnesyl diphosphate synthetase"
|
381
|
+
0 0.06 NA 0 0 0 0 0.11 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Mal2 MAL2 proteolipid protein
|
382
|
+
213.15 236.88 213.95 213.15 253.49 198 231.56 200.96 255.2 214.04 231.46 NA NA 233.23 241.26 237.53 171.87 237.13 162.3 252.13 284.85 188.76 253.43 220.15 305.52 NA 217.42 NA NA Nckap1l NCK associated protein 1 like,NCK associated protein 1 like,
|
383
|
+
0 0 NA 0 0 0.07 0.04 0 0 0 0 NA NA 0.02 0 0 0 0 0 0.06 0 0 0 0.02 0 NA 0 NA NA Csdc2 RNA-binding protein pippin
|
384
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Krt72 keratin 72
|
385
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Ugt3a1 UDP glycosyltransferases 3 family, polypeptide
|
386
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0.05 0.06 0 0 0 0 0 0 0 NA 0 NA NA 9030619P08Rik RIKEN cDNA 9030619P08
|
387
|
+
3.6 10.04 4.09 3.6 2.36 4.03 6.46 2.26 6.26 3.35 3.97 NA NA 7.91 6.25 5.11 5.51 4.87 3.38 2.31 3.94 8.27 3.64 8.49 4.33 NA 3.07 NA NA Espl1 extra spindle poles-like 1,extra spindle poles-like 1,
|
388
|
+
0 0 NA 0 0.07 0 0.04 0 0 0 0 NA NA 0 0 0 0 0 0.05 0 0.04 0 0.04 0 0.04 NA 0 NA NA AW049604 TAFA5 protein
|
389
|
+
14.53 16.25 17.89 14.53 14.31 11.24 18.06 8.76 17.98 15.71 17.12 NA NA 17.62 16.37 16.27 14.73 18.63 10.76 17.63 16.64 18.54 19.15 20.07 21.54 NA 11.42 NA NA Topors topoisomerase 1-binding RING finger
|
390
|
+
34.65 17.34 32.29 34.65 32.94 29.62 25.76 26.04 22.93 28.84 24.83 NA NA 23.56 29.42 25.75 32.36 28.46 33.97 24.72 26.95 27.29 26.28 24.56 26.48 NA 31.46 NA NA Sharpin SHANK-associated RH domain interacting protein
|
391
|
+
33.58 44.57 40.92 33.58 37 43.32 43.41 34.74 44.54 50.29 48 NA NA 42.12 43.53 38.36 42.62 44.6 38.25 46.03 41.58 39.23 46.83 35.57 45.47 NA 37.77 NA NA Gga1 golgi associated, gamma adaptin ear containing,
|
392
|
+
0 0 NA 0 0 0 0 0 0 0.05 0.01 NA NA 0 0.03 0 0 0.02 0.02 0.02 0 0.05 0.05 0.01 0.04 NA 0 NA NA Prickle1 prickle like 1,prickle like 1,
|
393
|
+
5.69 2.99 4.46 5.69 5.97 5.07 3.54 7.62 3.78 4.75 3.21 NA NA 4.2 3.5 4.92 4.37 3.37 5.35 4.2 3.43 3.3 3.99 3.91 2.88 NA 5.5 NA NA Fbxo4 F-box protein 4
|
394
|
+
4.21 6.34 7.26 4.21 8.28 5.07 6.71 6.5 6.94 11.28 11.96 NA NA 6.98 8.72 6.39 8.14 8.56 4.58 9.06 8.46 7.23 9.58 7.89 7.25 NA 5.41 NA NA AW549877 hypothetical protein LOC106064,hypothetical protein LOC106064,
|
395
|
+
5.38 9.65 6.98 5.38 4.19 4.04 10.21 3.67 6.8 5.08 5.68 NA NA 7.19 7.91 8.05 4.08 8.86 2.48 4.78 6.67 7.69 5.6 7.86 7.25 NA 3.69 NA NA Slc45a4 solute carrier family 45, member 4,solute carrier family 45, member 4,solute carrier family 45, member 4,
|
396
|
+
75.82 79.34 71.02 75.82 88.43 75.67 60.73 86.58 73.15 73.54 72.4 NA NA 64.14 61.04 72.67 54.4 70.42 73.83 81.7 62.48 64.28 72.42 53.01 62.02 NA 86.98 NA NA D15Mgi27 hypothetical protein LOC106073
|
397
|
+
26.64 30.3 31.47 26.64 31.96 18.2 29.9 27.82 29.14 24.1 30.87 NA NA 31.93 29.46 29.56 27.31 32.35 26.58 28.98 33.39 27.24 28.87 36.24 26.21 NA 30.48 NA NA Cggbp1 CGG triplet repeat binding protein 1,CGG triplet repeat binding protein 1,
|
398
|
+
3.98 4.35 8.51 3.98 9.56 8.6 9.47 10.17 9.58 9.08 11.48 NA NA 11.04 10.13 12.77 10.9 12.69 10.54 10.65 11.18 12.17 9.83 10.02 9.87 NA 10 NA NA Txndc11 thioredoxin domain containing 11 isoform 1,thioredoxin domain containing 11 isoform 1,
|
399
|
+
4.9 3.38 5.31 4.9 4.16 5.14 6.74 3.34 5.12 6.18 7.39 NA NA 4.9 6.88 4.5 7.24 5.18 2.15 4.75 5.18 6.02 3.95 4.75 6.36 NA 2.82 NA NA Zc3h7a zinc finger CCCH type containing 7
|
400
|
+
2.73 2.67 2.84 2.73 3.44 1.92 2.36 3.76 3.34 3.18 3.71 NA NA 2.65 4.44 3.04 2.31 3.19 3 3.02 2.39 3.23 3.14 2.64 2.71 NA 4.56 NA NA Qtrtd1 queuine tRNA-ribosyltransferase domain
|
401
|
+
25.35 26.04 23.15 25.35 26.91 20.5 23.4 22.14 24.66 21.79 26.12 NA NA 24.73 24.21 25.12 21.61 24.83 22.53 21.65 21.56 21.11 22 22.93 22.15 NA 29.06 NA NA Rrn3 RRN3 RNA polymerase I transcription factor
|
402
|
+
11.3 14.8 17.73 11.3 14.36 9.13 19.6 9.76 14.67 17.76 16.75 NA NA 19.19 18.63 13.05 14.28 17.66 9.62 19.23 17.31 16.68 17.4 22.4 15.1 NA 11.55 NA NA Osbpl11 oxysterol binding protein-like 11
|
403
|
+
3.34 3.05 6.3 3.34 4.74 4.18 5.18 6.11 7.11 4.54 5.92 NA NA 5.35 6.23 6.48 4.55 6.3 3.45 5.61 6.65 5.09 6.54 5.18 7.29 NA 6.93 NA NA Nsun3 NOL1/NOP2/Sun domain family 3
|
404
|
+
18.46 20.03 23.33 18.46 16.5 25.71 16.02 21.6 16.24 16.13 15.1 NA NA 25.21 22.7 25.86 29.33 16.4 34.99 13.27 15.76 27.82 16.92 29.33 13.43 NA 26.06 NA NA Rfc4 replication factor C (activator 1) 4
|
405
|
+
0 0.06 NA 0 0 0.08 0 0 0 0 0 NA NA 0 0 0 0.08 0 0 0 0.02 0 0 0 0 NA 0 NA NA Ildr1 immunoglobulin-like domain containing receptor
|
406
|
+
0.12 0.01 NA 0.12 0.27 0.35 0.25 0.08 0.37 0.3 0.26 NA NA 0.24 0.3 0.18 0.56 0.29 0.39 0.4 0.25 0.13 0.13 0.44 0.16 NA 0.14 NA NA Ypel1 yippee-like 1,yippee-like 1,
|
407
|
+
0 0 NA 0 0.06 0.43 0.07 0.21 0.03 0 0.05 NA NA 0.14 0.1 0 0 0 0.02 0.04 0.08 0 0.02 0 0 NA 0 NA NA Eaf2 ELL associated factor 2
|
408
|
+
1.19 0.59 1.07 1.19 0.39 0.53 0.75 0.58 0.84 0.51 0.58 NA NA 1.01 0.69 0.85 0.59 0.86 0.71 0.83 1 0.99 0.99 1.04 0.66 NA 0.79 NA NA Srl sarcalumenin,sarcalumenin,
|
409
|
+
0 0 NA 0 0 0 0.04 0 0.07 0 0 NA NA 0 0.11 0 0 0 0 0.05 0 0 0 0.09 0 NA 0 NA NA Osta organic solute transporter alpha
|
410
|
+
11.27 3.87 8.98 11.27 10.6 11.92 7.65 13.05 5.24 8.61 5.25 NA NA 5.25 5.88 5.85 9.59 7.21 10.73 6.74 5.43 7.12 8.72 5.7 5.33 NA 9.98 NA NA n/a n/a
|
411
|
+
33.11 41.59 36.19 33.11 32.53 30.96 41.17 34.07 40.67 41.33 35.15 NA NA 44.05 40.12 34.69 32.85 41.58 34.69 42.24 43.74 42.7 35.65 39.32 40.4 NA 33.61 NA NA Stk38 serine/threonine kinase 38,serine/threonine kinase 38,
|
412
|
+
94.54 89.47 83.36 94.54 73.22 100.37 82.24 90.51 90.04 79.98 67.65 NA NA 83.74 75.9 86.58 98.49 83.21 92.08 101.37 90.16 81.74 86.87 66.89 103.71 NA 70.63 NA NA Gpsm3 G-protein signalling modulator 3 (AGS3-like, C.
|
413
|
+
1.16 0 0.72 1.16 0.62 0.22 1.01 0.28 0.05 0.99 0.32 NA NA 0.11 0.5 0.26 0.9 0.74 0.27 0.49 0.67 1.24 0.51 0.5 0.29 NA 0.55 NA NA AW548124 hypothetical protein LOC106522
|
414
|
+
84.48 64.28 87.5 84.48 79.73 93.77 76.33 71.62 72.99 65.18 66.34 NA NA 91.99 81.89 85.14 98.05 87.43 104.95 77.39 77.93 93.26 87.68 99.88 68.89 NA 85.15 NA NA Gpsn2 glycoprotein, synaptic 2,glycoprotein, synaptic 2,
|
415
|
+
0 0.13 NA 0 0.06 0.14 0 0.47 0.11 0 0.11 NA NA 0.06 0.15 0.42 0.05 0 0.16 0 0.17 0 0.13 0.08 0.13 NA 0 NA NA Ldhal6b lactate dehydrogenase A-like 6B
|
416
|
+
8.28 6.8 8.23 8.28 9.86 9.72 5.61 12.34 6.45 7.01 5.28 NA NA 7.09 4.93 6.44 12.44 6.08 13.03 7.8 6.17 7.48 6.57 5.71 4.83 NA 9.46 NA NA Ppcs phosphopantothenoylcysteine synthetase
|
417
|
+
0 0.11 NA 0 0 0 0 0.18 0.06 0 0 NA NA 0 0 0 0 0 0.04 0.09 0 0 0 0 0 NA 0 NA NA Dlk2 EGF-like-domain, multiple 9,EGF-like-domain, multiple 9,EGF-like-domain, multiple 9,
|
418
|
+
8.95 6.5 13.62 8.95 10.9 7.21 10.67 6.61 8.61 8.82 9.53 NA NA 12.19 7.48 8.28 4.84 9.9 4.29 8.79 8.58 10.15 11.17 15.56 9.07 NA 10.67 NA NA Rab31 Rab31-like
|
419
|
+
58.42 45.11 48.54 58.42 44.17 37.05 61.54 34.68 48.63 59.61 45.17 NA NA 51.32 46.28 46.99 43.44 59.67 46.85 61.59 60.45 54.22 56.27 53.85 50.35 NA 41.71 NA NA Itfg3 integrin alpha FG-GAP repeat containing 3,integrin alpha FG-GAP repeat containing 3,
|
420
|
+
15.05 41.42 25.63 15.05 17.04 24.07 22.98 15.66 16.95 16.96 15.9 NA NA 36.82 31.51 27.45 28.97 28.93 30.14 18.24 18.47 31.34 20.84 45.31 19.74 NA 21.92 NA NA Nrm nurim
|
421
|
+
3.92 4.46 3.99 3.92 2.83 4.53 5.66 2.15 4.43 8.07 6.77 NA NA 4.13 6.32 2.57 7.13 4.55 3.06 7.57 6.05 5.74 4.07 3.22 7.18 NA 1.93 NA NA Ankrd12 ankyrin repeat domain 12,ankyrin repeat domain 12,
|
422
|
+
19.28 19.69 23.29 19.28 20.98 23.54 18.84 21.78 19.01 21.75 22.82 NA NA 18.06 18.56 20.48 17.77 17.81 18.67 23.68 19.87 17.15 20.99 20.24 20.89 NA 20.86 NA NA Trip10 thyroid hormone receptor interactor 10,thyroid hormone receptor interactor 10,thyroid hormone receptor interactor 10,thyroid hormone receptor interactor 10,
|
423
|
+
4.08 4.19 3.65 4.08 2.62 2.33 4.95 2.27 5.14 3.32 4.11 NA NA 6.58 4.92 3.01 2.77 4.14 3.17 3.24 4.22 5.42 4.06 6.45 4.46 NA 1.79 NA NA Ift140 intraflagellar transport 140,intraflagellar transport 140,
|
424
|
+
1.78 1.92 3.78 1.78 2.57 2.62 1.84 1.67 1.4 1.83 1.79 NA NA 2.5 2.59 1.8 1.07 2 2.32 2.62 2.65 2.06 2.77 3.81 2.25 NA 1.82 NA NA AI662250 vimentin-type IF-associated coiled-coil protein
|
425
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0.02 0 0 0 0 0 NA 0 NA NA Cyp4f15 cytochrome P450, family 4, subfamily f,,cytochrome P450, family 4, subfamily f,,
|
426
|
+
145.43 76.8 108.36 145.43 142.49 200.62 65.62 167.37 83.73 128.19 112.65 NA NA 61.9 93.82 83.57 137.29 96.06 157.47 98.15 91.39 95.75 108.95 87.99 81.8 NA 182.62 NA NA AI413582 hypothetical protein LOC106672
|
427
|
+
14.04 6.26 9.03 14.04 8.49 9.83 7.95 9.77 9.12 7.65 6.08 NA NA 8.81 8.45 9.84 10.28 8.01 9.37 8.65 6.83 8.76 8.48 9.73 9.4 NA 7.72 NA NA Rpusd1 RNA pseudouridylate synthase domain containing,RNA pseudouridylate synthase domain containing,
|
428
|
+
0.32 0 0 0.32 0 0 0 0 0 0.04 0 NA NA 0.07 0 0 0.07 0 0.03 0 0 0 0 0 0 NA 0 NA NA AU023871 hypothetical protein LOC106722
|
429
|
+
13.72 12.28 8.53 13.72 10.99 8.38 12.95 8.64 9.62 10.7 10.93 NA NA 10.95 9.63 10.86 10.21 13.14 8.29 12.97 12.36 10.38 12.11 7.34 10.86 NA 9.97 NA NA Ticam1 TICAM-1,TICAM-1,
|
430
|
+
0.51 0 0.33 0.51 0.04 0.4 0.1 0.1 0.12 0.18 0.03 NA NA 0.05 0.03 0.11 0.44 0.04 0.12 0.03 0.08 0.03 0.19 0.16 0.05 NA 0 NA NA Stap2 signal transducing adaptor family member 2
|
431
|
+
1.45 1.79 2.23 1.45 1.68 2 2.85 1.82 3.25 3.21 2.99 NA NA 3.94 2.92 2.46 2.13 2.95 1.79 3.54 2.95 3.45 2.23 2.4 2.94 NA 1.16 NA NA Dhx57 DEAH (Asp-Glu-Ala-Asp/His) box polypeptide 57,DEAH (Asp-Glu-Ala-Asp/His) box polypeptide 57,DEAH (Asp-Glu-Ala-Asp/His) box polypeptide 57,
|
432
|
+
10.52 28.25 16.51 10.52 6.52 14.52 14.99 3.52 9.16 6.31 9.37 NA NA 16.39 14.85 22.57 13.28 10.87 18.32 6.23 9.8 18.78 6.27 19.1 8.53 NA 10.42 NA NA Tcf19 transcription factor 19,transcription factor 19,
|
433
|
+
9.85 15.07 20.94 9.85 12.15 21.54 9.12 19.94 11.32 14.56 18.03 NA NA 19.79 18.25 10.78 21.2 15.79 18.96 15.07 13.13 20.88 10.68 12.76 14.86 NA 23.87 NA NA AI314976 hypothetical protein LOC106821,hypothetical protein LOC106821,hypothetical protein LOC106821,
|
434
|
+
8.97 10.89 9.68 8.97 11.4 7.86 8.3 11.2 8.76 7.49 9.45 NA NA 8.28 7.36 8.18 5.18 9.61 7.76 9.74 7.57 9.68 9.64 9.72 7.71 NA 10.13 NA NA Unc119b unc-119 homolog B
|
435
|
+
0.65 0.19 1.03 0.65 0.82 1.1 0.89 0.65 3.01 0.67 0.94 NA NA 0.62 0.62 0.41 1.46 0.69 0.87 1.09 0.92 0.23 1.35 0.44 1.24 NA 1.68 NA NA Abhd3 abhydrolase domain containing 3
|
436
|
+
53.52 28.94 60.85 53.52 51.88 30.83 39.34 48.37 31.26 39.08 45.18 NA NA 39.57 57.14 60.3 54.41 42.59 47.74 55.54 42.52 54.17 48.28 61.27 40.72 NA 63.42 NA NA Tnfaip8 tumor necrosis factor, alpha-induced protein 8
|
437
|
+
0.09 0.3 NA 0.09 0.46 0.27 1.08 0 0.19 0.5 0.62 NA NA 0.56 1.59 1.22 1.1 0.42 0.29 0.77 0.42 1.51 0.82 0.76 1.04 NA 0.32 NA NA Afap1l1 actin filament associated protein 1-like 1
|
438
|
+
19.9 11.95 16.36 19.9 20.44 19.6 9.5 22.67 11.88 13.09 16.95 NA NA 12.67 12.77 20.24 17.57 9.37 13.81 13.87 8.89 14.16 11.56 8.13 12.05 NA 22.02 NA NA 2010002N04Rik putative small membrane protein NID67
|
439
|
+
9.67 8.03 7.12 9.67 6.38 5.27 9.23 4.61 8.44 8.64 9.6 NA NA 7.36 9.6 6.66 7.87 8.21 5.6 9.54 8.98 8.37 8.9 6.78 10.07 NA 5.71 NA NA A630042L21Rik hypothetical protein LOC106894 isoform 2,hypothetical protein LOC106894 isoform 2,
|
440
|
+
0.39 0.58 1.16 0.39 0.68 0.55 0.86 0.45 1.67 0.9 1 NA NA 0.56 0.76 1.2 1.36 1.06 0.41 0.89 0.75 1.12 1.07 0.63 1.03 NA 0.42 NA NA Kctd1 potassium channel tetramerisation domain,potassium channel tetramerisation domain,potassium channel tetramerisation domain,
|
441
|
+
18.57 19.18 19.01 18.57 22.37 18.92 16.1 17.22 16.98 16.66 16.34 NA NA 18.11 15.76 18.53 17.53 19.21 16.94 20.03 15.82 15.79 19.76 17.03 17.92 NA 21.43 NA NA Slc39a3 solute carrier family 39 (zinc transporter),,solute carrier family 39 (zinc transporter),,solute carrier family 39 (zinc transporter),,
|
442
|
+
10.1 16.71 15.74 10.1 7.31 11.9 14.25 7.24 19.18 11.75 10.82 NA NA 20.26 16.17 18.98 9.52 14.03 8.91 14.96 16.66 18.5 14.61 14.59 16.24 NA 8.49 NA NA Centd3 centaurin, delta 3,centaurin, delta 3,centaurin, delta 3,centaurin, delta 3,
|
443
|
+
49.16 39.27 41.28 49.16 54.75 29.67 41.57 43.08 46.61 35.99 48.06 NA NA 38.76 40.92 40.04 31.02 44.58 29.27 42.45 38.93 33.17 45.1 42.97 42.8 NA 42.34 NA NA Slc39a6 solute carrier family 39 (metal ion
|
444
|
+
4.6 8.21 5.47 4.6 6.24 5.92 4.36 3.51 6.85 8.91 3.84 NA NA 7.55 6.71 7.06 4.54 7.62 5.35 6.38 8.04 5.09 5.04 6.7 7.05 NA 5.28 NA NA Gramd3 GRAM domain containing 3,GRAM domain containing 3,GRAM domain containing 3,
|
445
|
+
26.62 38.85 36.9 26.62 37.39 39.71 26.15 36.25 35.15 30.39 25.39 NA NA 49.12 39.94 36.15 30.88 36.52 43.8 31.46 36.2 33.31 26.91 50.4 25.3 NA 40.34 NA NA Me2 malic enzyme 2, NAD(+)-dependent, mitochondrial
|
446
|
+
12.37 14.94 15.02 12.37 13.82 8.42 17.93 10.66 16.82 18.83 16.22 NA NA 16.51 16.33 15.77 12.91 17.98 9.81 17.14 18.71 15.09 19.85 15.03 18.12 NA 11.89 NA NA Fbxo38 MoKA,MoKA,
|
447
|
+
30.41 36.05 26.63 30.41 24.46 23.89 29.09 19.62 31.35 21.56 26.83 NA NA 36.38 30.45 36.9 21.33 30.71 27.45 27.09 32.28 27.44 30.21 28.48 33.07 NA 24.78 NA NA Lars leucyl-tRNA synthetase
|
448
|
+
31.95 14.49 23.24 31.95 21.75 33.51 12.76 17.19 17.49 14.19 13.71 NA NA 17.11 15.44 18.71 23.77 15.91 28.38 14.75 12.8 19.61 21.75 19.99 14.54 NA 26.34 NA NA Tnfsf5ip1 Clast3 protein
|
449
|
+
0 0 NA 0 0 0 0 0 0.03 0 0.02 NA NA 0 0.03 0 0.01 0.03 0 0 0.04 0.03 0 0.02 0 NA 0 NA NA Lrrtm2 leucine rich repeat transmembrane neuronal 2
|
450
|
+
56.42 26.85 44.77 56.42 48.85 64 31.86 54.87 36.22 37.58 39.35 NA NA 31.75 37.06 43.5 50.18 30.33 50.69 39.78 32.39 33.7 38.26 32.47 38.05 NA 64.2 NA NA Wdr74 WD repeat domain 74
|
451
|
+
14.12 13.24 12.73 14.12 11.65 9.71 12.9 11.36 11.91 10.28 15.93 NA NA 11.34 12.68 12.97 8.31 11.63 7.16 9.93 9.87 9.57 11 9.55 12.51 NA 10.78 NA NA Rrp12 ribosomal RNA processing 12 homolog
|
452
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Cyp2c50 cytochrome P450, family 2, subfamily c,,cytochrome P450, family 2, subfamily c,,
|
453
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Glyat glycine-N-acyltransferase
|
454
|
+
15.06 10.97 15.44 15.06 17.16 19.72 10.14 19.85 7.87 15.34 12.65 NA NA 12.38 12.85 13.62 15.91 11.69 20.1 14.34 9.53 12.93 15.32 13.15 11 NA 18.82 NA NA Gpr137 expressed sequence AI428855
|
455
|
+
6.29 7.67 8.66 6.29 6.9 5.17 9.7 4.09 9.39 8.2 11.08 NA NA 9.23 9.39 5.97 5.97 9.78 4.96 8.56 9.24 7.93 7.9 8.7 7.97 NA 5.23 NA NA Btaf1 BTAF1 RNA polymerase II, B-TFIID transcription
|
456
|
+
0 0 NA 0 0 0.23 0.22 0.48 0.19 0.07 0.05 NA NA 0.06 0.04 0.2 0.11 0 0 0.26 0.17 0.05 0.18 0.08 0 NA 0.21 NA NA Gpr120 G protein-coupled receptor 120
|
457
|
+
6.56 4.13 6.13 6.56 5.11 7.16 4.26 5.91 3.75 6.93 5.79 NA NA 9.12 7.4 3.24 5.36 6.57 6.62 7.42 5.56 6.37 4.87 9.42 5.02 NA 6.34 NA NA Macrod1 LRP16 protein
|
458
|
+
12.59 19.02 23.29 12.59 23.09 22.69 20.26 20.51 10.36 19.2 11.54 NA NA 20.21 12.1 12.46 12.46 11.88 12.47 13.81 11.25 15.5 16.08 14.48 19.05 NA 16.77 NA NA AI837181 basophilic leukemia expressed protein
|
459
|
+
0 0.27 NA 0 0.6 1.39 0.32 1.25 0.17 0.15 0.44 NA NA 0.09 0.59 0.31 0.48 0.14 0.93 0.48 0.34 0.45 0.26 0.43 0.53 NA 0.85 NA NA Kazald1 Kazal-type serine peptidase inhibitor domain 1,Kazal-type serine peptidase inhibitor domain 1,
|
460
|
+
83.79 70.72 74.34 83.79 88.56 99.39 64.52 97.57 63.84 72.06 63.1 NA NA 64.04 70.53 67.82 86.95 67.46 94.82 74.31 60.71 64.73 78.84 62.87 68.51 NA 93.68 NA NA Otub1 otubain 1
|
461
|
+
28.27 36.54 32.87 28.27 29.47 26.35 30.2 22.77 33.22 23.8 24.63 NA NA 42.52 35.94 39.57 28.18 29.08 34.2 27.7 25.8 33.16 27.29 31.16 31 NA 34.6 NA NA Yars tyrosyl-tRNA synthetase
|
462
|
+
23.83 51.98 36.97 23.83 36.85 30.11 32.32 29.39 33.2 17.88 23.38 NA NA 51.23 51.35 50.47 38.88 31.3 57.75 20.95 29.46 54.92 25.24 65.64 23.24 NA 49.34 NA NA Psat1 phosphoserine aminotransferase 1,phosphoserine aminotransferase 1,phosphoserine aminotransferase 1,
|
463
|
+
18.77 15.57 20.74 18.77 19.51 18.56 20.96 18.67 20.06 18.32 19.41 NA NA 21.41 21.86 24.38 17.8 19.58 16.29 23.55 19.77 17.66 19.13 15.37 22.09 NA 17.39 NA NA Vps37c vacuolar protein sorting 37C,vacuolar protein sorting 37C,
|
464
|
+
284.53 232.51 289.34 284.53 332.03 281.9 225.35 357.17 278.82 268.17 205.42 NA NA 259.8 261.06 266.56 343.26 264.4 298.62 273.6 258.54 219.75 301.23 250.61 217.75 NA 340.72 NA NA Lpxn leupaxin
|
465
|
+
0 0.92 NA 0 1.42 2.36 1.15 1.16 1.34 0.76 0.84 NA NA 1.02 0.87 1.21 1.45 0.81 0.79 1.05 1.23 1.23 1.18 1.56 0.67 NA 0.67 NA NA Trpt1 tRNA splicing 2' phosphotransferase 1
|
466
|
+
9.03 10.01 9 9.03 6.97 7.51 11.71 6.45 11.18 9.98 11.41 NA NA 12.17 10.67 9.19 7.04 11.15 5.52 10.09 11.96 11.44 9.44 10.09 11.28 NA 5.7 NA NA Gbf1 golgi-specific brefeldin A-resistance factor 1,golgi-specific brefeldin A-resistance factor 1,golgi-specific brefeldin A-resistance factor 1,golgi-specific brefeldin A-resistance factor 1,
|
467
|
+
0 0.28 NA 0 0.18 0 0 0.06 0.02 0 0.04 NA NA 0.01 0.39 0.06 0.04 0.25 0.02 0.31 0.04 0.4 0 0.46 0 NA 0.03 NA NA Ankrd15 ankyrin repeat domain 15,ankyrin repeat domain 15,ankyrin repeat domain 15,
|
468
|
+
51.96 59.93 61.44 51.96 55.84 38.41 44.12 41.75 54.93 41.28 49.58 NA NA 59.54 45.9 54.89 41.99 52.97 45.49 52.4 51.82 53.4 56.25 68.12 47.51 NA 55.83 NA NA Tm9sf3 transmembrane protein 9 superfamily member 3
|
469
|
+
6.24 8.56 7.45 6.24 6.15 5.78 8.16 4.29 9.08 7.3 7.69 NA NA 10.67 6.95 7.02 5.21 9.53 5.69 6.61 9.32 7.94 7.37 8.31 8.41 NA 5.24 NA NA Pdzd8 PDZ domain containing 8
|
470
|
+
11.89 14.63 15 11.89 11.09 10.27 14.02 9.76 13.66 12.74 13.51 NA NA 14.06 13.33 16.44 11.27 12.64 10.11 13.7 13.43 14.84 13.45 13.62 14.65 NA 10.53 NA NA Exoc6 exocyst complex component 6,exocyst complex component 6,
|
471
|
+
54.07 82.99 64.13 54.07 48.27 53.85 68.24 33.73 64.81 51.53 62.79 NA NA 84.95 68.61 69.49 62.5 66.98 54.21 63.64 72.53 79.24 62.79 99.12 63.4 NA 43.54 NA NA 4632417K18Rik hypothetical protein LOC107373
|
472
|
+
25.34 12.9 25.14 25.34 21.88 23.36 17.9 22.98 18.21 23.08 20.45 NA NA 19.59 22.52 25.36 22.6 18.73 19.37 20.52 22.56 22.81 18.03 18.76 20.65 NA 26.35 NA NA Slc25a45 solute carrier family 25, member 45,solute carrier family 25, member 45,
|
473
|
+
89.53 62.54 78.07 89.53 76.14 124.55 55.7 114.64 58.3 69.49 57.96 NA NA 65.57 69.66 59.99 123.3 48.54 102.73 66.65 57.2 73.75 65.69 59.59 74.82 NA 90.45 NA NA Brms1 breast cancer metastasis-suppressor 1
|
474
|
+
43.63 53.6 52.17 43.63 37.38 39.57 43.31 29.96 35.59 28.56 34.7 NA NA 50.17 48.26 59.46 53.6 39.63 60.31 32.89 34.48 49.35 35.17 68.79 30.3 NA 53.05 NA NA Hat1 histone aminotransferase 1,histone aminotransferase 1,
|
475
|
+
0.12 0.23 NA 0.12 0.25 0.03 0.73 0.11 0.21 0.01 0.4 NA NA 0.07 0.39 0 0.21 0.62 0 0.19 0.07 0.36 0.14 0.61 0.01 NA 0.23 NA NA Unc5a netrin receptor Unc5h1,netrin receptor Unc5h1,
|
476
|
+
0 0.23 NA 0 0.31 0.23 0.44 0.52 0.5 0.35 0.39 NA NA 0.76 0.27 0.16 0.35 0.25 0.23 0.42 0.27 0.28 0.45 0.39 0.35 NA 0.25 NA NA Unc5b unc-5 homolog B,unc-5 homolog B,unc-5 homolog B,
|
477
|
+
1.13 0.66 1.2 1.13 0.8 0.62 1.65 0.6 1.21 1.14 1.1 NA NA 1.7 1.01 0.7 0.83 1.69 1.18 0.95 1.14 1.72 1.4 2.18 1.45 NA 0.45 NA NA Acaca acetyl-Coenzyme A carboxylase alpha
|
478
|
+
0.33 0.31 0.12 0.33 0.08 0 0.31 0 0.18 0.28 0.16 NA NA 0.03 0.1 0 0.14 0.03 0 0.3 0.23 0.29 0.09 0.18 0.54 NA 0 NA NA Guca1b guanylate cyclase activator 1B
|
479
|
+
43.04 37.71 45.46 43.04 46.48 23.2 40.85 37.31 43.18 49.38 45.37 NA NA 45.65 34 55.47 32.3 30.39 37.91 60.44 25.55 39.29 28.1 26.27 41.95 NA 48.12 NA NA Atf5 ativating transcription factor 5,ativating transcription factor 5,
|
480
|
+
30.4 46.77 29.21 30.4 18.72 26.17 43.31 18.98 44.64 30.16 37.47 NA NA 45.01 39.74 35.46 39.33 36 26.41 36.78 39.82 41.99 37.1 39.32 46.24 NA 16.84 NA NA Eprs glutamyl-prolyl-tRNA synthetase,glutamyl-prolyl-tRNA synthetase,glutamyl-prolyl-tRNA synthetase,
|
481
|
+
28 33.65 32.06 28 35.27 26.01 27.6 32.04 29.15 21.33 28.22 NA NA 33.3 29.33 34.61 27.68 28.44 33.17 26.77 25.38 32.61 28.72 34.97 24.92 NA 37.94 NA NA Ssr1 signal sequence receptor, alpha,signal sequence receptor, alpha,
|
482
|
+
0 0.16 NA 0 0.15 0.29 0.04 0 0.19 0.1 0.17 NA NA 0.22 0.18 0.17 0.07 0.13 0.25 0.11 0.07 0.22 0.08 0.05 0.17 NA 0.05 NA NA Lgr4 G protein-coupled receptor 48
|
483
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Gimap4 GTPase, IMAP family member 4 isoform b
|
484
|
+
0 0.38 NA 0 0.28 0.51 0.19 0.09 0.65 0.03 0.61 NA NA 0.1 0.31 0.27 0 0.14 0.21 0.34 0.49 0.06 0.43 0.72 0.6 NA 0.18 NA NA Il1rl2 interleukin 1 receptor-like 2,interleukin 1 receptor-like 2,
|
485
|
+
2.12 3.23 3.56 2.12 3.12 3.4 3.79 1.97 3.04 3.76 3.43 NA NA 3.51 3.72 4.5 2.55 4.7 2.68 2.48 4.62 4.05 3.56 4.76 3.75 NA 1.86 NA NA Magee1 melanoma antigen, family E, 1
|
486
|
+
44 41.4 34.72 44 39.66 22.79 34.44 22.5 34.96 29.24 34.04 NA NA 39.33 32.59 32.65 28.21 37.13 28.41 25.58 26.94 43.45 27.63 36.18 29.72 NA 43.8 NA NA Arl2bp ADP-ribosylation factor-like 2 binding protein
|
487
|
+
17.17 19.96 36.9 17.17 28.82 13.06 36.21 13.4 19.18 30.22 22.48 NA NA 40.61 28.44 18.47 21.92 36.82 14.18 36.45 34.24 27.13 42.53 50.47 30.55 NA 16.21 NA NA Wwp1 WW domain-containing protein 1
|
488
|
+
28.34 23.69 23.18 28.34 28.22 31.59 28.75 47.58 32.36 26.99 21.51 NA NA 20.88 28.47 28.1 34 22.43 34.21 18.68 25.78 21.01 20.66 21.96 28.46 NA 39.6 NA NA Nt5c3 5'-nucleotidase, cytosolic III,5'-nucleotidase, cytosolic III,
|
489
|
+
0 0 NA 0 0 0 0 0 0.02 0 0 NA NA 0 0 0 0 0 0 0 0.01 0 0 0 0 NA 0 NA NA Col16a1 procollagen, type XVI, alpha 1,procollagen, type XVI, alpha 1,
|
490
|
+
0.23 0 NA 0.23 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Dio3 deiodinase, iodothyronine type III
|
491
|
+
0.24 0 NA 0.24 0 0 0 0 0.08 0 0 NA NA 0.05 0 0 0 0 0.06 0 0 0 0 0 0 NA 0 NA NA Ovol2 ovo-like 2 isoform A
|
492
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Osr2 odd-skipped related 2
|
493
|
+
0.25 0.3 0.12 0.25 0.03 0 0.18 0.01 0.16 0.22 0.11 NA NA 0.15 0.07 0.36 0.04 0.17 0.1 0.11 0.16 0.35 0.09 0.08 0.02 NA 0.1 NA NA Mylk myosin, light polypeptide kinase,myosin, light polypeptide kinase,
|
494
|
+
0.02 0 NA 0.02 0 0 0.03 0 0 0.03 0 NA NA 0.03 0.01 0 0 0.02 0.05 0.03 0.01 0.03 0 0.01 0 NA 0 NA NA Rdh1 retinol dehydrogenase 1 (all trans)
|
495
|
+
0.95 0.63 0.63 0.95 0.44 0.6 2.18 1.15 1.35 0.9 0.84 NA NA 0.23 0.93 1.19 0.94 1.2 0.27 0.79 0.93 0.91 1.04 0.85 1.58 NA 0.51 NA NA Nod1 nucleotide-binding oligomerization domain,nucleotide-binding oligomerization domain,
|
496
|
+
13.78 13.06 13.8 13.78 13.06 9.31 14.31 13.07 14.49 13.96 13.74 NA NA 14.13 14.81 13.83 10.27 15.45 10.04 12.44 14.79 12.76 14 13.05 13.89 NA 13.54 NA NA Pi4kb phosphatidylinositol 4-kinase, catalytic, beta,phosphatidylinositol 4-kinase, catalytic, beta,phosphatidylinositol 4-kinase, catalytic, beta,
|
497
|
+
16.63 17.52 15.73 16.63 10.53 14.48 16.46 10.18 11.44 15.39 15.38 NA NA 17.57 12.4 16.83 11.79 13.88 13.06 14.51 15.01 20.9 13.19 17.32 16.07 NA 11.19 NA NA Uap1 UDP-N-acetylglucosamine pyrophosphorylase 1,UDP-N-acetylglucosamine pyrophosphorylase 1,UDP-N-acetylglucosamine pyrophosphorylase 1,UDP-N-acetylglucosamine pyrophosphorylase 1,
|
498
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Krt9 keratin complex 1, acidic, gene 9
|
499
|
+
41.03 27.95 55.26 41.03 43.92 50.42 74.39 37.1 26.47 55.25 54.4 NA NA 77.14 56.1 60.43 17.72 24.89 16.53 56.58 72.66 58.73 19.18 22.77 77.76 NA 38 NA NA Coro2a coronin, actin binding protein 2A,coronin, actin binding protein 2A,coronin, actin binding protein 2A,
|
500
|
+
97.33 48.89 71.74 97.33 92.77 158.47 57.48 103.34 55.04 65.8 57.03 NA NA 64.72 77.63 72.58 120.35 53.39 140.21 60.03 54.13 92.64 68.83 71.46 61.42 NA 121.23 NA NA Snrpd2 small nuclear ribonucleoprotein D2
|
501
|
+
20.46 16.73 18 20.46 18 14.91 16.13 18.87 20.77 18.21 18.24 NA NA 17.99 18.71 19.3 17.69 18.99 18.02 20.9 19.82 18.21 21.44 18.89 20.17 NA 16.51 NA NA Sf3b4 splicing factor 3b, subunit 4
|
502
|
+
1796.85 851.76 1309.25 1796.85 1847.55 2280.84 872.11 3092.64 1295.64 1461.21 1235.63 NA NA 923.1 1174.67 1108.1 1627.55 963.7 2095.88 1137.19 1022.39 1104.8 1260.3 886.81 1091.46 NA 2273.54 NA NA Rnh1 ribonuclease/angiogenin inhibitor 1,ribonuclease/angiogenin inhibitor 1,ribonuclease/angiogenin inhibitor 1,
|
503
|
+
18.13 23.52 19.73 18.13 16.35 10.63 25.3 12.52 18.81 17.91 21.69 NA NA 25.9 20.24 22.86 14.22 24.84 12.61 20.8 21.23 21.99 19.56 23.17 19.78 NA 12.39 NA NA Slc12a6 solute carrier family 12, member 6 isoform 2,solute carrier family 12, member 6 isoform 2,solute carrier family 12, member 6 isoform 2,solute carrier family 12, member 6 isoform 2,
|
504
|
+
41.52 45.11 29.72 41.52 36.36 36.17 34.91 64.29 27.36 27.15 27.26 NA NA 26.11 43.23 48.36 32.75 26.63 49.05 40.56 40.86 39.41 28.96 30.01 24.77 NA 43.25 NA NA Mrpl10 mitochondrial ribosomal protein L10
|
505
|
+
13.7 5 9.35 13.7 8.95 14.47 5.99 11.39 4.64 8.58 7.46 NA NA 6.95 7.49 7.01 15.83 4.94 16.7 6.01 6.24 8.44 5.96 7.09 5.22 NA 15.56 NA NA Mrpl41 mitochondrial ribosomal protein L41
|
506
|
+
103.57 74.61 102.03 103.57 109.47 145.06 80.82 143.67 82.27 83.75 75.46 NA NA 82.04 99 105.71 153.48 75.07 154.91 86 77.26 107.29 100.13 96.43 87.81 NA 152.4 NA NA Mrpl30 mitochondrial ribosomal protein L30
|
507
|
+
28.84 38.1 26.38 28.84 24.3 23.3 32.95 16.88 34.5 31.85 38.26 NA NA 32.48 32.75 25.55 23.34 33.52 20.12 31.62 32.35 31.34 29.88 31.33 35.78 NA 17.49 NA NA Rapgef1 Rap guanine nucleotide exchange factor (GEF) 1
|
508
|
+
3.39 4.12 7.84 3.39 5.97 3 10.06 6.12 5.32 4.22 3.02 NA NA 7.98 8.49 2.79 5.66 8.16 4.19 9.15 7.89 6.08 7.26 11.71 6.1 NA 3.27 NA NA Aldh1l1 aldehyde dehydrogenase 1 family, member L1,aldehyde dehydrogenase 1 family, member L1,
|
509
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Prrxl1 paired related homeobox protein-like 1
|
510
|
+
0 0 NA 0 0 0 0 0 0.18 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Lgals2 lectin, galactose-binding, soluble 2
|
511
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0.13 0 0 0.04 0 0 0 0 0 0 NA 0 NA NA Ankrd1 ankyrin repeat domain 1 (cardiac muscle)
|
512
|
+
5.93 7.19 5.4 5.93 5.69 3.03 3.36 3.57 7.96 2.24 0.71 NA NA 9.23 3.17 10.76 8.16 1.29 5.46 5.13 2.74 4.66 3.2 4.49 1.15 NA 3.6 NA NA Haao 3-hydroxyanthranilate 3,4-dioxygenase,3-hydroxyanthranilate 3,4-dioxygenase,
|
513
|
+
8.97 8.46 12.72 8.97 10.61 6.76 9.78 7.75 12.17 12.9 13.5 NA NA 8.97 12.28 11.64 9.54 15.28 11.35 11.54 15.71 10.96 14.35 17.37 9.08 NA 13.22 NA NA Scamp1 secretory carrier membrane protein 1,secretory carrier membrane protein 1,secretory carrier membrane protein 1,
|
514
|
+
64.75 68.27 73.29 64.75 56.09 56.8 62.83 38.94 39.58 47.54 47.93 NA NA 77.88 63.2 94.55 50.67 57.39 52.09 51.02 51.84 74.89 47.55 82.24 43.16 NA 63.41 NA NA Tm6sf1 transmembrane 6 superfamily member 1,transmembrane 6 superfamily member 1,transmembrane 6 superfamily member 1,
|
515
|
+
0 0 NA 0 0.08 0 0 0 0 0.08 0 NA NA 0 0.03 0 0 0 0 0.06 0 0 0 0.16 0 NA 0 NA NA Tm6sf2 transmembrane 6 superfamily member 2,transmembrane 6 superfamily member 2,
|
516
|
+
22.49 15.59 20.2 22.49 19.06 20.11 17.16 15.53 12.45 15.09 14.33 NA NA 23.27 20.33 13.57 21.88 21.56 21.87 20.63 14.6 19.15 19.28 19.44 12.57 NA 19.17 NA NA Bmyc brain expressed myelocytomatosis oncogene
|
517
|
+
0.13 0.12 NA 0.13 0.07 0.2 0.1 0 0.07 0.05 0.07 NA NA 0.05 0.2 0.18 0 0.17 0.06 0.09 0.04 0.1 0.04 0.16 0.12 NA 0 NA NA Scml2 sex comb on midleg-like 2,sex comb on midleg-like 2,sex comb on midleg-like 2,
|
518
|
+
20.12 12.05 20.4 20.12 16.67 24.68 14.12 22.24 15.64 15.13 18.03 NA NA 14.12 17.73 15.64 19.71 16.58 17.6 16.09 13.24 18.14 13.01 16.72 19.82 NA 23.33 NA NA Jmjd6 jumonji domain containing 6
|
519
|
+
19.38 35.4 28.25 19.38 15.23 21.49 32.73 11.49 38.13 22.34 29.56 NA NA 34.63 29.41 33.86 29.59 38.05 17.14 24.35 30.17 39.18 24 43.69 39.35 NA 17.59 NA NA Whsc1 Wolf-Hirschhorn syndrome candidate 1,Wolf-Hirschhorn syndrome candidate 1,Wolf-Hirschhorn syndrome candidate 1,
|
520
|
+
36.57 28.83 34.35 36.57 32.68 34.41 30.28 33.32 36.88 33.24 36.42 NA NA 33.71 30.97 35.65 33.09 30.61 29.66 37.71 29.05 29.84 33.21 29.11 37.25 NA 37.02 NA NA Thoc5 THO complex 5
|
521
|
+
0 0 NA 0 0 0 0 0.1 0 0 0 NA NA 0 0 0.01 0 0 0 0 0 0 0 0 0 NA 0 NA NA Bai1 brain-specific angiogenesis inhibitor 1,brain-specific angiogenesis inhibitor 1,brain-specific angiogenesis inhibitor 1,brain-specific angiogenesis inhibitor 1,brain-specific angiogenesis inhibitor 1,
|
522
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Prl2c5 prolactin family 2, subfamily c, member 5
|
523
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0.01 0 0 0 0 0 0 0 NA 0 NA NA Usp9y ubiquitin specific peptidase 9, Y chromosome
|
524
|
+
0.16 0.43 NA 0.16 0.22 0.04 0.11 0.04 0.21 0.29 0.21 NA NA 0.23 0.16 0.25 0.75 0.03 0.24 0.16 0.36 0.07 0.19 0.1 0.34 NA 0.08 NA NA Cth cystathionase
|
525
|
+
5.3 3.5 8.13 5.3 8.2 6.83 5.43 12.75 6.85 7.54 7.48 NA NA 3.74 5.94 5.95 12.07 6.16 12.87 5.15 6.79 11.14 5.95 6.49 3.19 NA 13.19 NA NA Mthfs 5, 10-methenyltetrahydrofolate synthetase,5, 10-methenyltetrahydrofolate synthetase,5, 10-methenyltetrahydrofolate synthetase,5, 10-methenyltetrahydrofolate synthetase,5, 10-methenyltetrahydrofolate synthetase,
|
526
|
+
0 0 NA 0 0.03 0 0 0 0.48 0 0.16 NA NA 0 0.06 0 0 0 0 0.13 0 0.42 0 0 0 NA 0.04 NA NA Gcm2 glial cells missing homolog 2,glial cells missing homolog 2,
|
527
|
+
5.26 6.92 8.68 5.26 5.69 2.24 12.1 1.95 7.95 4.87 9.29 NA NA 8.42 7.88 6.13 1.29 8.15 0.64 6.38 6.91 6.96 8.01 10.45 6.41 NA 3.38 NA NA Mgat5 mannoside acetylglucosaminyltransferase 5,mannoside acetylglucosaminyltransferase 5,mannoside acetylglucosaminyltransferase 5,mannoside acetylglucosaminyltransferase 5,
|
528
|
+
37.57 68.86 39.62 37.57 25.63 36.4 67.73 19.13 55.81 53.49 55.17 NA NA 54.93 53.21 35.38 37.38 54.74 25.07 50.07 60.51 55.64 42.67 54.61 67.82 NA 19.65 NA NA Chd4 chromodomain helicase DNA binding protein 4,chromodomain helicase DNA binding protein 4,
|
529
|
+
0 0.09 NA 0 0.16 0.09 0.24 0.15 0.13 0.34 0.31 NA NA 0.08 0.12 0.07 0.11 0.17 0.06 0.4 0.2 0.15 0.15 0.11 0.21 NA 0.17 NA NA Celsr3 cadherin EGF LAG seven-pass G-type receptor 3,cadherin EGF LAG seven-pass G-type receptor 3,
|
530
|
+
9.9 12.56 8.44 9.9 7.71 6.16 10.2 5.48 9.56 8.96 11.05 NA NA 9.64 9.57 9.29 7.23 10.15 8.34 9.62 9.09 10.67 9.01 9.56 10.32 NA 6.27 NA NA Pom121 nuclear pore membrane protein 121
|
531
|
+
23.47 22.44 24.43 23.47 27.36 26.21 24.11 22.54 24.2 26.52 23.09 NA NA 22.85 24.42 23.97 22.24 23.78 23.03 26.96 23.22 23.97 26.24 23.2 25.18 NA 24.5 NA NA Cdk9 cyclin-dependent kinase 9,cyclin-dependent kinase 9,
|
532
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0.1 NA 0 NA NA Hist1h1t histone 1, H1t
|
533
|
+
0.04 0.19 NA 0.04 0.14 0.13 0.18 0.36 0.32 0.42 0.38 NA NA 0.36 0.25 0.18 0.32 0.37 0.34 0.56 0.51 0.29 0.23 0.44 0.36 NA 0.12 NA NA Frs3 fibroblast growth factor receptor substrate 3
|
534
|
+
7 10.53 8.93 7 6.46 8.34 10.76 5.28 9.15 10.59 9.73 NA NA 10.49 8.86 10.72 7.94 11.52 6.18 10.35 9.46 12.59 9.2 9.7 9.96 NA 6.8 NA NA Pacs1 phosphofurin acidic cluster sorting protein 1,phosphofurin acidic cluster sorting protein 1,phosphofurin acidic cluster sorting protein 1,
|
535
|
+
46.51 46.57 49.12 46.51 53.31 37.92 37.89 44.62 51.34 49.77 44.76 NA NA 52.65 44.26 48.63 45.63 44.67 46.59 52.25 43.24 41.74 52.35 44.02 40.19 NA 47.33 NA NA Bre brain and reproductive organ-expressed protein,brain and reproductive organ-expressed protein,
|
536
|
+
8.37 4.06 6.19 8.37 4.97 7.59 5.57 6.55 5.92 7.51 8.25 NA NA 5.92 8.03 8.14 6.17 7.54 7.41 8.65 10.63 7.99 7.05 7.09 8.77 NA 5.81 NA NA Ddb2 damage specific DNA binding protein 2
|
537
|
+
0 0 NA 0 0 0 0.15 0 0 0 0 NA NA 0 0 0 0 0.07 0 0.09 0 0 0 0 0 NA 0 NA NA Bfsp2 beaded filament structural protein 2, phakinin,beaded filament structural protein 2, phakinin,
|
538
|
+
22.11 33.87 23.45 22.11 14.24 28.14 21.59 14.24 20.9 13.97 14.63 NA NA 32.76 20.88 20.99 24.35 16.92 37.32 9.61 13.49 32.1 16.51 35.33 17.66 NA 22.46 NA NA Cdc20 cell division cycle 20 homolog,cell division cycle 20 homolog,
|
539
|
+
14.04 7.8 8.77 14.04 9.06 15.47 8.14 11.72 8.85 10.12 9.77 NA NA 8.57 8.02 7.88 12.41 8.87 10 6.69 7.36 6.51 7.87 7.4 9.06 NA 7.59 NA NA Gtpbp6 GTP binding protein 6 (putative)
|
540
|
+
2.22 5.91 2.02 2.22 0.74 2.58 5.1 0.66 3.34 2.3 2.64 NA NA 4.27 4.35 1.83 3.79 2.96 2.23 1.42 3.09 6.11 1.39 4.11 4.57 NA 0.85 NA NA Cenpf centromere protein F,centromere protein F,centromere protein F,
|
541
|
+
4.44 5.34 4.12 4.44 3.55 3.58 4.39 2.84 4.45 4.01 5.11 NA NA 4.73 4.24 3.87 2.98 5.37 2.41 4.04 4.47 4.11 4.57 5.03 4.36 NA 3.31 NA NA Ap4e1 adaptor-related protein complex AP-4, epsilon 1,adaptor-related protein complex AP-4, epsilon 1,
|
542
|
+
22.22 28.23 26.23 22.22 20.51 17.96 18.81 19.03 24.82 19.52 22.54 NA NA 27.15 20.47 26.06 20.07 25.28 22.78 22.93 25.13 21.2 25.08 27.79 18.49 NA 26.87 NA NA Ap1s2 adaptor-related protein complex 1 sigma 2,adaptor-related protein complex 1 sigma 2,
|
543
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Brunol4 bruno-like 4, RNA binding protein,bruno-like 4, RNA binding protein,bruno-like 4, RNA binding protein,bruno-like 4, RNA binding protein,
|
544
|
+
105.5 100.69 101.93 105.5 109.9 130.89 83.6 111.39 81.92 79.94 79.12 NA NA 91.22 91.55 91.37 87.69 81.14 108.72 89.96 79.06 92.06 96.63 85.77 87.76 NA 116.24 NA NA Sfrs9 splicing factor, arginine/serine rich 9
|
545
|
+
0 0 NA 0 0 0 0.03 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0.02 0 0 0 NA 0 NA NA Chrnb4 cholinergic receptor, nicotinic, beta,cholinergic receptor, nicotinic, beta,
|
546
|
+
0 0 NA 0 0.19 0 0 0 0 0 0 NA NA 0 0.23 0 0 0 0 0 0 0 0.21 0.36 0 NA 0 NA NA Fxyd4 corticosteroid-induced protein,corticosteroid-induced protein,
|
547
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0.01 0 0 0 0 0 NA 0 NA NA Lin7a lin 7 homolog a isoform 1
|
548
|
+
46.35 62.38 51.55 46.35 39.14 50.64 42.91 37 45.36 30.4 32.45 NA NA 75.21 62.49 59.58 49.62 41.73 71.62 34.45 37.47 56.26 35.83 58.48 35.02 NA 51.99 NA NA Shmt2 serine hydroxymethyltransferase 2,serine hydroxymethyltransferase 2,
|
549
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Chrnb3 cholinergic receptor, nicotinic, beta
|
550
|
+
0 0.09 NA 0 0 0 0.03 0 0 0 0.02 NA NA 0.08 0.02 0.22 0 0.11 0.03 0 0.02 0.02 0.06 0 0 NA 0.03 NA NA Slc14a1 solute carrier family 14 (urea transporter),,solute carrier family 14 (urea transporter),,
|
551
|
+
24.42 30.93 29.46 24.42 31.01 16 22.82 20.95 28.6 27.57 27.23 NA NA 30.82 22.94 22 25.12 30.28 20.23 28.02 24.73 25.38 32.4 33.07 24.28 NA 25.72 NA NA Camk2d calcium/calmodulin-dependent protein kinase II,,calcium/calmodulin-dependent protein kinase II,,calcium/calmodulin-dependent protein kinase II,,
|
552
|
+
13.15 21.36 18.99 13.15 13.71 10.64 16.3 12.83 18.5 11.7 13 NA NA 20.11 17.5 17.05 14.24 17.08 15.01 16.46 18.97 14.55 19.87 21.63 17.25 NA 13.34 NA NA Cstf2 cleavage stimulation factor, 3' pre-RNA subunit,cleavage stimulation factor, 3' pre-RNA subunit,cleavage stimulation factor, 3' pre-RNA subunit,
|
553
|
+
17.22 17.7 13.08 17.22 19.94 16.88 12.39 19.06 14.03 14.54 13.35 NA NA 16.09 16.08 16.53 12.56 11.65 13.49 14.46 12.51 10.4 15.22 11.93 16.24 NA 17.63 NA NA Eif2b3 eukaryotic translation initiation factor 2B,
|
554
|
+
0.09 0 NA 0.09 0 0 0 0 0 0 0 NA NA 0 0.02 0.02 0 0 0 0 0 0 0 0 0 NA 0 NA NA Grm3 glutamate receptor, metabotropic 3
|
555
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Grm5 glutamate receptor, metabotropic 5,glutamate receptor, metabotropic 5,
|
556
|
+
0 0 NA 0 0 0 0 0.07 0 0 0 NA NA 0 0 0.04 0 0 0.01 0 0 0 0 0 0 NA 0 NA NA Grm6 glutamate receptor, metabotropic 6,glutamate receptor, metabotropic 6,
|
557
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Grm7 glutamate receptor, metabotropic 7
|
558
|
+
0.14 0 NA 0.14 0 0 0.03 0 0.03 0.02 0 NA NA 0 0.01 0 0 0.03 0 0.07 0.06 0.02 0.01 0 0 NA 0 NA NA Ltbp4 latent transforming growth factor beta binding,latent transforming growth factor beta binding,latent transforming growth factor beta binding,
|
559
|
+
19.2 23.95 21.63 19.2 16.16 18.45 22.35 14.59 18.34 20.98 18.22 NA NA 27.35 22.26 19.83 21.73 23.18 12.97 18.87 18.57 23.94 20.71 22.9 20.81 NA 16.63 NA NA Skiv2l superkiller viralicidic activity 2-like
|
560
|
+
0 0.11 NA 0 0.05 0.06 0 0.04 0.02 0.03 0.11 NA NA 0 0.03 0.05 0 0 0.04 0 0 0 0.01 0 0.19 NA 0.18 NA NA Olr1 oxidized low density lipoprotein (lectin-like)
|
561
|
+
0 0 NA 0 0.03 0 0.05 0 0.04 0.02 0 NA NA 0.02 0.01 0.05 0 0.02 0.01 0.02 0 0 0.1 0.03 0 NA 0 NA NA Prkaa2 AMP-activated protein kinase alpha 2 catalytic
|
562
|
+
16.81 27.67 22.44 16.81 16.46 14.63 26.94 11.78 22.85 21.41 22.27 NA NA 26.37 22.31 20.58 19.11 25.74 13.65 23.44 22.38 24.77 21.86 23.7 25.09 NA 16.53 NA NA Pip4k2b phosphatidylinositol-5-phosphate 4-kinase, type
|
563
|
+
10.76 12.1 9.79 10.76 8.95 8.9 12.62 7.72 12.47 12.26 12.94 NA NA 13.21 12.15 9.73 9.08 14.27 8.47 13.56 13.01 11.79 11.93 11.9 13.13 NA 7.86 NA NA Rnf216 ubiquitin conjugating enzyme 7 interacting,ubiquitin conjugating enzyme 7 interacting,
|
564
|
+
0.11 0.2 NA 0.11 0.12 0.16 0.22 0.26 0.36 0.11 0.14 NA NA 0.3 0.2 0.16 0.07 0.28 0.18 0.13 0.12 0.24 0.39 0.21 0.13 NA 0.06 NA NA Rnf144a ring finger protein 144
|
565
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Slco1a5 solute carrier organic anion transporter family,,solute carrier organic anion transporter family,,
|
566
|
+
0.59 0.47 1.13 0.59 0.71 1.32 0.92 0.8 1.08 1.4 1.53 NA NA 0.96 1.16 1.11 0.58 1.03 0.69 1.14 1.05 0.61 1.05 1.09 0.96 NA 0.53 NA NA Prkab2 AMP-activated protein kinase beta 2
|
567
|
+
37.87 21.69 36.57 37.87 31.78 40.09 20.27 42.34 26.21 23.29 23.41 NA NA 21.62 32.14 33.74 44.59 23.95 55.43 21.94 30.67 27.42 27.4 25.71 26.52 NA 41.27 NA NA Med21 SRB7 (supressor of RNA polymerase B) homolog
|
568
|
+
7.55 5.69 6.22 7.55 5.88 6.21 6.94 4.14 6.12 6.43 7.82 NA NA 8.21 6.56 4.9 6.17 6.83 8.56 6.61 6.23 5.99 6.34 7.75 6.85 NA 4.83 NA NA Prkag2 AMP-activated protein kinase gamma2 subunit,AMP-activated protein kinase gamma2 subunit,
|
569
|
+
26.45 27.78 24.54 26.45 24.3 34.96 25.53 22.7 34.44 34.05 21.19 NA NA 23.68 25.46 20.15 29.22 24.4 25.55 28.08 23.8 25.6 28.86 35.1 33.47 NA 20.41 NA NA Baiap2 brain-specific angiogenesis inhibitor
|
570
|
+
126.88 111.73 135.65 126.88 109.88 125.27 130.48 103.01 117.32 115.46 102.84 NA NA 143.98 121.03 147.52 108.44 136.17 113 125.35 129.52 131.44 114.41 119.52 121.59 NA 120.82 NA NA BC032204 UNC-112 related protein 2,UNC-112 related protein 2,
|
571
|
+
0 0 NA 0 0.03 0.05 0 0 0.07 0 0.03 NA NA 0.04 0.01 0 0 0.01 0 0.02 0.02 0 0.01 0.01 0.01 NA 0 NA NA B3gnt5 UDP-GlcNAc:betaGal,UDP-GlcNAc:betaGal,
|
572
|
+
9.13 8.34 6.27 9.13 7.46 9.66 11.17 4.77 10.69 12.57 11.19 NA NA 9.19 11.8 8.96 12.45 10.32 9.31 13.03 12.59 12.31 7.84 9.15 11.07 NA 4.59 NA NA Eif4ebp3 eukaryotic translation initiation factor 4E
|
573
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Slc22a7 solute carrier family 22 member 7
|
574
|
+
23.54 40.45 25.93 23.54 23.09 24.07 44.34 24.4 35.73 48.13 24.05 NA NA 27.48 21.82 18.13 37.28 38.95 48.3 27.23 26.07 28.84 23.74 39.92 44.59 NA 20.19 NA NA Slco4a1 solute carrier organic anion transporter family,,solute carrier organic anion transporter family,,
|
575
|
+
3.32 0.27 1.77 3.32 0.24 1.85 2.19 0.66 4.46 0.87 1.26 NA NA 2.62 2.38 3.54 1.3 0.67 0.46 0.47 1.99 2.41 2.05 1.08 0.57 NA 0.21 NA NA Slco3a1 solute carrier organic anion transporter family,
|
576
|
+
10.5 5.77 9.98 10.5 11.73 15.28 7.62 9.41 8.69 8.04 8.16 NA NA 7.96 9.98 9.94 12.83 9.24 13.76 8.88 9.09 9.15 7.51 10.6 9.47 NA 14.58 NA NA U2af1 U2 small nuclear ribonucleoprotein auxiliary
|
577
|
+
15.17 25.45 19.76 15.17 17.97 14.28 18.34 17.89 21.32 16.74 22.25 NA NA 24.4 24.4 25.07 19.21 23.18 17.48 19.62 23.39 18.91 19.21 18.53 22.37 NA 19.05 NA NA Napg N-ethylmaleimide sensitive fusion protein
|
578
|
+
65.5 53.68 63.85 65.5 71.03 61.34 47.22 57.34 63.63 68.43 67.81 NA NA 51.47 61.59 64.86 58.04 61.05 69.34 58.63 58.54 55.39 60.19 51.05 56.36 NA 73.9 NA NA Napa N-ethylmaleimide sensitive fusion protein
|
579
|
+
9.27 7.53 10.38 9.27 11.76 9.89 7.69 7.67 8.04 8.82 8.02 NA NA 9.68 7.61 7.84 8.97 8.45 12.82 9.47 8.57 8.12 9.06 7.9 7.73 NA 11.13 NA NA Xrcc4 X-ray repair complementing defective repair in
|
580
|
+
67.97 70.97 81.83 67.97 78.94 104.31 64.6 72.56 70.36 57.41 59.05 NA NA 79.27 80.32 83.99 92.18 52.04 111.08 88.19 67.06 62.49 107.57 83.36 63.58 NA 145.85 NA NA Taf9 TAF9 RNA polymerase II, TATA box binding protein,TAF9 RNA polymerase II, TATA box binding protein,
|
581
|
+
49.08 31.65 47.66 49.08 49.95 40.59 33.74 38.2 41.17 33.33 39.82 NA NA 40.34 36.94 46.67 30.77 36.92 29.85 35.42 34.45 36.57 43.07 45.87 36.43 NA 52.96 NA NA Atic 5-aminoimidazole-4-carboxamide ribonucleotide,5-aminoimidazole-4-carboxamide ribonucleotide,
|
582
|
+
33.6 35.68 38.89 33.6 29.38 28.47 38.74 22.78 43.12 30.53 32.39 NA NA 38.49 33.54 40.84 31.51 44.26 31.93 40.53 32.74 37.76 31.69 44.23 33.8 NA 34.44 NA NA Galnt2 UDP-N-acetyl-alpha-D-galactosamine:polypeptide
|
583
|
+
19.47 35.76 28.13 19.47 26.09 20.38 34.58 16.33 47.52 19.15 25.1 NA NA 38.92 28.74 27.14 26.49 33.24 19.99 29.88 34.81 28.27 36.68 39.32 38.29 NA 18.99 NA NA Galnt7 UDP-N-acetyl-alpha-D-galactosamine: polypeptide
|
584
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Sema3d semaphorin 3D,semaphorin 3D,semaphorin 3D,
|
585
|
+
0 0.02 NA 0 0 0 0 0 0 0 0.01 NA NA 0 0.01 0.03 0 0.01 0 0 0 0.03 0 0.01 0 NA 0 NA NA Adamts7 a disintegrin-like and metalloprotease,a disintegrin-like and metalloprotease,
|
586
|
+
0 0.3 NA 0 0.02 0.23 0.02 0.11 0.11 0.12 0.05 NA NA 0.03 0.09 0.05 0.01 0.1 0.02 0.02 0.06 0.23 0.01 0.03 0.05 NA 0 NA NA Adamts6 a disintegrin-like and metalloprotease
|
587
|
+
13.7 18.09 20.16 13.7 15.06 11.01 19.71 9.14 15.81 20.65 17.43 NA NA 23.27 19.61 13.23 17.68 20.62 13.44 16.37 19.43 22.44 17.49 21.63 15.7 NA 11.58 NA NA Ogt O-linked N-acetylglucosamine transferase,O-linked N-acetylglucosamine transferase,
|
588
|
+
25.76 21.76 22.29 25.76 16.91 16.78 21.95 12.09 21.61 17.41 23.01 NA NA 25.95 23.07 22.61 18.22 23.72 20.81 22.18 20.1 23.65 21.87 30.34 21.52 NA 21.25 NA NA Mthfd1 methylenetetrahydrofolate dehydrogenase 1
|
589
|
+
9.35 11.91 10.41 9.35 8.55 13.55 6.16 9.81 11.43 5.96 7.11 NA NA 12.49 11.66 9.06 11.03 6.8 15.82 7.37 11.13 12.23 12.25 9 10.13 NA 10.28 NA NA Ubxd6 UBX domain containing 6
|
590
|
+
51.19 56.81 56.46 51.19 53.2 58.07 51.11 53.14 54.41 63.6 73.5 NA NA 47.72 55.1 50.63 61.36 45.59 50.08 66.04 51.07 52.57 56.14 41.45 64.67 NA 59.42 NA NA D0HXS9928E DNA segment, human DXS9928E
|
591
|
+
44.07 31.96 45.42 44.07 49.61 50.05 30.66 58.68 37.41 37.26 33.87 NA NA 35.88 38.54 35.15 57.21 38.21 55.74 35.81 36.55 40.65 39.59 38.35 31.91 NA 54.2 NA NA Mat2b methionine adenosyltransferase II, beta,methionine adenosyltransferase II, beta,
|
592
|
+
13.04 4.52 7.95 13.04 6.15 9.75 6 15.33 5.9 6.05 6.52 NA NA 7.02 7.91 7.89 12.85 6.96 10.45 7.95 6.39 6.72 6.47 7 5.6 NA 10.39 NA NA Slc35b3 solute carrier family 35, member B3,solute carrier family 35, member B3,
|
593
|
+
0.09 0 NA 0.09 0 0 0 0 0.04 0 0 NA NA 0 0 0.01 0 0 0.02 0 0 0 0 0 0 NA 0 NA NA 4933426K21Rik hypothetical protein LOC108653,hypothetical protein LOC108653,
|
594
|
+
3.99 4.52 4.41 3.99 4.31 2.7 3.76 3.05 4.2 3.57 4.2 NA NA 5.1 3.89 3.32 2.43 4.32 3.64 3.68 4.61 3.94 3.69 5.46 3.73 NA 3.36 NA NA 4933403F05Rik hypothetical protein LOC108654
|
595
|
+
19 18.75 19.71 19 12.57 14.77 23.35 10.63 21.7 25.72 20.43 NA NA 25.11 21.88 19.02 19.43 24.6 15.17 20.04 20.8 24.25 19.13 26.8 20.76 NA 10.13 NA NA Foxp1 forkhead box P1,forkhead box P1,forkhead box P1,forkhead box P1,forkhead box P1,forkhead box P1,forkhead box P1,
|
596
|
+
15.6 20.1 16.32 15.6 14.53 12.91 19.09 13.48 19.39 17.64 18.81 NA NA 21.61 17.56 16.46 12.87 19.48 12.09 19.31 18.05 17.85 18.48 16.72 19.22 NA 12.24 NA NA Rnpepl1 arginyl aminopeptidase (aminopeptidase B)-like
|
597
|
+
113.05 87.01 120.6 113.05 133.28 73.64 83.33 126.73 96.89 99.79 104.67 NA NA 93.45 87.04 101.7 95.08 88.22 104.26 104.64 89.4 85.64 116 103.01 89.33 NA 130.92 NA NA Atp6v1h ATPase, H+ transporting, lysosomal V1 subunit H
|
598
|
+
76.66 57.59 86.82 76.66 42.08 80.77 101.3 104.17 116.64 92.08 50.49 NA NA 78.06 49.68 66.77 109.24 74.93 57.88 38.11 41.22 86.06 93.86 15.36 57.26 NA 54.28 NA NA Epsti1 epithelial stromal interaction 1 isoform a
|
599
|
+
23.76 35.18 30.85 23.76 22.31 30.06 27.92 21.18 23 21.35 18.92 NA NA 35.05 33.24 30.53 34.19 24.93 37.43 20.76 23.46 39.39 21.25 42.8 23.54 NA 26.4 NA NA Dnajc9 DnaJ homolog, subfamily C, member 9
|
600
|
+
0.83 0.24 0.18 0.83 0.23 0.03 0.2 0.33 0.48 0.32 0.16 NA NA 0.42 0.22 0.31 0.26 0.32 0.26 0.26 0.27 0.38 0.52 0.31 0.21 NA 0.67 NA NA Zdhhc15 zinc finger, DHHC domain containing 15
|
601
|
+
22.36 19.65 17.58 22.36 20.23 19.24 24.51 23.63 27.27 17.05 22.95 NA NA 15.65 25.48 21.12 23.88 19.75 20.33 24.61 20.6 18.51 24.18 10.64 26.5 NA 21.01 NA NA Ccdc86 coiled-coil domain containing 86
|
602
|
+
39.56 39.49 46.77 39.56 58.02 54.29 33.78 69.42 37.14 40.55 46.07 NA NA 41.67 44.55 46.57 48.51 43.16 58.85 43.43 39.86 36.15 42.62 42.71 39.3 NA 70.81 NA NA Cops8 COP9 signalosome subunit 8
|
603
|
+
5 4.81 6 5 4.54 3.04 6.88 5.1 4.62 5.43 5.25 NA NA 5.95 7.27 6.2 4.78 5.37 4.16 5.67 5 5.11 4.57 7.13 4.14 NA 5.63 NA NA Gpt2 glutamic pyruvate transaminase (alanine,glutamic pyruvate transaminase (alanine,glutamic pyruvate transaminase (alanine,
|
604
|
+
2.96 4.65 2.48 2.96 1.38 3.12 5.21 1.03 4.7 3.29 4.15 NA NA 4.49 5 2.11 4.4 3.67 2.05 3.97 5.82 4.02 3.03 4.42 5.58 NA 1.13 NA NA Ccdc88a coiled coil domain containing 88A
|
605
|
+
17.44 10.57 16.3 17.44 20.02 14.37 19 22.33 19.8 18.95 19.69 NA NA 16.88 16.5 18.83 14.44 19.23 17.11 16.99 15.95 17.63 18.9 14.56 16.12 NA 22.3 NA NA Edem2 putative alpha-mannosidase
|
606
|
+
13.92 13.47 14.57 13.92 12.54 14.28 12.69 13.49 13.73 12.29 12.43 NA NA 14.7 13.27 14.63 10.75 11.89 13.47 11.12 11.75 12.66 12.9 18.13 13.19 NA 12.04 NA NA Obfc1 oligonucleotide/oligosaccharide-binding fold,oligonucleotide/oligosaccharide-binding fold,
|
607
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0.09 0 0.16 0.28 0 0 0 NA 0 NA NA Chn1 chimerin (chimaerin) 1 isoform 1,chimerin (chimaerin) 1 isoform 1,
|
608
|
+
68.89 47.85 69.93 68.89 74.15 54.06 50.99 67.2 67.09 68.52 64.1 NA NA 61.22 57.54 63.47 63.94 68.57 63.98 72 58.82 56.28 71.68 68.19 61.9 NA 78.47 NA NA Pttg1ip pituitary tumor-transforming gene 1
|
609
|
+
5.77 5.19 3.5 5.77 3.63 3.32 4.2 3 4.42 2.63 3.39 NA NA 4.37 3.26 3.97 3.58 2.91 2.86 3.24 2.73 3.07 4.49 2.96 3.31 NA 4.12 NA NA 1810008A18Rik hypothetical protein LOC108707,hypothetical protein LOC108707,
|
610
|
+
4.72 10.91 8.21 4.72 3.5 8.82 10.67 3.02 23.5 13.1 2.81 NA NA 11.83 4.08 9.45 15.88 12.07 3.51 8.27 7.99 10.07 11.68 2.18 6.97 NA 2.26 NA NA Card11 caspase recruitment domain family, member 11,caspase recruitment domain family, member 11,
|
611
|
+
1.1 0.78 1.24 1.1 0.99 0.73 1 0.92 1.05 0.84 0.68 NA NA 0.9 0.45 0.7 0.61 0.81 1.13 0.77 0.96 1.17 0.99 0.85 0.76 NA 1.06 NA NA Sft2d2 SFT2 domain containing 2
|
612
|
+
12.31 23.63 16.83 12.31 12.77 9.62 15.86 11.13 18.95 13.15 16.44 NA NA 17.41 14.62 15.4 7.36 18.88 8.21 14.18 16.23 17.04 15.26 21.59 15.19 NA 12.61 NA NA Oxsr1 oxidative-stress responsive 1,oxidative-stress responsive 1,
|
613
|
+
0.72 0.35 0.87 0.72 0.94 2.11 0.27 1.77 0.55 0.92 0.99 NA NA 0.43 1 0.43 0.59 0.7 1.41 0.99 0.83 0.57 0.52 0.77 0.71 NA 1.24 NA NA Lyrm2 LYR motif containing 2
|
614
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0.01 0 0 0 0 0 0 NA 0 NA NA Galntl1 UDP-N-acetyl-alpha-D-galactosamine:polypeptide,UDP-N-acetyl-alpha-D-galactosamine:polypeptide,UDP-N-acetyl-alpha-D-galactosamine:polypeptide,
|
615
|
+
14.32 22.91 16.83 14.32 11.93 14.72 20.46 12.87 14.47 21.25 11.59 NA NA 16.62 14.51 17.75 13.85 19.18 19.9 20.15 21.59 18.24 16.16 19.5 16.66 NA 15.79 NA NA Pnrc1 proline-rich nuclear receptor coactivator 1
|
616
|
+
0 0.16 NA 0 0.07 0.07 0.15 0.02 0.13 0.11 0.25 NA NA 0.06 0.08 0.11 0.1 0.06 0.01 0.18 0.2 0.14 0.2 0.18 0.16 NA 0.04 NA NA Ston2 stonin 2
|
617
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0.09 0 0 0 0 0 0 NA 0 NA NA Calr4 calreticulin 4,calreticulin 4,
|
618
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA 4933402P03Rik hypothetical protein LOC108803
|
619
|
+
2.1 2.95 2.81 2.1 0.65 0.75 2.53 3.43 3.45 2.89 1.84 NA NA 3.2 1.58 1.63 3.37 2.06 2.01 1.07 1.77 2.09 2.05 1.37 1.67 NA 0.64 NA NA Ccdc122 coiled-coil domain containing 122
|
620
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0.06 0 0 0 0 0 0 NA 0 NA NA Als2cr12 amyotrophic lateral sclerosis 2 (juvenile)
|
621
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA n/a n/a
|
622
|
+
6.16 9.97 7.72 6.16 6.9 7.61 9.94 5.61 10.95 6.47 9.75 NA NA 9.68 8.12 9.51 6.65 9.69 6.11 7.61 8.86 8.64 8 10.85 8.86 NA 5.53 NA NA Ibtk inhibitor of Bruton's tyrosine kinase,inhibitor of Bruton's tyrosine kinase,
|
623
|
+
3.46 1.78 3.35 3.46 2.88 2 2.78 3.45 3.52 4.33 4 NA NA 2.45 2.79 2.13 2.32 3.41 1.74 2.91 2.68 2.1 2.46 3.33 2.68 NA 4.45 NA NA Rdh13 retinol dehydrogenase 13 (all-trans and 9-cis),retinol dehydrogenase 13 (all-trans and 9-cis),
|
624
|
+
0.69 2.64 2.39 0.69 1.77 4.85 3.01 3.39 2.2 2.73 2.5 NA NA 3.12 3.57 2.87 2.77 3.08 3.34 3.98 3.12 4.07 2.7 2.8 2.98 NA 3.2 NA NA Mtrf1l mitochondrial translational release factor
|
625
|
+
10.69 13.21 15.83 10.69 13.55 14.17 14.82 10.84 15.06 16.2 17.48 NA NA 14.87 16.36 13.02 15.29 13.6 11.65 14.47 11.92 13.55 15.69 13.44 16.07 NA 11.28 NA NA Atad3a AAA-ATPase TOB3
|
626
|
+
0.18 0 NA 0.18 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0.02 0 NA 0 NA NA 2810003C17Rik ionized calcium binding adapter molecule 2
|
627
|
+
0.1 0.42 NA 0.1 0.05 0.11 0.23 0.08 0.2 0.14 0.1 NA NA 0.44 0.12 0.07 0.01 0.18 0.01 0.18 0.18 0.13 0.05 0.2 0.2 NA 0.19 NA NA 2700081O15Rik hypothetical protein LOC108899,hypothetical protein LOC108899,
|
628
|
+
3.34 2.24 2.3 3.34 1.89 3.61 2.87 3.73 1.15 2.23 2.08 NA NA 2.62 2.47 3.2 3.49 1.72 3.98 1.04 2.44 2.84 1.3 3.08 2.06 NA 3.62 NA NA 2700049P18Rik hypothetical protein LOC108900
|
629
|
+
20.42 17.68 20.65 20.42 19.62 18.96 16.98 16.8 18.81 18.85 18.19 NA NA 17.01 18.06 19.11 17.49 21.58 23.62 18.65 17.92 18.22 21.8 22.78 18.89 NA 22.12 NA NA B3gnt1 beta-1,3-N-acetylglucosaminyltransferase bGnT-6,beta-1,3-N-acetylglucosaminyltransferase bGnT-6,
|
630
|
+
29.82 36.48 35.95 29.82 32.23 23.83 32.08 30.11 33.22 27.06 28.07 NA NA 37.58 28.51 38.59 21.34 30.26 22.56 27.13 28.43 29.64 32.79 33.23 25.71 NA 37 NA NA Tbcd tubulin-specific chaperone d
|
631
|
+
13.76 33.38 18.88 13.76 7.19 13.89 17.86 7.75 16.32 10.34 12.87 NA NA 25.52 20.23 24.28 24.38 17.71 24.13 8.26 14.27 26 13.35 37.65 16.09 NA 10.69 NA NA Nusap1 nucleolar and spindle associated protein 1
|
632
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA 2610208M17Rik axin interaction partner and dorsalization,axin interaction partner and dorsalization,axin interaction partner and dorsalization,
|
633
|
+
79.06 83.28 90.65 79.06 72.35 71.22 89.45 51.65 86.48 63.31 60.2 NA NA 99.88 74.93 81.7 59.96 69.62 51.69 63.99 59.23 87.37 80.58 93.72 79.49 NA 63.27 NA NA Rcc2 RCC1-like
|
634
|
+
0.02 0.15 NA 0.02 0.33 0.4 0 0.42 0.37 0.04 0.22 NA NA 0 0.21 0.79 0.18 0.2 0.24 0.19 0.08 0.16 0.12 0.08 0.05 NA 0 NA NA Lhfp lipoma HMGIC fusion partner
|
635
|
+
0.72 1.68 2.2 0.72 1.52 1.66 1.69 1.37 1.65 1.57 1.45 NA NA 2.73 1.92 1.92 1.72 2.13 1.81 2.27 1.84 2.54 2.02 2.59 2.45 NA 1.75 NA NA Rg9mtd2 RNA (guanine-9-) methyltransferase domain,RNA (guanine-9-) methyltransferase domain,
|
636
|
+
4.38 3.04 3.87 4.38 2.7 2.68 4.11 2.23 3.99 4.95 4.86 NA NA 3.51 4.45 3.68 2.83 4.99 2.22 3.43 3.71 3.92 4.01 4.69 3.94 NA 2.2 NA NA Zzz3 zinc finger, ZZ domain containing 3
|
637
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Ppp1r15b protein phosphatase 1, regulatory subunit 15B
|
638
|
+
0 0 NA 0 0 0.26 0 0 1.28 0.02 0.2 NA NA 0 0 0 0.38 0.09 0.16 0.44 0 0.44 0.27 0.06 0 NA 0 NA NA 2210421G13Rik hypothetical protein LOC108956
|
639
|
+
4.15 4.08 3.81 4.15 3.73 4.76 4.26 4.74 4.21 4.88 5.28 NA NA 4.89 4.89 4.03 3.7 4.76 3.79 5.28 4.68 4.71 4.93 5.59 4.82 NA 4.72 NA NA 5730472N09Rik hypothetical protein LOC108958,hypothetical protein LOC108958,
|
640
|
+
18.6 12.53 14.13 18.6 15.68 15.85 15.96 21.73 20.96 15.88 21.01 NA NA 11.08 15.97 18.46 13.17 16.25 11.49 17.72 19.7 13.87 15.53 9.77 21.02 NA 16.64 NA NA Irak2 interleukin-1 receptor-associated kinase 2,interleukin-1 receptor-associated kinase 2,interleukin-1 receptor-associated kinase 2,
|
641
|
+
6.34 15.59 8.3 6.34 3.17 7.55 12.21 3.23 8.49 6.22 7.42 NA NA 15.73 12.41 10.66 11.51 10.87 8.95 6.59 9.1 15.58 6.36 20.17 8.5 NA 4.43 NA NA E2f8 E2F transcription factor 8,E2F transcription factor 8,
|
642
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA 4930555G01Rik hypothetical protein LOC108978
|
643
|
+
12.73 21.25 14.87 12.73 6.23 14.97 23.71 4.04 20.98 22.79 20.17 NA NA 20.07 24.17 8.92 16.92 16.78 7.55 16.89 24.41 27.18 9.82 15.39 29.01 NA 6.64 NA NA Tpr nuclear pore complex-associated protein Tpr,nuclear pore complex-associated protein Tpr,nuclear pore complex-associated protein Tpr,
|
644
|
+
0 0.05 NA 0 0.03 0.74 0.17 0 0.26 0.03 0.13 NA NA 0.13 0.26 0.05 0.21 0.15 0.13 0.15 0.06 0.05 0.2 0.23 0.13 NA 0.24 NA NA Tbc1d10c TBC1 domain family, member 10c,TBC1 domain family, member 10c,
|
645
|
+
9.88 14.9 12.73 9.88 22.82 25.13 8.05 12.22 19 17.89 9.26 NA NA 15.81 9.13 18.29 12.24 15.51 12.34 8.85 15.15 18.29 17.86 7.57 15.43 NA 14.19 NA NA Ciapin1 cytokine induced apoptosis inhibitor 1
|
646
|
+
15.86 14.64 10.45 15.86 15.4 15.45 10.96 14.38 22.92 12.49 11.16 NA NA 11.18 9.44 15.46 14.85 11.84 17.33 16.67 14.82 15.32 17.23 14.66 14.23 NA 14.9 NA NA Obfc2a oligonucleotide/oligosaccharide-binding fold,oligonucleotide/oligosaccharide-binding fold,
|
647
|
+
14.27 20.66 15.59 14.27 17.4 25.88 27.13 24.46 24.32 17.18 13.9 NA NA 16.62 19.86 25.17 26.47 18.93 15.92 17.37 19.49 23.1 18.05 8.76 24.7 NA 19.91 NA NA Sp110 Sp110 nuclear body protein,Sp110 nuclear body protein,Sp110 nuclear body protein,
|
648
|
+
1.01 0 0.68 1.01 0.27 1.83 0.15 0.7 0.17 0.63 0.1 NA NA 0.54 0.49 0 0.45 0.09 1.22 0.5 0.48 0.1 0.4 1.07 0.81 NA 0.35 NA NA Prkcdbp protein kinase C, delta binding protein
|
649
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA 6530418L21Rik hypothetical protein LOC109050,hypothetical protein LOC109050,
|
650
|
+
0 0.01 NA 0 0 0 0.02 0 0 0 0.01 NA NA 0 0.01 0 0.01 0.04 0.01 0.03 0.01 0.01 0.01 0.02 0.02 NA 0.02 NA NA Krt75 keratin 75
|
651
|
+
27.82 30.75 33.94 27.82 26.51 36.7 22.29 37.06 27.42 27.56 22.31 NA NA 20.07 25.45 31.64 45.33 28.99 54.52 26.47 24.85 25.1 25.91 29.71 21.18 NA 42.75 NA NA Pfdn4 prefoldin 4
|
652
|
+
6.56 5.07 5.84 6.56 4.8 5.46 4.54 4.5 5.06 5.27 5.49 NA NA 5.46 5.57 5.68 6.17 4.95 5.81 3.79 3.91 5.17 4.42 7.23 4.91 NA 5.24 NA NA 1110034A24Rik hypothetical protein LOC109065
|
653
|
+
24.69 14.27 20.39 24.69 23.81 35.89 14.36 28.73 17.01 19.75 16.42 NA NA 15.26 19.58 16 20.55 17.67 25.61 16.32 16.59 16.83 18.91 14.78 15.99 NA 29.5 NA NA Exosc4 exosome component 4
|
654
|
+
14.25 14.63 14.28 14.25 13.75 10.99 11.4 9.86 12.49 9.73 12.47 NA NA 14.39 10.83 13.01 9.89 13.42 11.88 13.2 12.2 13.49 11.75 13.75 12.72 NA 11.81 NA NA Ints5 integrator complex subunit 5
|
655
|
+
9.25 13.68 10.53 9.25 8.98 8.86 8.64 5.7 9.17 7.01 8.7 NA NA 11.97 10.53 10.85 9.86 10.13 10.28 7.81 8.6 10.63 7.98 13.67 7.94 NA 8.45 NA NA Sephs1 selenophosphate synthetase 1,selenophosphate synthetase 1,
|
656
|
+
19.52 21.44 22.71 19.52 19.91 22.74 26.81 20.5 22.92 23.3 14.64 NA NA 23.03 23.24 22.89 27.95 22.64 21.91 20.11 22.41 22.33 20.87 14.64 24.52 NA 23.92 NA NA Fbxw17 F-box and WD-40 domain protein 17
|
657
|
+
12.64 12.7 15.09 12.64 15.91 16.75 8.94 13.28 14.63 13.84 15.24 NA NA 13.29 12.62 12.85 16.29 12.59 13.25 13.19 12.43 10.56 15.07 13.9 12.11 NA 18.91 NA NA Rars2 arginyl-tRNA synthetase-like
|
658
|
+
14.59 13.81 14.75 14.59 13.81 11.63 14.2 14.04 15.16 15.19 15.7 NA NA 14.3 16.32 15.48 14.08 16.37 12.54 14.41 14.86 13.02 13.68 12.82 14.03 NA 16.86 NA NA Slc30a9 solute carrier family 30 (zinc transporter),,solute carrier family 30 (zinc transporter),,solute carrier family 30 (zinc transporter),,
|
659
|
+
39.56 44.3 39.61 39.56 42.76 25.93 40.93 34.01 45.4 38.07 37.52 NA NA 44.92 38.96 38.09 40.57 43.58 33.18 46.14 38.45 38.28 45.12 45.17 36.75 NA 30.02 NA NA Uhrf2 ubiquitin-like, containing PHD and RING finger,ubiquitin-like, containing PHD and RING finger,
|
660
|
+
11.72 10.51 10.13 11.72 10.6 10.88 7.15 11.69 11.12 9.74 10.49 NA NA 9.1 9.87 7.69 12.18 8.55 12.63 12.11 9.33 8.44 10.16 10.43 11.47 NA 11.64 NA NA Supt3h suppressor of Ty 3 homolog
|
661
|
+
50.6 45.45 63.88 50.6 71.04 80.37 48.71 81.39 54.01 52.41 57.54 NA NA 54.08 60.31 62.65 74.14 50.34 78.01 48.14 50.33 53.09 50.83 54.88 49.58 NA 85.41 NA NA 2010311D03Rik hypothetical protein LOC109129
|
662
|
+
0.34 1.39 1.11 0.34 0.56 0.82 1.04 0.4 1.2 0.63 0.85 NA NA 1.52 1.11 0.83 0.86 1.03 0.57 0.84 0.68 0.89 0.88 0.81 1.33 NA 0.38 NA NA Plekha5 phosphoinositol 3-phosphate-binding protein-2,phosphoinositol 3-phosphate-binding protein-2,phosphoinositol 3-phosphate-binding protein-2,phosphoinositol 3-phosphate-binding protein-2,phosphoinositol 3-phosphate-binding protein-2,
|
663
|
+
1.87 2.45 2.38 1.87 2.37 3.36 1.5 3.22 1.7 2.46 2.5 NA NA 1.83 2.31 2.32 3.16 1.52 3.03 2.33 1.86 2.02 2.27 1.37 1.79 NA 3.01 NA NA Mmaa methylmalonic aciduria type A
|
664
|
+
12.45 10.03 18.6 12.45 13.47 17.31 13.66 18.46 15.23 11.33 12.61 NA NA 19.46 15.99 17.91 18.31 15.04 20.7 12.52 13.92 21.58 15.69 18.69 13.6 NA 22.11 NA NA Gins4 SLD5
|
665
|
+
1.53 1.83 2.1 1.53 1.35 1.75 2.83 0.9 3.04 2.64 3.02 NA NA 2.79 2.73 1.66 1.64 3.26 1.13 1.98 3.71 2.55 1.98 2.41 2.97 NA 1.03 NA NA Chd9 chromodomain helicase DNA binding protein 9,chromodomain helicase DNA binding protein 9,
|
666
|
+
42.44 68.81 54.81 42.44 46.78 40.36 63.99 36.64 51.31 32.27 48.7 NA NA 64.61 48.84 56.15 33.67 48.34 39.1 44.27 44.94 67.86 45.06 63.62 38.73 NA 37.85 NA NA 2410014A08Rik hypothetical protein LOC109154
|
667
|
+
9.52 9.57 10.41 9.52 9.95 6.85 9.29 9.35 8.98 9.04 10.07 NA NA 9.06 9.87 8.64 11.49 9.21 10.37 9.71 9.01 7.86 8.68 9.54 9.33 NA 10.64 NA NA Ube2q2 ubiquitin-conjugating enzyme E2Q 2
|
668
|
+
5.18 4.02 6.33 5.18 5.66 2.46 6.23 5.26 5.88 3.72 4.39 NA NA 6.26 4.52 6.38 3.25 5.53 2.68 3.06 5.29 4.96 5.26 7.96 5.49 NA 4.76 NA NA 5730596K20Rik hypothetical protein LOC109168
|
669
|
+
0 0 NA 0 0.02 0.04 0 0 0.03 0 0.04 NA NA 0.03 0 0.02 0 0.01 0.01 0 0 0.09 0.01 0.02 0.08 NA 0 NA NA Sobp sine oculis-binding protein homolog,sine oculis-binding protein homolog,
|
670
|
+
21.63 40.18 27.67 21.63 13.74 24.53 26.02 14.05 15.85 15.12 12.29 NA NA 36.77 24.27 27.2 31.67 25.85 49.13 13.26 15.98 39.43 17.81 45.94 16.91 NA 22.78 NA NA 6720460F02Rik hypothetical protein LOC109212
|
671
|
+
0 0 NA 0 0.08 0 0 0 0.04 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Tmem139 hypothetical protein LOC109218
|
672
|
+
243.69 55.15 253.8 243.69 323.83 223.14 202.69 614.56 211.98 416.25 247.56 NA NA 110.75 132.82 305.54 582.38 145.64 226.68 259.92 153.4 127.28 342.97 109.95 176.22 NA 243.65 NA NA Ms4a7 membrane-spanning 4-domains, subfamily A, member
|
673
|
+
20.54 16.8 13.36 20.54 16.24 11.23 11.71 24.54 13.53 11.66 13.24 NA NA 12.87 10.74 14.46 12.88 14.69 16.03 16.01 14.14 14.09 15.8 15.09 11.22 NA 20.69 NA NA Ppp4r1l protein phosphatase 4, regulatory subunit 1-like
|
674
|
+
5.4 3.81 12.41 5.4 6.59 6.87 5.27 7.34 4.38 5.83 6.79 NA NA 6.11 8.39 6.89 8.22 6.33 7.52 6.46 7.01 8.88 7.89 9.21 4.05 NA 10.99 NA NA Sccpdh saccharopine dehydrogenase (putative)
|
675
|
+
0.62 0.99 1.05 0.62 0.76 1 1.6 0.85 1.38 1.17 1.54 NA NA 1.32 1.36 0.93 0.52 1.57 0.4 1.32 1.44 1.25 1.13 1.09 1.12 NA 0.47 NA NA Mbd5 methyl-CpG binding domain protein 5,methyl-CpG binding domain protein 5,methyl-CpG binding domain protein 5,
|
676
|
+
1.06 2.15 1.31 1.06 0.85 1.03 1.81 0.22 1.36 0.68 1.3 NA NA 2.36 1.65 1.69 1.09 1.73 1.05 0.87 1.38 2.1 1.25 2.89 1.19 NA 0.48 NA NA Kif24 kinesin family member 24,kinesin family member 24,
|
677
|
+
0 0.32 NA 0 5.45 2.92 0.84 1.81 3.09 1.73 1.03 NA NA 2.72 3.28 1.33 3.26 1.24 0.39 3.75 1.49 0.77 5.93 3.53 5.45 NA 2.02 NA NA Lrrc39 leucine rich repeat containing 39 isoform 1
|
678
|
+
0.24 0.18 NA 0.24 0.23 0.13 0.18 0 0.15 0.07 0.18 NA NA 0.13 0.24 0.1 0.04 0.3 0.17 0.23 0.22 0.52 0.07 0.28 0.13 NA 0 NA NA Tspan9 tetraspan NET-5,tetraspan NET-5,tetraspan NET-5,
|
679
|
+
0.04 0 NA 0.04 0 0 0 0 0 0 0 NA NA 0 0.07 0 0 0.04 0 0 0 0 0 0 0 NA 0 NA NA 9530008L14Rik hypothetical protein LOC109254,hypothetical protein LOC109254,
|
680
|
+
2.1 3.8 3.76 2.1 3.58 2.84 4.06 2.4 4.39 3.94 4.65 NA NA 4.35 3.73 3.41 2.52 4.23 2.31 3.67 4.77 4.21 3.93 5.06 4.99 NA 1.7 NA NA Rlf rearranged L-myc fusion sequence,rearranged L-myc fusion sequence,rearranged L-myc fusion sequence,
|
681
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Me3 malic enzyme 3, NADP(+)-dependent,,malic enzyme 3, NADP(+)-dependent,,malic enzyme 3, NADP(+)-dependent,,
|
682
|
+
0 0.14 NA 0 0.19 0.13 1.18 0.6 0.08 0 0.04 NA NA 0.8 0.47 0.2 0.07 0.11 0.08 0.31 0.14 0.1 0.35 0.07 0.71 NA 0.04 NA NA Arhgap8 Rho GTPase activating protein 8,Rho GTPase activating protein 8,Rho GTPase activating protein 8,
|
683
|
+
0 0 NA 0 0 0.03 0 0 0 0 0 NA NA 0.07 0 0 0 0.02 0 0 0 0 0 0 0 NA 0 NA NA 8030451F13Rik myosin binding protein C, slow type,myosin binding protein C, slow type,
|
684
|
+
8.05 8.01 8.86 8.05 8.26 8.53 8.18 7.6 7.57 8.58 8.23 NA NA 9.44 7.68 7.63 8.3 7.57 9.57 9.95 7.97 9.79 8.98 6.78 8.15 NA 8.47 NA NA Actr5 ARP5 actin-related protein 5 homolog,ARP5 actin-related protein 5 homolog,
|
685
|
+
0 0 NA 0 0 0 0 0 0 0 0.03 NA NA 0 0 0 0 0.08 0 0.03 0 0 0.04 0 0 NA 0 NA NA 9330176C04Rik hypothetical protein LOC109280
|
686
|
+
46.93 50.62 46.35 46.93 55.66 60.05 45.34 42.92 38.97 43.77 37.85 NA NA 51.5 40.12 47.5 41.82 42.38 46.8 46.87 41.98 44.53 49.38 44.15 43.71 NA 57.65 NA NA C030046I01Rik hypothetical protein LOC109284
|
687
|
+
0 0.01 NA 0 0 0.01 0.04 0.01 0 0.03 0 NA NA 0.04 0 0.01 0.03 0.01 0.03 0 0 0.01 0 0 0 NA 0.01 NA NA C030045D06Rik hypothetical protein LOC109294
|
688
|
+
40.02 29.26 36.24 40.02 32.96 37.26 26.84 32.87 30.79 30.65 28.78 NA NA 36.18 33.18 40.84 34.89 31.37 37.99 32.53 32.52 32.47 34.22 28.92 28.58 NA 40.73 NA NA Orai1 transmembrane protein 142A,transmembrane protein 142A,
|
689
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA A030004J04Rik hypothetical protein LOC109314
|
690
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA C1qtnf7 C1q and tumor necrosis factor related protein 7,C1q and tumor necrosis factor related protein 7,
|
691
|
+
12.48 19.9 14.47 12.48 10.46 13.79 15.69 7.09 15.43 17.34 17.71 NA NA 16.33 15.56 13.66 14.82 16.35 10.67 15.16 14.16 17.33 12.89 14.82 18.07 NA 9.24 NA NA Rnf20 ring finger protein 20,ring finger protein 20,
|
692
|
+
0 0.14 NA 0 0.05 0.14 0.08 0.22 0.6 0.05 0.06 NA NA 0.14 0.05 0.12 0 0.05 0.13 0.05 0.11 0.05 0.09 0.06 0.08 NA 0.09 NA NA Cdcp1 CUB domain-containing protein 1,CUB domain-containing protein 1,
|
693
|
+
4.9 7.43 7.27 4.9 5.57 4.99 9.41 6.49 9.9 7.64 9.99 NA NA 9 8.19 7.86 6.29 9.16 4.9 7.16 9.17 8.62 7.96 8.56 8.67 NA 6.21 NA NA Pkn2 protein kinase N2,protein kinase N2,
|
694
|
+
0 0 NA 0 0 0 0 0 0 0.05 0 NA NA 0 0.03 0.05 0 0 0 0 0 0 0 0.02 0.08 NA 0.17 NA NA Slc5a10 solute carrier family 5 (sodium/glucose,solute carrier family 5 (sodium/glucose,
|
695
|
+
2.39 2.95 2.81 2.39 2.83 5.62 2.22 3.62 2.9 2.9 3.02 NA NA 3.23 2.49 3.01 3.7 2.69 5.25 1.92 2.09 3.48 2.16 2.72 2.79 NA 5.57 NA NA Ankrd39 ankyrin repeat domain 39
|
696
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA C630035N08Rik hypothetical protein LOC109349
|
697
|
+
29.09 29.54 31.02 29.09 29.62 19.34 27.25 26.35 31.62 28.77 31.68 NA NA 26.04 27.48 30.09 25.17 30.62 25.58 37.53 33.28 25.64 34.08 31.09 31.23 NA 28.43 NA NA C430003P19Rik hypothetical protein LOC109359,hypothetical protein LOC109359,
|
698
|
+
36.91 56.27 45.76 36.91 49.02 58.03 31.26 58.47 41.91 43.71 38.04 NA NA 39.93 39.49 42.09 46.48 38.69 61.83 37.9 40.92 38.82 37.01 39.84 36 NA 60.42 NA NA Sri sorcin isoform 1
|
699
|
+
0 0 NA 0 0.15 0 0 0 0.14 0 0.03 NA NA 0 0 0.1 0 0 0 0 0.02 0 0 0 0.16 NA 0 NA NA Tbx10 T-box 10 isoform 1
|
700
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Lmo3 LIM domain only 3,LIM domain only 3,
|
701
|
+
0 1.44 NA 0 0.46 0 0.1 0.05 0.09 0.28 0.37 NA NA 0.59 0.34 0.16 0.47 0.65 0.48 0.2 0.06 1.27 0.33 0.32 0.1 NA 0.93 NA NA Lmo1 LIM domain only 1
|
702
|
+
0.35 0.24 0.06 0.35 0.13 0.3 0.21 0.16 0.36 0.07 0.27 NA NA 0.38 0.23 0.22 0.2 0.13 0.15 0.13 0.16 0.2 0.35 0.1 0.08 NA 0.03 NA NA Cald1 caldesmon 1
|
703
|
+
0 0.92 NA 0 0.08 0 0.61 0 0.08 0.17 0.52 NA NA 0.05 0.2 0 0.11 0.25 0.11 0.18 0.32 0.12 0.12 0.24 0.09 NA 0.3 NA NA Upk1a uroplakin 1A,uroplakin 1A,
|
704
|
+
1289.35 1171.23 771.99 1289.35 1663.19 1628.95 856.49 2315.92 1825.82 1347.59 1186.82 NA NA 627.45 952.99 1281.94 1116.12 1016.32 1699.46 1142.85 946.81 666.24 1076.77 385.55 1298.5 NA 1542.05 NA NA Npy neuropeptide Y
|
705
|
+
0.85 0.6 0.88 0.85 0.05 1.56 0.56 1.71 0.94 0.52 0.63 NA NA 0.43 1.39 1.61 2.68 1.17 2.15 0.25 1.98 1.5 0.96 1.63 1.89 NA 2.33 NA NA Acy1 aminoacylase 1
|
706
|
+
16.05 20.9 22.98 16.05 15.98 13.75 23.68 15.36 22.42 20.03 22.89 NA NA 25.6 21.7 22.4 18.11 22.76 15.43 21.98 22.59 22.99 21.81 25.14 23.44 NA 15.85 NA NA Txlna taxilin alpha,taxilin alpha,
|
707
|
+
0 0 NA 0 0 0 0 0 0.13 0.14 0 NA NA 0.21 0.13 0 0 0.07 0 0 0.04 0.1 0.04 0 0.52 NA 0.13 NA NA Ctrl chymotrypsin-like
|
708
|
+
0 0 NA 0 0.1 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Hoxc11 homeobox C11
|
709
|
+
224.15 128.29 168.71 224.15 156.6 215.57 133.13 188.13 185.07 181 132.51 NA NA 148.8 170.87 166.07 241.91 161.31 311.4 159.99 162.61 185.37 149.35 163.42 143.88 NA 227.93 NA NA Cyb5 cytochrome b-5
|
710
|
+
12.78 12.64 13.13 12.78 11.98 15.55 16.98 9.8 17 14.38 14.69 NA NA 15.31 16.03 16.74 12.28 15.44 12.63 14.36 12.99 14.81 13.86 15.25 15.81 NA 12.85 NA NA Ampd2 adenosine monophosphate deaminase 2 (isoform L),adenosine monophosphate deaminase 2 (isoform L),adenosine monophosphate deaminase 2 (isoform L),
|
711
|
+
0.97 1.1 0.44 0.97 0.6 1.07 1 0.27 0.51 0.23 0.29 NA NA 1.16 0.69 0.18 2.12 0.51 0.14 0.4 0.27 1.14 0.69 0.14 0.23 NA 0.07 NA NA Ank2 ankyrin 2, brain isoform 3
|
712
|
+
0 0.34 NA 0 0.1 0.06 0.06 0.11 0 0.23 0.15 NA NA 0.08 0.09 0.18 0.3 0.15 0 0.46 0.24 0.15 0.17 0.16 0.38 NA 0.13 NA NA Hyal3 hyaluronoglucosaminidase 3
|
713
|
+
23.17 35.64 36.28 23.17 22.59 19.3 40.58 16.88 38.11 32.47 37.12 NA NA 50.2 29.82 42.2 19.92 33.59 22.93 31.41 36.96 38.03 32.69 43.86 30.58 NA 21.83 NA NA Arrb1 arrestin, beta 1 isoform A
|
714
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Cpa1 carboxypeptidase A1
|
715
|
+
0.05 0.06 NA 0.05 0.06 0.01 0.1 0 0.01 0.12 0.01 NA NA 0.01 0.03 0 0.01 0.04 0.02 0.02 0.03 0.07 0.03 0.14 0.07 NA 0 NA NA Itga1 integrin alpha 1,integrin alpha 1,
|
716
|
+
78.92 71.45 63.55 78.92 49.59 58.76 62.94 44.43 98.31 61.27 68.94 NA NA 80.8 68.71 52.31 59.11 69.01 54.99 75.75 73.97 70.17 86.1 72.68 87.21 NA 42.6 NA NA Actn1 actinin, alpha 1,actinin, alpha 1,
|
717
|
+
0 0 NA 0 0.14 0 0.1 0.05 0.02 0.26 0 NA NA 0 0 0 0 0 0 0.07 0 0 0.05 0 0 NA 0 NA NA Maob amine oxidase (flavin-containing)
|
718
|
+
122.34 154.44 109.54 122.34 104.12 103.61 132.78 99.98 108.43 117.77 127.13 NA NA 135.58 136.84 109.33 123.72 114.88 116.74 137.24 133.29 121.51 133.06 125.21 152.53 NA 112.74 NA NA Cyb5r3 diaphorase 1
|
719
|
+
162.42 156.6 121.94 162.42 106.17 217.53 146.49 231.12 134.71 98.32 121.49 NA NA 97.1 171.82 187 237.32 147.12 163.74 90.47 85.96 129.58 149.84 200.22 81.83 NA 132.79 NA NA Blvra biliverdin reductase A,biliverdin reductase A,
|
720
|
+
4.14 3.95 3.88 4.14 3.88 3.75 3.56 3.42 4.23 3.25 4.29 NA NA 5.34 4.66 3.46 3.28 4.43 3.31 3.78 4.05 4.68 4.42 4.72 3.67 NA 4.17 NA NA Pgm3 phosphoglucomutase 3,phosphoglucomutase 3,phosphoglucomutase 3,
|
721
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Clps colipase, pancreatic
|
722
|
+
13.06 18.98 10.43 13.06 19.13 5.66 11.66 7.62 13.96 6.76 10.5 NA NA 8.34 9.19 8.13 7.48 6.47 7.25 8.2 6.81 7.35 17.68 8.9 4.45 NA 11.5 NA NA Glo1 glyoxalase 1
|
723
|
+
65.14 72.84 70.03 65.14 86.45 85.84 55.04 80.67 58.7 60.97 55.26 NA NA 55.26 59.16 63.07 68.46 61.71 93.95 63.23 51.37 62.3 62.75 54.88 61.04 NA 95.14 NA NA H47 selenoprotein S
|
724
|
+
0 0 NA 0 0 0 0 0 0 0 0.06 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Pgc progastricsin (pepsinogen C)
|
725
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA F11 coagulation factor XI
|
726
|
+
20.51 6.31 9.24 20.51 11.2 17.7 8.88 12.94 9.64 4.02 5.07 NA NA 9.81 9.56 5.92 12.22 10.83 5.6 6.8 8.19 13.14 8.13 9.47 8.2 NA 17.02 NA NA Cbr3 carbonyl reductase 3
|
727
|
+
1.45 1.6 1.96 1.45 2.32 1.17 2.29 1.37 2.81 2.37 3.16 NA NA 2.6 2.66 2.02 2.06 2.66 1.34 2.67 2.75 2.68 2.59 2.5 2.46 NA 1.24 NA NA Braf Braf transforming,Braf transforming,Braf transforming,
|
728
|
+
0 0.22 NA 0 0.04 0.09 0.01 0.07 0.12 0.16 0.08 NA NA 0.04 0.03 0.06 0 0.07 0.1 0.12 0.07 0.03 0.04 0.07 0.03 NA 0.07 NA NA Mzf1 myeloid zinc finger 1,myeloid zinc finger 1,myeloid zinc finger 1,
|
729
|
+
54.4 44.24 54.97 54.4 60.32 70.9 49.88 73.58 50.1 58.67 52.74 NA NA 50.91 55.21 48.56 68.72 53.2 64.23 53.56 54.17 56.25 55.9 50.92 45.2 NA 69.18 NA NA Asl argininosuccinate lyase
|
730
|
+
4.53 1.67 3.48 4.53 2.82 3.24 2.09 2.78 2.1 3.65 0.74 NA NA 2.46 3.1 2.17 3.11 1.84 4.59 2.54 1.62 1.99 4.52 2.51 2.69 NA 2.42 NA NA Ela1 elastase 1, pancreatic
|
731
|
+
0 0 NA 0 0 0 0 0.04 0.02 0.1 0.01 NA NA 0 0 0 0 0 0 0.02 0 0 0 0 0 NA 0 NA NA Mcf2 mcf.2 transforming,mcf.2 transforming,
|
732
|
+
35.69 30.42 35.35 35.69 33.64 41.66 23.36 30.56 30.39 24.63 25.61 NA NA 28.76 26.6 36.02 42.2 29.25 42.64 27.96 32.51 39.06 28.1 32.28 21.96 NA 41.49 NA NA Rap1a RAS-related protein-1a
|
733
|
+
26.1 36.41 30.54 26.1 22.39 20.88 32.42 17.15 31.67 30.17 30.83 NA NA 35.28 33.45 31.98 25.88 34.58 21.81 32.6 33.16 30.42 31.5 36.91 31.87 NA 17.99 NA NA Zfp91 zinc finger protein 91
|
734
|
+
4.67 4.39 3.58 4.67 3.95 2.29 2.97 3.52 4.38 3.64 3.98 NA NA 3.64 3.61 3.61 3.44 4.3 3.39 3.82 3.26 5.16 3.15 4.49 4.34 NA 4.72 NA NA Zbtb25 zinc finger and BTB domain containing 25
|
735
|
+
59.49 69.35 53 59.49 53.37 51.66 74.11 45.56 93.67 64.78 90.53 NA NA 70.52 65.19 49.16 51.31 70.36 41.11 70.44 72.63 65.52 71.31 54.52 77.42 NA 36.5 NA NA Abr active BCR-related isoform 1
|
736
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0.02 0 0.05 0 0 0.04 0 0.01 0 0 0 0 NA 0 NA NA Art4 ADP-ribosyltransferase 4
|
737
|
+
0 0 NA 0 0 0 0.08 0 0.13 0 0 NA NA 0 0.11 0 0 0 0.12 0.1 0 0 0 0.04 0.15 NA 0.05 NA NA Art3 ADP-ribosyltransferase 3,ADP-ribosyltransferase 3,ADP-ribosyltransferase 3,ADP-ribosyltransferase 3,ADP-ribosyltransferase 3,
|
738
|
+
271 260.06 294.57 271 343.95 223.64 385.59 340.42 266.38 291.23 332.95 NA NA 368.66 365.26 394.32 289.81 394.45 319.95 364.21 397.6 346.62 387.66 317.44 244.51 NA 226.98 NA NA Gusb glucuronidase, beta
|
739
|
+
48.34 33.61 42.56 48.34 45.57 73.03 32.89 67.66 30.84 38.49 29.45 NA NA 34.26 38.38 32.12 41.33 27.68 56.47 37.53 28.78 36.11 34.12 31.07 33.4 NA 58.7 NA NA Gtrgeo22 hypothetical protein LOC110012
|
740
|
+
20.54 32.09 22.16 20.54 10.29 23.05 22.17 10.98 17.51 13.25 14.18 NA NA 31.62 24.02 25.45 24.95 20.03 27.15 11.5 16.63 33.37 14.85 34.26 17.78 NA 19.2 NA NA Kif22 kinesin family member 22
|
741
|
+
23.89 61.38 22.97 23.89 14.71 16.48 38.04 10.74 23.02 22.85 26.55 NA NA 38.34 35.03 30.62 29.41 27.94 20.55 19.85 24.25 36.12 22.85 41.21 31.15 NA 16.9 NA NA Dek DEK oncogene (DNA binding),DEK oncogene (DNA binding),
|
742
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Syt17 synaptotagmin XVII,synaptotagmin XVII,synaptotagmin XVII,synaptotagmin XVII,
|
743
|
+
16.9 26.87 21.62 16.9 13.73 24.63 13.47 14.81 11.1 11.05 11.45 NA NA 21.06 20.56 22.62 26.09 16.77 33.57 9.81 10.81 23.29 12.09 28.38 11.06 NA 24.11 NA NA Dut deoxyuridine triphosphatase,deoxyuridine triphosphatase,
|
744
|
+
0 0 NA 0 0 0 0 0 0 0 0.01 NA NA 0 0 0.24 0 0 0 0 0 0 0 0 0 NA 0 NA NA Bmp3 bone morphogenetic protein 3,bone morphogenetic protein 3,
|
745
|
+
26.69 34.26 31.91 26.69 24.9 23.12 31.4 21.41 34.15 28.1 28.13 NA NA 36.85 30.56 32.14 26.71 36.68 23.63 30.5 34.82 32.85 30.62 35.26 30.5 NA 22.83 NA NA Pygb brain glycogen phosphorylase
|
746
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Dnahc5 dynein, axonemal, heavy chain 5
|
747
|
+
25.41 22.02 25.06 25.41 22.99 23.81 26.8 17.49 27.71 20.98 21.73 NA NA 33.46 25.65 18.17 24.27 24.63 17.12 23.86 27.52 23.64 27.6 26.82 27.31 NA 19.26 NA NA Phka2 phosphorylase kinase alpha 2,phosphorylase kinase alpha 2,phosphorylase kinase alpha 2,
|
748
|
+
18.16 10.67 21.6 18.16 13.56 13.5 20.4 8.02 11.88 21.35 12.97 NA NA 13.74 13.05 19.43 9.92 14.08 13.05 18.8 20.29 16.24 14.05 20.8 15.05 NA 16.01 NA NA Pygl liver glycogen phosphorylase
|
749
|
+
35.04 33.16 38.08 35.04 29.54 35.06 29.52 23.61 33.55 30.62 34.35 NA NA 31.3 32.1 26.08 29.08 31.39 27.11 37.77 29.13 30.49 33.22 26.82 34.8 NA 29.91 NA NA Nol1 nucleolar protein 1
|
750
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Cyp11b1 cytochrome P450, family 11, subfamily b,
|
751
|
+
9.97 7.09 11.22 9.97 10.77 13.85 8.65 13.18 10.3 10.26 11.72 NA NA 11.28 9.57 10.09 13.18 9.12 11.63 9.72 11.37 11.26 10.94 7.71 10.82 NA 14.09 NA NA Mpi mannose phosphate isomerase
|
752
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Fgb fibrinogen, B beta polypeptide
|
753
|
+
44.51 68.55 56.77 44.51 46.96 49.31 66.09 38.91 51.36 49.61 40.57 NA NA 64.12 51.31 51.78 49.08 56.12 45.42 49.06 51.66 62.13 50.8 60.76 54.6 NA 40.16 NA NA Ehmt2 euchromatic histone lysine N-methyltransferase 2,euchromatic histone lysine N-methyltransferase 2,
|
754
|
+
29.03 24.05 29.85 29.03 28.75 27.17 28.5 25.88 32.18 30.42 30.69 NA NA 31.2 30.74 32.62 26.15 29.37 25.09 27.98 28.69 29.77 28.96 29.69 27.36 NA 27.21 NA NA Raf1 protein kinase raf 1,protein kinase raf 1,protein kinase raf 1,
|
755
|
+
0 0 NA 0 0.07 0 0.15 0 0.19 0.1 0.1 NA NA 0.04 0.19 0 0.17 0.07 0 0.1 0 0 0 0.04 0.04 NA 0 NA NA Gpr18 G protein-coupled receptor 18
|
756
|
+
60.95 54.79 58.96 60.95 79.17 61.06 62.44 66.8 54.47 55.38 51.5 NA NA 69.42 53.55 75.5 63.23 57.74 68.3 49.93 48.57 61.73 55.5 49.72 44 NA 72.57 NA NA Slc35b1 solute carrier family 35, member B1
|
757
|
+
12.35 9.97 18.59 12.35 13.67 14.56 14.63 12.69 18.49 14.23 16.23 NA NA 20.48 16.47 20.68 13.14 18.88 14.3 13.67 20.54 15.99 16.15 21.33 17.06 NA 16.05 NA NA Manba mannosidase, beta A, lysosomal,mannosidase, beta A, lysosomal,mannosidase, beta A, lysosomal,
|
758
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0.31 0 0 0 NA 0 NA NA Abpg androgen binding protein gamma
|
759
|
+
12.13 11.21 27.98 12.13 16.57 16.77 12.76 14.31 13.07 9.22 10.51 NA NA 29.03 16.7 7.62 24.09 15.31 28.3 10.92 14.73 23.27 15.13 36.77 10.05 NA 15.15 NA NA Fdps farnesyl diphosphate synthetase
|
760
|
+
0 0.06 NA 0 0 0 0 0.11 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Mal2 MAL2 proteolipid protein
|
761
|
+
213.15 236.88 213.95 213.15 253.49 198 231.56 200.96 255.2 214.04 231.46 NA NA 233.23 241.26 237.53 171.87 237.13 162.3 252.13 284.85 188.76 253.43 220.15 305.52 NA 217.42 NA NA Nckap1l NCK associated protein 1 like,NCK associated protein 1 like,
|
762
|
+
0 0 NA 0 0 0.07 0.04 0 0 0 0 NA NA 0.02 0 0 0 0 0 0.06 0 0 0 0.02 0 NA 0 NA NA Csdc2 RNA-binding protein pippin
|
763
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Krt72 keratin 72
|
764
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Ugt3a1 UDP glycosyltransferases 3 family, polypeptide
|
765
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0.05 0.06 0 0 0 0 0 0 0 NA 0 NA NA 9030619P08Rik RIKEN cDNA 9030619P08
|
766
|
+
3.6 10.04 4.09 3.6 2.36 4.03 6.46 2.26 6.26 3.35 3.97 NA NA 7.91 6.25 5.11 5.51 4.87 3.38 2.31 3.94 8.27 3.64 8.49 4.33 NA 3.07 NA NA Espl1 extra spindle poles-like 1,extra spindle poles-like 1,
|
767
|
+
0 0 NA 0 0.07 0 0.04 0 0 0 0 NA NA 0 0 0 0 0 0.05 0 0.04 0 0.04 0 0.04 NA 0 NA NA AW049604 TAFA5 protein
|
768
|
+
14.53 16.25 17.89 14.53 14.31 11.24 18.06 8.76 17.98 15.71 17.12 NA NA 17.62 16.37 16.27 14.73 18.63 10.76 17.63 16.64 18.54 19.15 20.07 21.54 NA 11.42 NA NA Topors topoisomerase 1-binding RING finger
|
769
|
+
34.65 17.34 32.29 34.65 32.94 29.62 25.76 26.04 22.93 28.84 24.83 NA NA 23.56 29.42 25.75 32.36 28.46 33.97 24.72 26.95 27.29 26.28 24.56 26.48 NA 31.46 NA NA Sharpin SHANK-associated RH domain interacting protein
|
770
|
+
33.58 44.57 40.92 33.58 37 43.32 43.41 34.74 44.54 50.29 48 NA NA 42.12 43.53 38.36 42.62 44.6 38.25 46.03 41.58 39.23 46.83 35.57 45.47 NA 37.77 NA NA Gga1 golgi associated, gamma adaptin ear containing,
|
771
|
+
0 0 NA 0 0 0 0 0 0 0.05 0.01 NA NA 0 0.03 0 0 0.02 0.02 0.02 0 0.05 0.05 0.01 0.04 NA 0 NA NA Prickle1 prickle like 1,prickle like 1,
|
772
|
+
5.69 2.99 4.46 5.69 5.97 5.07 3.54 7.62 3.78 4.75 3.21 NA NA 4.2 3.5 4.92 4.37 3.37 5.35 4.2 3.43 3.3 3.99 3.91 2.88 NA 5.5 NA NA Fbxo4 F-box protein 4
|
773
|
+
4.21 6.34 7.26 4.21 8.28 5.07 6.71 6.5 6.94 11.28 11.96 NA NA 6.98 8.72 6.39 8.14 8.56 4.58 9.06 8.46 7.23 9.58 7.89 7.25 NA 5.41 NA NA AW549877 hypothetical protein LOC106064,hypothetical protein LOC106064,
|
774
|
+
5.38 9.65 6.98 5.38 4.19 4.04 10.21 3.67 6.8 5.08 5.68 NA NA 7.19 7.91 8.05 4.08 8.86 2.48 4.78 6.67 7.69 5.6 7.86 7.25 NA 3.69 NA NA Slc45a4 solute carrier family 45, member 4,solute carrier family 45, member 4,solute carrier family 45, member 4,
|
775
|
+
75.82 79.34 71.02 75.82 88.43 75.67 60.73 86.58 73.15 73.54 72.4 NA NA 64.14 61.04 72.67 54.4 70.42 73.83 81.7 62.48 64.28 72.42 53.01 62.02 NA 86.98 NA NA D15Mgi27 hypothetical protein LOC106073
|
776
|
+
26.64 30.3 31.47 26.64 31.96 18.2 29.9 27.82 29.14 24.1 30.87 NA NA 31.93 29.46 29.56 27.31 32.35 26.58 28.98 33.39 27.24 28.87 36.24 26.21 NA 30.48 NA NA Cggbp1 CGG triplet repeat binding protein 1,CGG triplet repeat binding protein 1,
|
777
|
+
3.98 4.35 8.51 3.98 9.56 8.6 9.47 10.17 9.58 9.08 11.48 NA NA 11.04 10.13 12.77 10.9 12.69 10.54 10.65 11.18 12.17 9.83 10.02 9.87 NA 10 NA NA Txndc11 thioredoxin domain containing 11 isoform 1,thioredoxin domain containing 11 isoform 1,
|
778
|
+
4.9 3.38 5.31 4.9 4.16 5.14 6.74 3.34 5.12 6.18 7.39 NA NA 4.9 6.88 4.5 7.24 5.18 2.15 4.75 5.18 6.02 3.95 4.75 6.36 NA 2.82 NA NA Zc3h7a zinc finger CCCH type containing 7
|
779
|
+
2.73 2.67 2.84 2.73 3.44 1.92 2.36 3.76 3.34 3.18 3.71 NA NA 2.65 4.44 3.04 2.31 3.19 3 3.02 2.39 3.23 3.14 2.64 2.71 NA 4.56 NA NA Qtrtd1 queuine tRNA-ribosyltransferase domain
|
780
|
+
25.35 26.04 23.15 25.35 26.91 20.5 23.4 22.14 24.66 21.79 26.12 NA NA 24.73 24.21 25.12 21.61 24.83 22.53 21.65 21.56 21.11 22 22.93 22.15 NA 29.06 NA NA Rrn3 RRN3 RNA polymerase I transcription factor
|
781
|
+
11.3 14.8 17.73 11.3 14.36 9.13 19.6 9.76 14.67 17.76 16.75 NA NA 19.19 18.63 13.05 14.28 17.66 9.62 19.23 17.31 16.68 17.4 22.4 15.1 NA 11.55 NA NA Osbpl11 oxysterol binding protein-like 11
|
782
|
+
3.34 3.05 6.3 3.34 4.74 4.18 5.18 6.11 7.11 4.54 5.92 NA NA 5.35 6.23 6.48 4.55 6.3 3.45 5.61 6.65 5.09 6.54 5.18 7.29 NA 6.93 NA NA Nsun3 NOL1/NOP2/Sun domain family 3
|
783
|
+
18.46 20.03 23.33 18.46 16.5 25.71 16.02 21.6 16.24 16.13 15.1 NA NA 25.21 22.7 25.86 29.33 16.4 34.99 13.27 15.76 27.82 16.92 29.33 13.43 NA 26.06 NA NA Rfc4 replication factor C (activator 1) 4
|
784
|
+
0 0.06 NA 0 0 0.08 0 0 0 0 0 NA NA 0 0 0 0.08 0 0 0 0.02 0 0 0 0 NA 0 NA NA Ildr1 immunoglobulin-like domain containing receptor
|
785
|
+
0.12 0.01 NA 0.12 0.27 0.35 0.25 0.08 0.37 0.3 0.26 NA NA 0.24 0.3 0.18 0.56 0.29 0.39 0.4 0.25 0.13 0.13 0.44 0.16 NA 0.14 NA NA Ypel1 yippee-like 1,yippee-like 1,
|
786
|
+
0 0 NA 0 0.06 0.43 0.07 0.21 0.03 0 0.05 NA NA 0.14 0.1 0 0 0 0.02 0.04 0.08 0 0.02 0 0 NA 0 NA NA Eaf2 ELL associated factor 2
|
787
|
+
1.19 0.59 1.07 1.19 0.39 0.53 0.75 0.58 0.84 0.51 0.58 NA NA 1.01 0.69 0.85 0.59 0.86 0.71 0.83 1 0.99 0.99 1.04 0.66 NA 0.79 NA NA Srl sarcalumenin,sarcalumenin,
|
788
|
+
0 0 NA 0 0 0 0.04 0 0.07 0 0 NA NA 0 0.11 0 0 0 0 0.05 0 0 0 0.09 0 NA 0 NA NA Osta organic solute transporter alpha
|
789
|
+
11.27 3.87 8.98 11.27 10.6 11.92 7.65 13.05 5.24 8.61 5.25 NA NA 5.25 5.88 5.85 9.59 7.21 10.73 6.74 5.43 7.12 8.72 5.7 5.33 NA 9.98 NA NA n/a n/a
|
790
|
+
33.11 41.59 36.19 33.11 32.53 30.96 41.17 34.07 40.67 41.33 35.15 NA NA 44.05 40.12 34.69 32.85 41.58 34.69 42.24 43.74 42.7 35.65 39.32 40.4 NA 33.61 NA NA Stk38 serine/threonine kinase 38,serine/threonine kinase 38,
|
791
|
+
94.54 89.47 83.36 94.54 73.22 100.37 82.24 90.51 90.04 79.98 67.65 NA NA 83.74 75.9 86.58 98.49 83.21 92.08 101.37 90.16 81.74 86.87 66.89 103.71 NA 70.63 NA NA Gpsm3 G-protein signalling modulator 3 (AGS3-like, C.
|
792
|
+
1.16 0 0.72 1.16 0.62 0.22 1.01 0.28 0.05 0.99 0.32 NA NA 0.11 0.5 0.26 0.9 0.74 0.27 0.49 0.67 1.24 0.51 0.5 0.29 NA 0.55 NA NA AW548124 hypothetical protein LOC106522
|
793
|
+
84.48 64.28 87.5 84.48 79.73 93.77 76.33 71.62 72.99 65.18 66.34 NA NA 91.99 81.89 85.14 98.05 87.43 104.95 77.39 77.93 93.26 87.68 99.88 68.89 NA 85.15 NA NA Gpsn2 glycoprotein, synaptic 2,glycoprotein, synaptic 2,
|
794
|
+
0 0.13 NA 0 0.06 0.14 0 0.47 0.11 0 0.11 NA NA 0.06 0.15 0.42 0.05 0 0.16 0 0.17 0 0.13 0.08 0.13 NA 0 NA NA Ldhal6b lactate dehydrogenase A-like 6B
|
795
|
+
8.28 6.8 8.23 8.28 9.86 9.72 5.61 12.34 6.45 7.01 5.28 NA NA 7.09 4.93 6.44 12.44 6.08 13.03 7.8 6.17 7.48 6.57 5.71 4.83 NA 9.46 NA NA Ppcs phosphopantothenoylcysteine synthetase
|
796
|
+
0 0.11 NA 0 0 0 0 0.18 0.06 0 0 NA NA 0 0 0 0 0 0.04 0.09 0 0 0 0 0 NA 0 NA NA Dlk2 EGF-like-domain, multiple 9,EGF-like-domain, multiple 9,EGF-like-domain, multiple 9,
|
797
|
+
8.95 6.5 13.62 8.95 10.9 7.21 10.67 6.61 8.61 8.82 9.53 NA NA 12.19 7.48 8.28 4.84 9.9 4.29 8.79 8.58 10.15 11.17 15.56 9.07 NA 10.67 NA NA Rab31 Rab31-like
|
798
|
+
58.42 45.11 48.54 58.42 44.17 37.05 61.54 34.68 48.63 59.61 45.17 NA NA 51.32 46.28 46.99 43.44 59.67 46.85 61.59 60.45 54.22 56.27 53.85 50.35 NA 41.71 NA NA Itfg3 integrin alpha FG-GAP repeat containing 3,integrin alpha FG-GAP repeat containing 3,
|
799
|
+
15.05 41.42 25.63 15.05 17.04 24.07 22.98 15.66 16.95 16.96 15.9 NA NA 36.82 31.51 27.45 28.97 28.93 30.14 18.24 18.47 31.34 20.84 45.31 19.74 NA 21.92 NA NA Nrm nurim
|
800
|
+
3.92 4.46 3.99 3.92 2.83 4.53 5.66 2.15 4.43 8.07 6.77 NA NA 4.13 6.32 2.57 7.13 4.55 3.06 7.57 6.05 5.74 4.07 3.22 7.18 NA 1.93 NA NA Ankrd12 ankyrin repeat domain 12,ankyrin repeat domain 12,
|
801
|
+
19.28 19.69 23.29 19.28 20.98 23.54 18.84 21.78 19.01 21.75 22.82 NA NA 18.06 18.56 20.48 17.77 17.81 18.67 23.68 19.87 17.15 20.99 20.24 20.89 NA 20.86 NA NA Trip10 thyroid hormone receptor interactor 10,thyroid hormone receptor interactor 10,thyroid hormone receptor interactor 10,thyroid hormone receptor interactor 10,
|
802
|
+
4.08 4.19 3.65 4.08 2.62 2.33 4.95 2.27 5.14 3.32 4.11 NA NA 6.58 4.92 3.01 2.77 4.14 3.17 3.24 4.22 5.42 4.06 6.45 4.46 NA 1.79 NA NA Ift140 intraflagellar transport 140,intraflagellar transport 140,
|
803
|
+
1.78 1.92 3.78 1.78 2.57 2.62 1.84 1.67 1.4 1.83 1.79 NA NA 2.5 2.59 1.8 1.07 2 2.32 2.62 2.65 2.06 2.77 3.81 2.25 NA 1.82 NA NA AI662250 vimentin-type IF-associated coiled-coil protein
|
804
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0.02 0 0 0 0 0 NA 0 NA NA Cyp4f15 cytochrome P450, family 4, subfamily f,,cytochrome P450, family 4, subfamily f,,
|
805
|
+
145.43 76.8 108.36 145.43 142.49 200.62 65.62 167.37 83.73 128.19 112.65 NA NA 61.9 93.82 83.57 137.29 96.06 157.47 98.15 91.39 95.75 108.95 87.99 81.8 NA 182.62 NA NA AI413582 hypothetical protein LOC106672
|
806
|
+
14.04 6.26 9.03 14.04 8.49 9.83 7.95 9.77 9.12 7.65 6.08 NA NA 8.81 8.45 9.84 10.28 8.01 9.37 8.65 6.83 8.76 8.48 9.73 9.4 NA 7.72 NA NA Rpusd1 RNA pseudouridylate synthase domain containing,RNA pseudouridylate synthase domain containing,
|
807
|
+
0.32 0 0 0.32 0 0 0 0 0 0.04 0 NA NA 0.07 0 0 0.07 0 0.03 0 0 0 0 0 0 NA 0 NA NA AU023871 hypothetical protein LOC106722
|
808
|
+
13.72 12.28 8.53 13.72 10.99 8.38 12.95 8.64 9.62 10.7 10.93 NA NA 10.95 9.63 10.86 10.21 13.14 8.29 12.97 12.36 10.38 12.11 7.34 10.86 NA 9.97 NA NA Ticam1 TICAM-1,TICAM-1,
|
809
|
+
0.51 0 0.33 0.51 0.04 0.4 0.1 0.1 0.12 0.18 0.03 NA NA 0.05 0.03 0.11 0.44 0.04 0.12 0.03 0.08 0.03 0.19 0.16 0.05 NA 0 NA NA Stap2 signal transducing adaptor family member 2
|
810
|
+
1.45 1.79 2.23 1.45 1.68 2 2.85 1.82 3.25 3.21 2.99 NA NA 3.94 2.92 2.46 2.13 2.95 1.79 3.54 2.95 3.45 2.23 2.4 2.94 NA 1.16 NA NA Dhx57 DEAH (Asp-Glu-Ala-Asp/His) box polypeptide 57,DEAH (Asp-Glu-Ala-Asp/His) box polypeptide 57,DEAH (Asp-Glu-Ala-Asp/His) box polypeptide 57,
|
811
|
+
10.52 28.25 16.51 10.52 6.52 14.52 14.99 3.52 9.16 6.31 9.37 NA NA 16.39 14.85 22.57 13.28 10.87 18.32 6.23 9.8 18.78 6.27 19.1 8.53 NA 10.42 NA NA Tcf19 transcription factor 19,transcription factor 19,
|
812
|
+
9.85 15.07 20.94 9.85 12.15 21.54 9.12 19.94 11.32 14.56 18.03 NA NA 19.79 18.25 10.78 21.2 15.79 18.96 15.07 13.13 20.88 10.68 12.76 14.86 NA 23.87 NA NA AI314976 hypothetical protein LOC106821,hypothetical protein LOC106821,hypothetical protein LOC106821,
|
813
|
+
8.97 10.89 9.68 8.97 11.4 7.86 8.3 11.2 8.76 7.49 9.45 NA NA 8.28 7.36 8.18 5.18 9.61 7.76 9.74 7.57 9.68 9.64 9.72 7.71 NA 10.13 NA NA Unc119b unc-119 homolog B
|
814
|
+
0.65 0.19 1.03 0.65 0.82 1.1 0.89 0.65 3.01 0.67 0.94 NA NA 0.62 0.62 0.41 1.46 0.69 0.87 1.09 0.92 0.23 1.35 0.44 1.24 NA 1.68 NA NA Abhd3 abhydrolase domain containing 3
|
815
|
+
53.52 28.94 60.85 53.52 51.88 30.83 39.34 48.37 31.26 39.08 45.18 NA NA 39.57 57.14 60.3 54.41 42.59 47.74 55.54 42.52 54.17 48.28 61.27 40.72 NA 63.42 NA NA Tnfaip8 tumor necrosis factor, alpha-induced protein 8
|
816
|
+
0.09 0.3 NA 0.09 0.46 0.27 1.08 0 0.19 0.5 0.62 NA NA 0.56 1.59 1.22 1.1 0.42 0.29 0.77 0.42 1.51 0.82 0.76 1.04 NA 0.32 NA NA Afap1l1 actin filament associated protein 1-like 1
|
817
|
+
19.9 11.95 16.36 19.9 20.44 19.6 9.5 22.67 11.88 13.09 16.95 NA NA 12.67 12.77 20.24 17.57 9.37 13.81 13.87 8.89 14.16 11.56 8.13 12.05 NA 22.02 NA NA 2010002N04Rik putative small membrane protein NID67
|
818
|
+
9.67 8.03 7.12 9.67 6.38 5.27 9.23 4.61 8.44 8.64 9.6 NA NA 7.36 9.6 6.66 7.87 8.21 5.6 9.54 8.98 8.37 8.9 6.78 10.07 NA 5.71 NA NA A630042L21Rik hypothetical protein LOC106894 isoform 2,hypothetical protein LOC106894 isoform 2,
|
819
|
+
0.39 0.58 1.16 0.39 0.68 0.55 0.86 0.45 1.67 0.9 1 NA NA 0.56 0.76 1.2 1.36 1.06 0.41 0.89 0.75 1.12 1.07 0.63 1.03 NA 0.42 NA NA Kctd1 potassium channel tetramerisation domain,potassium channel tetramerisation domain,potassium channel tetramerisation domain,
|
820
|
+
18.57 19.18 19.01 18.57 22.37 18.92 16.1 17.22 16.98 16.66 16.34 NA NA 18.11 15.76 18.53 17.53 19.21 16.94 20.03 15.82 15.79 19.76 17.03 17.92 NA 21.43 NA NA Slc39a3 solute carrier family 39 (zinc transporter),,solute carrier family 39 (zinc transporter),,solute carrier family 39 (zinc transporter),,
|
821
|
+
10.1 16.71 15.74 10.1 7.31 11.9 14.25 7.24 19.18 11.75 10.82 NA NA 20.26 16.17 18.98 9.52 14.03 8.91 14.96 16.66 18.5 14.61 14.59 16.24 NA 8.49 NA NA Centd3 centaurin, delta 3,centaurin, delta 3,centaurin, delta 3,centaurin, delta 3,
|
822
|
+
49.16 39.27 41.28 49.16 54.75 29.67 41.57 43.08 46.61 35.99 48.06 NA NA 38.76 40.92 40.04 31.02 44.58 29.27 42.45 38.93 33.17 45.1 42.97 42.8 NA 42.34 NA NA Slc39a6 solute carrier family 39 (metal ion
|
823
|
+
4.6 8.21 5.47 4.6 6.24 5.92 4.36 3.51 6.85 8.91 3.84 NA NA 7.55 6.71 7.06 4.54 7.62 5.35 6.38 8.04 5.09 5.04 6.7 7.05 NA 5.28 NA NA Gramd3 GRAM domain containing 3,GRAM domain containing 3,GRAM domain containing 3,
|
824
|
+
26.62 38.85 36.9 26.62 37.39 39.71 26.15 36.25 35.15 30.39 25.39 NA NA 49.12 39.94 36.15 30.88 36.52 43.8 31.46 36.2 33.31 26.91 50.4 25.3 NA 40.34 NA NA Me2 malic enzyme 2, NAD(+)-dependent, mitochondrial
|
825
|
+
12.37 14.94 15.02 12.37 13.82 8.42 17.93 10.66 16.82 18.83 16.22 NA NA 16.51 16.33 15.77 12.91 17.98 9.81 17.14 18.71 15.09 19.85 15.03 18.12 NA 11.89 NA NA Fbxo38 MoKA,MoKA,
|
826
|
+
30.41 36.05 26.63 30.41 24.46 23.89 29.09 19.62 31.35 21.56 26.83 NA NA 36.38 30.45 36.9 21.33 30.71 27.45 27.09 32.28 27.44 30.21 28.48 33.07 NA 24.78 NA NA Lars leucyl-tRNA synthetase
|
827
|
+
31.95 14.49 23.24 31.95 21.75 33.51 12.76 17.19 17.49 14.19 13.71 NA NA 17.11 15.44 18.71 23.77 15.91 28.38 14.75 12.8 19.61 21.75 19.99 14.54 NA 26.34 NA NA Tnfsf5ip1 Clast3 protein
|
828
|
+
0 0 NA 0 0 0 0 0 0.03 0 0.02 NA NA 0 0.03 0 0.01 0.03 0 0 0.04 0.03 0 0.02 0 NA 0 NA NA Lrrtm2 leucine rich repeat transmembrane neuronal 2
|
829
|
+
56.42 26.85 44.77 56.42 48.85 64 31.86 54.87 36.22 37.58 39.35 NA NA 31.75 37.06 43.5 50.18 30.33 50.69 39.78 32.39 33.7 38.26 32.47 38.05 NA 64.2 NA NA Wdr74 WD repeat domain 74
|
830
|
+
14.12 13.24 12.73 14.12 11.65 9.71 12.9 11.36 11.91 10.28 15.93 NA NA 11.34 12.68 12.97 8.31 11.63 7.16 9.93 9.87 9.57 11 9.55 12.51 NA 10.78 NA NA Rrp12 ribosomal RNA processing 12 homolog
|
831
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Cyp2c50 cytochrome P450, family 2, subfamily c,,cytochrome P450, family 2, subfamily c,,
|
832
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Glyat glycine-N-acyltransferase
|
833
|
+
15.06 10.97 15.44 15.06 17.16 19.72 10.14 19.85 7.87 15.34 12.65 NA NA 12.38 12.85 13.62 15.91 11.69 20.1 14.34 9.53 12.93 15.32 13.15 11 NA 18.82 NA NA Gpr137 expressed sequence AI428855
|
834
|
+
6.29 7.67 8.66 6.29 6.9 5.17 9.7 4.09 9.39 8.2 11.08 NA NA 9.23 9.39 5.97 5.97 9.78 4.96 8.56 9.24 7.93 7.9 8.7 7.97 NA 5.23 NA NA Btaf1 BTAF1 RNA polymerase II, B-TFIID transcription
|
835
|
+
0 0 NA 0 0 0.23 0.22 0.48 0.19 0.07 0.05 NA NA 0.06 0.04 0.2 0.11 0 0 0.26 0.17 0.05 0.18 0.08 0 NA 0.21 NA NA Gpr120 G protein-coupled receptor 120
|
836
|
+
6.56 4.13 6.13 6.56 5.11 7.16 4.26 5.91 3.75 6.93 5.79 NA NA 9.12 7.4 3.24 5.36 6.57 6.62 7.42 5.56 6.37 4.87 9.42 5.02 NA 6.34 NA NA Macrod1 LRP16 protein
|
837
|
+
12.59 19.02 23.29 12.59 23.09 22.69 20.26 20.51 10.36 19.2 11.54 NA NA 20.21 12.1 12.46 12.46 11.88 12.47 13.81 11.25 15.5 16.08 14.48 19.05 NA 16.77 NA NA AI837181 basophilic leukemia expressed protein
|
838
|
+
0 0.27 NA 0 0.6 1.39 0.32 1.25 0.17 0.15 0.44 NA NA 0.09 0.59 0.31 0.48 0.14 0.93 0.48 0.34 0.45 0.26 0.43 0.53 NA 0.85 NA NA Kazald1 Kazal-type serine peptidase inhibitor domain 1,Kazal-type serine peptidase inhibitor domain 1,
|
839
|
+
83.79 70.72 74.34 83.79 88.56 99.39 64.52 97.57 63.84 72.06 63.1 NA NA 64.04 70.53 67.82 86.95 67.46 94.82 74.31 60.71 64.73 78.84 62.87 68.51 NA 93.68 NA NA Otub1 otubain 1
|
840
|
+
28.27 36.54 32.87 28.27 29.47 26.35 30.2 22.77 33.22 23.8 24.63 NA NA 42.52 35.94 39.57 28.18 29.08 34.2 27.7 25.8 33.16 27.29 31.16 31 NA 34.6 NA NA Yars tyrosyl-tRNA synthetase
|
841
|
+
23.83 51.98 36.97 23.83 36.85 30.11 32.32 29.39 33.2 17.88 23.38 NA NA 51.23 51.35 50.47 38.88 31.3 57.75 20.95 29.46 54.92 25.24 65.64 23.24 NA 49.34 NA NA Psat1 phosphoserine aminotransferase 1,phosphoserine aminotransferase 1,phosphoserine aminotransferase 1,
|
842
|
+
18.77 15.57 20.74 18.77 19.51 18.56 20.96 18.67 20.06 18.32 19.41 NA NA 21.41 21.86 24.38 17.8 19.58 16.29 23.55 19.77 17.66 19.13 15.37 22.09 NA 17.39 NA NA Vps37c vacuolar protein sorting 37C,vacuolar protein sorting 37C,
|
843
|
+
284.53 232.51 289.34 284.53 332.03 281.9 225.35 357.17 278.82 268.17 205.42 NA NA 259.8 261.06 266.56 343.26 264.4 298.62 273.6 258.54 219.75 301.23 250.61 217.75 NA 340.72 NA NA Lpxn leupaxin
|
844
|
+
0 0.92 NA 0 1.42 2.36 1.15 1.16 1.34 0.76 0.84 NA NA 1.02 0.87 1.21 1.45 0.81 0.79 1.05 1.23 1.23 1.18 1.56 0.67 NA 0.67 NA NA Trpt1 tRNA splicing 2' phosphotransferase 1
|
845
|
+
9.03 10.01 9 9.03 6.97 7.51 11.71 6.45 11.18 9.98 11.41 NA NA 12.17 10.67 9.19 7.04 11.15 5.52 10.09 11.96 11.44 9.44 10.09 11.28 NA 5.7 NA NA Gbf1 golgi-specific brefeldin A-resistance factor 1,golgi-specific brefeldin A-resistance factor 1,golgi-specific brefeldin A-resistance factor 1,golgi-specific brefeldin A-resistance factor 1,
|
846
|
+
0 0.28 NA 0 0.18 0 0 0.06 0.02 0 0.04 NA NA 0.01 0.39 0.06 0.04 0.25 0.02 0.31 0.04 0.4 0 0.46 0 NA 0.03 NA NA Ankrd15 ankyrin repeat domain 15,ankyrin repeat domain 15,ankyrin repeat domain 15,
|
847
|
+
51.96 59.93 61.44 51.96 55.84 38.41 44.12 41.75 54.93 41.28 49.58 NA NA 59.54 45.9 54.89 41.99 52.97 45.49 52.4 51.82 53.4 56.25 68.12 47.51 NA 55.83 NA NA Tm9sf3 transmembrane protein 9 superfamily member 3
|
848
|
+
6.24 8.56 7.45 6.24 6.15 5.78 8.16 4.29 9.08 7.3 7.69 NA NA 10.67 6.95 7.02 5.21 9.53 5.69 6.61 9.32 7.94 7.37 8.31 8.41 NA 5.24 NA NA Pdzd8 PDZ domain containing 8
|
849
|
+
11.89 14.63 15 11.89 11.09 10.27 14.02 9.76 13.66 12.74 13.51 NA NA 14.06 13.33 16.44 11.27 12.64 10.11 13.7 13.43 14.84 13.45 13.62 14.65 NA 10.53 NA NA Exoc6 exocyst complex component 6,exocyst complex component 6,
|
850
|
+
54.07 82.99 64.13 54.07 48.27 53.85 68.24 33.73 64.81 51.53 62.79 NA NA 84.95 68.61 69.49 62.5 66.98 54.21 63.64 72.53 79.24 62.79 99.12 63.4 NA 43.54 NA NA 4632417K18Rik hypothetical protein LOC107373
|
851
|
+
25.34 12.9 25.14 25.34 21.88 23.36 17.9 22.98 18.21 23.08 20.45 NA NA 19.59 22.52 25.36 22.6 18.73 19.37 20.52 22.56 22.81 18.03 18.76 20.65 NA 26.35 NA NA Slc25a45 solute carrier family 25, member 45,solute carrier family 25, member 45,
|
852
|
+
89.53 62.54 78.07 89.53 76.14 124.55 55.7 114.64 58.3 69.49 57.96 NA NA 65.57 69.66 59.99 123.3 48.54 102.73 66.65 57.2 73.75 65.69 59.59 74.82 NA 90.45 NA NA Brms1 breast cancer metastasis-suppressor 1
|
853
|
+
43.63 53.6 52.17 43.63 37.38 39.57 43.31 29.96 35.59 28.56 34.7 NA NA 50.17 48.26 59.46 53.6 39.63 60.31 32.89 34.48 49.35 35.17 68.79 30.3 NA 53.05 NA NA Hat1 histone aminotransferase 1,histone aminotransferase 1,
|
854
|
+
0.12 0.23 NA 0.12 0.25 0.03 0.73 0.11 0.21 0.01 0.4 NA NA 0.07 0.39 0 0.21 0.62 0 0.19 0.07 0.36 0.14 0.61 0.01 NA 0.23 NA NA Unc5a netrin receptor Unc5h1,netrin receptor Unc5h1,
|
855
|
+
0 0.23 NA 0 0.31 0.23 0.44 0.52 0.5 0.35 0.39 NA NA 0.76 0.27 0.16 0.35 0.25 0.23 0.42 0.27 0.28 0.45 0.39 0.35 NA 0.25 NA NA Unc5b unc-5 homolog B,unc-5 homolog B,unc-5 homolog B,
|
856
|
+
1.13 0.66 1.2 1.13 0.8 0.62 1.65 0.6 1.21 1.14 1.1 NA NA 1.7 1.01 0.7 0.83 1.69 1.18 0.95 1.14 1.72 1.4 2.18 1.45 NA 0.45 NA NA Acaca acetyl-Coenzyme A carboxylase alpha
|
857
|
+
0.33 0.31 0.12 0.33 0.08 0 0.31 0 0.18 0.28 0.16 NA NA 0.03 0.1 0 0.14 0.03 0 0.3 0.23 0.29 0.09 0.18 0.54 NA 0 NA NA Guca1b guanylate cyclase activator 1B
|
858
|
+
43.04 37.71 45.46 43.04 46.48 23.2 40.85 37.31 43.18 49.38 45.37 NA NA 45.65 34 55.47 32.3 30.39 37.91 60.44 25.55 39.29 28.1 26.27 41.95 NA 48.12 NA NA Atf5 ativating transcription factor 5,ativating transcription factor 5,
|
859
|
+
30.4 46.77 29.21 30.4 18.72 26.17 43.31 18.98 44.64 30.16 37.47 NA NA 45.01 39.74 35.46 39.33 36 26.41 36.78 39.82 41.99 37.1 39.32 46.24 NA 16.84 NA NA Eprs glutamyl-prolyl-tRNA synthetase,glutamyl-prolyl-tRNA synthetase,glutamyl-prolyl-tRNA synthetase,
|
860
|
+
28 33.65 32.06 28 35.27 26.01 27.6 32.04 29.15 21.33 28.22 NA NA 33.3 29.33 34.61 27.68 28.44 33.17 26.77 25.38 32.61 28.72 34.97 24.92 NA 37.94 NA NA Ssr1 signal sequence receptor, alpha,signal sequence receptor, alpha,
|
861
|
+
0 0.16 NA 0 0.15 0.29 0.04 0 0.19 0.1 0.17 NA NA 0.22 0.18 0.17 0.07 0.13 0.25 0.11 0.07 0.22 0.08 0.05 0.17 NA 0.05 NA NA Lgr4 G protein-coupled receptor 48
|
862
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Gimap4 GTPase, IMAP family member 4 isoform b
|
863
|
+
0 0.38 NA 0 0.28 0.51 0.19 0.09 0.65 0.03 0.61 NA NA 0.1 0.31 0.27 0 0.14 0.21 0.34 0.49 0.06 0.43 0.72 0.6 NA 0.18 NA NA Il1rl2 interleukin 1 receptor-like 2,interleukin 1 receptor-like 2,
|
864
|
+
2.12 3.23 3.56 2.12 3.12 3.4 3.79 1.97 3.04 3.76 3.43 NA NA 3.51 3.72 4.5 2.55 4.7 2.68 2.48 4.62 4.05 3.56 4.76 3.75 NA 1.86 NA NA Magee1 melanoma antigen, family E, 1
|
865
|
+
44 41.4 34.72 44 39.66 22.79 34.44 22.5 34.96 29.24 34.04 NA NA 39.33 32.59 32.65 28.21 37.13 28.41 25.58 26.94 43.45 27.63 36.18 29.72 NA 43.8 NA NA Arl2bp ADP-ribosylation factor-like 2 binding protein
|
866
|
+
17.17 19.96 36.9 17.17 28.82 13.06 36.21 13.4 19.18 30.22 22.48 NA NA 40.61 28.44 18.47 21.92 36.82 14.18 36.45 34.24 27.13 42.53 50.47 30.55 NA 16.21 NA NA Wwp1 WW domain-containing protein 1
|
867
|
+
28.34 23.69 23.18 28.34 28.22 31.59 28.75 47.58 32.36 26.99 21.51 NA NA 20.88 28.47 28.1 34 22.43 34.21 18.68 25.78 21.01 20.66 21.96 28.46 NA 39.6 NA NA Nt5c3 5'-nucleotidase, cytosolic III,5'-nucleotidase, cytosolic III,
|
868
|
+
0 0 NA 0 0 0 0 0 0.02 0 0 NA NA 0 0 0 0 0 0 0 0.01 0 0 0 0 NA 0 NA NA Col16a1 procollagen, type XVI, alpha 1,procollagen, type XVI, alpha 1,
|
869
|
+
0.23 0 NA 0.23 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Dio3 deiodinase, iodothyronine type III
|
870
|
+
0.24 0 NA 0.24 0 0 0 0 0.08 0 0 NA NA 0.05 0 0 0 0 0.06 0 0 0 0 0 0 NA 0 NA NA Ovol2 ovo-like 2 isoform A
|
871
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Osr2 odd-skipped related 2
|
872
|
+
0.25 0.3 0.12 0.25 0.03 0 0.18 0.01 0.16 0.22 0.11 NA NA 0.15 0.07 0.36 0.04 0.17 0.1 0.11 0.16 0.35 0.09 0.08 0.02 NA 0.1 NA NA Mylk myosin, light polypeptide kinase,myosin, light polypeptide kinase,
|
873
|
+
0.02 0 NA 0.02 0 0 0.03 0 0 0.03 0 NA NA 0.03 0.01 0 0 0.02 0.05 0.03 0.01 0.03 0 0.01 0 NA 0 NA NA Rdh1 retinol dehydrogenase 1 (all trans)
|
874
|
+
0.95 0.63 0.63 0.95 0.44 0.6 2.18 1.15 1.35 0.9 0.84 NA NA 0.23 0.93 1.19 0.94 1.2 0.27 0.79 0.93 0.91 1.04 0.85 1.58 NA 0.51 NA NA Nod1 nucleotide-binding oligomerization domain,nucleotide-binding oligomerization domain,
|
875
|
+
13.78 13.06 13.8 13.78 13.06 9.31 14.31 13.07 14.49 13.96 13.74 NA NA 14.13 14.81 13.83 10.27 15.45 10.04 12.44 14.79 12.76 14 13.05 13.89 NA 13.54 NA NA Pi4kb phosphatidylinositol 4-kinase, catalytic, beta,phosphatidylinositol 4-kinase, catalytic, beta,phosphatidylinositol 4-kinase, catalytic, beta,
|
876
|
+
16.63 17.52 15.73 16.63 10.53 14.48 16.46 10.18 11.44 15.39 15.38 NA NA 17.57 12.4 16.83 11.79 13.88 13.06 14.51 15.01 20.9 13.19 17.32 16.07 NA 11.19 NA NA Uap1 UDP-N-acetylglucosamine pyrophosphorylase 1,UDP-N-acetylglucosamine pyrophosphorylase 1,UDP-N-acetylglucosamine pyrophosphorylase 1,UDP-N-acetylglucosamine pyrophosphorylase 1,
|
877
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Krt9 keratin complex 1, acidic, gene 9
|
878
|
+
41.03 27.95 55.26 41.03 43.92 50.42 74.39 37.1 26.47 55.25 54.4 NA NA 77.14 56.1 60.43 17.72 24.89 16.53 56.58 72.66 58.73 19.18 22.77 77.76 NA 38 NA NA Coro2a coronin, actin binding protein 2A,coronin, actin binding protein 2A,coronin, actin binding protein 2A,
|
879
|
+
97.33 48.89 71.74 97.33 92.77 158.47 57.48 103.34 55.04 65.8 57.03 NA NA 64.72 77.63 72.58 120.35 53.39 140.21 60.03 54.13 92.64 68.83 71.46 61.42 NA 121.23 NA NA Snrpd2 small nuclear ribonucleoprotein D2
|
880
|
+
20.46 16.73 18 20.46 18 14.91 16.13 18.87 20.77 18.21 18.24 NA NA 17.99 18.71 19.3 17.69 18.99 18.02 20.9 19.82 18.21 21.44 18.89 20.17 NA 16.51 NA NA Sf3b4 splicing factor 3b, subunit 4
|
881
|
+
1796.85 851.76 1309.25 1796.85 1847.55 2280.84 872.11 3092.64 1295.64 1461.21 1235.63 NA NA 923.1 1174.67 1108.1 1627.55 963.7 2095.88 1137.19 1022.39 1104.8 1260.3 886.81 1091.46 NA 2273.54 NA NA Rnh1 ribonuclease/angiogenin inhibitor 1,ribonuclease/angiogenin inhibitor 1,ribonuclease/angiogenin inhibitor 1,
|
882
|
+
18.13 23.52 19.73 18.13 16.35 10.63 25.3 12.52 18.81 17.91 21.69 NA NA 25.9 20.24 22.86 14.22 24.84 12.61 20.8 21.23 21.99 19.56 23.17 19.78 NA 12.39 NA NA Slc12a6 solute carrier family 12, member 6 isoform 2,solute carrier family 12, member 6 isoform 2,solute carrier family 12, member 6 isoform 2,solute carrier family 12, member 6 isoform 2,
|
883
|
+
41.52 45.11 29.72 41.52 36.36 36.17 34.91 64.29 27.36 27.15 27.26 NA NA 26.11 43.23 48.36 32.75 26.63 49.05 40.56 40.86 39.41 28.96 30.01 24.77 NA 43.25 NA NA Mrpl10 mitochondrial ribosomal protein L10
|
884
|
+
13.7 5 9.35 13.7 8.95 14.47 5.99 11.39 4.64 8.58 7.46 NA NA 6.95 7.49 7.01 15.83 4.94 16.7 6.01 6.24 8.44 5.96 7.09 5.22 NA 15.56 NA NA Mrpl41 mitochondrial ribosomal protein L41
|
885
|
+
103.57 74.61 102.03 103.57 109.47 145.06 80.82 143.67 82.27 83.75 75.46 NA NA 82.04 99 105.71 153.48 75.07 154.91 86 77.26 107.29 100.13 96.43 87.81 NA 152.4 NA NA Mrpl30 mitochondrial ribosomal protein L30
|
886
|
+
28.84 38.1 26.38 28.84 24.3 23.3 32.95 16.88 34.5 31.85 38.26 NA NA 32.48 32.75 25.55 23.34 33.52 20.12 31.62 32.35 31.34 29.88 31.33 35.78 NA 17.49 NA NA Rapgef1 Rap guanine nucleotide exchange factor (GEF) 1
|
887
|
+
3.39 4.12 7.84 3.39 5.97 3 10.06 6.12 5.32 4.22 3.02 NA NA 7.98 8.49 2.79 5.66 8.16 4.19 9.15 7.89 6.08 7.26 11.71 6.1 NA 3.27 NA NA Aldh1l1 aldehyde dehydrogenase 1 family, member L1,aldehyde dehydrogenase 1 family, member L1,
|
888
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Prrxl1 paired related homeobox protein-like 1
|
889
|
+
0 0 NA 0 0 0 0 0 0.18 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Lgals2 lectin, galactose-binding, soluble 2
|
890
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0.13 0 0 0.04 0 0 0 0 0 0 NA 0 NA NA Ankrd1 ankyrin repeat domain 1 (cardiac muscle)
|
891
|
+
5.93 7.19 5.4 5.93 5.69 3.03 3.36 3.57 7.96 2.24 0.71 NA NA 9.23 3.17 10.76 8.16 1.29 5.46 5.13 2.74 4.66 3.2 4.49 1.15 NA 3.6 NA NA Haao 3-hydroxyanthranilate 3,4-dioxygenase,3-hydroxyanthranilate 3,4-dioxygenase,
|
892
|
+
8.97 8.46 12.72 8.97 10.61 6.76 9.78 7.75 12.17 12.9 13.5 NA NA 8.97 12.28 11.64 9.54 15.28 11.35 11.54 15.71 10.96 14.35 17.37 9.08 NA 13.22 NA NA Scamp1 secretory carrier membrane protein 1,secretory carrier membrane protein 1,secretory carrier membrane protein 1,
|
893
|
+
64.75 68.27 73.29 64.75 56.09 56.8 62.83 38.94 39.58 47.54 47.93 NA NA 77.88 63.2 94.55 50.67 57.39 52.09 51.02 51.84 74.89 47.55 82.24 43.16 NA 63.41 NA NA Tm6sf1 transmembrane 6 superfamily member 1,transmembrane 6 superfamily member 1,transmembrane 6 superfamily member 1,
|
894
|
+
0 0 NA 0 0.08 0 0 0 0 0.08 0 NA NA 0 0.03 0 0 0 0 0.06 0 0 0 0.16 0 NA 0 NA NA Tm6sf2 transmembrane 6 superfamily member 2,transmembrane 6 superfamily member 2,
|
895
|
+
22.49 15.59 20.2 22.49 19.06 20.11 17.16 15.53 12.45 15.09 14.33 NA NA 23.27 20.33 13.57 21.88 21.56 21.87 20.63 14.6 19.15 19.28 19.44 12.57 NA 19.17 NA NA Bmyc brain expressed myelocytomatosis oncogene
|
896
|
+
0.13 0.12 NA 0.13 0.07 0.2 0.1 0 0.07 0.05 0.07 NA NA 0.05 0.2 0.18 0 0.17 0.06 0.09 0.04 0.1 0.04 0.16 0.12 NA 0 NA NA Scml2 sex comb on midleg-like 2,sex comb on midleg-like 2,sex comb on midleg-like 2,
|
897
|
+
20.12 12.05 20.4 20.12 16.67 24.68 14.12 22.24 15.64 15.13 18.03 NA NA 14.12 17.73 15.64 19.71 16.58 17.6 16.09 13.24 18.14 13.01 16.72 19.82 NA 23.33 NA NA Jmjd6 jumonji domain containing 6
|
898
|
+
19.38 35.4 28.25 19.38 15.23 21.49 32.73 11.49 38.13 22.34 29.56 NA NA 34.63 29.41 33.86 29.59 38.05 17.14 24.35 30.17 39.18 24 43.69 39.35 NA 17.59 NA NA Whsc1 Wolf-Hirschhorn syndrome candidate 1,Wolf-Hirschhorn syndrome candidate 1,Wolf-Hirschhorn syndrome candidate 1,
|
899
|
+
36.57 28.83 34.35 36.57 32.68 34.41 30.28 33.32 36.88 33.24 36.42 NA NA 33.71 30.97 35.65 33.09 30.61 29.66 37.71 29.05 29.84 33.21 29.11 37.25 NA 37.02 NA NA Thoc5 THO complex 5
|
900
|
+
0 0 NA 0 0 0 0 0.1 0 0 0 NA NA 0 0 0.01 0 0 0 0 0 0 0 0 0 NA 0 NA NA Bai1 brain-specific angiogenesis inhibitor 1,brain-specific angiogenesis inhibitor 1,brain-specific angiogenesis inhibitor 1,brain-specific angiogenesis inhibitor 1,brain-specific angiogenesis inhibitor 1,
|
901
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Prl2c5 prolactin family 2, subfamily c, member 5
|
902
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0.01 0 0 0 0 0 0 0 NA 0 NA NA Usp9y ubiquitin specific peptidase 9, Y chromosome
|
903
|
+
0.16 0.43 NA 0.16 0.22 0.04 0.11 0.04 0.21 0.29 0.21 NA NA 0.23 0.16 0.25 0.75 0.03 0.24 0.16 0.36 0.07 0.19 0.1 0.34 NA 0.08 NA NA Cth cystathionase
|
904
|
+
5.3 3.5 8.13 5.3 8.2 6.83 5.43 12.75 6.85 7.54 7.48 NA NA 3.74 5.94 5.95 12.07 6.16 12.87 5.15 6.79 11.14 5.95 6.49 3.19 NA 13.19 NA NA Mthfs 5, 10-methenyltetrahydrofolate synthetase,5, 10-methenyltetrahydrofolate synthetase,5, 10-methenyltetrahydrofolate synthetase,5, 10-methenyltetrahydrofolate synthetase,5, 10-methenyltetrahydrofolate synthetase,
|
905
|
+
0 0 NA 0 0.03 0 0 0 0.48 0 0.16 NA NA 0 0.06 0 0 0 0 0.13 0 0.42 0 0 0 NA 0.04 NA NA Gcm2 glial cells missing homolog 2,glial cells missing homolog 2,
|
906
|
+
5.26 6.92 8.68 5.26 5.69 2.24 12.1 1.95 7.95 4.87 9.29 NA NA 8.42 7.88 6.13 1.29 8.15 0.64 6.38 6.91 6.96 8.01 10.45 6.41 NA 3.38 NA NA Mgat5 mannoside acetylglucosaminyltransferase 5,mannoside acetylglucosaminyltransferase 5,mannoside acetylglucosaminyltransferase 5,mannoside acetylglucosaminyltransferase 5,
|
907
|
+
37.57 68.86 39.62 37.57 25.63 36.4 67.73 19.13 55.81 53.49 55.17 NA NA 54.93 53.21 35.38 37.38 54.74 25.07 50.07 60.51 55.64 42.67 54.61 67.82 NA 19.65 NA NA Chd4 chromodomain helicase DNA binding protein 4,chromodomain helicase DNA binding protein 4,
|
908
|
+
0 0.09 NA 0 0.16 0.09 0.24 0.15 0.13 0.34 0.31 NA NA 0.08 0.12 0.07 0.11 0.17 0.06 0.4 0.2 0.15 0.15 0.11 0.21 NA 0.17 NA NA Celsr3 cadherin EGF LAG seven-pass G-type receptor 3,cadherin EGF LAG seven-pass G-type receptor 3,
|
909
|
+
9.9 12.56 8.44 9.9 7.71 6.16 10.2 5.48 9.56 8.96 11.05 NA NA 9.64 9.57 9.29 7.23 10.15 8.34 9.62 9.09 10.67 9.01 9.56 10.32 NA 6.27 NA NA Pom121 nuclear pore membrane protein 121
|
910
|
+
23.47 22.44 24.43 23.47 27.36 26.21 24.11 22.54 24.2 26.52 23.09 NA NA 22.85 24.42 23.97 22.24 23.78 23.03 26.96 23.22 23.97 26.24 23.2 25.18 NA 24.5 NA NA Cdk9 cyclin-dependent kinase 9,cyclin-dependent kinase 9,
|
911
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0.1 NA 0 NA NA Hist1h1t histone 1, H1t
|
912
|
+
0.04 0.19 NA 0.04 0.14 0.13 0.18 0.36 0.32 0.42 0.38 NA NA 0.36 0.25 0.18 0.32 0.37 0.34 0.56 0.51 0.29 0.23 0.44 0.36 NA 0.12 NA NA Frs3 fibroblast growth factor receptor substrate 3
|
913
|
+
7 10.53 8.93 7 6.46 8.34 10.76 5.28 9.15 10.59 9.73 NA NA 10.49 8.86 10.72 7.94 11.52 6.18 10.35 9.46 12.59 9.2 9.7 9.96 NA 6.8 NA NA Pacs1 phosphofurin acidic cluster sorting protein 1,phosphofurin acidic cluster sorting protein 1,phosphofurin acidic cluster sorting protein 1,
|
914
|
+
46.51 46.57 49.12 46.51 53.31 37.92 37.89 44.62 51.34 49.77 44.76 NA NA 52.65 44.26 48.63 45.63 44.67 46.59 52.25 43.24 41.74 52.35 44.02 40.19 NA 47.33 NA NA Bre brain and reproductive organ-expressed protein,brain and reproductive organ-expressed protein,
|
915
|
+
8.37 4.06 6.19 8.37 4.97 7.59 5.57 6.55 5.92 7.51 8.25 NA NA 5.92 8.03 8.14 6.17 7.54 7.41 8.65 10.63 7.99 7.05 7.09 8.77 NA 5.81 NA NA Ddb2 damage specific DNA binding protein 2
|
916
|
+
0 0 NA 0 0 0 0.15 0 0 0 0 NA NA 0 0 0 0 0.07 0 0.09 0 0 0 0 0 NA 0 NA NA Bfsp2 beaded filament structural protein 2, phakinin,beaded filament structural protein 2, phakinin,
|
917
|
+
22.11 33.87 23.45 22.11 14.24 28.14 21.59 14.24 20.9 13.97 14.63 NA NA 32.76 20.88 20.99 24.35 16.92 37.32 9.61 13.49 32.1 16.51 35.33 17.66 NA 22.46 NA NA Cdc20 cell division cycle 20 homolog,cell division cycle 20 homolog,
|
918
|
+
14.04 7.8 8.77 14.04 9.06 15.47 8.14 11.72 8.85 10.12 9.77 NA NA 8.57 8.02 7.88 12.41 8.87 10 6.69 7.36 6.51 7.87 7.4 9.06 NA 7.59 NA NA Gtpbp6 GTP binding protein 6 (putative)
|
919
|
+
2.22 5.91 2.02 2.22 0.74 2.58 5.1 0.66 3.34 2.3 2.64 NA NA 4.27 4.35 1.83 3.79 2.96 2.23 1.42 3.09 6.11 1.39 4.11 4.57 NA 0.85 NA NA Cenpf centromere protein F,centromere protein F,centromere protein F,
|
920
|
+
4.44 5.34 4.12 4.44 3.55 3.58 4.39 2.84 4.45 4.01 5.11 NA NA 4.73 4.24 3.87 2.98 5.37 2.41 4.04 4.47 4.11 4.57 5.03 4.36 NA 3.31 NA NA Ap4e1 adaptor-related protein complex AP-4, epsilon 1,adaptor-related protein complex AP-4, epsilon 1,
|
921
|
+
22.22 28.23 26.23 22.22 20.51 17.96 18.81 19.03 24.82 19.52 22.54 NA NA 27.15 20.47 26.06 20.07 25.28 22.78 22.93 25.13 21.2 25.08 27.79 18.49 NA 26.87 NA NA Ap1s2 adaptor-related protein complex 1 sigma 2,adaptor-related protein complex 1 sigma 2,
|
922
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Brunol4 bruno-like 4, RNA binding protein,bruno-like 4, RNA binding protein,bruno-like 4, RNA binding protein,bruno-like 4, RNA binding protein,
|
923
|
+
105.5 100.69 101.93 105.5 109.9 130.89 83.6 111.39 81.92 79.94 79.12 NA NA 91.22 91.55 91.37 87.69 81.14 108.72 89.96 79.06 92.06 96.63 85.77 87.76 NA 116.24 NA NA Sfrs9 splicing factor, arginine/serine rich 9
|
924
|
+
0 0 NA 0 0 0 0.03 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0.02 0 0 0 NA 0 NA NA Chrnb4 cholinergic receptor, nicotinic, beta,cholinergic receptor, nicotinic, beta,
|
925
|
+
0 0 NA 0 0.19 0 0 0 0 0 0 NA NA 0 0.23 0 0 0 0 0 0 0 0.21 0.36 0 NA 0 NA NA Fxyd4 corticosteroid-induced protein,corticosteroid-induced protein,
|
926
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0.01 0 0 0 0 0 NA 0 NA NA Lin7a lin 7 homolog a isoform 1
|
927
|
+
46.35 62.38 51.55 46.35 39.14 50.64 42.91 37 45.36 30.4 32.45 NA NA 75.21 62.49 59.58 49.62 41.73 71.62 34.45 37.47 56.26 35.83 58.48 35.02 NA 51.99 NA NA Shmt2 serine hydroxymethyltransferase 2,serine hydroxymethyltransferase 2,
|
928
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Chrnb3 cholinergic receptor, nicotinic, beta
|
929
|
+
0 0.09 NA 0 0 0 0.03 0 0 0 0.02 NA NA 0.08 0.02 0.22 0 0.11 0.03 0 0.02 0.02 0.06 0 0 NA 0.03 NA NA Slc14a1 solute carrier family 14 (urea transporter),,solute carrier family 14 (urea transporter),,
|
930
|
+
24.42 30.93 29.46 24.42 31.01 16 22.82 20.95 28.6 27.57 27.23 NA NA 30.82 22.94 22 25.12 30.28 20.23 28.02 24.73 25.38 32.4 33.07 24.28 NA 25.72 NA NA Camk2d calcium/calmodulin-dependent protein kinase II,,calcium/calmodulin-dependent protein kinase II,,calcium/calmodulin-dependent protein kinase II,,
|
931
|
+
13.15 21.36 18.99 13.15 13.71 10.64 16.3 12.83 18.5 11.7 13 NA NA 20.11 17.5 17.05 14.24 17.08 15.01 16.46 18.97 14.55 19.87 21.63 17.25 NA 13.34 NA NA Cstf2 cleavage stimulation factor, 3' pre-RNA subunit,cleavage stimulation factor, 3' pre-RNA subunit,cleavage stimulation factor, 3' pre-RNA subunit,
|
932
|
+
17.22 17.7 13.08 17.22 19.94 16.88 12.39 19.06 14.03 14.54 13.35 NA NA 16.09 16.08 16.53 12.56 11.65 13.49 14.46 12.51 10.4 15.22 11.93 16.24 NA 17.63 NA NA Eif2b3 eukaryotic translation initiation factor 2B,
|
933
|
+
0.09 0 NA 0.09 0 0 0 0 0 0 0 NA NA 0 0.02 0.02 0 0 0 0 0 0 0 0 0 NA 0 NA NA Grm3 glutamate receptor, metabotropic 3
|
934
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Grm5 glutamate receptor, metabotropic 5,glutamate receptor, metabotropic 5,
|
935
|
+
0 0 NA 0 0 0 0 0.07 0 0 0 NA NA 0 0 0.04 0 0 0.01 0 0 0 0 0 0 NA 0 NA NA Grm6 glutamate receptor, metabotropic 6,glutamate receptor, metabotropic 6,
|
936
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Grm7 glutamate receptor, metabotropic 7
|
937
|
+
0.14 0 NA 0.14 0 0 0.03 0 0.03 0.02 0 NA NA 0 0.01 0 0 0.03 0 0.07 0.06 0.02 0.01 0 0 NA 0 NA NA Ltbp4 latent transforming growth factor beta binding,latent transforming growth factor beta binding,latent transforming growth factor beta binding,
|
938
|
+
19.2 23.95 21.63 19.2 16.16 18.45 22.35 14.59 18.34 20.98 18.22 NA NA 27.35 22.26 19.83 21.73 23.18 12.97 18.87 18.57 23.94 20.71 22.9 20.81 NA 16.63 NA NA Skiv2l superkiller viralicidic activity 2-like
|
939
|
+
0 0.11 NA 0 0.05 0.06 0 0.04 0.02 0.03 0.11 NA NA 0 0.03 0.05 0 0 0.04 0 0 0 0.01 0 0.19 NA 0.18 NA NA Olr1 oxidized low density lipoprotein (lectin-like)
|
940
|
+
0 0 NA 0 0.03 0 0.05 0 0.04 0.02 0 NA NA 0.02 0.01 0.05 0 0.02 0.01 0.02 0 0 0.1 0.03 0 NA 0 NA NA Prkaa2 AMP-activated protein kinase alpha 2 catalytic
|
941
|
+
16.81 27.67 22.44 16.81 16.46 14.63 26.94 11.78 22.85 21.41 22.27 NA NA 26.37 22.31 20.58 19.11 25.74 13.65 23.44 22.38 24.77 21.86 23.7 25.09 NA 16.53 NA NA Pip4k2b phosphatidylinositol-5-phosphate 4-kinase, type
|
942
|
+
10.76 12.1 9.79 10.76 8.95 8.9 12.62 7.72 12.47 12.26 12.94 NA NA 13.21 12.15 9.73 9.08 14.27 8.47 13.56 13.01 11.79 11.93 11.9 13.13 NA 7.86 NA NA Rnf216 ubiquitin conjugating enzyme 7 interacting,ubiquitin conjugating enzyme 7 interacting,
|
943
|
+
0.11 0.2 NA 0.11 0.12 0.16 0.22 0.26 0.36 0.11 0.14 NA NA 0.3 0.2 0.16 0.07 0.28 0.18 0.13 0.12 0.24 0.39 0.21 0.13 NA 0.06 NA NA Rnf144a ring finger protein 144
|
944
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Slco1a5 solute carrier organic anion transporter family,,solute carrier organic anion transporter family,,
|
945
|
+
0.59 0.47 1.13 0.59 0.71 1.32 0.92 0.8 1.08 1.4 1.53 NA NA 0.96 1.16 1.11 0.58 1.03 0.69 1.14 1.05 0.61 1.05 1.09 0.96 NA 0.53 NA NA Prkab2 AMP-activated protein kinase beta 2
|
946
|
+
37.87 21.69 36.57 37.87 31.78 40.09 20.27 42.34 26.21 23.29 23.41 NA NA 21.62 32.14 33.74 44.59 23.95 55.43 21.94 30.67 27.42 27.4 25.71 26.52 NA 41.27 NA NA Med21 SRB7 (supressor of RNA polymerase B) homolog
|
947
|
+
7.55 5.69 6.22 7.55 5.88 6.21 6.94 4.14 6.12 6.43 7.82 NA NA 8.21 6.56 4.9 6.17 6.83 8.56 6.61 6.23 5.99 6.34 7.75 6.85 NA 4.83 NA NA Prkag2 AMP-activated protein kinase gamma2 subunit,AMP-activated protein kinase gamma2 subunit,
|
948
|
+
26.45 27.78 24.54 26.45 24.3 34.96 25.53 22.7 34.44 34.05 21.19 NA NA 23.68 25.46 20.15 29.22 24.4 25.55 28.08 23.8 25.6 28.86 35.1 33.47 NA 20.41 NA NA Baiap2 brain-specific angiogenesis inhibitor
|
949
|
+
126.88 111.73 135.65 126.88 109.88 125.27 130.48 103.01 117.32 115.46 102.84 NA NA 143.98 121.03 147.52 108.44 136.17 113 125.35 129.52 131.44 114.41 119.52 121.59 NA 120.82 NA NA BC032204 UNC-112 related protein 2,UNC-112 related protein 2,
|
950
|
+
0 0 NA 0 0.03 0.05 0 0 0.07 0 0.03 NA NA 0.04 0.01 0 0 0.01 0 0.02 0.02 0 0.01 0.01 0.01 NA 0 NA NA B3gnt5 UDP-GlcNAc:betaGal,UDP-GlcNAc:betaGal,
|
951
|
+
9.13 8.34 6.27 9.13 7.46 9.66 11.17 4.77 10.69 12.57 11.19 NA NA 9.19 11.8 8.96 12.45 10.32 9.31 13.03 12.59 12.31 7.84 9.15 11.07 NA 4.59 NA NA Eif4ebp3 eukaryotic translation initiation factor 4E
|
952
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Slc22a7 solute carrier family 22 member 7
|
953
|
+
23.54 40.45 25.93 23.54 23.09 24.07 44.34 24.4 35.73 48.13 24.05 NA NA 27.48 21.82 18.13 37.28 38.95 48.3 27.23 26.07 28.84 23.74 39.92 44.59 NA 20.19 NA NA Slco4a1 solute carrier organic anion transporter family,,solute carrier organic anion transporter family,,
|
954
|
+
3.32 0.27 1.77 3.32 0.24 1.85 2.19 0.66 4.46 0.87 1.26 NA NA 2.62 2.38 3.54 1.3 0.67 0.46 0.47 1.99 2.41 2.05 1.08 0.57 NA 0.21 NA NA Slco3a1 solute carrier organic anion transporter family,
|
955
|
+
10.5 5.77 9.98 10.5 11.73 15.28 7.62 9.41 8.69 8.04 8.16 NA NA 7.96 9.98 9.94 12.83 9.24 13.76 8.88 9.09 9.15 7.51 10.6 9.47 NA 14.58 NA NA U2af1 U2 small nuclear ribonucleoprotein auxiliary
|
956
|
+
15.17 25.45 19.76 15.17 17.97 14.28 18.34 17.89 21.32 16.74 22.25 NA NA 24.4 24.4 25.07 19.21 23.18 17.48 19.62 23.39 18.91 19.21 18.53 22.37 NA 19.05 NA NA Napg N-ethylmaleimide sensitive fusion protein
|
957
|
+
65.5 53.68 63.85 65.5 71.03 61.34 47.22 57.34 63.63 68.43 67.81 NA NA 51.47 61.59 64.86 58.04 61.05 69.34 58.63 58.54 55.39 60.19 51.05 56.36 NA 73.9 NA NA Napa N-ethylmaleimide sensitive fusion protein
|
958
|
+
9.27 7.53 10.38 9.27 11.76 9.89 7.69 7.67 8.04 8.82 8.02 NA NA 9.68 7.61 7.84 8.97 8.45 12.82 9.47 8.57 8.12 9.06 7.9 7.73 NA 11.13 NA NA Xrcc4 X-ray repair complementing defective repair in
|
959
|
+
67.97 70.97 81.83 67.97 78.94 104.31 64.6 72.56 70.36 57.41 59.05 NA NA 79.27 80.32 83.99 92.18 52.04 111.08 88.19 67.06 62.49 107.57 83.36 63.58 NA 145.85 NA NA Taf9 TAF9 RNA polymerase II, TATA box binding protein,TAF9 RNA polymerase II, TATA box binding protein,
|
960
|
+
49.08 31.65 47.66 49.08 49.95 40.59 33.74 38.2 41.17 33.33 39.82 NA NA 40.34 36.94 46.67 30.77 36.92 29.85 35.42 34.45 36.57 43.07 45.87 36.43 NA 52.96 NA NA Atic 5-aminoimidazole-4-carboxamide ribonucleotide,5-aminoimidazole-4-carboxamide ribonucleotide,
|
961
|
+
33.6 35.68 38.89 33.6 29.38 28.47 38.74 22.78 43.12 30.53 32.39 NA NA 38.49 33.54 40.84 31.51 44.26 31.93 40.53 32.74 37.76 31.69 44.23 33.8 NA 34.44 NA NA Galnt2 UDP-N-acetyl-alpha-D-galactosamine:polypeptide
|
962
|
+
19.47 35.76 28.13 19.47 26.09 20.38 34.58 16.33 47.52 19.15 25.1 NA NA 38.92 28.74 27.14 26.49 33.24 19.99 29.88 34.81 28.27 36.68 39.32 38.29 NA 18.99 NA NA Galnt7 UDP-N-acetyl-alpha-D-galactosamine: polypeptide
|
963
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Sema3d semaphorin 3D,semaphorin 3D,semaphorin 3D,
|
964
|
+
0 0.02 NA 0 0 0 0 0 0 0 0.01 NA NA 0 0.01 0.03 0 0.01 0 0 0 0.03 0 0.01 0 NA 0 NA NA Adamts7 a disintegrin-like and metalloprotease,a disintegrin-like and metalloprotease,
|
965
|
+
0 0.3 NA 0 0.02 0.23 0.02 0.11 0.11 0.12 0.05 NA NA 0.03 0.09 0.05 0.01 0.1 0.02 0.02 0.06 0.23 0.01 0.03 0.05 NA 0 NA NA Adamts6 a disintegrin-like and metalloprotease
|
966
|
+
13.7 18.09 20.16 13.7 15.06 11.01 19.71 9.14 15.81 20.65 17.43 NA NA 23.27 19.61 13.23 17.68 20.62 13.44 16.37 19.43 22.44 17.49 21.63 15.7 NA 11.58 NA NA Ogt O-linked N-acetylglucosamine transferase,O-linked N-acetylglucosamine transferase,
|
967
|
+
25.76 21.76 22.29 25.76 16.91 16.78 21.95 12.09 21.61 17.41 23.01 NA NA 25.95 23.07 22.61 18.22 23.72 20.81 22.18 20.1 23.65 21.87 30.34 21.52 NA 21.25 NA NA Mthfd1 methylenetetrahydrofolate dehydrogenase 1
|
968
|
+
9.35 11.91 10.41 9.35 8.55 13.55 6.16 9.81 11.43 5.96 7.11 NA NA 12.49 11.66 9.06 11.03 6.8 15.82 7.37 11.13 12.23 12.25 9 10.13 NA 10.28 NA NA Ubxd6 UBX domain containing 6
|
969
|
+
51.19 56.81 56.46 51.19 53.2 58.07 51.11 53.14 54.41 63.6 73.5 NA NA 47.72 55.1 50.63 61.36 45.59 50.08 66.04 51.07 52.57 56.14 41.45 64.67 NA 59.42 NA NA D0HXS9928E DNA segment, human DXS9928E
|
970
|
+
44.07 31.96 45.42 44.07 49.61 50.05 30.66 58.68 37.41 37.26 33.87 NA NA 35.88 38.54 35.15 57.21 38.21 55.74 35.81 36.55 40.65 39.59 38.35 31.91 NA 54.2 NA NA Mat2b methionine adenosyltransferase II, beta,methionine adenosyltransferase II, beta,
|
971
|
+
13.04 4.52 7.95 13.04 6.15 9.75 6 15.33 5.9 6.05 6.52 NA NA 7.02 7.91 7.89 12.85 6.96 10.45 7.95 6.39 6.72 6.47 7 5.6 NA 10.39 NA NA Slc35b3 solute carrier family 35, member B3,solute carrier family 35, member B3,
|
972
|
+
0.09 0 NA 0.09 0 0 0 0 0.04 0 0 NA NA 0 0 0.01 0 0 0.02 0 0 0 0 0 0 NA 0 NA NA 4933426K21Rik hypothetical protein LOC108653,hypothetical protein LOC108653,
|
973
|
+
3.99 4.52 4.41 3.99 4.31 2.7 3.76 3.05 4.2 3.57 4.2 NA NA 5.1 3.89 3.32 2.43 4.32 3.64 3.68 4.61 3.94 3.69 5.46 3.73 NA 3.36 NA NA 4933403F05Rik hypothetical protein LOC108654
|
974
|
+
19 18.75 19.71 19 12.57 14.77 23.35 10.63 21.7 25.72 20.43 NA NA 25.11 21.88 19.02 19.43 24.6 15.17 20.04 20.8 24.25 19.13 26.8 20.76 NA 10.13 NA NA Foxp1 forkhead box P1,forkhead box P1,forkhead box P1,forkhead box P1,forkhead box P1,forkhead box P1,forkhead box P1,
|
975
|
+
15.6 20.1 16.32 15.6 14.53 12.91 19.09 13.48 19.39 17.64 18.81 NA NA 21.61 17.56 16.46 12.87 19.48 12.09 19.31 18.05 17.85 18.48 16.72 19.22 NA 12.24 NA NA Rnpepl1 arginyl aminopeptidase (aminopeptidase B)-like
|
976
|
+
113.05 87.01 120.6 113.05 133.28 73.64 83.33 126.73 96.89 99.79 104.67 NA NA 93.45 87.04 101.7 95.08 88.22 104.26 104.64 89.4 85.64 116 103.01 89.33 NA 130.92 NA NA Atp6v1h ATPase, H+ transporting, lysosomal V1 subunit H
|
977
|
+
76.66 57.59 86.82 76.66 42.08 80.77 101.3 104.17 116.64 92.08 50.49 NA NA 78.06 49.68 66.77 109.24 74.93 57.88 38.11 41.22 86.06 93.86 15.36 57.26 NA 54.28 NA NA Epsti1 epithelial stromal interaction 1 isoform a
|
978
|
+
23.76 35.18 30.85 23.76 22.31 30.06 27.92 21.18 23 21.35 18.92 NA NA 35.05 33.24 30.53 34.19 24.93 37.43 20.76 23.46 39.39 21.25 42.8 23.54 NA 26.4 NA NA Dnajc9 DnaJ homolog, subfamily C, member 9
|
979
|
+
0.83 0.24 0.18 0.83 0.23 0.03 0.2 0.33 0.48 0.32 0.16 NA NA 0.42 0.22 0.31 0.26 0.32 0.26 0.26 0.27 0.38 0.52 0.31 0.21 NA 0.67 NA NA Zdhhc15 zinc finger, DHHC domain containing 15
|
980
|
+
22.36 19.65 17.58 22.36 20.23 19.24 24.51 23.63 27.27 17.05 22.95 NA NA 15.65 25.48 21.12 23.88 19.75 20.33 24.61 20.6 18.51 24.18 10.64 26.5 NA 21.01 NA NA Ccdc86 coiled-coil domain containing 86
|
981
|
+
39.56 39.49 46.77 39.56 58.02 54.29 33.78 69.42 37.14 40.55 46.07 NA NA 41.67 44.55 46.57 48.51 43.16 58.85 43.43 39.86 36.15 42.62 42.71 39.3 NA 70.81 NA NA Cops8 COP9 signalosome subunit 8
|
982
|
+
5 4.81 6 5 4.54 3.04 6.88 5.1 4.62 5.43 5.25 NA NA 5.95 7.27 6.2 4.78 5.37 4.16 5.67 5 5.11 4.57 7.13 4.14 NA 5.63 NA NA Gpt2 glutamic pyruvate transaminase (alanine,glutamic pyruvate transaminase (alanine,glutamic pyruvate transaminase (alanine,
|
983
|
+
2.96 4.65 2.48 2.96 1.38 3.12 5.21 1.03 4.7 3.29 4.15 NA NA 4.49 5 2.11 4.4 3.67 2.05 3.97 5.82 4.02 3.03 4.42 5.58 NA 1.13 NA NA Ccdc88a coiled coil domain containing 88A
|
984
|
+
17.44 10.57 16.3 17.44 20.02 14.37 19 22.33 19.8 18.95 19.69 NA NA 16.88 16.5 18.83 14.44 19.23 17.11 16.99 15.95 17.63 18.9 14.56 16.12 NA 22.3 NA NA Edem2 putative alpha-mannosidase
|
985
|
+
13.92 13.47 14.57 13.92 12.54 14.28 12.69 13.49 13.73 12.29 12.43 NA NA 14.7 13.27 14.63 10.75 11.89 13.47 11.12 11.75 12.66 12.9 18.13 13.19 NA 12.04 NA NA Obfc1 oligonucleotide/oligosaccharide-binding fold,oligonucleotide/oligosaccharide-binding fold,
|
986
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0.09 0 0.16 0.28 0 0 0 NA 0 NA NA Chn1 chimerin (chimaerin) 1 isoform 1,chimerin (chimaerin) 1 isoform 1,
|
987
|
+
68.89 47.85 69.93 68.89 74.15 54.06 50.99 67.2 67.09 68.52 64.1 NA NA 61.22 57.54 63.47 63.94 68.57 63.98 72 58.82 56.28 71.68 68.19 61.9 NA 78.47 NA NA Pttg1ip pituitary tumor-transforming gene 1
|
988
|
+
5.77 5.19 3.5 5.77 3.63 3.32 4.2 3 4.42 2.63 3.39 NA NA 4.37 3.26 3.97 3.58 2.91 2.86 3.24 2.73 3.07 4.49 2.96 3.31 NA 4.12 NA NA 1810008A18Rik hypothetical protein LOC108707,hypothetical protein LOC108707,
|
989
|
+
4.72 10.91 8.21 4.72 3.5 8.82 10.67 3.02 23.5 13.1 2.81 NA NA 11.83 4.08 9.45 15.88 12.07 3.51 8.27 7.99 10.07 11.68 2.18 6.97 NA 2.26 NA NA Card11 caspase recruitment domain family, member 11,caspase recruitment domain family, member 11,
|
990
|
+
1.1 0.78 1.24 1.1 0.99 0.73 1 0.92 1.05 0.84 0.68 NA NA 0.9 0.45 0.7 0.61 0.81 1.13 0.77 0.96 1.17 0.99 0.85 0.76 NA 1.06 NA NA Sft2d2 SFT2 domain containing 2
|
991
|
+
12.31 23.63 16.83 12.31 12.77 9.62 15.86 11.13 18.95 13.15 16.44 NA NA 17.41 14.62 15.4 7.36 18.88 8.21 14.18 16.23 17.04 15.26 21.59 15.19 NA 12.61 NA NA Oxsr1 oxidative-stress responsive 1,oxidative-stress responsive 1,
|
992
|
+
0.72 0.35 0.87 0.72 0.94 2.11 0.27 1.77 0.55 0.92 0.99 NA NA 0.43 1 0.43 0.59 0.7 1.41 0.99 0.83 0.57 0.52 0.77 0.71 NA 1.24 NA NA Lyrm2 LYR motif containing 2
|
993
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0.01 0 0 0 0 0 0 NA 0 NA NA Galntl1 UDP-N-acetyl-alpha-D-galactosamine:polypeptide,UDP-N-acetyl-alpha-D-galactosamine:polypeptide,UDP-N-acetyl-alpha-D-galactosamine:polypeptide,
|
994
|
+
14.32 22.91 16.83 14.32 11.93 14.72 20.46 12.87 14.47 21.25 11.59 NA NA 16.62 14.51 17.75 13.85 19.18 19.9 20.15 21.59 18.24 16.16 19.5 16.66 NA 15.79 NA NA Pnrc1 proline-rich nuclear receptor coactivator 1
|
995
|
+
0 0.16 NA 0 0.07 0.07 0.15 0.02 0.13 0.11 0.25 NA NA 0.06 0.08 0.11 0.1 0.06 0.01 0.18 0.2 0.14 0.2 0.18 0.16 NA 0.04 NA NA Ston2 stonin 2
|
996
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0.09 0 0 0 0 0 0 NA 0 NA NA Calr4 calreticulin 4,calreticulin 4,
|
997
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA 4933402P03Rik hypothetical protein LOC108803
|
998
|
+
2.1 2.95 2.81 2.1 0.65 0.75 2.53 3.43 3.45 2.89 1.84 NA NA 3.2 1.58 1.63 3.37 2.06 2.01 1.07 1.77 2.09 2.05 1.37 1.67 NA 0.64 NA NA Ccdc122 coiled-coil domain containing 122
|
999
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0.06 0 0 0 0 0 0 NA 0 NA NA Als2cr12 amyotrophic lateral sclerosis 2 (juvenile)
|
1000
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA n/a n/a
|
1001
|
+
6.16 9.97 7.72 6.16 6.9 7.61 9.94 5.61 10.95 6.47 9.75 NA NA 9.68 8.12 9.51 6.65 9.69 6.11 7.61 8.86 8.64 8 10.85 8.86 NA 5.53 NA NA Ibtk inhibitor of Bruton's tyrosine kinase,inhibitor of Bruton's tyrosine kinase,
|
1002
|
+
3.46 1.78 3.35 3.46 2.88 2 2.78 3.45 3.52 4.33 4 NA NA 2.45 2.79 2.13 2.32 3.41 1.74 2.91 2.68 2.1 2.46 3.33 2.68 NA 4.45 NA NA Rdh13 retinol dehydrogenase 13 (all-trans and 9-cis),retinol dehydrogenase 13 (all-trans and 9-cis),
|
1003
|
+
0.69 2.64 2.39 0.69 1.77 4.85 3.01 3.39 2.2 2.73 2.5 NA NA 3.12 3.57 2.87 2.77 3.08 3.34 3.98 3.12 4.07 2.7 2.8 2.98 NA 3.2 NA NA Mtrf1l mitochondrial translational release factor
|
1004
|
+
10.69 13.21 15.83 10.69 13.55 14.17 14.82 10.84 15.06 16.2 17.48 NA NA 14.87 16.36 13.02 15.29 13.6 11.65 14.47 11.92 13.55 15.69 13.44 16.07 NA 11.28 NA NA Atad3a AAA-ATPase TOB3
|
1005
|
+
0.18 0 NA 0.18 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0.02 0 NA 0 NA NA 2810003C17Rik ionized calcium binding adapter molecule 2
|
1006
|
+
0.1 0.42 NA 0.1 0.05 0.11 0.23 0.08 0.2 0.14 0.1 NA NA 0.44 0.12 0.07 0.01 0.18 0.01 0.18 0.18 0.13 0.05 0.2 0.2 NA 0.19 NA NA 2700081O15Rik hypothetical protein LOC108899,hypothetical protein LOC108899,
|
1007
|
+
3.34 2.24 2.3 3.34 1.89 3.61 2.87 3.73 1.15 2.23 2.08 NA NA 2.62 2.47 3.2 3.49 1.72 3.98 1.04 2.44 2.84 1.3 3.08 2.06 NA 3.62 NA NA 2700049P18Rik hypothetical protein LOC108900
|
1008
|
+
20.42 17.68 20.65 20.42 19.62 18.96 16.98 16.8 18.81 18.85 18.19 NA NA 17.01 18.06 19.11 17.49 21.58 23.62 18.65 17.92 18.22 21.8 22.78 18.89 NA 22.12 NA NA B3gnt1 beta-1,3-N-acetylglucosaminyltransferase bGnT-6,beta-1,3-N-acetylglucosaminyltransferase bGnT-6,
|
1009
|
+
29.82 36.48 35.95 29.82 32.23 23.83 32.08 30.11 33.22 27.06 28.07 NA NA 37.58 28.51 38.59 21.34 30.26 22.56 27.13 28.43 29.64 32.79 33.23 25.71 NA 37 NA NA Tbcd tubulin-specific chaperone d
|
1010
|
+
13.76 33.38 18.88 13.76 7.19 13.89 17.86 7.75 16.32 10.34 12.87 NA NA 25.52 20.23 24.28 24.38 17.71 24.13 8.26 14.27 26 13.35 37.65 16.09 NA 10.69 NA NA Nusap1 nucleolar and spindle associated protein 1
|
1011
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA 2610208M17Rik axin interaction partner and dorsalization,axin interaction partner and dorsalization,axin interaction partner and dorsalization,
|
1012
|
+
79.06 83.28 90.65 79.06 72.35 71.22 89.45 51.65 86.48 63.31 60.2 NA NA 99.88 74.93 81.7 59.96 69.62 51.69 63.99 59.23 87.37 80.58 93.72 79.49 NA 63.27 NA NA Rcc2 RCC1-like
|
1013
|
+
0.02 0.15 NA 0.02 0.33 0.4 0 0.42 0.37 0.04 0.22 NA NA 0 0.21 0.79 0.18 0.2 0.24 0.19 0.08 0.16 0.12 0.08 0.05 NA 0 NA NA Lhfp lipoma HMGIC fusion partner
|
1014
|
+
0.72 1.68 2.2 0.72 1.52 1.66 1.69 1.37 1.65 1.57 1.45 NA NA 2.73 1.92 1.92 1.72 2.13 1.81 2.27 1.84 2.54 2.02 2.59 2.45 NA 1.75 NA NA Rg9mtd2 RNA (guanine-9-) methyltransferase domain,RNA (guanine-9-) methyltransferase domain,
|
1015
|
+
4.38 3.04 3.87 4.38 2.7 2.68 4.11 2.23 3.99 4.95 4.86 NA NA 3.51 4.45 3.68 2.83 4.99 2.22 3.43 3.71 3.92 4.01 4.69 3.94 NA 2.2 NA NA Zzz3 zinc finger, ZZ domain containing 3
|
1016
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Ppp1r15b protein phosphatase 1, regulatory subunit 15B
|
1017
|
+
0 0 NA 0 0 0.26 0 0 1.28 0.02 0.2 NA NA 0 0 0 0.38 0.09 0.16 0.44 0 0.44 0.27 0.06 0 NA 0 NA NA 2210421G13Rik hypothetical protein LOC108956
|
1018
|
+
4.15 4.08 3.81 4.15 3.73 4.76 4.26 4.74 4.21 4.88 5.28 NA NA 4.89 4.89 4.03 3.7 4.76 3.79 5.28 4.68 4.71 4.93 5.59 4.82 NA 4.72 NA NA 5730472N09Rik hypothetical protein LOC108958,hypothetical protein LOC108958,
|
1019
|
+
18.6 12.53 14.13 18.6 15.68 15.85 15.96 21.73 20.96 15.88 21.01 NA NA 11.08 15.97 18.46 13.17 16.25 11.49 17.72 19.7 13.87 15.53 9.77 21.02 NA 16.64 NA NA Irak2 interleukin-1 receptor-associated kinase 2,interleukin-1 receptor-associated kinase 2,interleukin-1 receptor-associated kinase 2,
|
1020
|
+
6.34 15.59 8.3 6.34 3.17 7.55 12.21 3.23 8.49 6.22 7.42 NA NA 15.73 12.41 10.66 11.51 10.87 8.95 6.59 9.1 15.58 6.36 20.17 8.5 NA 4.43 NA NA E2f8 E2F transcription factor 8,E2F transcription factor 8,
|
1021
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA 4930555G01Rik hypothetical protein LOC108978
|
1022
|
+
12.73 21.25 14.87 12.73 6.23 14.97 23.71 4.04 20.98 22.79 20.17 NA NA 20.07 24.17 8.92 16.92 16.78 7.55 16.89 24.41 27.18 9.82 15.39 29.01 NA 6.64 NA NA Tpr nuclear pore complex-associated protein Tpr,nuclear pore complex-associated protein Tpr,nuclear pore complex-associated protein Tpr,
|
1023
|
+
0 0.05 NA 0 0.03 0.74 0.17 0 0.26 0.03 0.13 NA NA 0.13 0.26 0.05 0.21 0.15 0.13 0.15 0.06 0.05 0.2 0.23 0.13 NA 0.24 NA NA Tbc1d10c TBC1 domain family, member 10c,TBC1 domain family, member 10c,
|
1024
|
+
9.88 14.9 12.73 9.88 22.82 25.13 8.05 12.22 19 17.89 9.26 NA NA 15.81 9.13 18.29 12.24 15.51 12.34 8.85 15.15 18.29 17.86 7.57 15.43 NA 14.19 NA NA Ciapin1 cytokine induced apoptosis inhibitor 1
|
1025
|
+
15.86 14.64 10.45 15.86 15.4 15.45 10.96 14.38 22.92 12.49 11.16 NA NA 11.18 9.44 15.46 14.85 11.84 17.33 16.67 14.82 15.32 17.23 14.66 14.23 NA 14.9 NA NA Obfc2a oligonucleotide/oligosaccharide-binding fold,oligonucleotide/oligosaccharide-binding fold,
|
1026
|
+
14.27 20.66 15.59 14.27 17.4 25.88 27.13 24.46 24.32 17.18 13.9 NA NA 16.62 19.86 25.17 26.47 18.93 15.92 17.37 19.49 23.1 18.05 8.76 24.7 NA 19.91 NA NA Sp110 Sp110 nuclear body protein,Sp110 nuclear body protein,Sp110 nuclear body protein,
|
1027
|
+
1.01 0 0.68 1.01 0.27 1.83 0.15 0.7 0.17 0.63 0.1 NA NA 0.54 0.49 0 0.45 0.09 1.22 0.5 0.48 0.1 0.4 1.07 0.81 NA 0.35 NA NA Prkcdbp protein kinase C, delta binding protein
|
1028
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA 6530418L21Rik hypothetical protein LOC109050,hypothetical protein LOC109050,
|
1029
|
+
0 0.01 NA 0 0 0 0.02 0 0 0 0.01 NA NA 0 0.01 0 0.01 0.04 0.01 0.03 0.01 0.01 0.01 0.02 0.02 NA 0.02 NA NA Krt75 keratin 75
|
1030
|
+
27.82 30.75 33.94 27.82 26.51 36.7 22.29 37.06 27.42 27.56 22.31 NA NA 20.07 25.45 31.64 45.33 28.99 54.52 26.47 24.85 25.1 25.91 29.71 21.18 NA 42.75 NA NA Pfdn4 prefoldin 4
|
1031
|
+
6.56 5.07 5.84 6.56 4.8 5.46 4.54 4.5 5.06 5.27 5.49 NA NA 5.46 5.57 5.68 6.17 4.95 5.81 3.79 3.91 5.17 4.42 7.23 4.91 NA 5.24 NA NA 1110034A24Rik hypothetical protein LOC109065
|
1032
|
+
24.69 14.27 20.39 24.69 23.81 35.89 14.36 28.73 17.01 19.75 16.42 NA NA 15.26 19.58 16 20.55 17.67 25.61 16.32 16.59 16.83 18.91 14.78 15.99 NA 29.5 NA NA Exosc4 exosome component 4
|
1033
|
+
14.25 14.63 14.28 14.25 13.75 10.99 11.4 9.86 12.49 9.73 12.47 NA NA 14.39 10.83 13.01 9.89 13.42 11.88 13.2 12.2 13.49 11.75 13.75 12.72 NA 11.81 NA NA Ints5 integrator complex subunit 5
|
1034
|
+
9.25 13.68 10.53 9.25 8.98 8.86 8.64 5.7 9.17 7.01 8.7 NA NA 11.97 10.53 10.85 9.86 10.13 10.28 7.81 8.6 10.63 7.98 13.67 7.94 NA 8.45 NA NA Sephs1 selenophosphate synthetase 1,selenophosphate synthetase 1,
|
1035
|
+
19.52 21.44 22.71 19.52 19.91 22.74 26.81 20.5 22.92 23.3 14.64 NA NA 23.03 23.24 22.89 27.95 22.64 21.91 20.11 22.41 22.33 20.87 14.64 24.52 NA 23.92 NA NA Fbxw17 F-box and WD-40 domain protein 17
|
1036
|
+
12.64 12.7 15.09 12.64 15.91 16.75 8.94 13.28 14.63 13.84 15.24 NA NA 13.29 12.62 12.85 16.29 12.59 13.25 13.19 12.43 10.56 15.07 13.9 12.11 NA 18.91 NA NA Rars2 arginyl-tRNA synthetase-like
|
1037
|
+
14.59 13.81 14.75 14.59 13.81 11.63 14.2 14.04 15.16 15.19 15.7 NA NA 14.3 16.32 15.48 14.08 16.37 12.54 14.41 14.86 13.02 13.68 12.82 14.03 NA 16.86 NA NA Slc30a9 solute carrier family 30 (zinc transporter),,solute carrier family 30 (zinc transporter),,solute carrier family 30 (zinc transporter),,
|
1038
|
+
39.56 44.3 39.61 39.56 42.76 25.93 40.93 34.01 45.4 38.07 37.52 NA NA 44.92 38.96 38.09 40.57 43.58 33.18 46.14 38.45 38.28 45.12 45.17 36.75 NA 30.02 NA NA Uhrf2 ubiquitin-like, containing PHD and RING finger,ubiquitin-like, containing PHD and RING finger,
|
1039
|
+
11.72 10.51 10.13 11.72 10.6 10.88 7.15 11.69 11.12 9.74 10.49 NA NA 9.1 9.87 7.69 12.18 8.55 12.63 12.11 9.33 8.44 10.16 10.43 11.47 NA 11.64 NA NA Supt3h suppressor of Ty 3 homolog
|
1040
|
+
50.6 45.45 63.88 50.6 71.04 80.37 48.71 81.39 54.01 52.41 57.54 NA NA 54.08 60.31 62.65 74.14 50.34 78.01 48.14 50.33 53.09 50.83 54.88 49.58 NA 85.41 NA NA 2010311D03Rik hypothetical protein LOC109129
|
1041
|
+
0.34 1.39 1.11 0.34 0.56 0.82 1.04 0.4 1.2 0.63 0.85 NA NA 1.52 1.11 0.83 0.86 1.03 0.57 0.84 0.68 0.89 0.88 0.81 1.33 NA 0.38 NA NA Plekha5 phosphoinositol 3-phosphate-binding protein-2,phosphoinositol 3-phosphate-binding protein-2,phosphoinositol 3-phosphate-binding protein-2,phosphoinositol 3-phosphate-binding protein-2,phosphoinositol 3-phosphate-binding protein-2,
|
1042
|
+
1.87 2.45 2.38 1.87 2.37 3.36 1.5 3.22 1.7 2.46 2.5 NA NA 1.83 2.31 2.32 3.16 1.52 3.03 2.33 1.86 2.02 2.27 1.37 1.79 NA 3.01 NA NA Mmaa methylmalonic aciduria type A
|
1043
|
+
12.45 10.03 18.6 12.45 13.47 17.31 13.66 18.46 15.23 11.33 12.61 NA NA 19.46 15.99 17.91 18.31 15.04 20.7 12.52 13.92 21.58 15.69 18.69 13.6 NA 22.11 NA NA Gins4 SLD5
|
1044
|
+
1.53 1.83 2.1 1.53 1.35 1.75 2.83 0.9 3.04 2.64 3.02 NA NA 2.79 2.73 1.66 1.64 3.26 1.13 1.98 3.71 2.55 1.98 2.41 2.97 NA 1.03 NA NA Chd9 chromodomain helicase DNA binding protein 9,chromodomain helicase DNA binding protein 9,
|
1045
|
+
42.44 68.81 54.81 42.44 46.78 40.36 63.99 36.64 51.31 32.27 48.7 NA NA 64.61 48.84 56.15 33.67 48.34 39.1 44.27 44.94 67.86 45.06 63.62 38.73 NA 37.85 NA NA 2410014A08Rik hypothetical protein LOC109154
|
1046
|
+
9.52 9.57 10.41 9.52 9.95 6.85 9.29 9.35 8.98 9.04 10.07 NA NA 9.06 9.87 8.64 11.49 9.21 10.37 9.71 9.01 7.86 8.68 9.54 9.33 NA 10.64 NA NA Ube2q2 ubiquitin-conjugating enzyme E2Q 2
|
1047
|
+
5.18 4.02 6.33 5.18 5.66 2.46 6.23 5.26 5.88 3.72 4.39 NA NA 6.26 4.52 6.38 3.25 5.53 2.68 3.06 5.29 4.96 5.26 7.96 5.49 NA 4.76 NA NA 5730596K20Rik hypothetical protein LOC109168
|
1048
|
+
0 0 NA 0 0.02 0.04 0 0 0.03 0 0.04 NA NA 0.03 0 0.02 0 0.01 0.01 0 0 0.09 0.01 0.02 0.08 NA 0 NA NA Sobp sine oculis-binding protein homolog,sine oculis-binding protein homolog,
|
1049
|
+
21.63 40.18 27.67 21.63 13.74 24.53 26.02 14.05 15.85 15.12 12.29 NA NA 36.77 24.27 27.2 31.67 25.85 49.13 13.26 15.98 39.43 17.81 45.94 16.91 NA 22.78 NA NA 6720460F02Rik hypothetical protein LOC109212
|
1050
|
+
0 0 NA 0 0.08 0 0 0 0.04 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Tmem139 hypothetical protein LOC109218
|
1051
|
+
243.69 55.15 253.8 243.69 323.83 223.14 202.69 614.56 211.98 416.25 247.56 NA NA 110.75 132.82 305.54 582.38 145.64 226.68 259.92 153.4 127.28 342.97 109.95 176.22 NA 243.65 NA NA Ms4a7 membrane-spanning 4-domains, subfamily A, member
|
1052
|
+
20.54 16.8 13.36 20.54 16.24 11.23 11.71 24.54 13.53 11.66 13.24 NA NA 12.87 10.74 14.46 12.88 14.69 16.03 16.01 14.14 14.09 15.8 15.09 11.22 NA 20.69 NA NA Ppp4r1l protein phosphatase 4, regulatory subunit 1-like
|
1053
|
+
5.4 3.81 12.41 5.4 6.59 6.87 5.27 7.34 4.38 5.83 6.79 NA NA 6.11 8.39 6.89 8.22 6.33 7.52 6.46 7.01 8.88 7.89 9.21 4.05 NA 10.99 NA NA Sccpdh saccharopine dehydrogenase (putative)
|
1054
|
+
0.62 0.99 1.05 0.62 0.76 1 1.6 0.85 1.38 1.17 1.54 NA NA 1.32 1.36 0.93 0.52 1.57 0.4 1.32 1.44 1.25 1.13 1.09 1.12 NA 0.47 NA NA Mbd5 methyl-CpG binding domain protein 5,methyl-CpG binding domain protein 5,methyl-CpG binding domain protein 5,
|
1055
|
+
1.06 2.15 1.31 1.06 0.85 1.03 1.81 0.22 1.36 0.68 1.3 NA NA 2.36 1.65 1.69 1.09 1.73 1.05 0.87 1.38 2.1 1.25 2.89 1.19 NA 0.48 NA NA Kif24 kinesin family member 24,kinesin family member 24,
|
1056
|
+
0 0.32 NA 0 5.45 2.92 0.84 1.81 3.09 1.73 1.03 NA NA 2.72 3.28 1.33 3.26 1.24 0.39 3.75 1.49 0.77 5.93 3.53 5.45 NA 2.02 NA NA Lrrc39 leucine rich repeat containing 39 isoform 1
|
1057
|
+
0.24 0.18 NA 0.24 0.23 0.13 0.18 0 0.15 0.07 0.18 NA NA 0.13 0.24 0.1 0.04 0.3 0.17 0.23 0.22 0.52 0.07 0.28 0.13 NA 0 NA NA Tspan9 tetraspan NET-5,tetraspan NET-5,tetraspan NET-5,
|
1058
|
+
0.04 0 NA 0.04 0 0 0 0 0 0 0 NA NA 0 0.07 0 0 0.04 0 0 0 0 0 0 0 NA 0 NA NA 9530008L14Rik hypothetical protein LOC109254,hypothetical protein LOC109254,
|
1059
|
+
2.1 3.8 3.76 2.1 3.58 2.84 4.06 2.4 4.39 3.94 4.65 NA NA 4.35 3.73 3.41 2.52 4.23 2.31 3.67 4.77 4.21 3.93 5.06 4.99 NA 1.7 NA NA Rlf rearranged L-myc fusion sequence,rearranged L-myc fusion sequence,rearranged L-myc fusion sequence,
|
1060
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Me3 malic enzyme 3, NADP(+)-dependent,,malic enzyme 3, NADP(+)-dependent,,malic enzyme 3, NADP(+)-dependent,,
|
1061
|
+
0 0.14 NA 0 0.19 0.13 1.18 0.6 0.08 0 0.04 NA NA 0.8 0.47 0.2 0.07 0.11 0.08 0.31 0.14 0.1 0.35 0.07 0.71 NA 0.04 NA NA Arhgap8 Rho GTPase activating protein 8,Rho GTPase activating protein 8,Rho GTPase activating protein 8,
|
1062
|
+
0 0 NA 0 0 0.03 0 0 0 0 0 NA NA 0.07 0 0 0 0.02 0 0 0 0 0 0 0 NA 0 NA NA 8030451F13Rik myosin binding protein C, slow type,myosin binding protein C, slow type,
|
1063
|
+
8.05 8.01 8.86 8.05 8.26 8.53 8.18 7.6 7.57 8.58 8.23 NA NA 9.44 7.68 7.63 8.3 7.57 9.57 9.95 7.97 9.79 8.98 6.78 8.15 NA 8.47 NA NA Actr5 ARP5 actin-related protein 5 homolog,ARP5 actin-related protein 5 homolog,
|
1064
|
+
0 0 NA 0 0 0 0 0 0 0 0.03 NA NA 0 0 0 0 0.08 0 0.03 0 0 0.04 0 0 NA 0 NA NA 9330176C04Rik hypothetical protein LOC109280
|
1065
|
+
46.93 50.62 46.35 46.93 55.66 60.05 45.34 42.92 38.97 43.77 37.85 NA NA 51.5 40.12 47.5 41.82 42.38 46.8 46.87 41.98 44.53 49.38 44.15 43.71 NA 57.65 NA NA C030046I01Rik hypothetical protein LOC109284
|
1066
|
+
0 0.01 NA 0 0 0.01 0.04 0.01 0 0.03 0 NA NA 0.04 0 0.01 0.03 0.01 0.03 0 0 0.01 0 0 0 NA 0.01 NA NA C030045D06Rik hypothetical protein LOC109294
|
1067
|
+
40.02 29.26 36.24 40.02 32.96 37.26 26.84 32.87 30.79 30.65 28.78 NA NA 36.18 33.18 40.84 34.89 31.37 37.99 32.53 32.52 32.47 34.22 28.92 28.58 NA 40.73 NA NA Orai1 transmembrane protein 142A,transmembrane protein 142A,
|
1068
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA A030004J04Rik hypothetical protein LOC109314
|
1069
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA C1qtnf7 C1q and tumor necrosis factor related protein 7,C1q and tumor necrosis factor related protein 7,
|
1070
|
+
12.48 19.9 14.47 12.48 10.46 13.79 15.69 7.09 15.43 17.34 17.71 NA NA 16.33 15.56 13.66 14.82 16.35 10.67 15.16 14.16 17.33 12.89 14.82 18.07 NA 9.24 NA NA Rnf20 ring finger protein 20,ring finger protein 20,
|
1071
|
+
0 0.14 NA 0 0.05 0.14 0.08 0.22 0.6 0.05 0.06 NA NA 0.14 0.05 0.12 0 0.05 0.13 0.05 0.11 0.05 0.09 0.06 0.08 NA 0.09 NA NA Cdcp1 CUB domain-containing protein 1,CUB domain-containing protein 1,
|
1072
|
+
4.9 7.43 7.27 4.9 5.57 4.99 9.41 6.49 9.9 7.64 9.99 NA NA 9 8.19 7.86 6.29 9.16 4.9 7.16 9.17 8.62 7.96 8.56 8.67 NA 6.21 NA NA Pkn2 protein kinase N2,protein kinase N2,
|
1073
|
+
0 0 NA 0 0 0 0 0 0 0.05 0 NA NA 0 0.03 0.05 0 0 0 0 0 0 0 0.02 0.08 NA 0.17 NA NA Slc5a10 solute carrier family 5 (sodium/glucose,solute carrier family 5 (sodium/glucose,
|
1074
|
+
2.39 2.95 2.81 2.39 2.83 5.62 2.22 3.62 2.9 2.9 3.02 NA NA 3.23 2.49 3.01 3.7 2.69 5.25 1.92 2.09 3.48 2.16 2.72 2.79 NA 5.57 NA NA Ankrd39 ankyrin repeat domain 39
|
1075
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA C630035N08Rik hypothetical protein LOC109349
|
1076
|
+
29.09 29.54 31.02 29.09 29.62 19.34 27.25 26.35 31.62 28.77 31.68 NA NA 26.04 27.48 30.09 25.17 30.62 25.58 37.53 33.28 25.64 34.08 31.09 31.23 NA 28.43 NA NA C430003P19Rik hypothetical protein LOC109359,hypothetical protein LOC109359,
|
1077
|
+
36.91 56.27 45.76 36.91 49.02 58.03 31.26 58.47 41.91 43.71 38.04 NA NA 39.93 39.49 42.09 46.48 38.69 61.83 37.9 40.92 38.82 37.01 39.84 36 NA 60.42 NA NA Sri sorcin isoform 1
|
1078
|
+
0 0 NA 0 0.15 0 0 0 0.14 0 0.03 NA NA 0 0 0.1 0 0 0 0 0.02 0 0 0 0.16 NA 0 NA NA Tbx10 T-box 10 isoform 1
|
1079
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Lmo3 LIM domain only 3,LIM domain only 3,
|
1080
|
+
0 1.44 NA 0 0.46 0 0.1 0.05 0.09 0.28 0.37 NA NA 0.59 0.34 0.16 0.47 0.65 0.48 0.2 0.06 1.27 0.33 0.32 0.1 NA 0.93 NA NA Lmo1 LIM domain only 1
|
1081
|
+
0.35 0.24 0.06 0.35 0.13 0.3 0.21 0.16 0.36 0.07 0.27 NA NA 0.38 0.23 0.22 0.2 0.13 0.15 0.13 0.16 0.2 0.35 0.1 0.08 NA 0.03 NA NA Cald1 caldesmon 1
|
1082
|
+
0 0.92 NA 0 0.08 0 0.61 0 0.08 0.17 0.52 NA NA 0.05 0.2 0 0.11 0.25 0.11 0.18 0.32 0.12 0.12 0.24 0.09 NA 0.3 NA NA Upk1a uroplakin 1A,uroplakin 1A,
|
1083
|
+
1289.35 1171.23 771.99 1289.35 1663.19 1628.95 856.49 2315.92 1825.82 1347.59 1186.82 NA NA 627.45 952.99 1281.94 1116.12 1016.32 1699.46 1142.85 946.81 666.24 1076.77 385.55 1298.5 NA 1542.05 NA NA Npy neuropeptide Y
|
1084
|
+
0.85 0.6 0.88 0.85 0.05 1.56 0.56 1.71 0.94 0.52 0.63 NA NA 0.43 1.39 1.61 2.68 1.17 2.15 0.25 1.98 1.5 0.96 1.63 1.89 NA 2.33 NA NA Acy1 aminoacylase 1
|
1085
|
+
16.05 20.9 22.98 16.05 15.98 13.75 23.68 15.36 22.42 20.03 22.89 NA NA 25.6 21.7 22.4 18.11 22.76 15.43 21.98 22.59 22.99 21.81 25.14 23.44 NA 15.85 NA NA Txlna taxilin alpha,taxilin alpha,
|
1086
|
+
0 0 NA 0 0 0 0 0 0.13 0.14 0 NA NA 0.21 0.13 0 0 0.07 0 0 0.04 0.1 0.04 0 0.52 NA 0.13 NA NA Ctrl chymotrypsin-like
|
1087
|
+
0 0 NA 0 0.1 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Hoxc11 homeobox C11
|
1088
|
+
224.15 128.29 168.71 224.15 156.6 215.57 133.13 188.13 185.07 181 132.51 NA NA 148.8 170.87 166.07 241.91 161.31 311.4 159.99 162.61 185.37 149.35 163.42 143.88 NA 227.93 NA NA Cyb5 cytochrome b-5
|
1089
|
+
12.78 12.64 13.13 12.78 11.98 15.55 16.98 9.8 17 14.38 14.69 NA NA 15.31 16.03 16.74 12.28 15.44 12.63 14.36 12.99 14.81 13.86 15.25 15.81 NA 12.85 NA NA Ampd2 adenosine monophosphate deaminase 2 (isoform L),adenosine monophosphate deaminase 2 (isoform L),adenosine monophosphate deaminase 2 (isoform L),
|
1090
|
+
0.97 1.1 0.44 0.97 0.6 1.07 1 0.27 0.51 0.23 0.29 NA NA 1.16 0.69 0.18 2.12 0.51 0.14 0.4 0.27 1.14 0.69 0.14 0.23 NA 0.07 NA NA Ank2 ankyrin 2, brain isoform 3
|
1091
|
+
0 0.34 NA 0 0.1 0.06 0.06 0.11 0 0.23 0.15 NA NA 0.08 0.09 0.18 0.3 0.15 0 0.46 0.24 0.15 0.17 0.16 0.38 NA 0.13 NA NA Hyal3 hyaluronoglucosaminidase 3
|
1092
|
+
23.17 35.64 36.28 23.17 22.59 19.3 40.58 16.88 38.11 32.47 37.12 NA NA 50.2 29.82 42.2 19.92 33.59 22.93 31.41 36.96 38.03 32.69 43.86 30.58 NA 21.83 NA NA Arrb1 arrestin, beta 1 isoform A
|
1093
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Cpa1 carboxypeptidase A1
|
1094
|
+
0.05 0.06 NA 0.05 0.06 0.01 0.1 0 0.01 0.12 0.01 NA NA 0.01 0.03 0 0.01 0.04 0.02 0.02 0.03 0.07 0.03 0.14 0.07 NA 0 NA NA Itga1 integrin alpha 1,integrin alpha 1,
|
1095
|
+
78.92 71.45 63.55 78.92 49.59 58.76 62.94 44.43 98.31 61.27 68.94 NA NA 80.8 68.71 52.31 59.11 69.01 54.99 75.75 73.97 70.17 86.1 72.68 87.21 NA 42.6 NA NA Actn1 actinin, alpha 1,actinin, alpha 1,
|
1096
|
+
0 0 NA 0 0.14 0 0.1 0.05 0.02 0.26 0 NA NA 0 0 0 0 0 0 0.07 0 0 0.05 0 0 NA 0 NA NA Maob amine oxidase (flavin-containing)
|
1097
|
+
122.34 154.44 109.54 122.34 104.12 103.61 132.78 99.98 108.43 117.77 127.13 NA NA 135.58 136.84 109.33 123.72 114.88 116.74 137.24 133.29 121.51 133.06 125.21 152.53 NA 112.74 NA NA Cyb5r3 diaphorase 1
|
1098
|
+
162.42 156.6 121.94 162.42 106.17 217.53 146.49 231.12 134.71 98.32 121.49 NA NA 97.1 171.82 187 237.32 147.12 163.74 90.47 85.96 129.58 149.84 200.22 81.83 NA 132.79 NA NA Blvra biliverdin reductase A,biliverdin reductase A,
|
1099
|
+
4.14 3.95 3.88 4.14 3.88 3.75 3.56 3.42 4.23 3.25 4.29 NA NA 5.34 4.66 3.46 3.28 4.43 3.31 3.78 4.05 4.68 4.42 4.72 3.67 NA 4.17 NA NA Pgm3 phosphoglucomutase 3,phosphoglucomutase 3,phosphoglucomutase 3,
|
1100
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Clps colipase, pancreatic
|
1101
|
+
13.06 18.98 10.43 13.06 19.13 5.66 11.66 7.62 13.96 6.76 10.5 NA NA 8.34 9.19 8.13 7.48 6.47 7.25 8.2 6.81 7.35 17.68 8.9 4.45 NA 11.5 NA NA Glo1 glyoxalase 1
|
1102
|
+
65.14 72.84 70.03 65.14 86.45 85.84 55.04 80.67 58.7 60.97 55.26 NA NA 55.26 59.16 63.07 68.46 61.71 93.95 63.23 51.37 62.3 62.75 54.88 61.04 NA 95.14 NA NA H47 selenoprotein S
|
1103
|
+
0 0 NA 0 0 0 0 0 0 0 0.06 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Pgc progastricsin (pepsinogen C)
|
1104
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA F11 coagulation factor XI
|
1105
|
+
20.51 6.31 9.24 20.51 11.2 17.7 8.88 12.94 9.64 4.02 5.07 NA NA 9.81 9.56 5.92 12.22 10.83 5.6 6.8 8.19 13.14 8.13 9.47 8.2 NA 17.02 NA NA Cbr3 carbonyl reductase 3
|
1106
|
+
1.45 1.6 1.96 1.45 2.32 1.17 2.29 1.37 2.81 2.37 3.16 NA NA 2.6 2.66 2.02 2.06 2.66 1.34 2.67 2.75 2.68 2.59 2.5 2.46 NA 1.24 NA NA Braf Braf transforming,Braf transforming,Braf transforming,
|
1107
|
+
0 0.22 NA 0 0.04 0.09 0.01 0.07 0.12 0.16 0.08 NA NA 0.04 0.03 0.06 0 0.07 0.1 0.12 0.07 0.03 0.04 0.07 0.03 NA 0.07 NA NA Mzf1 myeloid zinc finger 1,myeloid zinc finger 1,myeloid zinc finger 1,
|
1108
|
+
54.4 44.24 54.97 54.4 60.32 70.9 49.88 73.58 50.1 58.67 52.74 NA NA 50.91 55.21 48.56 68.72 53.2 64.23 53.56 54.17 56.25 55.9 50.92 45.2 NA 69.18 NA NA Asl argininosuccinate lyase
|
1109
|
+
4.53 1.67 3.48 4.53 2.82 3.24 2.09 2.78 2.1 3.65 0.74 NA NA 2.46 3.1 2.17 3.11 1.84 4.59 2.54 1.62 1.99 4.52 2.51 2.69 NA 2.42 NA NA Ela1 elastase 1, pancreatic
|
1110
|
+
0 0 NA 0 0 0 0 0.04 0.02 0.1 0.01 NA NA 0 0 0 0 0 0 0.02 0 0 0 0 0 NA 0 NA NA Mcf2 mcf.2 transforming,mcf.2 transforming,
|
1111
|
+
35.69 30.42 35.35 35.69 33.64 41.66 23.36 30.56 30.39 24.63 25.61 NA NA 28.76 26.6 36.02 42.2 29.25 42.64 27.96 32.51 39.06 28.1 32.28 21.96 NA 41.49 NA NA Rap1a RAS-related protein-1a
|
1112
|
+
26.1 36.41 30.54 26.1 22.39 20.88 32.42 17.15 31.67 30.17 30.83 NA NA 35.28 33.45 31.98 25.88 34.58 21.81 32.6 33.16 30.42 31.5 36.91 31.87 NA 17.99 NA NA Zfp91 zinc finger protein 91
|
1113
|
+
4.67 4.39 3.58 4.67 3.95 2.29 2.97 3.52 4.38 3.64 3.98 NA NA 3.64 3.61 3.61 3.44 4.3 3.39 3.82 3.26 5.16 3.15 4.49 4.34 NA 4.72 NA NA Zbtb25 zinc finger and BTB domain containing 25
|
1114
|
+
59.49 69.35 53 59.49 53.37 51.66 74.11 45.56 93.67 64.78 90.53 NA NA 70.52 65.19 49.16 51.31 70.36 41.11 70.44 72.63 65.52 71.31 54.52 77.42 NA 36.5 NA NA Abr active BCR-related isoform 1
|
1115
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0.02 0 0.05 0 0 0.04 0 0.01 0 0 0 0 NA 0 NA NA Art4 ADP-ribosyltransferase 4
|
1116
|
+
0 0 NA 0 0 0 0.08 0 0.13 0 0 NA NA 0 0.11 0 0 0 0.12 0.1 0 0 0 0.04 0.15 NA 0.05 NA NA Art3 ADP-ribosyltransferase 3,ADP-ribosyltransferase 3,ADP-ribosyltransferase 3,ADP-ribosyltransferase 3,ADP-ribosyltransferase 3,
|
1117
|
+
271 260.06 294.57 271 343.95 223.64 385.59 340.42 266.38 291.23 332.95 NA NA 368.66 365.26 394.32 289.81 394.45 319.95 364.21 397.6 346.62 387.66 317.44 244.51 NA 226.98 NA NA Gusb glucuronidase, beta
|
1118
|
+
48.34 33.61 42.56 48.34 45.57 73.03 32.89 67.66 30.84 38.49 29.45 NA NA 34.26 38.38 32.12 41.33 27.68 56.47 37.53 28.78 36.11 34.12 31.07 33.4 NA 58.7 NA NA Gtrgeo22 hypothetical protein LOC110012
|
1119
|
+
20.54 32.09 22.16 20.54 10.29 23.05 22.17 10.98 17.51 13.25 14.18 NA NA 31.62 24.02 25.45 24.95 20.03 27.15 11.5 16.63 33.37 14.85 34.26 17.78 NA 19.2 NA NA Kif22 kinesin family member 22
|
1120
|
+
23.89 61.38 22.97 23.89 14.71 16.48 38.04 10.74 23.02 22.85 26.55 NA NA 38.34 35.03 30.62 29.41 27.94 20.55 19.85 24.25 36.12 22.85 41.21 31.15 NA 16.9 NA NA Dek DEK oncogene (DNA binding),DEK oncogene (DNA binding),
|
1121
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Syt17 synaptotagmin XVII,synaptotagmin XVII,synaptotagmin XVII,synaptotagmin XVII,
|
1122
|
+
16.9 26.87 21.62 16.9 13.73 24.63 13.47 14.81 11.1 11.05 11.45 NA NA 21.06 20.56 22.62 26.09 16.77 33.57 9.81 10.81 23.29 12.09 28.38 11.06 NA 24.11 NA NA Dut deoxyuridine triphosphatase,deoxyuridine triphosphatase,
|
1123
|
+
0 0 NA 0 0 0 0 0 0 0 0.01 NA NA 0 0 0.24 0 0 0 0 0 0 0 0 0 NA 0 NA NA Bmp3 bone morphogenetic protein 3,bone morphogenetic protein 3,
|
1124
|
+
26.69 34.26 31.91 26.69 24.9 23.12 31.4 21.41 34.15 28.1 28.13 NA NA 36.85 30.56 32.14 26.71 36.68 23.63 30.5 34.82 32.85 30.62 35.26 30.5 NA 22.83 NA NA Pygb brain glycogen phosphorylase
|
1125
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Dnahc5 dynein, axonemal, heavy chain 5
|
1126
|
+
25.41 22.02 25.06 25.41 22.99 23.81 26.8 17.49 27.71 20.98 21.73 NA NA 33.46 25.65 18.17 24.27 24.63 17.12 23.86 27.52 23.64 27.6 26.82 27.31 NA 19.26 NA NA Phka2 phosphorylase kinase alpha 2,phosphorylase kinase alpha 2,phosphorylase kinase alpha 2,
|
1127
|
+
18.16 10.67 21.6 18.16 13.56 13.5 20.4 8.02 11.88 21.35 12.97 NA NA 13.74 13.05 19.43 9.92 14.08 13.05 18.8 20.29 16.24 14.05 20.8 15.05 NA 16.01 NA NA Pygl liver glycogen phosphorylase
|
1128
|
+
35.04 33.16 38.08 35.04 29.54 35.06 29.52 23.61 33.55 30.62 34.35 NA NA 31.3 32.1 26.08 29.08 31.39 27.11 37.77 29.13 30.49 33.22 26.82 34.8 NA 29.91 NA NA Nol1 nucleolar protein 1
|
1129
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Cyp11b1 cytochrome P450, family 11, subfamily b,
|
1130
|
+
9.97 7.09 11.22 9.97 10.77 13.85 8.65 13.18 10.3 10.26 11.72 NA NA 11.28 9.57 10.09 13.18 9.12 11.63 9.72 11.37 11.26 10.94 7.71 10.82 NA 14.09 NA NA Mpi mannose phosphate isomerase
|
1131
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0 0 0 0 NA 0 NA NA Fgb fibrinogen, B beta polypeptide
|
1132
|
+
44.51 68.55 56.77 44.51 46.96 49.31 66.09 38.91 51.36 49.61 40.57 NA NA 64.12 51.31 51.78 49.08 56.12 45.42 49.06 51.66 62.13 50.8 60.76 54.6 NA 40.16 NA NA Ehmt2 euchromatic histone lysine N-methyltransferase 2,euchromatic histone lysine N-methyltransferase 2,
|
1133
|
+
29.03 24.05 29.85 29.03 28.75 27.17 28.5 25.88 32.18 30.42 30.69 NA NA 31.2 30.74 32.62 26.15 29.37 25.09 27.98 28.69 29.77 28.96 29.69 27.36 NA 27.21 NA NA Raf1 protein kinase raf 1,protein kinase raf 1,protein kinase raf 1,
|
1134
|
+
0 0 NA 0 0.07 0 0.15 0 0.19 0.1 0.1 NA NA 0.04 0.19 0 0.17 0.07 0 0.1 0 0 0 0.04 0.04 NA 0 NA NA Gpr18 G protein-coupled receptor 18
|
1135
|
+
60.95 54.79 58.96 60.95 79.17 61.06 62.44 66.8 54.47 55.38 51.5 NA NA 69.42 53.55 75.5 63.23 57.74 68.3 49.93 48.57 61.73 55.5 49.72 44 NA 72.57 NA NA Slc35b1 solute carrier family 35, member B1
|
1136
|
+
12.35 9.97 18.59 12.35 13.67 14.56 14.63 12.69 18.49 14.23 16.23 NA NA 20.48 16.47 20.68 13.14 18.88 14.3 13.67 20.54 15.99 16.15 21.33 17.06 NA 16.05 NA NA Manba mannosidase, beta A, lysosomal,mannosidase, beta A, lysosomal,mannosidase, beta A, lysosomal,
|
1137
|
+
0 0 NA 0 0 0 0 0 0 0 0 NA NA 0 0 0 0 0 0 0 0 0.31 0 0 0 NA 0 NA NA Abpg androgen binding protein gamma
|
1138
|
+
12.13 11.21 27.98 12.13 16.57 16.77 12.76 14.31 13.07 9.22 10.51 NA NA 29.03 16.7 7.62 24.09 15.31 28.3 10.92 14.73 23.27 15.13 36.77 10.05 NA 15.15 NA NA Fdps farnesyl diphosphate synthetase
|