Skip to content

Instantly share code, notes, and snippets.

@peatroot
Last active October 10, 2017 15:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peatroot/2589ae4a1af4c8953e46b25930ff7222 to your computer and use it in GitHub Desktop.
Save peatroot/2589ae4a1af4c8953e46b25930ff7222 to your computer and use it in GitHub Desktop.
Parallel lines filter (RNA expression by organ)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="filter"></div>
<pre class="table"></pre>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.11.0/d3.js"></script>
<script type="text/javascript" src="render-queue.js"></script>
<script type="text/javascript" src="parallel-lines-filter.js"></script>
<script>
var dimensions;
d3.tsv("values.tsv", function(error, values) {
d3.json("map_with_efos.json", function(error, hierarchyMap) {
// parse matrix
var tissues;
var genes = [];
var grid = {};
values.forEach(function (row, index) {
if (index === 0) {
tissues = Object.keys(row);
tissues.splice(tissues.indexOf('ID'), 1);
}
var gene = row.ID;
genes.push(gene);
grid[gene] = row;
delete grid[gene].ID;
Object.keys(grid[gene]).map(function (tissue) {
var value = +grid[gene][tissue];
grid[gene][tissue] = value;
});
});
// parse hierarchyMap
var organs = [];
var hierarchy = {};
Object.keys(hierarchyMap.tissues).forEach(function (tissue) {
if (tissues.indexOf(tissue) >= 0) {
hierarchyMap.tissues[tissue].organs.forEach(function (organ) {
if (organs.indexOf(organ) < 0) {
organs.push(organ);
hierarchy[organ] = [];
}
hierarchy[organ].push(tissue);
});
}
});
// construct hierarchyValues
var gridOrgans = {};
genes.forEach(function (gene) {
gridOrgans[gene] = {};
organs.forEach(function (organ) {
var vals = hierarchy[organ].map(function (tissue) {
return grid[gene][tissue];
})
gridOrgans[gene][organ] = d3.max(vals);
})
});
var valuesOrgans = genes.map(function (gene) {
var x = gridOrgans[gene];
x.id = gene;
return x;
});
// add dimensions
dimensions = organs.map(function (organ) {
return {
key: organ,
type: ParallelLinesFilter.types['Number']
}
});
var output = d3.select('pre.table');
// within data load
dimensions.forEach(function (dim) {
if (!('domain' in dim)) {
dim.domain = ParallelLinesFilter.d3Functor(dim.type.extent) (valuesOrgans.map(function (d) {
return d[dim.key];
}))
}
if (!('scale' in dim)) {
dim.scale = dim.type.defaultScale.copy();
}
dim.scale.domain(dim.domain);
})
output.text(d3.tsvFormat(valuesOrgans.slice(0, 24)));
function onFilterUpdate (selected) {
output.text(d3.tsvFormat(selected.slice(0, 24)));
}
var parallel = ParallelLinesFilter({parent: d3.select('div.filter')});
parallel.data(valuesOrgans)
.dimensions(dimensions)
.margins({top:50, left: 70, right: 30, bottom: 10})
.width(800)
.height(400)
.profileColour('green')
.onFilter(onFilterUpdate);
parallel.render();
})
});
</script>
</body>
</html>
{
"tissues": {
"Brodmann (1909) area 24": {
"anatomical_systems": [
"nervous system"
],
"efo_code": "UBERON_0006101",
"label": "Brodmann (1909) area 24",
"organs": [
"brain"
]
},
"Brodmann (1909) area 9": {
"anatomical_systems": [
"nervous system"
],
"efo_code": "UBERON_0013540",
"label": "Brodmann (1909) area 9",
"organs": [
"brain"
]
},
"C1 segment of cervical spinal cord": {
"anatomical_systems": [
"nervous system"
],
"efo_code": "UBERON_0006469",
"label": "C1 segment of cervical spinal cord",
"organs": [
"spinal cord"
]
},
"CD14-positive, CD16-negative classical monocyte": {
"anatomical_systems": [
"immune system",
"hematopoietic system"
],
"efo_code": "CL_0002057",
"label": "CD14-positive, CD16-negative classical monocyte",
"organs": [
"immune organ",
"blood"
]
},
"CD3-positive, CD4-positive, CD8-positive, double positive thymocyte": {
"anatomical_systems": [
"endocrine system",
"hematopoietic system",
"hemolymphoid system",
"immune system"
],
"efo_code": "NOT_AN_UBERON_1",
"label": "CD3-positive, CD4-positive, CD8-positive, double positive thymocyte",
"organs": [
"endocrine gland",
"immune organ"
]
},
"CD34-negative, CD41-positive, CD42-positive megakaryocyte cell": {
"anatomical_systems": [
"hematopoietic system",
"hemolymphoid system",
"immune system",
"musculoskeletal system"
],
"efo_code": "CL_0002026",
"label": "CD34-negative, CD41-positive, CD42-positive megakaryocyte cell",
"organs": [
"blood",
"immune organ",
"skeletal element"
]
},
"CD38-negative naive B cell": {
"anatomical_systems": [
"immune system",
"hematopoietic system"
],
"efo_code": "CL_0002102",
"label": "CD38-negative naive B cell",
"organs": [
"immune organ",
"blood"
]
},
"CD4-positive, alpha-beta T cell": {
"anatomical_systems": [
"immune system",
"hematopoietic system"
],
"efo_code": "CL_0000624",
"label": "CD4-positive, alpha-beta T cell",
"organs": [
"immune organ",
"blood"
]
},
"CD4-positive, alpha-beta thymocyte": {
"anatomical_systems": [
"endocrine system",
"hematopoietic system",
"hemolymphoid system",
"immune system"
],
"efo_code": "CL_0000810",
"label": "CD4-positive, alpha-beta thymocyte",
"organs": [
"endocrine gland",
"immune organ"
]
},
"CD8-positive, alpha-beta T cell": {
"anatomical_systems": [
"immune system",
"hematopoietic system"
],
"efo_code": "CL_0000625",
"label": "CD8-positive, alpha-beta T cell",
"organs": [
"immune organ",
"blood"
]
},
"CD8-positive, alpha-beta thymocyte": {
"anatomical_systems": [
"endocrine system",
"hematopoietic system",
"hemolymphoid system",
"immune system"
],
"efo_code": "CL_0000811",
"label": "CD8-positive, alpha-beta thymocyte",
"organs": [
"endocrine gland",
"immune organ"
]
},
"EBV-transformed lymphocyte": {
"anatomical_systems": [
"hemolymphoid system",
"immune system",
"lymphoid system"
],
"efo_code": "CL_0000542",
"label": "EBV-transformed lymphocyte",
"organs": [
"immune organ"
]
},
"adipose tissue": {
"anatomical_systems": [
"integumental system"
],
"efo_code": "UBERON_0001013",
"label": "adipose tissue",
"organs": [
"connective tissue"
]
},
"adrenal gland": {
"anatomical_systems": [
"endocrine system"
],
"efo_code": "UBERON_0002369",
"label": "adrenal gland",
"organs": [
"endocrine gland"
]
},
"alternatively activated macrophage": {
"anatomical_systems": [
"immune system",
"hematopoietic system"
],
"efo_code": "CL_0000890",
"label": "alternatively activated macrophage",
"organs": [
"immune organ",
"blood"
]
},
"amygdala": {
"anatomical_systems": [
"nervous system"
],
"efo_code": "UBERON_0001876",
"label": "amygdala",
"organs": [
"brain"
]
},
"aorta": {
"anatomical_systems": [
"circulatory system"
],
"efo_code": "UBERON_0000947",
"label": "aorta",
"organs": [
"vasculature"
]
},
"atrium auricular region": {
"anatomical_systems": [
"circulatory system"
],
"efo_code": "UBERON_0006618",
"label": "atrium auricular region",
"organs": [
"heart"
]
},
"blood": {
"anatomical_systems": [
"circulatory system",
"hemolymphoid system",
"hematopoietic system"
],
"efo_code": "UBERON_0000178",
"label": "blood",
"organs": [
"blood"
]
},
"bone marrow": {
"anatomical_systems": [
"hemolymphoid system",
"musculoskeletal system",
"hematopoietic system",
"immune system"
],
"efo_code": "UBERON_0002371",
"label": "bone marrow",
"organs": [
"skeletal element"
]
},
"brain": {
"anatomical_systems": [
"nervous system"
],
"efo_code": "UBERON_0000955",
"label": "brain",
"organs": [
"brain"
]
},
"breast": {
"anatomical_systems": [
"external soft tissue zone"
],
"efo_code": "UBERON_0000310",
"label": "breast",
"organs": [
"breast"
]
},
"bronchus": {
"anatomical_systems": [
"respiratory system"
],
"efo_code": "UBERON_0002185",
"label": "bronchus",
"organs": [
"tracheobronchial tree"
]
},
"caudate nucleus": {
"anatomical_systems": [
"nervous system"
],
"efo_code": "UBERON_0001873",
"label": "caudate nucleus",
"organs": [
"brain"
]
},
"caudate-putamen": {
"anatomical_systems": [
"nervous system"
],
"efo_code": "UBERON_0005383",
"label": "caudate-putamen",
"organs": [
"brain"
]
},
"central memory CD8-positive, alpha-beta T cell": {
"anatomical_systems": [
"immune system",
"hematopoietic system"
],
"efo_code": "CL_0000907",
"label": "central memory CD8-positive, alpha-beta T cell",
"organs": [
"immune organ",
"blood"
]
},
"cerebellar hemisphere": {
"anatomical_systems": [
"nervous system"
],
"efo_code": "UBERON_0002245",
"label": "cerebellar hemisphere",
"organs": [
"brain"
]
},
"cerebellum": {
"anatomical_systems": [
"nervous system"
],
"efo_code": "UBERON_0002037",
"label": "cerebellum",
"organs": [
"brain"
]
},
"cerebral cortex": {
"anatomical_systems": [
"nervous system"
],
"efo_code": "UBERON_0000956",
"label": "cerebral cortex",
"organs": [
"brain"
]
},
"cervix, uterine": {
"anatomical_systems": [
"reproductive system"
],
"efo_code": "UBERON_0000002",
"label": "cervix, uterine",
"organs": [
"reproductive organ"
]
},
"class switched memory B cell": {
"anatomical_systems": [
"immune system",
"hematopoietic system"
],
"efo_code": "CL_0000972",
"label": "class switched memory B cell",
"organs": [
"immune organ",
"blood"
]
},
"colon": {
"anatomical_systems": [
"digestive system"
],
"efo_code": "UBERON_0001155",
"label": "colon",
"organs": [
"intestine",
"colon"
]
},
"common lymphoid progenitor": {
"anatomical_systems": [
"hematopoietic system"
],
"efo_code": "CL_0000051",
"label": "common lymphoid progenitor",
"organs": [
"blood"
]
},
"common myeloid progenitor": {
"anatomical_systems": [
"hematopoietic system"
],
"efo_code": "CL_0000049",
"label": "common myeloid progenitor",
"organs": [
"blood"
]
},
"conventional dendritic cell": {
"anatomical_systems": [
"immune system",
"hematopoietic system"
],
"efo_code": "CL_0000990",
"label": "conventional dendritic cell",
"organs": [
"immune organ",
"blood"
]
},
"coronary artery": {
"anatomical_systems": [
"circulatory system"
],
"efo_code": "UBERON_0001621",
"label": "coronary artery",
"organs": [
"heart",
"vasculature"
]
},
"cortex of kidney": {
"anatomical_systems": [
"renal system"
],
"efo_code": "UBERON_0001225",
"label": "cortex of kidney",
"organs": [
"kidney"
]
},
"cytotoxic CD56-dim natural killer cell": {
"anatomical_systems": [
"immune system",
"hematopoietic system"
],
"efo_code": "CL_0000939",
"label": "cytotoxic CD56-dim natural killer cell",
"organs": [
"immune organ",
"blood"
]
},
"duodenum": {
"anatomical_systems": [
"digestive system"
],
"efo_code": "UBERON_0002114",
"label": "duodenum",
"organs": [
"intestine"
]
},
"ectocervix": {
"anatomical_systems": [
"reproductive system"
],
"efo_code": "UBERON_0012249",
"label": "ectocervix",
"organs": [
"reproductive organ",
"reproductive structure"
]
},
"effector memory CD4-positive, alpha-beta T cell": {
"anatomical_systems": [
"immune system",
"hematopoietic system"
],
"efo_code": "CL_0000905",
"label": "effector memory CD4-positive, alpha-beta T cell",
"organs": [
"immune organ",
"blood"
]
},
"endocervix": {
"anatomical_systems": [
"reproductive system"
],
"efo_code": "UBERON_0000458",
"label": "endocervix",
"organs": [
"reproductive structure"
]
},
"endometrium": {
"anatomical_systems": [
"reproductive system"
],
"efo_code": "UBERON_0001295",
"label": "endometrium",
"organs": [
"mucosa",
"reproductive organ",
"reproductive structure"
]
},
"endothelial cell of umbilical vein (proliferating)": {
"anatomical_systems": [
"circulatory system"
],
"efo_code": "CL_0002618",
"label": "endothelial cell of umbilical vein (proliferating)",
"organs": [
"blood"
]
},
"endothelial cell of umbilical vein (resting)": {
"anatomical_systems": [
"circulatory system"
],
"efo_code": "CL_0002618",
"label": "endothelial cell of umbilical vein (resting)",
"organs": [
"blood"
]
},
"epididymis": {
"anatomical_systems": [
"reproductive system"
],
"efo_code": "UBERON_0001301",
"label": "epididymis",
"organs": [
"reproductive structure"
]
},
"erythroblast": {
"anatomical_systems": [
"hematopoietic system"
],
"efo_code": "CL_0000765",
"label": "erythroblast",
"organs": [
"blood"
]
},
"esophagogastric junction": {
"anatomical_systems": [
"anatomical junction"
],
"efo_code": "UBERON_0007650",
"label": "esophagogastric junction",
"organs": [
"esophagogastric junction"
]
},
"esophagus": {
"anatomical_systems": [
"digestive system"
],
"efo_code": "UBERON_0001043",
"label": "esophagus",
"organs": [
"esophagus"
]
},
"esophagus mucosa": {
"anatomical_systems": [
"digestive system"
],
"efo_code": "UBERON_0002469",
"label": "esophagus mucosa",
"organs": [
"mucosa",
"esophagus"
]
},
"esophagus muscularis mucosa": {
"anatomical_systems": [
"digestive system",
"musculoskeletal system"
],
"efo_code": "UBERON_0004648",
"label": "esophagus muscularis mucosa",
"organs": [
"mucosa",
"musculature",
"esophagus"
]
},
"eye": {
"anatomical_systems": [
"sensory system"
],
"efo_code": "UBERON_0000970",
"label": "eye",
"organs": [
"sense organ"
]
},
"fallopian tube": {
"anatomical_systems": [
"reproductive system"
],
"efo_code": "UBERON_0003889",
"label": "fallopian tube",
"organs": [
"reproductive structure"
]
},
"frontal lobe": {
"anatomical_systems": [
"nervous system"
],
"efo_code": "UBERON_0016525",
"label": "frontal lobe",
"organs": [
"brain"
]
},
"gall bladder": {
"anatomical_systems": [
"digestive system"
],
"efo_code": "UBERON_0002110",
"label": "gall bladder",
"organs": [
"bladder organ"
]
},
"granulocyte monocyte progenitor cell": {
"anatomical_systems": [
"hematopoietic system",
"hemolymphoid system",
"immune system",
"musculoskeletal system"
],
"efo_code": "CL_0000557",
"label": "granulocyte monocyte progenitor cell",
"organs": [
"blood",
"immune organ",
"skeletal element"
]
},
"greater omentum": {
"anatomical_systems": [
"anatomical wall"
],
"efo_code": "UBERON_0005448",
"label": "greater omentum",
"organs": [
"peritoneum"
]
},
"heart": {
"anatomical_systems": [
"circulatory system"
],
"efo_code": "UBERON_0000948",
"label": "heart",
"organs": [
"heart"
]
},
"heart left ventricle": {
"anatomical_systems": [
"circulatory system"
],
"efo_code": "UBERON_0002084",
"label": "heart left ventricle",
"organs": [
"heart"
]
},
"heart muscle": {
"anatomical_systems": [
"circulatory system"
],
"efo_code": "UBERON_0002349",
"label": "heart muscle",
"organs": [
"heart"
]
},
"hematopoietic multipotent progenitor cell": {
"anatomical_systems": [
"hematopoietic system"
],
"efo_code": "CL_0000837",
"label": "hematopoietic multipotent progenitor cell",
"organs": [
"blood"
]
},
"hematopoietic stem cell": {
"anatomical_systems": [
"hematopoietic system"
],
"efo_code": "CL_0000037",
"label": "hematopoietic stem cell",
"organs": [
"blood"
]
},
"hippocampus": {
"anatomical_systems": [
"nervous system"
],
"efo_code": "UBERON_0002421",
"label": "hippocampus",
"organs": [
"brain"
]
},
"hippocampus proper": {
"anatomical_systems": [
"nervous system"
],
"efo_code": "UBERON_0001954",
"label": "hippocampus proper",
"organs": [
"brain"
]
},
"hypothalamus": {
"anatomical_systems": [
"nervous system"
],
"efo_code": "UBERON_0001898",
"label": "hypothalamus",
"organs": [
"brain"
]
},
"inflammatory macrophage": {
"anatomical_systems": [
"immune system",
"hematopoietic system"
],
"efo_code": "CL_0000863",
"label": "inflammatory macrophage",
"organs": [
"immune organ",
"blood"
]
},
"kidney": {
"anatomical_systems": [
"renal system"
],
"efo_code": "UBERON_0002113",
"label": "kidney",
"organs": [
"kidney"
]
},
"leukocyte": {
"anatomical_systems": [
"hematopoietic system",
"immune system"
],
"efo_code": "CL_0000738",
"label": "leukocyte",
"organs": [
"immune organ"
]
},
"liver": {
"anatomical_systems": [
"endocrine system",
"digestive system",
"exocrine system"
],
"efo_code": "UBERON_0002107",
"label": "liver",
"organs": [
"liver",
"exocrine gland",
"endocrine gland"
]
},
"lower leg skin": {
"anatomical_systems": [
"integumental system"
],
"efo_code": "UBERON_0004264",
"label": "lower leg skin",
"organs": [
"skin of body"
]
},
"lung": {
"anatomical_systems": [
"respiratory system"
],
"efo_code": "UBERON_0002048",
"label": "lung",
"organs": [
"lung"
]
},
"lymph node": {
"anatomical_systems": [
"hemolymphoid system",
"immune system",
"lymphoid system"
],
"efo_code": "UBERON_0000029",
"label": "lymph node",
"organs": [
"immune organ"
]
},
"macrophage": {
"anatomical_systems": [
"immune system",
"hematopoietic system"
],
"efo_code": "CL_0000235",
"label": "macrophage",
"organs": [
"immune organ",
"blood"
]
},
"mature eosinophil": {
"anatomical_systems": [
"immune system",
"hematopoietic system"
],
"efo_code": "CL_0000041",
"label": "mature eosinophil",
"organs": [
"immune organ",
"blood"
]
},
"megakaryocyte-erythroid progenitor cell": {
"anatomical_systems": [
"hematopoietic system"
],
"efo_code": "CL_0000050",
"label": "megakaryocyte-erythroid progenitor cell",
"organs": [
"blood"
]
},
"memory B cell": {
"anatomical_systems": [
"immune system",
"hematopoietic system"
],
"efo_code": "CL_0000787",
"label": "memory B cell",
"organs": [
"immune organ",
"blood"
]
},
"minor salivary gland": {
"anatomical_systems": [
"digestive system",
"exocrine system"
],
"efo_code": "UBERON_0001830",
"label": "minor salivary gland",
"organs": [
"mucosa",
"exocrine gland",
"oral gland"
]
},
"nasopharynx": {
"anatomical_systems": [
"respiratory system",
"digestive system"
],
"efo_code": "UBERON_0001728",
"label": "nasopharynx",
"organs": [
"pharynx"
]
},
"neutrophilic metamyelocyte": {
"anatomical_systems": [
"immune system",
"hematopoietic system"
],
"efo_code": "CL_0000582",
"label": "neutrophilic metamyelocyte",
"organs": [
"immune organ",
"blood"
]
},
"nucleus accumbens": {
"anatomical_systems": [
"nervous system"
],
"efo_code": "UBERON_0001882",
"label": "nucleus accumbens",
"organs": [
"brain"
]
},
"oral mucosa": {
"anatomical_systems": [
"digestive system"
],
"efo_code": "UBERON_0003729",
"label": "oral mucosa",
"organs": [
"mucosa"
]
},
"ovary": {
"anatomical_systems": [
"reproductive system"
],
"efo_code": "UBERON_0000992",
"label": "ovary",
"organs": [
"reproductive organ"
]
},
"pancreas": {
"anatomical_systems": [
"endocrine system"
],
"efo_code": "UBERON_0001264",
"label": "pancreas",
"organs": [
"pancreas"
]
},
"parathyroid gland": {
"anatomical_systems": [
"endocrine system"
],
"efo_code": "UBERON_0001132",
"label": "parathyroid gland",
"organs": [
"endocrine gland"
]
},
"pituitary gland": {
"anatomical_systems": [
"endocrine system",
"nervous system"
],
"efo_code": "UBERON_0000007",
"label": "pituitary gland",
"organs": [
"brain",
"endocrine gland"
]
},
"placenta": {
"anatomical_systems": [
"reproductive system"
],
"efo_code": "UBERON_0001987",
"label": "placenta",
"organs": [
"reproductive structure"
]
},
"prefrontal cortex": {
"anatomical_systems": [
"nervous system"
],
"efo_code": "UBERON_0000451",
"label": "prefrontal cortex",
"organs": [
"brain"
]
},
"prostate gland": {
"anatomical_systems": [
"reproductive system"
],
"efo_code": "UBERON_0002367",
"label": "prostate gland",
"organs": [
"reproductive structure"
]
},
"putamen": {
"anatomical_systems": [
"nervous system"
],
"efo_code": "UBERON_0001874",
"label": "putamen",
"organs": [
"brain"
]
},
"rectum": {
"anatomical_systems": [
"digestive system"
],
"efo_code": "UBERON_0001052",
"label": "rectum",
"organs": [
"intestine",
"rectum"
]
},
"regulatory T cell": {
"anatomical_systems": [
"immune system",
"hematopoietic system"
],
"efo_code": "CL_0000815",
"label": "regulatory T cell",
"organs": [
"immune organ",
"blood"
]
},
"retina": {
"anatomical_systems": [
"nervous system",
"sensory system"
],
"efo_code": "UBERON_0000966",
"label": "retina",
"organs": [
"sense organ"
]
},
"saliva-secreting gland": {
"anatomical_systems": [
"digestive system",
"exocrine system"
],
"efo_code": "UBERON_0001044",
"label": "saliva-secreting gland",
"organs": [
"exocrine gland",
"oral gland"
]
},
"segmented neutrophil of bone marrow": {
"anatomical_systems": [
"hematopoietic system",
"hemolymphoid system",
"immune system",
"musculoskeletal system"
],
"efo_code": "CL_0011114",
"label": "segmented neutrophil of bone marrow",
"organs": [
"skeletal element",
"immune organ"
]
},
"seminal vesicle": {
"anatomical_systems": [
"reproductive system"
],
"efo_code": "UBERON_0000998",
"label": "seminal vesicle",
"organs": [
"reproductive organ",
"reproductive structure"
]
},
"sigmoid colon": {
"anatomical_systems": [
"digestive system"
],
"efo_code": "UBERON_0001159",
"label": "sigmoid colon",
"organs": [
"intestine",
"colon"
]
},
"skeletal muscle tissue": {
"anatomical_systems": [
"musculoskeletal system"
],
"efo_code": "UBERON_0001134",
"label": "skeletal muscle tissue",
"organs": [
"musculature"
]
},
"small intestine": {
"anatomical_systems": [
"digestive system"
],
"efo_code": "UBERON_0002108",
"label": "small intestine",
"organs": [
"intestine"
]
},
"small intestine Peyer's patch": {
"anatomical_systems": [
"digestive system",
"hemolymphoid system",
"immune system",
"lymphoid system"
],
"efo_code": "UBERON_0003454",
"label": "small intestine Peyer's patch",
"organs": [
"intestine",
"mucosa"
]
},
"smooth muscle tissue": {
"anatomical_systems": [
"musculoskeletal system"
],
"efo_code": "UBERON_0001135",
"label": "smooth muscle tissue",
"organs": [
"musculature"
]
},
"spleen": {
"anatomical_systems": [
"digestive system",
"hemolymphoid system",
"hematopoietic system",
"immune system"
],
"efo_code": "UBERON_0002106",
"label": "spleen",
"organs": [
"spleen",
"immune organ"
]
},
"stomach": {
"anatomical_systems": [
"digestive system"
],
"efo_code": "UBERON_0000945",
"label": "stomach",
"organs": [
"stomach"
]
},
"strand of hair": {
"anatomical_systems": [
"integumental system"
],
"efo_code": "UBERON_0001037",
"label": "strand of hair",
"organs": [
"skin of body"
]
},
"subcutaneous adipose tissue": {
"anatomical_systems": [
"integumental system"
],
"efo_code": "UBERON_0002190",
"label": "subcutaneous adipose tissue",
"organs": [
"connective tissue"
]
},
"substantia nigra": {
"anatomical_systems": [
"nervous system"
],
"efo_code": "UBERON_0002038",
"label": "substantia nigra",
"organs": [
"brain"
]
},
"suprapubic skin": {
"anatomical_systems": [
"integumental system"
],
"efo_code": "UBERON_0036149",
"label": "suprapubic skin",
"organs": [
"skin of body"
]
},
"temporal lobe": {
"anatomical_systems": [
"nervous system"
],
"efo_code": "UBERON_0001871",
"label": "temporal lobe",
"organs": [
"brain"
]
},
"testis": {
"anatomical_systems": [
"reproductive system"
],
"efo_code": "UBERON_0000473",
"label": "testis",
"organs": [
"reproductive organ",
"reproductive structure"
]
},
"thyroid gland": {
"anatomical_systems": [
"endocrine system"
],
"efo_code": "UBERON_0002046",
"label": "thyroid gland",
"organs": [
"endocrine gland"
]
},
"tibial artery": {
"anatomical_systems": [
"circulatory system"
],
"efo_code": "UBERON_0007610",
"label": "tibial artery",
"organs": [
"vasculature"
]
},
"tibial nerve": {
"anatomical_systems": [
"nervous system"
],
"efo_code": "UBERON_0001323",
"label": "tibial nerve",
"organs": [
"nerve"
]
},
"tonsil": {
"anatomical_systems": [
"respiratory system",
"digestive system",
"hemolymphoid system",
"immune system",
"lymphoid system"
],
"efo_code": "UBERON_0002372",
"label": "tonsil",
"organs": [
"pharynx"
]
},
"transformed skin fibroblast": {
"anatomical_systems": [
"connective tissue"
],
"efo_code": "CL_0000057",
"label": "transformed skin fibroblast",
"organs": [
"connective tissue"
]
},
"transverse colon": {
"anatomical_systems": [
"digestive system"
],
"efo_code": "UBERON_0001157",
"label": "transverse colon",
"organs": [
"intestine",
"colon"
]
},
"urinary bladder": {
"anatomical_systems": [
"renal system"
],
"efo_code": "UBERON_0001255",
"label": "urinary bladder",
"organs": [
"bladder organ"
]
},
"uterus": {
"anatomical_systems": [
"reproductive system"
],
"efo_code": "UBERON_0000995",
"label": "uterus",
"organs": [
"reproductive organ",
"reproductive structure"
]
},
"vagina": {
"anatomical_systems": [
"reproductive system"
],
"efo_code": "UBERON_0000996",
"label": "vagina",
"organs": [
"reproductive organ",
"reproductive structure"
]
},
"vermiform appendix": {
"anatomical_systems": [
"digestive system"
],
"efo_code": "UBERON_0001154",
"label": "vermiform appendix",
"organs": [
"intestine",
"colon"
]
},
"zone of skin": {
"anatomical_systems": [
"integumental system"
],
"efo_code": "UBERON_0000014",
"label": "zone of skin",
"organs": [
"skin of body"
]
}
}
}
function getSet (chart, state, prop, post) {
chart[prop] = function (value) {
if (!arguments.length) return state[prop];
state[prop] = value;
if (post) chart[post]();
return chart;
}
}
function ParallelLinesFilter (opts) {
var chart = {};
var xScale = d3.scalePoint();
var yAxis = d3.axisLeft();
var parent = opts.parent;
var container
var svg;
var canvas;
var ctx;
var renderer;
var gMain;
var gAxes;
var state = {
margins: {top: 50, right: 50, bottom: 50, left: 150},
width: 800,
height: 300,
data: [],
dimensions: [],
profileColour: 'red',
onFilter: function () {}
};
for (prop in state) {
getSet(chart, state, prop);
}
function draw (d) {
var coords = project(d)
ctx.strokeStyle = state.profileColour;
ctx.beginPath()
coords.forEach(function (p, i) {
if (p === null) {
if (i > 0) {
var prev = coords[i - 1];
if (prev !== null) {
ctx.moveTo(prev[0], prev[1]);
ctx.lineTo(prev[0] + 6, prev[1]);
}
}
if (i < coords.length - 1) {
var next = coords[i + 1];
if (next !== null) {
ctx.moveTo(next[0] - 6, next[1]);
}
}
return;
}
if (i === 0) {
ctx.moveTo(p[0], p[1]);
return;
}
ctx.lineTo(p[0], p[1]);
});
ctx.stroke();
}
function dataAreaWidth () {
return state.width - state.margins.left - state.margins.right;
}
function dataAreaHeight () {
return state.height - state.margins.top - state.margins.bottom;
}
function project (d) {
return state.dimensions.map(function (p, i) {
if (!(p.key in d) || (d[p.key] === null)) {
return null;
}
return [xScale(i), p.scale(d[p.key])];
});
}
function renderSvg () {
}
function renderCanvas () {
}
function renderAxes () {
var axes = gAxes.selectAll('.axis')
.data(state.dimensions)
.enter().append('g')
.attr('class', function (d) {
return 'axis ' + d.key.replace(/ /g, '_');
})
.attr('transform', function (d, i) {
return 'translate(' + xScale(i) + ',0)';
});
axes.append('g')
.each(function (d) {
var renderAxis = ('axis' in d) ? d.axis.scale(d.scale) : yAxis.scale(d.scale);
d3.select(this).call(renderAxis);
})
.append('text')
.attr('class', 'title')
.attr('text-anchor', 'start')
.text(function (d) {return ('description' in d) ? d.description : d.key;})
axes.append('g')
.attr('class', 'brush')
.each(function (d) {
d3.select(this).call(d.brush = d3.brushY()
.extent([[-10, 0], [10, dataAreaHeight()]])
.on('start', brushstart)
.on('brush', brush)
.on('end', brush));
})
.selectAll('rect')
.attr('x', -8)
.attr('width', 16);
}
function brushstart () {
d3.event.sourceEvent.stopPropagation();
}
function brush () {
renderer.invalidate();
var actives = [];
svg.selectAll('.axis .brush')
.filter(function (d) {
return d3.brushSelection(this);
})
.each(function (d) {
actives.push({
dimension: d,
extent: d3.brushSelection(this)
});
});
var selected = state.data.filter(function (d) {
if (actives.every(function (active) {
var dim = active.dimension;
return dim.type.within(d[dim.key], active.extent, dim);
})) {
return true;
}
});
ctx.clearRect(0, 0, state.width, state.height);
ctx.globalAlpha = d3.min([0.85/Math.pow(state.data.length,0.3),1]);
renderer(selected);
state.onFilter(selected);
}
chart.render = function () {
xScale.domain(d3.range(state.dimensions.length))
.range([0, dataAreaWidth()]);
state.dimensions.forEach(function (dim) {
dim.scale.range([dataAreaHeight() - 2, 0]);
})
container = parent.select('div.parallel-lines-filter');
if (container.empty()) {
container = parent.append('div')
.attr('width', state.width)
.attr('height', state.height)
.classed('parallel-lines-filter', true);
}
svg = container.select('svg');
if (svg.empty()) {
svg = container.append('svg')
.attr('width', state.width)
.attr('height', state.height);
}
canvas = container.select('canvas');
if (canvas.empty()) {
canvas = container.append('canvas')
.attr('width', dataAreaWidth())
.attr('height', dataAreaHeight())
.style('width', dataAreaWidth() + 'px')
.style('height', dataAreaHeight() + 'px')
.style('margin-top', state.margins.top + 'px')
.style('margin-left', state.margins.left + 'px');
}
ctx = canvas.node().getContext('2d');
// ctx.globalCompositeOperation = 'darken';
// ctx.globalAlpha = 0.15;
// ctx.globalAlpha = 0.95;
// ctx.lineWidth = 1.5;
ctx.lineWidth = 3;
renderer = renderQueue(draw).rate(50);
ctx.clearRect(0, 0, state.width, state.height);
ctx.globalAlpha = d3.min([0.85/Math.pow(state.data.length,0.3),1]);
renderer(state.data);
gAxes = svg.select('g.axes')
if (gAxes.empty()) {
gAxes = svg.append('g')
.classed('axes', true);
}
gAxes.attr('transform', 'translate(' + state.margins.left + ',' + state.margins.top + ')');
renderAxes ()
}
return chart;
}
ParallelLinesFilter.d3Functor = function (v) {
return typeof v === 'function' ? v : function() { return v; };
};
ParallelLinesFilter.types = {
Number: {
key: 'Number',
extent: d3.extent,
within: function (d, extent, dim) {
return (extent[0] <= dim.scale(d)) && (dim.scale(d) < extent[1]);
},
defaultScale: d3.scaleLinear()
},
String: {
key: 'String',
extent: function (data) {
return data.sort();
},
within: function(d, extent, dim) {
return extent[0] <= dim.scale(d) && dim.scale(d) <= extent[1];
},
defaultScale: d3.scalePoint()
}
};
/*
* See https://gist.github.com/syntagmatic/3341641
*/
var renderQueue = (function(func) {
var _queue = [], // data to be rendered
_rate = 1000, // number of calls per frame
_invalidate = function() {}, // invalidate last render queue
_clear = function() {}; // clearing function
var rq = function(data) {
if (data) rq.data(data);
_invalidate();
_clear();
rq.render();
};
rq.render = function() {
var valid = true;
_invalidate = rq.invalidate = function() {
valid = false;
};
function doFrame() {
if (!valid) return true;
var chunk = _queue.splice(0,_rate);
chunk.map(func);
timer_frame(doFrame);
}
doFrame();
};
rq.data = function(data) {
_invalidate();
_queue = data.slice(0); // creates a copy of the data
return rq;
};
rq.add = function(data) {
_queue = _queue.concat(data);
};
rq.rate = function(value) {
if (!arguments.length) return _rate;
_rate = value;
return rq;
};
rq.remaining = function() {
return _queue.length;
};
// clear the canvas
rq.clear = function(func) {
if (!arguments.length) {
_clear();
return rq;
}
_clear = func;
return rq;
};
rq.invalidate = _invalidate;
var timer_frame = window.requestAnimationFrame
|| window.webkitRequestAnimationFrame
|| window.mozRequestAnimationFrame
|| window.oRequestAnimationFrame
|| window.msRequestAnimationFrame
|| function(callback) { setTimeout(callback, 17); };
return rq;
});
body {
min-width: 760px;
}
.parallel-lines-filter {
display: block;
}
.parallel-lines-filter svg,
.parallel-lines-filter canvas {
font: 10px sans-serif;
position: absolute;
}
.parallel-lines-filter canvas {
opacity: 0.9;
pointer-events: none;
}
.axis .title {
font-size: 10px;
transform: rotate(-21deg) translate(-5px,-6px);
fill: #222;
}
.axis line,
.axis path {
fill: none;
stroke: #eee;
stroke-width: 1px;
}
.axis .tick text {
fill: #222;
opacity: 0;
pointer-events: none;
}
.axis.id .tick text {
opacity: 0.2;
font-size: 6px;
pointer-events: all;
}
.axis.id .tick:hover text {
opacity: 1;
font-size: 10px;
}
.axis.id .tick:nth-of-type() text {
opacity: 1;
font-size: 10px;
}
.axis:hover line,
.axis:hover path,
.axis.active line,
.axis.active path {
fill: none;
stroke: #222;
stroke-width: 1px;
}
.axis:hover .title {
font-weight: bold;
}
.axis:hover .tick text {
opacity: 1;
}
.axis.active .title {
font-weight: bold;
}
.axis.active .tick text {
opacity: 1;
font-weight: bold;
}
.brush .extent {
fill-opacity: .3;
stroke: #fff;
stroke-width: 1px;
}
pre {
width: 100%;
height: 300px;
margin: 6px 12px;
tab-size: 40;
font-size: 10px;
overflow: auto;
}
.filter {
min-height: 400px;
}
We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 75 columns, instead of 85. in line 1.
ID adipose tissue adrenal gland amygdala aorta atrium auricular region blood bone marrow brain breast Brodmann (1909) area 24 Brodmann (1909) area 9 C1 segment of cervical spinal cord caudate nucleus cerebellar hemisphere cerebellum cerebral cortex colon coronary artery cortex of kidney duodenum EBV-transformed lymphocyte ectocervix endocervix endometrium esophagogastric junction esophagus esophagus mucosa esophagus muscularis mucosa fallopian tube frontal lobe gall bladder greater omentum heart heart left ventricle hippocampus proper hypothalamus kidney leukocyte liver lower leg skin lung lymph node minor salivary gland nucleus accumbens ovary pancreas pituitary gland placenta prostate gland putamen rectum saliva-secreting gland sigmoid colon skeletal muscle tissue small intestine small intestine Peyer's patch smooth muscle tissue spleen stomach subcutaneous adipose tissue substantia nigra suprapubic skin testis thyroid gland tibial artery tibial nerve tonsil transformed skin fibroblast transverse colon urinary bladder uterus vagina vermiform appendix zone of skin
ENSG00000004948 4 1.5 8 5 2 1 1 5.5 6 6 5 9 1 146 0 0 4.5 3.5 3 1 3 74 6 1 0 2 6 128 1 9.5 0 1 1.75 2.5 14 0 3 5 0 34 151.5 8 210 138.75 1 0 0 10.5 7.5 1.5 1 21 14 0 12 48 34 4 1 5.5 0 1 262 10.5 2 9 0 2.25 6 8.5 0 49 22 5 4 5 6 0 1 4.25 0 0 5 1.5
ENSG00000005059 822 205 276 377 1032.5 1187 803 600.5 835.25 308 148 675 164.5 400 17 17 221.5 988.25 3277 1115 631 207 410 1931 857.5 861 998 671 458 657 585 390.5 518.5 170.5 1037 2310 1076 288 251.5 947 2271 265 327 168 4000 130 676 981 3261.5 1167 540 145 749.5 148 332 795 267 328 175 823 191.5 596 102 368.5 663 932 1413 433.5 1066.5 268.5 643.5 168 376.5 306 364.5 595 2656 721.5 351 666.5 765.5 821 2218.5 672.5
ENSG00000005700 3181 6558.25 2127 2383.5 2879 643 1921 2638 3190.25 1958 2189 3169 2196 9918 3167 2244 3067.5 4436.25 8604.5 6969 2441 2286 4699 4800 2376.5 2227 4100 9727 2445.5 4865.5 2904 2557 3134.25 1424 4521 11060 2527.5 5175 2976.5 4299 5697.5 2228 2254 4211.75 4437 10530 1442 3484.25 2537 3631.5 2760 2145 3684 5090 2474 3205 2278 3324 2356 5731.5 10250 2461.5 3872 6367.75 2212 4081 2635 5025.75 2460 2432 1512 685 1931 4488 2451 2437 3887 4787.5 2309 3444.25 2320.5 2291 5045 2640
ENSG00000006116 0 34.75 675 0 0 26 3 891 0 1472 1967 44 801.5 0 90 119.5 1639 0 11.5 3 0 0 0 16 0 0 0 8 0 0 0 0 0 4484.5 0 1 0 0 1 1 1 901 134 0 5 1 0 0 3.5 10 0 965 0 1 0 0 4159 0 731 0 0 0 7 1.5 0 0 0 0 0 73.5 0 4454 3 0 1.5 0 2 2 0 0 0 0 0 0
ENSG00000006283 31 25.5 260 55.5 618.5 58 25.5 233.5 66.75 527 920 164 130 108 1427 9095 921 16.25 65 3 25 3 8 103 2191 1563 853 160 41.5 83 69 29 357.5 3287.5 20 1 246.5 46 44.5 1 0 154 550 2 5 3 160 19.5 42.5 10 27 119 605 12.5 18 77 1556 123 141 11 23.5 59.5 87 6 11 68 11 21 37.5 301.5 210.5 4665 32 29 44 9 25 281 25 12.25 363 511 19.5 206.5
ENSG00000007402 208 92 305 586 1652.5 1323 295.5 325 160.75 587 697 217 846.5 16 3027 6023 544 188.75 7 11 233 370.5 157 94 385 286 286 2 384 113 123 391 177.75 1949.5 90 46 213 463.5 332.5 12 12 232 1346 279 3552 116 351 2347.5 194 2 216 1133 403.5 436.5 1134 278 1195 353 792 277.5 238 215 939 126.5 251 292 177 494.5 170 702.5 331 3106 468 344 381.5 144 167 54.5 251 129 448.5 191 112.5 467.5
ENSG00000008710 5026 3468.25 9329 36513 11626 2413.5 3475 2016 4992 15628 19611 6137 9438 277 105362 118021 15981.5 3038 814.5 693 17034 4378 2087.5 4923 12635.5 11509 3632 287 24230.5 2807 6445 22613 8790.25 28995.5 2250 865 8108 7444.5 12860 574 555 11470 12492 1523.75 1426 3337 8807 2543.5 2211 472.5 5580 10598 5208 4373.5 36483 3126 12639 5132 10006 971.5 4692 15149.5 18594.5 2132.75 5458 2839 4710 4861 8578 7707 8960.5 44589 3133.5 1493 24840.5 9684 488 11788.5 8925 7777 17969 8965 2767.5 3663
ENSG00000010610 2840 1384.5 752 1419.5 790.5 12517.5 4248.5 751 1403 675 479 1225 578.5 2743 170 193 905 1528.75 0 76 1312 844.5 1833 307 400 540 1015 6578 598 1569 494 616.5 1406 549.5 3229 515 2133 900.75 495.5 5093 2588 722 512 802 63744 8442 663 5004.25 8852 2015.5 592 445 910.5 691 517 4903 545 599 661 3419 917.5 718.5 397.5 1168.25 1438 2018 8829 1308.5 2457 900 599.5 920 667.5 625 571 925 8025 60 966 2942.5 402.5 549 8282.5 1410
ENSG00000010810 5102 847.75 8741 2051.5 3502.5 12587.5 3256.5 10993.5 3945.25 7493 6696 6315 6826 5561 5297 5598 7899 4035.75 1587 1186 2570 1506.5 1530.5 2009 4585.5 4368 3519 2042 2402 1632.5 1081 2089 3742 6147.5 3089 2078 6163 2658.5 2642 2681 1835.5 7292 6270 1543.75 24817 2372 3325 4421.25 7709.5 1073 1045 6789 2798 802 1632 2828 6209 1249 6965 1575.5 627.5 2630 1390 1555.75 3158 4202 5196 2160.75 6925.5 6833.5 2615 6412 1487 2978 2671.5 5301 6415 7679 1747 3360.75 3869.5 2466 4496.5 2164
ENSG00000013016 500 1178.25 3216 4094.5 990.5 1468 562 3091.5 440 4745 5932 1403 1578 6977 3404 6264 5737.5 424.5 117.5 901 2102 1389 260 85 749 720 727 237 455.5 4597 5299 467.5 528.5 15358 593 203 361.5 4227 2530 0 250 3453 2075 3316 4727 1750 322 650.5 1162 2047.5 541 1515 593.5 183.5 1103 2791 10679 742 1641 299 368 336 655 129.5 423 1004 897 237.75 271.5 1986 372 23818 188 412 1793.5 478 2322 2372.5 284 1133.5 573 747 934.5 484
ENSG00000016490 0 0 1 3 3 3 0 2.5 1.5 1 1 2 1 39 2 1 4 46723.5 0.5 0 3 2 83310 3 6 5 70 29 2 14.5 7 4 2.25 0 11 0 2 1.5 6 0 8.5 2 1 1 0 0 2 0 2.5 0 5 1 3 7 2 0 0 3 1 122723 0 944.5 1 118395.25 18243 1106 0 270.25 1 1 3 0 26.5 2 0 1 0 4 16123 8 6 4 7217 0
ENSG00000017260 6366 4985 5092 3833 3617.5 2441 6549.5 9970.5 5738.5 5264 5415 8009 4972.5 94529 4118 3877.5 7253 6164.5 38543 16267 3561 2897 3764.5 10567 3325.5 3236 5578 20504 3113.5 4648.5 3426 2988.5 4308.5 5440.5 5027 15409 4289 6159.5 4215.5 16681 12548 5499 5358 6037.25 5615 4303 4479 7331.75 4153 12356 3844 4546 5507 3396 4398 4726 7411 5590 4852 5633 4983.5 3382 4538 5314 2792 4632 2938 4340.75 3571.5 5516.5 4807.5 4829 3477 6434 3719.5 3826 4188 7790.5 3029 4771.75 3638.5 3224 4315.5 7893
ENSG00000018625 11069 459 47561 8565 12713 365.5 1 35514.5 3096.75 45871 40622 12036 61333.5 68 12367 24307 39211 6104.75 3 46 9609 414 526.5 130 1286 1170 807 137 12019 6962.5 1213 12661.5 1515.25 40193 1123 5 4005 32390.5 26343.5 13 141.5 26498 19147 501 52 144 598 601.5 875.5 92 660 48817 3050.5 196.5 1273 233 45503 2091 57945 797 440.5 7339.5 370344 454.5 648 1462 173 355.75 6417.5 30825.5 451.5 96517 549 325.5 19881 13561 70 83.5 2149 1948.75 919 752 141 288.5
ENSG00000030110 515 1665.5 719 687 1068 1814.5 1374.5 722.5 644.75 635 633 758 781 1925 600 678.5 685 1818.25 788.5 7270 823 1426.5 4321.5 1841 650 695 729 1003 828.5 1491 1932 895.5 744 502 1350 6654 766.5 1004 1462 2117 1520 730 722 1318 1651 566 1328 1269.5 1416 6196.5 932 730 588 877.5 1013 1139 662 688 826 2537 881.5 801 575 2860 2500 968 1576 1934 574.5 740 1213.5 975 690 545 478 732 1903 793.5 2970 1435 606.5 865 2048 1140.5
ENSG00000036828 0 2 0 0 0 6 5 12.5 0.5 0 0 2 0 13 0 0 1 12 0.5 0 0 814 125.5 115 2.5 0 7 0 0 0 2 0 9.5 6.5 685 0 1 0 0 0 5 2 10 1948 25 30 0 4 15.5 0.5 0 1 84.5 1509 11 0 10 8 0 27 0 2.5 0 192.75 13 0 11 30 0 3 0 25 11 1 0 0 40 0 6 10.25 0 1 10 15
ENSG00000050393 1543 933 2229 1113.5 1157 648 1211 2969 1755.25 2806 2577 2216 1656.5 4806 1317 1362 2220.5 1798 595.5 756 1184 1662.5 2784.5 1890 1082.5 1069 1471 1870 896 1867 1482 939.5 837.5 1718.5 1219 1277 1148.5 2165 1655.5 875 1034.5 2055 2400 3264 2261 2093 2346 1886.5 1485.5 1828 1195 1575 856.5 1482.5 960 1492 2675 1364 1656 1933 1492.5 1081.5 1965.5 7934 1201 1205 982 1000.25 1200 2411.5 2342 1646 724.5 1784 1187.5 893 1743 2013.5 1176 1073.75 935 1095 1134.5 4251
ENSG00000051523 3791 1193.25 1222 2458 2287 27068 8448 875 3089 649 499 2204 1485 58 135 163.5 628.5 3729 2032 2514 2463 4905.5 3670 4651 1460 2701 904 14 1151.5 466 1777 1094.5 2319.25 559 3426 3308 3841 659.5 1006.5 1518 1255 1125 1278 3926 7203 1329 917 7101 7231 1421 3284 1427 485.5 2256.5 888 1443 252 1662 1339 1536 1490.5 1552.5 216 2336.25 7176 545 11811 4892.25 2546.5 1923 968.5 1788 616 1985 640 1993 3116 2153 5743 2853 952 1926 7846 264
ENSG00000055732 265 4109 34 420 1587 53 10 205.5 542.75 16 8 22 18.5 385 5 7.5 12 146 39.5 1 51 528 1063.5 1459 269 1397 994 152 416 92 153 290.5 239 12 71 7 548 102 84.5 0 150 72 11 455.5 14 39 766 592.75 52.5 1.5 335 34 338 1455.5 2377 585 26 58 23 220 625.5 314 158.5 3059.75 272 257 188 394 456.5 5.5 716 0 79 369 92 736 46 110.5 201 69.75 840 683 57 1586
ENSG00000057663 1766 2444.25 1196 1473.5 1132.5 700 1931.5 1503.5 1746.75 1441 1709 1145 1099.5 3967 1054 797 1499.5 3210.25 6005 2706 1453 1247.5 2417.5 1369 1553 1333 2350 7500 1323.5 1963 1284 1433 1755 982 1931 2820 1446 1578.5 1021.5 1803 2175.5 1221 1210 2247.5 2591 2592 753 2230.75 1905 3111 1324 1113 1732 1541.5 915 1908 1545 2051 1084 2791.5 1495.5 2174.5 1410.5 4165.75 1450 2459 1231 1712.75 1393.5 1142 876 712 1114 1969 1760.5 1178 1903 1815 1682 1996.25 1465.5 1383 1636.5 1172
ENSG00000058404 40 505.5 5427 285 6702.5 103 1 5831.5 128.75 9309 11562 1278 10052 45 34118 48650.5 8499 57.5 8.5 1 47 93.5 102 107 13.5 12 11 22 108 29 53 88 54 41213.5 5 1 16 8723 11057.5 0 0.5 9572 5058 79.5 2 646 100 7 60 1.5 42 11031 16.5 325 4181 3 17412 153 12410 24 85 106.5 38758 93.25 55 13 19 209.5 43 2977 102 63619 110 987 59.5 1114 191 45 43 4.5 18 17 52.5 83.5
ENSG00000058668 24014 12058 8493 13516 11697.5 11350.5 4311.5 14615.5 27511.5 7934 8071 2686 4567 1251 4748 5933 12030.5 27720.25 1170 10114 13762 3045.5 4411.5 281 16432 11115 35398 10337 21592 12598.5 5390 25524.5 19636.5 11903 10727 7357 13011 20025.5 11772.5 6665 5017 6394 6040 3847.75 26767 4878.5 12878 11090.5 7775.5 11398.5 3985 6488 19741 3209 2730 16185 14399 9297 3832 6035 2580.5 42281.5 3312 5511.75 4135 59901 3170 4450.5 12015 4305.5 13942 15936 7101 4738 16875 7405 6422 15859.5 13111 18401.5 35632.5 10310 8658.5 23970.5
ENSG00000064270 14 20 242 27 13 1791.5 3831.5 67 64.75 201 144 93 152.5 172 78 92 119.5 1396.75 2.5 157 37 104.5 2193 47 57.5 77 92 140 37 391.5 381 30 243 315 331 1 17 3 26 12 73 211 175 141.25 111 28 2007 741 11.5 1 953 171 19.5 51.5 114 195 154 819 121 3975 176 384 42 2470.25 918 29 23 470.5 19 149.5 1839 277 42 591.5 69 17 67 54.5 2659 265.25 29 357 129 3019
ENSG00000064989 13502 1658.5 491 1079 1666.5 220 158.5 482.5 2480.75 350 318 756 311.5 413 190 256.5 536 1813.75 3802.5 5890 3179 663 868.5 263 1126.5 853 4293 458 888 1699 745 753 1300.5 232 2795 3360 3342.5 3737 1560.5 3982 3415 408 307 1429.75 1144 1130 468 15374 2890.5 2166 1000 266 2157.5 715 347 1775 299 809 304 1467 858.5 529.5 1560.5 488.75 451 3349 1072 737 2863.5 475.5 524 273 198 3261 3148.5 1115 1292 297 387 1712 1540 620 1695.5 860.5
ENSG00000065534 18272 6598 3129 52888 3753 1309 1099.5 5273 11032.5 2352 2044 13288 3998.5 157618 407 676 2798 86275.5 4088.5 1031 35338 4012.5 10423.5 408 44112 25713 57028 4914 111697 46114 7177 146752.5 39691 3634 18901 671 6168 3655 1968 1491 913 2981 1596 8130 4152 12754 3979 9997 9439.5 538 3938 2151 22960.5 1384.5 525 6151 2117 58084 3810 13085 14419.5 128263.5 2965 6765.75 4727 262067 6313 4651.25 11251.5 5341.5 3007.5 3891 4080.5 4480 99135 2907 2472 10532 24388 41208.25 61453 11784 14661.5 1206.5
ENSG00000066294 675 656 195 391.5 203.5 2350.5 2534 305.5 583.25 124 94 619 190.5 136583 48 49.5 414 636.75 5900 11170 480 171.5 897.5 4343 152 184 516 13729 288 867 233 313 375 87.5 2155 6765 635.5 285.5 162.5 5035 4373.5 231 187 171.75 7256 497 247 1331.25 5267 14708.5 383 143 430 503.5 87 1806 209 311 155 1548 464.5 498.5 115 582.75 865 813 2812 732 803 398.5 232.5 80 291 173.5 153 438 3972 17 355 1255.75 203.5 231 5820 401.5
ENSG00000067191 262 380.5 3325 1640.5 629 638.5 196.5 1961.5 603.75 5444 6174 904 3861 32 2123 2769.5 5566.5 352.25 246 189 1137 426.5 198 498 761.5 1224 401 0 644 204.5 304 593.5 691 9808 318 97 471.5 274.5 420.5 12 18.5 3889 3211 94.5 128 50 1659 693.25 372.5 311.5 950 4042 467.5 264.5 1109 285 8673 480 3870 419.5 267 700.5 17244 129.25 469 440 395 384.5 713 1478.5 1380.5 14276 621 1042.5 2121.5 954 228 690 690 454.25 772.5 812 385 1514.5
ENSG00000067842 2 1343.25 337 70.5 5 25 3 1214.5 2 886 1860 124 621.5 59 4464 7226.5 1418 27.75 10.5 3 24 4.5 6 28 13 9 5 30 18 0 2 22.5 59.5 7685.5 2 1 4 1.5 7 2 0.5 531 401 17.75 5 1 6 0.5 0.5 3 2 754 5 9 120 97 4328 3 632 5 35.5 46.5 8 3.25 4 6 0 6.5 4 314.5 6 10770 10 0 85.5 3 0 14 10 1 8 4 12 7
ENSG00000069018 0 4.5 1 2 0 2 1 0 0 3 2 2 8 16 1 3.5 1.5 9 2 1 0 25 30.5 2 0 0 0 2 1 0 0 1 0 4 5 0 0 0 0 1 3.5 1 20 48.25 2 0 0 0 0 5 0 11 0 0 24 0 0 0 11 17 0 1 2 30 7 0 0 1.75 0 2 0 70 30 0 1 0 0 1 12 0 0 0 0 0
ENSG00000069696 19 15.5 76 72.5 31 64 18.5 24 31 70 66 76 69 0 162 284 56.5 20 0.5 0 54 51.5 15.5 36 71 75 7 1 116 2.5 52 121 45.5 300 6 0 47 17 37.5 0 0 75 70 8.5 7 34 82 11.5 3 0.5 34 76 14 83 151 9 51 25 82 2 7.5 87.5 80 51 51 8 26 26.75 58 56.5 82.5 957 16 24 88 87 2 28 44 35 116 84 0 33
ENSG00000069966 776 1121.75 1600 1822.5 1588.5 1465.5 975.5 3360.5 798 2546 3748 659 2540.5 13976 6931 7500.5 3272.5 1127.25 218685.5 7552 1127 1268.5 413 2403 1917.5 1564 2232 2804 1511 1027 745 1490 1493.25 6339.5 1453 4839 793.5 678 628.5 2349 5097.5 1417 2103 1975.5 4173 1632 688 591 1919.5 3441 785 2784 3673.5 1156.5 1698 587 5665 1177 2765 426 500.5 1239 366 398 820 1936 1014 737.25 801.5 1416.5 687 6949 857 1508 2173 361 2000 2199 576 1621.75 2285.5 1203 946.5 609
ENSG00000070808 14 64 33250 22 694.5 97 44.5 18592 198.5 50260 58470 711 10227.5 58 736 1888.5 39531 88 26.5 23 58 58.5 19 37 232.5 171 397 178 387 44 29 410 141.5 90780 37 41 37 1851.5 1243 18 71.5 40863 4655 115.5 30 9 46 78.25 27 11.5 33 15931 76 7 265 66 77670 54 10930 46 7 131.5 22897 21 49 681 39 22.5 35 970 48 125743 16 18 85.5 120 5 45 91 205.75 572.5 110 41 91
ENSG00000070961 2239 2278.25 4935 1203.5 1262 3107.5 13478 13825.5 2378 9661 14572 1699 16037.5 1897 9278 7100.5 15465 5260 64808 3469 1483 1227.5 8048 6030 1883 1875 3693 5349 1587.5 2954 1231 1482.5 2789.5 14453.5 5073 8409 2591 1593.5 1036 6417 8019 7878 3685 2565 11544 3073 1962 3039.75 4061 2743 1324 14361 2383 1783.5 2133 4430 25283 2181 16848 6355.5 1509.5 2055.5 2934 15464 3082 4034 4157 3446.75 2195.5 1851.5 2378 7981 3957 2975 1689 1478 5251 12637.5 2461 3373.5 1735.5 1976 5646 4773.5
ENSG00000070985 0 14.5 3 1 2 28 42.5 23.5 1 4 2 2 3 0 2 4 1 28.25 3 1 1 59 264.5 2 3.5 2 1 3 1 0 2 1 6 5 10 1 3 0 1 0 0 1 0 27 2 0 2 1.75 5.5 1 2 3 0 256 27 0 5 8 3 25 1.5 26.5 3 565.75 320 2 11 32.75 1 1 4 0 15 45 1 3 4 1 189 7.25 10 3 12 1.5
ENSG00000072062 6700 11064.25 6628 6405.5 16814.5 7921.5 1402.5 7760.5 6095.25 8806 9412 5015 5821.5 495 6402 7430.5 8142.5 4163.5 119.5 226 5893 4084.5 3596.5 1385 5533.5 5015 4658 188 5378 4805.5 3405 5410 5042.75 9277.5 5202 58 6050 17838.75 16306 438 208.5 7580 11450 3700 4513 6986 3585 4733.5 3344 413 3915 5901 9010 3042 8096 3956 10317 4279 5857 4132 3732 4112.5 11525 2529.75 3323 7279 6848 3049 5296 7044.5 3357 9254 8543 3822 5865 3877 3257 3157 3832 4526 4417.5 4441 5257.5 3442.5
ENSG00000072315 0 8.75 13 0 0 1 1 84.5 2.5 27 44 5 6 27 15 75 128 0 5 1 0 2 0 8 2 1 0 2 7 2 0 2 1.5 261 3 0 0 0 0 0 8 19 34 1 1 178 1 0 0 26 0 4 0.5 2 2 0 329 0 5 0.5 0 0 1 0.5 1 0 0 0.5 1 17 1 381 1 5 1 1 1 1 1 1 1 1 0 3.5
ENSG00000073756 232 1267 185 654 866.5 1606.5 24308.5 359 303.75 231 258 639 118.5 2045 25 67 693 1563 358.5 1 521 404 474.5 20 72 260 193 732 547 1252 140 363.5 540 181.5 8625 547 795 118 69.5 154 1867 176 155 297 9733 108 124 2196 1252.5 1275.5 109 84 216.5 61 317 1219 226 2952 111 1535.5 79.5 1726.5 33 210.5 124 2311 129 289.5 165 238.5 163.5 551 57 139.5 643.5 102 202 279.5 462 6668 102 195 3925.5 168
ENSG00000074370 1109 1808.75 379 3461 1295.5 21763.5 11562 5623 1094.25 277 201 501 361 2138 1051 6576.5 278.5 5347.25 4069 7020 3005 1471.5 5788 5741 1082.5 1456 834 233 2926.5 1567.5 1409 3555 1124.75 359.5 4100 3190 1286.5 703.5 911 2199 909.5 347 446 1025.5 8877 624 4063 3557 12732.5 4483 9855 320 332 6005 397 769 160 1854 641 6281.5 35861.5 3087 147 4223 11785 1499 13294 15935.75 1036 1420.5 3317.5 1611 537 959 1504 699 10241 116.5 12339 3923.5 1505.5 1418 11300 556.5
ENSG00000074621 850 601 318 420 236 329.5 627 383.5 644.5 253 265 597 304 2072 446 320 326.5 504 1857 731 459 445.5 398 1279 567.5 541 792 901 321 476.5 359 321 862.25 316.5 765 1069 556 308 193 963 2062 340 271 622 1201 583 439 431 474.5 1148 412 306 1059.5 430 335 759 307 455 347 591.5 440.5 329 237 506.5 396 783 453 407 611 386.5 433 540 719 892 514.5 515 542 1538 345 626.5 588.5 464 484 837
ENSG00000075142 3624 3208.5 8479 3719.5 2770.5 4497.5 6183 7640 3035 8803 7599 7910 8038.5 11006 2679 2482.5 7127.5 9021.25 292489 35236 3075 2564.5 4857.5 6331 3318.5 2583 2938 76676 2493 2083 2119 2294 3531 3949 1771 24559 3367 2968.5 2700.5 21525 15808 6390 7037 3304.25 3778 1709 1551 4053 2421 37098.5 2148 8863 3737 2602 2622 2008 5627 2650 7433 12020 1650.5 3024 1696 10432 3505 3765 2086 2507.75 3320 8223 1539.5 3856 1340 2875 3865.5 3035 2849 5518 8642 2975.5 2603.5 2574 3000.5 1267
ENSG00000075429 0 0 9 0 0 1 1 41 0 18 15 3 7 1 3 9 15 0.25 2 1 0 0 0 1 0 0 0 2 0 0 0 0 0 56 0 0 0 0 0 0 0 8 5 1.25 2 0 0 0 10 1 0 8 0 0 1 0 32 0 9 0 0 0 1 0.5 0 0 2 0 0 4 0 94 1 0 0 0 24 1 0 0 0 0 0 0
ENSG00000075461 6 25.5 941 4 12 129.5 6 1473.5 47 680 440 367 1206.5 1 525 880 498 14.5 48.5 7 3 4 10 69 27.5 16 28 28 35 0 14 116.5 63.75 1202 12 2 16.5 1.5 9 1 0 584 629 3 14 1 28 171.75 4 7 41 1507 11 26 5 54 578 187 1442 4 11.5 31.5 129 30.5 6 47 0 85 2 491.5 33 2716 3 4 5 10 6 6 8 27.75 12 26 4.5 18.5
ENSG00000078549 1063 653.5 2806 67 207 183.5 6 2505.5 419.25 3579 2736 1005 2790.5 116 5498 7803.5 4070.5 604 45.5 6 174 2.5 66 46 536.5 619 675 396 1801 192 136 1495 1818.75 6484 68 2 919.5 1233 1002 1 20 1683 2207 4 86 21 141 42.5 72.5 10 185 2859 433.5 171 311 4 5452 132 2166 71.5 250.5 890 1937 37.25 78 553 19 63 488 2588.5 166.5 11137 40 178 95.5 55 113 29 149 68 567.5 342 179 270
ENSG00000078795 30 40.75 38 37.5 43 58.5 55.5 30.5 43.75 33 28 41 40 480 45 27.5 27.5 11 1138 131 33 26 28.5 55 46.5 36 10 193 28 6 29 27 24.25 10 15 502 32 29.5 47 652 1082 39 39 8.5 7 6 36 10.5 30.5 357.5 39 44 16.5 9.5 46 15 15 29 39 18 18.5 14 61 14.25 35 12 30 26 41 39 36 0 388 35 31.5 53 31 26 27 16 38 44 13.5 16
ENSG00000080815 3619 3496 3843 2219 1720 7190 2627 6516 3851.25 2527 2537 10701 3626 10660 1796 2163 4317 6106.25 4709.5 3662 2241 2561.5 7064 2357 2573.5 2473 4107 9585 2154.5 4609.5 3014 2132.5 2701.75 4910.5 5638 3798 2628.5 2022.5 1600.5 3230 5444.5 4529 2756 4444 10118 3197 4263 4311.75 3231 4989.5 3159 2873 3461.5 2722 1575 5592 4186 3029 4097 7119 3118 2896.5 1537 10582.25 3741 3867 2692 3688 3191 5212.5 4056.5 3681 4783 4817 2202 2845 4110 3267.5 3743 3629.25 2047 2456 3605 5170
ENSG00000081248 7 0.5 43 3 13 3 0 23 741.25 52 80 24 150.5 25 4 7 103 3.75 0.5 0 21 23 1 1 2.5 1 0 3 6 16 3 5 3 123.5 11 0 11 0 8 0 99.5 30 109 36.5 0 0 12 16.25 15 0 22 165 3 0 3 12 84 6 113 11 0 8.5 9146 5.25 10 7 7 4 6 93 7 361 171 5.5 33 8 1 1 9 2.5 3 5 0 5
ENSG00000083067 77 101.25 851 185 139 120.5 99.5 1186 46.5 775 749 588 589 1084 4882 6270.5 669.5 45.5 4413.5 188 173 665 91 87 89 55 82 2008 65 23 20 55 61.75 1137 77 175 116 98.75 60.5 132 347 539 841 2130.5 12 79 30 21 25 142 23 578 371 100 397 8 934 50 636 24 17.5 50.5 226 998 17 81 44 47.25 83 1179 29 1229 146 146 206 452 16 170.5 26 24.25 79 30 14 14.5
ENSG00000083454 25 22.25 312 15 201 760 231.5 106 20 453 449 68 684.5 12 273 284 385 68.25 0.5 48 27 35 99 736 26.5 38 16 33 10 42.5 52 12.5 32.5 493 113 96 32 214.5 303.5 160 85.5 324 497 12 359 30 8 99 4555.5 373 89 760 11.5 23 104 27 517 38 582 174 37.5 751.5 210 93.5 802 33 5871 72 14 199 9 495 78 22 5 27 4524 36 140 149.5 18 33 2038.5 6
ENSG00000085872 1438 1504 1643 1781.5 1595 1228.5 1974.5 1720 1541.5 1789 1810 1221 1534.5 300 2440 3080.5 1945 1162.25 948.5 867 1745 1864 1608.5 2707 2050.5 2009 1585 206 1934.5 1276 1881 1928 1906 3051.5 1261 503 1764.5 1207.5 1582 743 427.5 1715 1579 1432 1393 1798 1951 1194.75 1535 1292.5 1987 1625 1959 1899.5 1977 1741 1765 1721 1407 660.5 2287 1754.5 2334 1378.25 1995 1011 2075 1875 1775 1213 1921 4774 2336 1540 1957 1919 906 1693 1992 1739.5 2129 1909 1697.5 1184
ENSG00000087088 893 1161.25 1070 1542.5 943.5 3550 1052.5 720 866 909 862 1305 1011.5 804 720 798.5 801 1326.25 9.5 1009 1289 1845 2276 4101 1435 1352 969 922 1080 957 1499 1079 1085 972 1527 904 1368.5 472.5 775.5 550 297.5 1142 1059 1395 893 746 1080 2410.75 2032.5 847.5 1352 923 616 1275.5 1307 1613 523 1071 1032 1698 504 1017.5 215 1718.5 2944 951 3389 1724.25 1122.5 1208 1075 1115 622 878 763 1175 1539 3866 2346 1330.5 1139.5 1297 2080.5 576.5
ENSG00000087258 301 686.75 7295 783 5110.5 1764.5 98.5 11406.5 84 8559 9125 6080 7739 93 12861 19014 8394 2328.75 14.5 3 363 126.5 336.5 60 293.5 255 634 184 1850 509 225 858 364 29490 138 1 271 1416 1773.5 10 8 6780 4505 109.25 5426 3363 239 53.75 183.5 352 149 6761 203 281.5 3156 121 16028 506 8841 428 100.5 4797 2035.5 261 368 2468 99 391.5 267 5518.5 195 37519 393 204 2531 223 194 37 1153 680 725.5 229 408.5 255
ENSG00000088320 292 78.5 16 502 207 4 1 5 217.75 21 19 14 23 16 9 29 19.5 73.5 2.5 1 458 60.5 57.5 4 799 765 230 3 465.5 32.5 90 425 291.75 60.5 42 1 366 224.5 279 0 0 19 12 39 2 14 135 107.5 147 1 53 16 168.5 43 63 107 25 89 36 42.5 23 195 539 25.25 82 188 65 40.5 584.5 29.5 93 0 31.5 78 586.5 349 86 10 95 106.75 475.5 318 59 22.5
ENSG00000088832 12574 13157.25 11418 6658 6249.5 13755 7846 8825 11038.75 10950 9407 4549 15104 16003 2368 2011 9359.5 13066.25 289611 51945 7434 7743.5 6283 7901 6234 5016 9006 27179 5653 8145 7249 5660 6205 5525 7920 42548 13090.5 6904 5931 54002 78233 9915 6221 7973 15447 6423 5600 17604.25 12667 31660 5480 22846 6281 4820.5 3799 15144 7745 6841 14398 11959 4903.5 6301.5 3779 7051.75 5124 15594 9567 6817.25 10040 4970 5843.5 6983 3142 8790 5552.5 5625 12132 11689.5 6740 7923.75 6771 6105 12397.5 5725
ENSG00000089041 331 374.75 1349 224 208 2812 1182 1218.5 261.25 895 1047 2964 928 2222 1113 1003 1672.5 346.75 3195.5 3957 358 101.5 255.5 1829 770 839 815 2555 254.5 269.5 239 241.5 326.5 2977 597 2516 339 222 191 3759 1560 1715 796 81 8345 548 1579 745.5 1101 3736.5 322 570 1200 208 218 513 1665 243 1156 399 427 486.5 181 124.75 187 895 684 183.25 479 1938 1469.5 2077 157 127 274.5 886 703 313 224 317.75 594 590 1041.5 2535.5
ENSG00000089060 1571 7672.5 1212 2119.5 1616 5414.5 3468.5 490.5 1917.25 1088 852 1365 1231 152 1080 1099 904.5 1291 2 1430 1947 2750.5 1699 496 2090 2462 1378 198 1523 1484 2127 1453.5 1541.25 897.5 1889 461 2040 825.5 1348 824 199 1110 970 1346 1748 1468 2580 1873.5 1836.5 351.5 2365 987 5267.5 2674.5 2066 1411 634 1347 1235 1685.5 1387.5 1263 992 1722.75 2608 1224 3295 1673.5 2677.5 1352 2183 1207 1705.5 847 1687.5 2201 1249 1614.5 2544 1868.25 1825.5 2108 2025 1709.5
ENSG00000089250 38 53.75 810 9 29 31 1 421.5 114.5 607 415 318 1102 242 687 1565.5 548.5 640.25 6.5 49 15 287 32 47 18 25 27 366 148.5 196.5 153 221 66.25 1241.5 8 42 13 47 19 119 123.5 636 550 525 80 20 595 145.5 46 15 212 761 40.5 248 189 0 922 135 1463 45.5 1391.5 723 14476 15.25 14 48 5 15.5 7 468.5 429.5 1670 103 47 11 755 24 8 130 9.75 16 173 148.5 801.5
ENSG00000090020 1925 1736.25 1403 2088 2926 4712.5 1647.5 1519.5 1606.75 1745 2350 716 2193 702 2129 3382.5 2043 2611.25 0 775 1716 1544 5072.5 1497 2181 1694 1358 234 1476.5 1714 2048 1418.5 1422.5 3989.5 3655 20 1542 1705 1944 131 151.5 1324 1399 1265.25 2395 527 1896 2421.25 1231.5 372 3153 1476 1167 1385 1757 4513 3025 1729 3215 2557 14035.5 1859.5 716.5 4813.75 2412 2347 2162 11034.25 1483 1072.5 1868.5 5120 1270 1573 1738 970 1154 2767.5 3807 2745 1846.5 1685 1847.5 1787
ENSG00000090339 2044 1759 400 1078 1811.5 2136.5 6381.5 886 1524.25 205 185 622 361.5 152 40 61.5 419 1413.5 0.5 16 1440 1920 1536 4750 995.5 927 480 28 870 1364.5 524 797 1073 188 7691 3 4017 793 735.5 0 441 337 335 1461.75 949 1672 998 15123.25 2969.5 80.5 1287 339 1051 1075.5 518 2693 126 873 299 2056.5 840 1150 376 493.75 1319 1471 3563 1315 2297.5 385.5 865 892 986 779 818 1204 3428 1262 904 2869.75 757 864 5305.5 527
ENSG00000090674 1079 1720.75 1067 1143.5 1171.5 5325.5 739.5 905.5 1140 1223 1497 1433 1103 99 1146 1505.5 1346 623.75 208.5 49 1359 1288.5 869 240 1103 1227 601 165 1294.5 859.5 966 1190 952.25 3309 1242 7 1931.5 800 1047.5 69 29 1257 1278 848.5 544 1088 1727 1803 933.5 146.5 1327 1165 487.5 819 2803 1661 1760 848 1149 604 742.5 977 876 533 1218 608 4533 977 1767 1123 1594 5464 682.5 545 996 1272 333 829.5 1312 1390 1057 1189 1119.5 1064
ENSG00000092051 68 479.25 4370 36 21 720.5 149 2979.5 31 7172 6832 514 3973 513 15050 16953.5 5004 135.5 23 4 39 100.5 47 2232 602.5 381 1668 190 147 23 34 195 656.25 19811.5 23 2 121.5 48.25 46 1 11 4369 1825 97.25 1600 31 71 60.25 123.5 5.5 20 6192 1795 37 3240 28 9411 566 4425 35 5.5 141 177 31.75 52 2301 104 44.25 56 1028 50.5 25767 28 18 53 40 76 36 60 67.5 2729 321 37.5 51.5
ENSG00000092439 3448 3341 1149 2419.5 3099 1044.5 4446.5 1029 3314 1147 1222 1520 1414.5 8652 3272 2242 1526.5 3590.25 8606.5 4621 2526 2316 4503 5214 2606 2609 4187 7860 2680 3324 1890 2429 3017.25 664 4524 4928 2885 5630.5 3387.5 5717 8539 1295 1231 5836.5 4023 4312 2416 3037 4289 3645 2408 1364 3960.5 2521 1745 4048 1209 2915 1316 4748 3237.5 2891.5 1462 7168.75 2687 4028 3196 3203.5 2780.5 1332 2612 441 2518 4688 2316.5 2657 3884 4785.5 2444 3680.25 2932.5 2558 4241.5 4957.5
ENSG00000092529 113 99.75 862 213 241 285.5 557 791 264.5 246 292 2877 881.5 74 185 202.5 814 64 153.5 0 222 350 109.5 82 229.5 241 156 9 201.5 182 226 182.5 164 1224 206 4 185 187.5 169 80 166 1194 502 609.5 6 173 385 257.75 124 0 349 484 129.5 67 259 72 534 184 1173 200 157.5 196.5 6169 143.25 261 138 203 122.5 226.5 1662 390.5 713 150 227 180 352 121 81 236 132.5 224.5 267 164.5 870.5
ENSG00000096433 3043 1719.25 533 1416.5 2922 2649.5 2324.5 6832.5 2226.75 579 522 1532 719.5 24 427 641.5 580 3551 0 2 2869 3714 7722.5 8977 3938 4305 1793 0 3547 3190 5069 3569.5 3818.5 974 4610 78 4326.5 1943 3544.5 0 33.5 640 554 1441.75 1634 369 13197 5361 5288 266 4786 629 1619 2675 1558 1075 397 2264 754 5528.5 3329.5 2825.5 1523 19699.5 8533 1828 8348 11437 4398.5 897.5 13860 1346 3216 9569 1942.5 12494 5565 8776 7436 2790.25 2924.5 5851 4630.5 16000.5
ENSG00000097007 5528 3736.5 3814 9444.5 5691.5 1693 3381.5 5126 6041.5 3182 2576 6377 3607.5 256 2067 2669 3143.5 7940 1141.5 3094 8178 3943.5 3732.5 4195 13533.5 12385 9193 728 13765 6858.5 4821 13959 7897.5 4683 7735 1560 8453.5 4001 4700.5 1006 521.5 3990 3522 2902 3064 1933 5798 4410.25 3204.5 2196 5236 3319 6281.5 3668 5216 5788 2628 6522 3725 4270.5 4899 11351 4836 3145.75 5508 8620 3415 4589.25 8418.5 4546.5 5318.5 5083 2937 5306 12847 5969 2604 11289.5 8483 10936.5 11082 6912 4865 2923.5
ENSG00000099625 37 92 515 123 139.5 37.5 19.5 228.5 20.5 853 723 100 760.5 0 540 1292.5 643 14 5 2 63 105.5 9.5 231 68 64 8 4 35 22 161 35 23.25 3596 27 1 118.5 43.5 126 0 0 623 383 30.5 3 28 397 20.75 22 1.5 34 1019 45.5 46 1090 30 925 11 787 0.5 13 42.5 82 52.25 15 7 7 42.25 37 249.5 350 8200 43 13 84 74 11 620.5 22 14.5 45.5 73 7.5 49.5
ENSG00000100300 3410 1349 2200 4818 3370 12871 4961 617 3666.25 1374 889 2708 1571 414 150 279.5 591.5 1703 3651.5 4170 5196 4081.5 2111 995 3032.5 3607 786 464 2250 1682 14640 1988 2404.75 876 1736 2652 6370 1351 3169.5 2415 3735.5 1897 1926 2261.5 1727 768 8560 4468.5 966.5 2795 6306 1342 593.5 2155.5 1742 1100 275 2883 1493 761 2516.5 1548.5 414.5 1586.5 3351 347 3048 6074 4865.5 2320 8750.5 1937 772 568 2652.5 4178 586 5505.5 6036 2513.25 2180 10726 1778 1421
ENSG00000100311 2317 541.25 504 498.5 1841 389 91 357 1373 564 593 589 499 3667 656 862 637 641.5 1.5 1 785 1262.5 234 960 438.5 451 706 221 1526.5 490.5 407 1882 501.25 1260.5 889 0 2725.5 1859 3081 0 0 574 466 670.5 1901 301 939 1734.75 548.5 1.5 739 570 356.5 621 229 3928 900 423 546 310.5 516 1184 2741 159.5 478 1075 458 475.5 3191 627.5 873 2234 161 899 589 965 178 23 560 440.25 862.5 499 419.5 572
ENSG00000100346 18 379 543 20 11.5 5595.5 1007.5 371 17 901 1342 117 867.5 3 2779 3974 1033.5 18.5 8.5 3 30 4.5 24.5 21 75 21 6 29 43.5 11.5 43 42 42 4788.5 29 1 61.5 3.5 9.5 0 0 912 457 2.25 5150 9 35 24 532 5 25 820 9.5 15.5 45 0 2287 12 1006 14 9 58.5 7 47.5 480 5 157 105.75 41.5 110 51 6848 45.5 430 15 128 109 6 89 61.75 24 44 150 12
ENSG00000100678 24 102.5 678 10 14 28.5 51 515 40.75 927 923 273 449.5 315 457 493 1160.5 38.25 166.5 1091 13 5.5 33 1350 15 18 42 67 51.5 61.5 21 59.5 13.25 1475 89 57 26 14 8 653 1327.5 642 915 2 92 0 45 71 31.5 754 29 553 3.5 29.5 107 18 1732 33 460 51 3 42.5 3288 33.75 56 51 10 42 49 487 38.5 2182 44 4.5 12 25 40 3 38 59.5 25.5 27 47 18
ENSG00000100739 11 3.5 4 11 11 2 1 7 21.5 4 6 4 2 17 74 49.5 4.5 44.75 2 1 15 75.5 48 7 231.5 175 6 2 54.5 152.5 347 59.5 13.75 1.5 256 1 128 13.75 6 0 12 5 1 35.25 2 8 71 6.5 12.5 2.5 15 0 8.5 116 4 28 0 22 3 77 0 47.5 14 29.75 47 32 0 37 23 3 79.5 0 35.5 21 7 42 16 165 75 134.75 28 144 188 74.5
ENSG00000100991 5398 4824.25 4779 5532.5 5056 9582 5916 4497 5738.75 4723 4913 6066 4657.5 1898 4790 5601.5 5751.5 3063.5 4440.5 3693 5540 5997 4718.5 3920 5574.5 5596 4883 846 4928.5 4754 5241 4775.5 5213 7118 6058 4091 6413.5 3586 4901.5 4318 3647.5 5299 5979 3566.75 3335 4991 5743 5008.25 4190.5 3783.5 6169 4552 4425.5 6813.5 8245 6312 6217 4810 4824 5258 5956 4298 4828 4385.75 6370 5170 5677 6649.5 6993.5 5967.5 5576 7933 4646 4621 4489 6224 4879 5590.5 5683 5729.75 5177 5501 5289.5 4826
ENSG00000101188 11 2.5 92 2 2.5 631.5 371 27.5 1 146 98 6 30 0 1 1 115 564.25 0 0 3 58.5 49 2 2 0 0 0 55.5 0 3 73 4.5 330.5 4 0 6 3 5 0 0 36 128 29.5 36 12 14 4 11.5 0 2 66 8 21.5 4 0 340 4 24 20.5 0 1922 0 19 22 105 33 23 3 366.5 9 1737 28 1 1 1 4 2 454 7.25 1 1 30.5 16
ENSG00000101204 1 21.75 385 1 4 25.5 6 283.5 0.5 702 651 328 149 1 628 1522.5 473.5 5.25 47 6 1 97.5 0 120 4.5 2 0 21 6 2.5 2 5 28.5 3586 0 2 1 18 17 1 0 347 361 154.75 43 6514 3 3 0 5 2 172 8.5 2 138 0 1240 5 138 0 2 2 27 2.5 1 1 103 1 1 639 4 6171 41.5 36 3 2 3 5 1 0 2 1 0.5 5
ENSG00000101448 0 3 3 9 7 11 1 14.5 22.5 6 7 7 6 36 16 7.5 4 10.5 12 39 7 6 0 27 8.5 7 18 3 8 0 7 8 42.75 8.5 0 53 9 7 7 52 29 4 5 1.25 36 8 9 10 18.5 22 21 5 14.5 0 9 0 5 10 7 0.5 1.5 5 16 0.5 6 0 0 5 8 4 11 0 1390 31 13 9 2 15 7 3.5 12 9 0 0
ENSG00000102001 18 8.5 50 27 25 316 265 85.5 46.25 57 78 38 48 88 230 233 62.5 24.5 1 1 28 30 150.5 361 18 51 23 38 27 23 39 27 49 206.5 20 7 43 15 23 92 49 32 23 10.75 90 9 48 56 89 136 50 47 9 47 16 9 88 17 52 73 25.5 37 24 361.5 251 9 108 58 49 32 44 340 11.5 37 21 78 76 3 98 29.75 22 29 54.5 51
ENSG00000102081 3177 2603.25 3244 2383 2261.5 2802 4836 5130 3313.5 3418 3560 3384 2686 4543 4364 3137 3292.5 4006 92549.5 2838 2273 2581.5 2490.5 3858 2726 2481 3823 3365 2390.5 3045 2115 2289.5 2609 2881 2649 3828 2333.5 3131.5 1983 4681 2732.5 2960 2561 4743 6481 4382 2180 3186 3239 4267 1958 2564 4027.5 1815.5 1858 4872 3802 2285 2789 2841.5 1957.5 2968 1535.5 7347.25 2488 3658 3744 2078 2546.5 3147.5 2260 1183 2094 4582 3560 2781 3155 2248.5 2263 2576.5 2987 2250 3218 3360.5
ENSG00000102452 71 520.5 747 1850 566 51 2 1889 73.25 791 1111 1275 606 537 2243 1982 1588.5 89.25 50.5 20 839 30 29.5 25 130.5 162 49 1350 44.5 23 17 42.5 75 3597 190 51 41 814.5 639.5 21 219.5 853 710 51.5 53 106 91 79 44.5 11.5 24 776 266 167 688 394 2927 31 676 25 82.5 56 159 17.5 13 69 7 77.5 58 753 61 2834 40 357 2553.5 261 6 798.5 17 82.5 32.5 33 23 25
ENSG00000102466 76 166.25 379 853 124.5 22 31 4300 85 517 812 112 403 349 3119 2970 586.5 103.25 11 3 212 18 41.5 17 54.5 52 37 1037 145.5 168.5 76 155 176 1195 54 1 47 729 253 153 211.5 289 393 24.5 5 196 84 156.75 53 4 48 543 45 95 235 64 1900 20 465 30.5 64 48.5 165.5 71 22 43 12 100 125 119 54 1096 42 36 886 126 32 1474.5 18 33.5 24.5 71 12.5 30.5
ENSG00000102468 34 30.25 155 265 48 12 21 703.5 15.75 495 1192 51 94.5 8966 18 19.5 1467.5 119.5 5 2 221 3 19.5 5 65.5 51 79 1762 74.5 68.5 8 44.5 27.5 1850 100 1 45 30.25 6 1 2 111 145 6.5 36 16 11 10.5 44.5 4.5 7 146 27 2 9 6 2223 23 36 68 9 62.5 123.5 13 19 401 1 21.25 35.5 100 13 1380 32 7 1382 12 43 69.5 19 52.25 51.5 68 143.5 5.5
ENSG00000102879 910 1129 2935 1073 677 70957.5 31493.5 919 753.75 3157 3391 2071 1927.5 854 2097 2529.5 3137 925.5 6550.5 8770 1504 994.5 3335 30746 843.5 1121 883 96 557.5 985.5 943 622.5 1191.5 5892 4262 7493 1913.5 481 535.5 4833 2290.5 2963 2097 501.75 30247 879 695 4235.25 22017.5 4823 1151 2103 345 558.5 720 1242 3640 966 1859 1409 1492.5 1513.5 135 2411.5 5407 530 20464 2197 1205.5 2129.5 699.5 14339 336 443 435.5 1201 26915 30.5 1611 3686 729 831 23071.5 898.5
ENSG00000103888 77 96 215 258.5 179 207 558.5 482.5 75.75 310 500 390 398.5 151 781 1174.5 808.5 179 95 1 337 86.5 78 188 317 292 530 212 115.5 515 1064 109 685 1428.5 217 727 189 111 104 754 259 261 232 79 183 69 687 1075 3708 74 227 321 644 44.5 539 309 856 311 414 216.5 66 87 98 51.75 122 229 112 117.25 143 334 572.5 1288 302 279 581 173 1441 32449.5 121 505.75 247.5 336 896 624
ENSG00000104321 8 6.5 4 42 11 0 0 68.5 29 8 11 1 1 237 0 0 10.5 1117.25 269.5 0 39 6 949 69 25.5 20 7 88 18 91 100 19.5 7.75 22.5 514 0 9.5 10.75 9 60 511.5 8 3 6 18 0 3 6 27 0.5 7 1 21.5 5 4 23 40 7 2 1475 3.5 72 0 663.75 924 71 13 1433.5 11 1 3 0 29.5 3 30 6 35 539.5 792 3124 8 18 500.5 7.5
ENSG00000104369 61 47.75 357 132 866 18 0 689.5 632.75 713 819 631 1013.5 266 2429 2481 806 477.75 42.5 0 258 96.5 123.5 13 93.5 76 208 129 98.5 247.5 208 29 40 1251 68 0 38.5 1420.5 1362.5 407 181 523 160 150 0 19 78 410 31.5 24 263 983 27.5 832.5 62 211 1142 333 882 849 162.5 119.5 51443 129.75 140 305 12 142.5 19 223.5 80.5 2500 145 236 40 32 206 13 344 324.25 217.5 182 90.5 100.5
ENSG00000104783 134 37.75 65 159.5 64 1881.5 1909.5 82 531.75 92 81 127 174 139 25 19.5 56 664.25 325.5 2267 259 50 470.5 4206 145 168 161 264 137.5 114 327 129.5 363 60 418 936 126 29 59 704 879.5 66 90 29.75 818 45 1729 224.5 1203 5364 4416 328 22.5 48 26 2144 85 1286 146 724.5 10824 323 26 105.75 728 110 1140 2752.5 184 58 1363.5 105 71 14 226 151 987 50.5 1246 1304.25 94.5 327 1041.5 234.5
ENSG00000105327 164 132.25 297 310 204 930.5 178.5 182 194 396 389 174 191 56 645 706.5 313 218.5 0 0 278 357.5 185.5 478 194.5 257 50 58 321 25 111 345.5 230 442 168 0 215 82 189 0 10 276 365 107 273 144 505 560.5 185 18 441 195 133 457 240 157 133 227 163 99 165 212.5 181 151.25 418 45 494 354 216 281.5 534.5 783 119.5 92 184.5 229 37 678 480 228.5 237 224 168.5 85
ENSG00000105329 3152 2149.75 1680 8628.5 3397.5 17912 3380.5 711.5 2293.75 1170 701 2251 1412.5 295 207 386 1171 1789 111 104 6439 4431 1666 4285 4852 6963 1716 42 2733.5 1699.5 3750 2303.5 2067.5 750 3393 119 4236.5 941.5 1337 319 120 1277 1740 1656.5 8317 1102 2659 6129.25 4792 205 2367 1274 1269 911 2173 4425 539 2642 1333 1095 726.5 1915 271 1015.75 3647 2465 5931 2345 3563.5 2140.5 2427 1926 1369 864 3912 2386 2238 4198 2355 3705.75 3810.5 5057 4796.5 1508
ENSG00000105605 0 5.5 2200 3 2 29.5 3 1133 0.25 2859 3387 1720 1206 11 5221 6950.5 2201 9.75 13 3 1 0 0 10 0.5 0 0 8 11 0 1 15 0 7650 0 1 1 0 5 1 0 2127 1154 1 6 1 1 0.25 0 3 0 1257 0 0 257 0 3172 1 1616 0.5 0 14 22 2 4 0 0 1.5 1 1706.5 1 8763 4 0 3 2 0 833.5 10 0.5 1 1 0 0
ENSG00000105726 2147 2850.25 2847 3482 2472 6125.5 2506.5 1210 2475.5 2958 2951 2729 3014.5 131 3887 4552 3123 1686.25 91 1221 3664 4294.5 3029 5641 3873 4287 2119 167 3247.5 2249.5 3911 2921 3152.5 4501 2498 233 3299.5 1152 2464 796 288.5 3024 2859 2021.25 2285 2001 4040 1946 3908 653.5 4219 3098 2599.5 3666.5 4766 2421 2401 2535 3026 1694.5 3339 2800.5 1608 2761 5111 1541 4462 3748 3412.5 2530.5 3855.5 6424 3135.5 2532 3272.5 3759 1661 3510 4136 2971.25 4449 3789 3905 2629
ENSG00000105819 3175 4656 2043 3163.5 3446.5 1838 4717.5 3779.5 3575 2462 2695 2080 2173 18561 2296 1858.5 2877 4046.25 129558 17214 3052 3542 4294.5 4779 2603.5 3154 3590 33798 2955 3402.5 2628 2943 2980 2223 3685 24455 2932 5115.5 3796 29893 36683 2080 2060 5027.5 2804 5775 2965 2524 3057.5 19959.5 3163 2110 3743 3681.5 2501 3004 3222 3738 2031 4132.5 3402.5 3572.5 2497 4669.25 3048 3590 2565 3726.75 3028 2200.5 3027 1251 3785 3711 3400 2600 3871 2895.5 3247 3423.75 3163.5 2884 3260.5 3284.5
ENSG00000105851 307 187.25 25 76 50.5 2056 6896 79 167.75 31 25 102 28 2511 4 3 206.5 477.5 16573 3426 109 44.5 840.5 484 54.5 82 280 558 47 380.5 44 50 140 70.5 841 7317 156.5 103.5 46 3779 6647 27 33 86.5 7554 52 32 512 2145.5 1377.5 98 18 257.5 35 32 563 86 90 20 801 212.5 74 14 517.5 265 341 657 434.5 135 52.5 31.5 110 708 81.5 35 59 3399 0 134 776.75 57 45 2406 114
ENSG00000105974 27290 1112.75 653 15890.5 17658 220.5 54.5 404.5 51076.5 523 411 1406 803.5 2523 173 207 553.5 19178.25 0 0 20756 817 2913 402 12972.5 11199 16599 182 21515.5 11627 3827 24209.5 11953.75 453.5 15518 0 26436 23646.5 17433 0 111.5 846 661 1209 94 1841 8379 46192.5 5879 0 4258 579 9310 2032 383 33014 291 9213 1006 6093.5 2919 26775.5 9268.5 1991.25 3401 21864 14030 3061 37110.5 1000.5 7211 238 2011.5 12451 30362 13474 1843 54990 7129 13912 15218.5 8947 3655.5 9703.5
ENSG00000106537 6697 3648.5 1162 232.5 850.5 959.5 5702.5 3356.5 2770.75 1796 3061 274 1064 461 1547 1148 2020.5 5989.75 2552 15221 499 253.5 3774 31 617.5 636 1156 32436 574 1089.5 1288 581.5 488.75 2492 2018 1906 3362 1936 1878.5 1326 1994 896 1216 379.25 10221 3455 616 8882 3711.5 2597 2938 1153 353 5108.5 3327 4344 3159 2179 1197 3995.5 10058.5 511.5 2531 16632.5 1165 1268 1225 4042 2354.5 868 670.5 1566 133 2477 423 632 3661 181 1538 1481 777 713 1366.5 991
ENSG00000106633 17 19 111 164 332 31 23.5 852 14.5 133 123 96 69.5 0 472 467 73 12.25 7 16 79 10 2.5 20 87.5 124 26 5 54 7.5 18 48.5 27.5 242 4 1 28 90.5 97.5 0 0 81 235 12.5 4 173 17 9.5 16.5 229 9 102 46 100 983 52 98 25 68 8.5 16 18.5 32.5 8 12 9 20 21 29 109 17 485 10 15 197 40 14 91.5 12 21 79 59 6 15.5
ENSG00000107130 679 2625.25 24842 6997.5 1218 664.5 2443.5 10662 441.25 31491 25877 3015 10128 42 10989 18197 17813 5148.75 19.5 2 3820 1457.5 363 224 3406 2167 2153 3085 12484.5 3170 2174 13145.5 2548.75 44354.5 718 1 522.5 814.5 692.5 1 6.5 25276 7577 1486 184 314.5 2014 357.75 581 5.5 530 18991 1320 505.5 806 163 32266 2365 10183 416 709 11442.5 1493 323.25 420 7414 88 446.75 584.5 6224 1627.5 60656 162 2268 16551.5 662 440 7512 2439 3151.25 5322.5 1454 927.5 2063.5
ENSG00000107562 22827 4510.75 519 10691.5 7437.5 199 4880.5 586.5 12013.75 491 373 724 751 82 146 351 582.5 11160.5 0.5 0 10054 3627.5 3112 130 12310.5 9819 23427 28 5479 8272.5 1595 5293 5155.75 497.5 19505 0 15524.5 10112 8998.5 0 0 633 428 6061.5 23 13585 5229 3010 15919.5 0 4953 489 8096 8365 767 356 609 2352 697 6711.5 4920.5 5095.5 9878 2739 2562 30064 12114 1503 15914.5 703.5 4407.5 499 1200 4765 7471.5 6357 4836 25163.5 2642 4508.75 10218 8184 9968.5 5948.5
ENSG00000107593 3 5 4 6.5 1 59 72 46.5 3 40 156 11 7 88 2 3 111 7.75 1.5 1 7 11.5 11 8 1.5 2 0 7 2 0 2 3 1 218 5 0 6 2 0.5 1 19 18 3 8.75 14 30.5 2 37 44 2 4 9 10 6 2 9 271 6 7 19.5 2 2 5 14.25 10 2 173 2.75 9 5 2 94 73 1 4 4 34 2 10 4.5 2 2 11 0
ENSG00000107736 3178 476.25 700 399.5 544.5 5906.5 1056.5 447.5 904.25 351 312 617 479 125 4472 6667.5 383 207.25 158.5 40 753 123.5 226.5 93 554.5 535 666 114 1704 382 304 3922.5 1326 947 622 38 2334 649 868.5 29 171 493 973 67.25 1138 1945.5 265 660.5 399.5 3.5 246 327 3397 2257 128 117 264 313 427 207 300 310.5 412 422.25 397 627 1126 184.75 1252 1212 323 1549 1090.5 243 481.5 687 296 23 294 1000 1643.5 411 550.5 429
ENSG00000107745 2208 4726 4081 2169 3014 3923 1953 5623 2498 4674 5356 2837 4277.5 56335 7497 6351.5 4975.5 3020.25 10533.5 3873 2141 3142 3585 1472 2550 2649 3523 12991 2208.5 2389 1441 2093.5 2903 3792.5 4035 2002 2242 3209.5 2615.5 4517 4225.5 4332 4360 5795.5 2893 5054 2416 3622.25 1779.5 3958.5 1765 4624 3218.5 1403.5 2748 2441 5166 2459 4319 3307 1967 2235.5 3244 2737.25 2161 3900 2029 3814 2132.5 3647 2175 2986 2157.5 2120 2570.5 2530 2066 2575 2275 2974.25 2744.5 2039 2247 1955
ENSG00000108405 220 192.25 84 198.5 317.5 6221 5006.5 18.5 108.5 52 34 146 88 11354 16 16.5 43 553.5 3511 8560 1689 167.5 2011 275 999 1326 422 444 551 3458.5 822 981 386.75 38 597 6395 280 48.75 91 9139 4645 96 123 78.5 753 89 564 612.5 599.5 11057.5 406 73 125.5 6710 53 616 23 1432 63 1700 120.5 1097.5 26 1003.5 1537 594 1546 559.5 417 136.5 282 29 446 33 16424 288 668 4 960 5838.25 608 730 1086.5 112
ENSG00000108691 388 2157.25 127 1962 2720.5 76 3618 678 769.25 67 61 331 84 288 19 16.5 614.5 839.75 2 0 2170 1301.5 979.5 23 207 78 194 2 949.5 776 361 847 659.75 22 4398 0 3337 910 1338 0 19 103 97 755.5 245 790 374 1741.5 1372.5 0 389 56 522 3364.5 491 933 39 1020 83 1826 590.5 933 330 344.5 350 4946 202 582 672 143 419 122 115 438 664 963 236 5587 704 1042 266 401 4421.5 666
ENSG00000108700 62 79.5 2 49 17.5 1 80 2.5 84 2 1 6 2 24 1 0.5 33 110.75 1.5 1 42 20 304 3 6.5 10 7 1 16 75 7 13 16 0 150 0 110.5 30.25 24 0 0 2 2 15.5 216 5 12 145 64.5 0.5 7 2 49.5 11 5 110 6 21 3 348.5 43 26.5 14 116.5 84 265 10 20.25 42 3 14 0 21 29 15 16 8 45 160 89.5 7 6 77.5 8.5
ENSG00000108878 0 35 71 1 2 1 0 15.5 103 46 22 9 125 0 7 6 22.5 0.5 0 0 2 3 1 0 0 1 0 0 2 0 1 1 10.5 26 1 0 2 0 2 0 3.5 36 36 0.5 0 0 2 4.5 0 0 11 147 0.5 3 3 0 16 18 125 0.5 0 1.5 4726 0.5 3 0 0 4.5 2 21.5 2 0 22 2 1 3 0 0 2 0.5 1 2 0 0
ENSG00000108953 24183 18642.75 45438 9110.5 17872 9611.5 11339 67925 23520 40669 39521 42994 36378 106068 24372 24722.5 35386.5 27448.5 780121 113566 10774 15238.5 13007.5 21092 12671.5 10470 13317 203925 9257 16878.5 18072 9128 13061 37028.5 12059 120023 16353.5 26556 21424.5 101698 88772 40190 36399 26449 14182 21410 12780 24178 12699 134851 13091 38075 20905.5 15443.5 15149 19496 46023 14199 38332 15849.5 17453.5 11714.5 38984.5 16779 8846 11518 9094 13265.25 13795 40731 13604 35913 18099.5 19616 9677 15376 16390 22889 10978 11677 10763.5 12430 12649.5 14030.5
ENSG00000109047 13 1.5 32 5 28 130.5 33.5 19 12.5 63 64 12 31 0 46 59.5 51 32.5 0.5 0 14 2 9.5 3 18 18 11 1 19 2.5 6 18 11.75 177 3 0 31 18.5 28 85 8 27 14 0 7 4 20 2 7 12 5 31 6.5 4 1 0 23 8 34 5.5 0 12 1 2.5 12 15 27 7.75 19 10.5 19 149 9 3 6 21 0 3 13 7.5 25.5 16 8.5 9
ENSG00000109501 4286 2035 2929 10646 5194.5 697.5 224.5 2085.5 3371.25 2790 2604 1269 3997.5 1 3027 5447.5 2249 1711.75 5 455 6260 1353.5 1144.5 851 8461 6175 3823 1 8223.5 1087 1135 7418 4583.5 5797.5 988 0 4011.5 6598.5 9283.5 62 106 2133 1989 984.5 529 1828 2998 2988.25 1106 1.5 1238 7901 7452 1783 3851 2839 3816 2684 4199 386.5 1396 3470.5 4779 1513.75 1422 2560 2217 1787.5 4819 2142 2687.5 18206 1607.5 3703 14105.5 2702 272 4085 1732 3458.25 8726 2476 621.5 1434.5
ENSG00000109689 1990 1125 1117 1056.5 1062.5 2271 3018 1827 1587.25 1310 1365 1186 1261.5 1256 1565 1413 1508 1583.25 120 1146 1089 1354 2425.5 1984 1255.5 1363 1849 2580 964.5 969.5 756 932 1488.5 1459 3248 962 1722.5 943.5 848 1009 1668 1258 1099 1153.5 4810 1586 1659 2117.75 3023.5 882 1284 1497 3269.5 1810.5 1721 1537 1560 1574 1262 2005 1625.5 1328 1021 4193.5 1831 1721 2838 1459.25 1477 1018.5 1796 2516 819 1377 1017.5 1333 3216 1356 1167 1731.25 1531 1030 2289 2331.5
ENSG00000109991 4 17.75 4 2 7 6 4.5 9.5 2.5 4 3 3 3 25 4 2 6 4.5 8 14 2 2 13.5 8 4 4 4 19 3 0 2 4 4.25 5 7 20 4 235 197 7 48 3 3 0.5 0 59 2 1.5 3 10.5 2 3 3 3 7 10 0 4 4 3.5 0 5.5 7 7.5 4 2 0 33 2.5 4 2 0 151 4 2 3 2 2 4 2.5 4 1 0 0
ENSG00000110218 755 922 431 1058 727.5 214.5 323.5 1087 611.25 437 511 326 491.5 930 219 588.5 887.5 1273.5 0 388 984 495 662.5 644 617 509 1366 146 622.5 1041.5 448 568 679.25 809.5 1641 328 785 900.5 703.5 497 467 353 647 699.25 1201 1013 561 919.5 897.5 144.5 586 491 862 471.5 495 1383 1269 940 461 1105 603.5 658.5 868 695.25 433 1950 448 816.25 616 351 654 396 1189 1110 823.5 691 782 2042 553 1201.25 534.5 642 1498.5 816
ENSG00000110680 0 2.5 2 11 8.5 3.5 0 1 1 2 2 8 2 0 10 10 1.5 8 0.5 0 11 85 0 2 1.5 1 0 1 2 2.5 1 2 3.5 0 0 0 10 1.5 8 0 0 1 5 235 1 101 1 12.5 4.5 0 3 1 0.5 3 17 0 0 6 2 2 0 9 1 0 2 2 0 2.5 2 1 1 0 4.5 23 9 4 0 1 4 1 1 2 52.5 0
ENSG00000110881 62 95 1230 66.5 237.5 169.5 104.5 796.5 133 1340 1230 654 1446 36 3893 4657.5 1333 309.5 11 3 124 54 77 331 171 289 115 66 343 278.5 331 355 231.75 3621 158 1 150.5 169 144.5 1 0 1214 1058 53.75 105 27 124 35.25 74.5 2.5 200 1403 150.5 65.5 50 82 2091 183 1773 121 466.5 652 237 55.5 105 307 26 236.25 95 1222.5 120.5 5760 28 35 100.5 105 38 1420 182 96.5 249 155 76.5 105
ENSG00000111012 19 169.25 14 30 25 20 268 7.5 44.75 16 15 13 37 87 26 30 22.5 26.75 0 0 43 1125.5 43 151 49.5 35 22 285 16 34 93 18 30 21 81 173 50.5 11.5 19.5 0 0 18 13 2012 15 60 87 49.5 83 7 133 34 21.5 428 69 44 14 31 40 55.5 63.5 15.5 6 104.5 52 32 24 65.75 36 10 99 102 34 241.5 28 23 111 82.5 71 50.25 25 40 171 54.5
ENSG00000111199 87 77 16 125.5 85.5 215 29 10 115 11 8 31 14 28 10 23.5 14.5 12.5 0.5 0 108 897 50 6 37.5 103 118 54 36 527.5 1079 39 124.5 20.5 108 0 94 38 41 0 24 19 13 1449 132 663 756 133 62.5 0 1560 12 45 400.5 172 763 6 220 16 28 1969.5 23 10 6.25 30 88 235 91.5 72 22.5 729 570 50 83 45 66 71 319 34 221.5 33 165 85 574.5
ENSG00000111424 507 1957.75 30 546 193 676.5 559 66.5 767 44 39 47 25.5 1118 26 29 61 4344 0 0 311 1861.5 13180.5 303 735.5 684 102 26 114.5 1935 2142 87 376 33 2573 0 371.5 54.25 48 2 141.5 32 111 4308.5 472 75 3052 1637.5 666 2 1421 20 106.5 326.5 2609 560 21 329 20 8630 485 884.5 91 9199.25 5879 1172 377 1299.25 421 25 3397 123 419 378 212 123 1334 1694 5765 1268.75 99.5 1722 3062 3830.5
ENSG00000111679 701 1658.25 441 607 426 31087.5 9974.5 646 926.75 243 219 985 353 35692 175 191.5 327 1294 18717 44691 882 1736 3348.5 18999 422.5 555 659 7078 456.5 1229.5 1357 475 1494.75 230.5 2574 27478 1303.5 390.5 354.5 31300 25104.5 450 449 1189 14242 1764 1259 4709.25 8896.5 39516.5 1790 288 383.5 1518.5 1673 2433 218 1391 331 2497.5 1323.5 898.5 102 2286.75 4039 627 15049 2398.5 1177.5 689 1399.5 680 506 1108 283.5 674 11499 11 2371 2644.25 353.5 1042 11523.5 1752
ENSG00000112038 0 37 5 0 0 2 1 11.5 2 7 10 1 3 253 131 268 11 3.5 7.5 1 0 0 0 7 0.5 1 0 567 0 0 0 1 0 93 0 1 0 0 0 260 239.5 1 15 0 40 0 0 0 11.5 2 0 21 0 0 1 0 47 0 2 2.5 0 1.5 2 0.5 0 1 0 0.5 0 0 0 94 91 0 0 0 0 1 0 0.5 0 0 8.5 0
ENSG00000113262 12 20.25 42 30 32 46 10.5 19 36.5 45 43 32 36 98 141 170.5 37 14 36 88 35 28.5 3 21 45.5 47 12 128 49 7.5 20 49 31.25 87 9 36 31 19 38.5 20 86.5 39 58 12.75 1 10 18 16.5 17 51.5 23 40 31.5 9.5 117 5 41 22 36 6.5 5.5 28 7 3.75 23 18 4 16.5 23 50 25 73 49 32 32 26 3 40 32 17 50.5 30 3 7
ENSG00000113448 1311 316 1372 1334 3891.5 1029 6228.5 2236 1241.75 2174 2286 1375 1206.5 2503 597 623.5 2643.5 4688.75 5401 3532 1731 2135.5 1628.5 185 1434.5 1065 2270 218 1808 2802.5 705 1666.5 1759 1019 3685 3438 2173 1997.5 1873 2787 11587.5 1497 2159 3487 693 317 712 4248.5 1755 1972.5 1413 1554 577.5 344 2081 4382 2513 4032 1031 3757.5 1511.5 5340.5 6466 1542 1633 3794 708 2125 939 1647 808.5 594 828.5 1458 4259.5 1278 1053 1279.5 2352 4074.75 1230.5 1899 3290 476
ENSG00000113721 21282 4901 2844 30355.5 9580.5 1089.5 152 2094 14477 2990 2330 1757 2915.5 34 764 1537 2323.5 6892.75 4 0 27247 6979.5 1927 353 33987.5 28349 12882 35 11469 4581.5 3923 12275.5 12090.25 2717 25787 0 21967.5 8946.5 15135 0 29 2103 1588 5007 1108 2329 11163 10331.75 10176 0 5150 2475 16774.5 3702.5 3035 27713 1604 7215 3542 2687.5 2304 4998.5 12706 1075 4459 15248 6320 2542.5 34378 2656 6887 4555 2311.5 5839 49428.5 14184 2692 53323.5 3869 9219 21562.5 15201 4534 4576
ENSG00000113739 442 114.5 45 357.5 1321 10 0 585.5 3236 97 115 236 51 21 32 107.5 109 776 0 0 785 310.5 93 2314 365.5 427 609 0 830.5 213 202 1346.5 276 91.5 1227 0 1056.5 654.75 635 0 7 152 71 444.25 0 36.5 1116 874.5 370 0 131 33 263 3918 172 4169 104 660 60 67.5 63.5 443 422 59.75 211 413 1553 268 664 153.5 384.5 28 165.5 827 470 221 47 20129 309 596.75 134.5 398 364.5 115.5
ENSG00000113811 2213 2627 3095 2462 3759 1852 3878.5 2775 2131.75 2994 2428 3795 3200 32388 1600 1499 2167 3644.25 237318 14820 2210 2057.5 1629.5 1825 1565 1329 1592 20089 2043.5 1441.5 1278 1920.5 1437.25 1562.5 1981 10167 2151.5 4147 4585.5 16799 25060.5 2936 3246 2548.5 1801 2890.5 1085 3017.5 2504.5 10584 1559 3012 1887.5 2323.5 3105 1577 1464 2143 3270 2218.5 1951.5 1724.5 3204 1602.25 1644 1436 1145 1643 1682 3705 1173.5 1743 1847.5 2294 2691.5 1861 1877 991 1781 1660 1381 1343 2124.5 899
ENSG00000114353 17363 9983.5 17827 21583 12026.5 66629 19440 11465.5 15750.75 14384 11355 27710 14333.5 3349 4132 5800.5 11555.5 11438 12544 6579 19431 11019 6009.5 12818 15262.5 15458 12888 1217 15313.5 11535 7905 15110.5 14432.5 18732.5 17742 8671 20964.5 9668 10521.5 6432 7532 15854 17872 7735 31425 10518 8140 25095 16459.5 7248 8116 14115 11350 5163 13307 21579 10709 11822 13934 6035 4277.5 12185 3346 4554.75 11275 12709 21448 6344.5 20558.5 19002.5 7852.5 31041 9357 7957 18071 17746 15067 14852.5 8552 15778.25 13913.5 13754 20569.5 7089
ENSG00000115263 0 0 1 1 0 0 0 0 0.5 0 0 0 0 8 0 0 0 1149.5 0 0 1 0 112 2 2 1 0 0 1 54.5 1 1 0.5 0 35 0 1 0 0 0 23 0 1 0 0 0 0 0 0 0 0 0 1.5 61710 1 10 0 11 0 5420.5 22 40.5 0 1879.75 1571 0 2 61.5 1 0 0 0 0 0 0 0 0 2 230 36.5 1 1 77.5 707
ENSG00000115970 1522 1873.75 933 1849 1615.5 1727 1672.5 1494 2147 729 745 1031 1113 2853 696 661.5 896.5 2017 4530 2075 1746 1518.5 1156 1524 2125.5 2006 2248 3382 1484 1826 1636 1443 2240 708 2124 4476 1828.5 1260 1308 4034 5620 926 991 1642 2251 1481 2234 1805.25 2356.5 2729.5 1867 1077 2359.5 2012 1911 1520 903 2169 1061 1879.5 1778 1455 1088 1087.5 1589 2039 1874 1575.25 2012 984.5 2288.5 611 2227.5 2734 1815 2058 2682 2192.5 1322 2043.5 2122.5 2029 2122 2187.5
ENSG00000116030 4637 4189.5 4524 2674 2639 2659 5405.5 6808 4277.25 4752 4899 3411 3888 37300 3722 2387.5 4192.5 6963.75 672642.5 24988 2820 3050.5 3665 4079 2419 2115 3829 58673 2487.5 3885 2512 2530 2857.75 1750.5 4366 36798 2958.5 4014.5 2629 39307 57311.5 4420 4629 6122.25 4442 7491 2090 5741.25 3786.5 32497.5 2379 4067 2907 2882 2619 3909 3496 3977 4028 4725 3456 4173.5 2755 5877.25 2458 3741 3183 3146.75 2576.5 3867 2317 1222 3048 4990 2949.5 2306 5110 4027.5 2546 3148.5 2145 2454 3620.5 3119.5
ENSG00000116032 2 17.75 24 80 48 167.5 29.5 4.5 41.5 17 17 36 42 0 147 182.5 20 9.75 0 0 67 159.5 14 45 133 129 11 0 59 0 74 58 118.5 29 0 0 50.5 6.5 55 0 0 31 33 22.75 3 5 99 83.5 11.5 0 80 35 39.5 34 196 20 20 16 29 1 18.5 32 30.5 2 63 8 113 33.75 67 21 104.5 26 22 5 56.5 174 20 74 49 32.5 87.5 117 12 12.5
ENSG00000116329 14 109.25 168 13 18 91.5 23 483 63 382 593 23 251 237 28 36 528 79.25 7.5 58 12 15 3.5 32 16.5 17 0 221 18 3 12 21.5 8.25 1491 8 443 20 8.75 18 63 142.5 181 92 16 120 31 14 16 55.5 20.5 13 236 12 44 26 5 1666 18 337 19 5 61 82 14.25 34 3 6 22 17 33 14 1485 32 17 12 14 18 16.5 24 8.5 15 14 7.5 4
ENSG00000117560 17 18.75 1 7 5 267 126.5 0 7 1 1 10 6 12 0 0 1.5 17.75 0 0 6 3 140 2 6 2 28 0 2.5 16.5 10 4 14.5 3.5 85 0 12 6.25 4.5 0 0 1 2 2 1388 33.5 2 94.5 267 0 9 2 21 4.5 6 14 0 8 4 56 45.5 6.5 0 80.25 22 21 178 59.25 4 3 2 0 7 10.5 0 3 115 0 11 37 6 11 60.5 20
ENSG00000118160 12 118.25 960 45 9 69 3 1794.5 7 2086 2952 295 637 3 17777 31084.5 2366.5 270.5 11.5 3 28 3.5 12.5 33 109.5 43 237 7 545 66.5 49 496 86.25 19214 7 1 12 11 25 1 0 1412 659 1 5 1 27 3.5 3.5 6 7 919 20.5 521 567 2 7787 68 671 4.5 10.5 678.5 95 11.25 11 335 2 46.75 9 236.5 21.5 42377 46 5 152.5 5 0 25 144 63 707 39 9.5 8
ENSG00000118523 13008 6357.5 574 75724 18372 276.5 388 1737.5 11976.5 472 403 652 658 122 194 395 692 11315.5 0.5 0 41997 9716.5 2710 99 6371.5 6664 30048 1 14680 19108.5 2929 21465 9463 1501 19743 0 10042.5 6346 4433 0 1.5 856 649 13284 91 1807 8732 9174.25 4958 0.5 6899 377 5140.5 5711 1620 13525 675 7795 746 9774 4342 9476 5181 3406 6616 34844 20031 6501.5 15895.5 816.5 5706.5 2402 1057 13884 37021.5 13444 1179 38435.5 6512 12725.25 12611 3614 14792 801
ENSG00000118729 1230 178.5 140 1620.5 46392 22 0 181 1325 123 78 159 188.5 20 78 269.5 94 3985 34 0 9195 77 327 9 829 706 1167 17 4241.5 4198.5 437 4665.5 863 128 899 0 707 112865 57391.5 0 24 159 199 247.75 0 34 321 483.5 694 0 216 148 335 56 26 100 55 714 221 660 186 6423 10184 248.75 199 2851 56 189.25 920 274 183 28 286 336 15294.5 572 103 7 1194 4417.75 1236 334 886 31
ENSG00000118762 4142 2900 1385 19735.5 2961 591 2516 929.5 3742.5 1188 1251 1709 1437.5 2319 2537 1677 1486 4155.5 3899.5 4792 7855 2643.5 1327 1673 5597.5 4712 9056 1455 5959.5 2517.5 1434 5360 5004.5 1147.5 4006 3376 5030 3128.5 2073.5 6347 4107.5 1385 1029 4764.5 903 1166 1499 3235.25 2875.5 4137 1437 1182 6596 2220 1319 2858 1013 3069 1417 1712.5 1198.5 5367 1296 2128.25 1535 8670 1442 1266.75 4717 1439.5 1404.5 928 1205 2195 12238.5 4660 1186 7489.5 1856 3249.5 8843 2590 2293 1736
ENSG00000119121 108 34 203 39 67 2390.5 1061 389 156 126 124 808 166 947 111 110.5 199.5 1941.75 2390.5 109 62 133.5 1892.5 37 95 97 90 438 68 107 105 81 67.25 386 63 221 133 53 47 641 956 265 153 580 371 35 105 60.75 51.5 78 81 109 30 36 126 63 196 69 210 5024.5 98 333.5 61 3347.25 391 178 132 37.25 179 444 114.5 202 285.5 53 40 96 70 25 927 105.25 85 94 179.5 94.5
ENSG00000119411 37 136.75 68 12 72.5 677 2324 442 276.75 124 86 47 492.5 1403 206 849.5 64 442.75 829.5 8816 11 574.5 396 2424 15.5 13 68 7490 43 913 2300 41 88 229 144 1924 12 174.5 155.5 5439 687 46 40 493.25 203 74 1954 229.75 53.5 7136.5 1352 684 17 3225 358 145 103 164 520 528.5 6629.5 81 8 1591 179 39 26 1236 23 57.5 1728 347 45 1880 23 9 228 11 609 128.75 14.5 314 84.5 1755.5
ENSG00000119782 87 92.75 691 209.5 104 623.5 130 357.5 71.75 807 756 109 926.5 1558 739 658 465 106.5 3.5 882 144 138.5 448 42 111.5 134 61 643 119.5 67 168 141 61.75 920 90 0 107 80.5 115 52 5.5 754 375 141.5 534 146 135 226.75 82 11 126 925 95 185.5 93 128 898 111 973 85 59.5 121 80 1665.25 104 77 53 277.75 124 333.5 115.5 1521 23 127 148.5 159 67 217.5 128 111.25 131 141 42.5 66.5
ENSG00000120088 5 1 157 2 1 11 4 101.5 11.5 231 331 51 45.5 1 2567 3445.5 253 0 21 4 2 1 7.5 20 97 52 54 12 5 0 3 5 22.5 1203 3 1 8 0.5 3 1 0 113 58 0 8 1 32 0 0 3 3 50 6 0 365 0 608 25 53 0 9.5 2 38.5 5.5 1 12 0 0.5 4 46 34.5 1963 3 9 3 8 0 2 0 2 134.5 47 1 11
ENSG00000120899 1235 1519 6987 1326.5 1541 33248 16461 7411.5 1483.5 11281 16564 1873 5475 6778 22592 26515 10717 2606.5 43029.5 21768 1899 2467 5191.5 26719 2248 1665 1491 4114 1247 2403.5 2879 1319 2242.75 21206.5 2558 16498 3139 876 861.5 38979 9538.5 12246 1810 1908.5 12396 2181 5221 3185.25 10735 15909.5 4563 10559 687.5 1462.5 2046 1570 19907 3037 4848 3684 3890 1760.5 475 4357.5 6654 1611 8625 2857.25 2105.5 1298.5 5813.5 21796 1693 1758.5 1798.5 2243 9775 2236 4236 3101.5 1611 2514 8632.5 4639.5
ENSG00000120907 266 35 142 31 30 57 15.5 165 504.5 184 130 61 97.5 135 65 162.5 173.5 88.5 128 119 47 26.5 54 34 73 37 38 242 111.5 71 37 57 24.75 232 20 102 287.5 1334.25 832 93 152.5 137 88 32.5 4 5575 55 190.5 112 102 54 56 75 9.5 14 0 206 216 97 31 559.5 109 63 26.25 84 44 307 64.75 255.5 80 46 563 35 23.5 204 19 35 30 60 44 88 27 76 17
ENSG00000121905 3 11.25 1120 16 8 188 4 1759.5 5 2197 2588 78 9300.5 1 1750 2959.5 2248 27.5 28 5 8 8 16 64 40 16 17 19 20 2.5 12 18 8.25 11083 9 1 11 3 16 1 0 3167 256 9.5 109 1 9 0.5 2.5 22.5 7 7702 26.5 23 27 4 6141 10 12139 15.5 3 14.5 73 37.25 15 27 2 14 8 213 9 16291 24.5 13 29 6 0 24 36 4 40.5 14 0 11.5
ENSG00000122585 1 210.5 342 2 6 14 556 184.5 1 329 260 11 782.5 1 5 7.5 240 25 291.5 7 6 2 47 16 9 10 2 11 324 0 1 617 0.5 1650 0 4 1 1 5 1 0 168 89 1 8 1 1 0 94 3 1 421 1 104 7 0 634 1047 1188 7.5 0 23.5 14 121 55 0 0 26.75 1 11 0 4776 2 4 3 9 1 4 12 4.5 2 5 101 0
ENSG00000122679 1775 1139 159 815 1668.5 236 30.5 219 1289 179 186 2215 119 0 86 231.5 173.5 642.5 4.5 2 1366 1530.5 219.5 25 1160.5 891 427 22 1552 347 597 1521.5 565 605.5 476 1 2064.5 1635 3228.5 0 0 236 290 1429.25 150 739 684 2676.75 1705 1.5 497 96 151.5 616 373 80 157 472 126 180.5 484 550.5 2613 90 534 823 307 531.5 2948.5 507 522 473 66 1410 1130.5 791 1082 9 554 676.75 1027.5 650 509 248.5
ENSG00000123104 4031 5099.25 2365 1313.5 1560.5 1775 2964 1999 4162.5 1909 1547 2392 2437 3996 467 557.5 3044 3795 5057 6345 1654 1737 2542.5 8844 1563 1401 2472 4558 1311 4832 2655 1521 2191.75 961.5 3443 6850 2081.5 1312 1048 3872 4818.5 1467 1390 4178.5 7374 9259 3078 1895 3435.5 6140.5 3814 1947 2304.5 1956 866 4136 1652 1176 2052 3631.5 9029 2219 710 3598.75 1519 2324 1710 1691.5 1601 1687 3077 1100 1058 1661 1535 1464 3338 1416 1404 2011.75 1318.5 1612 4584.5 5584.5
ENSG00000124181 7410 4003.5 5230 6623.5 5756.5 5659.5 3665 3935.5 4626.5 5074 4903 4648 4736.5 226 14151 15143 5924.5 3195.25 25 410 6016 4911.5 3869 8424 9016.5 6970 6806 801 7819 3272.5 4063 7404 5232.5 7645 5256 176 6636.5 5137.5 6513 8 173.5 4486 3853 2437 6299 1667 6713 4051.75 8648.5 790 4121 4800 6792 2260 3731 4527 5390 4071 5077 3239.5 2298.5 4538.5 4828 4737 5632 6651 5441 3093.5 7721 4191.5 6459 11423 4367 5592 7225 7040 5257 5831.5 4586 4964.75 9137.5 6656 4606.5 5880
ENSG00000124233 0 0 0 0 0 12.5 8 5 0 0 0 0 0 11 0 0 0 1 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0.25 0 50 0 0 0 0 0 0 0 0 5.5 22 0 0 0 0.5 0 1 0 0 0 0 0 0 90 0 3 0 0 0 0.5 1 2 2 0 0 0 0 0 1 0 0 0 0 0 1 0.5 0 0 0 0
ENSG00000124942 150219 20078.75 26609 143873 62455.5 11998.5 21997.5 15335.5 155620 20876 14072 20804 19868 305 7423 8340.5 12705.5 167951.25 4731 12099 124076 41652.5 39536.5 11208 144702 114391 87001 617 144849.5 178083 142631 155723 98743.25 9528 82837 13568 113432 68328 67117.5 8176 5345.5 20319 14546 44210.5 120125 20040 146267 104355 52811 4951 78821 16366 90402.5 18173.5 9798 91968 10967 55045 16326 80415 38318.5 140239.5 76964 71599.5 84774 98950 30714 71320.25 151419.5 18117 145757 7222 35289 40688.5 135047.5 291171 29806 153599.5 98030 79849.25 118305 147064 35816.5 229668.5
ENSG00000125510 106 127.25 325 112 81 3231 420.5 441 86.25 478 886 168 487.5 26 528 724.5 1022 38.75 209 9 108 43 45 120 61 122 38 0 44 35 39 40 59.25 2926.5 67 92 106 36.5 63 507 233 322 578 23 2018 43 43 94.5 191 16.5 47 669 35.5 147.5 144 127 1930 57 447 25 211 44.5 29.5 21.75 72 42 268 39 102.5 272 47 4975 267.5 29 93 55 159 94 48 71.75 45 60 144 41
ENSG00000125648 3257 3246.25 21809 4754 5107 1153.5 171.5 7408.5 2459.75 24389 19538 6988 30820.5 818 9088 11338.5 13609.5 4997.25 373.5 196 3732 3863 3812.5 11289 3287 2636 2810 1281 11132 6794 6028 14131 3271.75 23735 1938 97 2326 10240 8961 236 231.5 22840 7972 4112 2318 3902 3229 2197.75 1573 359.5 2841 26874 3793 2225 1501 493 17290 2624 33680 5013 7479.5 6981 14688.5 7010 3192 7630 928 2613 1986.5 8139 3012 39990 746 5005 7781 2599 3596 2007 6039 4485.5 4435.5 2625 1090.5 3134.5
ENSG00000126266 5 2 26 0 0 18 428 28.5 2.5 8 10 130 27 59 3 2.5 11.5 8.25 8 1 0 0 11 541 0.5 3 0 2 2 0 1 2 9 69 0 1 1 0 0 0 2.5 34 14 0 89 0 0 2.5 11.5 2 0 15 136 167.5 0 3 20 0 31 0 0 0.5 1 14.75 15 2 11 12 1 47 0 24 3 1 0 8 14 1 2 1 1 0 9.5 0
ENSG00000126353 113 33 43 53.5 123.5 1340.5 522.5 5.5 132 17 17 46 39.5 9 6 4.5 30.5 212.75 2835 0 119 61.5 148.5 4823 121.5 205 87 747 44 179.5 92 40.5 183 35.5 536 0 279 19.5 50 21 0.5 40 43 27 3360 85 77 216 3125.5 0 139 28 54.5 37 90 140 6 69 42 360 101.5 396.5 5.5 131 584 94 2144 106.75 146 45.5 73.5 0 103 67 62 92 5289 121.5 114 707.25 80 121 5933 156.5
ENSG00000126803 959 554 4179 2740 3060 259.5 129 12497 770.25 1955 2038 20060 3759.5 1307 641 1838.5 3581 4591.25 34 103 1501 1430.5 441.5 281 714 543 1335 1251 7911 3820 3247 9603 1087 25948.5 357 72 638.5 1701.5 1330.5 67 134.5 5992 2800 3549.75 114 322 2564 737.75 793 66.5 701 2675 608.5 472 1009 8499 4319 571 4448 820 1596 5563 13678 411 822 2578 1277 569.75 824.5 7755.5 2581.5 23470 6164 252 3018.5 3190 526 2339.5 2623 2171.75 1437 1065 501.5 2109.5
ENSG00000127249 13 20.25 493 14 12 263 90 559 48.75 502 456 133 498 7282 147 222.5 673 91.25 328 17 13 18 28.5 614 15.5 8 15 2581 19 1665.5 2116 17 104 416 312 2 11 7.5 21 44 96 287 161 25 601 89 1342 1149.25 34.5 3.5 321 513 28 456.5 67 20 763 5 465 354 106.5 41 128.5 73 18 13 19 744.75 12 287.5 1186 867 12 4310 23 46 863 26 96 12.25 17.5 275 21 1864.5
ENSG00000127412 0 1 31 1 3 87 22.5 16.5 1.5 9 9 177 13.5 0 5 9 15 0 1 0 2 168 20 2 1 6 0 17 4 0 2 4 3 65.5 3 0 2 0 2 0 0 44 24 138.25 13 0 1 2.75 2.5 0 5 9 1 4 2 0 20 3 29 3 8.5 1 0 10.5 2 2 7 0.5 2 62 2 100 19 2 1 8 3 0 1 1 2 2 6 5.5
ENSG00000127533 1780 138.75 14 77.5 154 86.5 33 19.5 541.75 12 10 16 8 3836 4 3 8.5 726.75 62.5 5 93 514.5 140 152 153 67 122 414 191.5 99 81 201.5 129.25 8 344 4 1302 92.5 209 0 36 16 18 138 119 20 236 1444.75 288 86.5 144 8 37.5 422 145 39 0 80 8 120 14 123 203 128.5 448 135 65 561 1070.5 15.5 168 54 189 1098.5 127 109 76 5 352 113.75 119 106 124.5 6.5
ENSG00000128271 4 12 16 14 25 185 247 8.5 7.5 19 20 15 82.5 5 51 75 17.5 11.25 0 5 14 43.5 46 121 16.5 25 9 0 17 5 9 19 11.5 41.5 10 0 13 13.5 24.5 0 0 18 17 19 75 59 12 25.5 42.5 3.5 15 111 10 9 22 9 27 11 102 4 27.5 13 5.5 11.25 24 6 39 27 11 17 10 81 26 0 10 16 43 5 15 13.75 22 15 40 7.5
ENSG00000129749 9 29 100 29 36 86 15 6.5 51 93 74 57 113 32 161 142 55 25.5 0.5 0 51 94 50 18 31 71 31 9 54 17 56 46.5 81 62 36 1 70 28 64.5 0 0 96 114 50.75 9 33 30 59 71.5 0 87 114 23 61 147 31 28 68 108 39.5 33.5 77 1002 28.5 95 33 162 53.75 35 77.5 37 118 70 43 19 65 22 39 86 30.75 48 44 49 73
ENSG00000130038 307 68.5 63 64 315.5 607.5 1280.5 56.5 290.5 91 78 71 104 436 29 27 67.5 1537.25 1635.5 2277 122 85 903.5 640 110 168 201 340 121.5 180.5 88 99 169.5 32.5 459 1390 215 273.5 231 1674 584 74 69 52 610 129 426 254 730.5 542.5 3016 89 202.5 475.5 72 67 78 834 113 3542 7804 272.5 60 1299 1338 279 613 370 237 75 326.5 141 187 160 60 165 743 664.5 1005 504.75 131 117 916 57.5
ENSG00000130054 5 95.5 131 9 4662.5 46.5 3 171 9.5 129 142 75 80.5 0 761 990 121 13.25 228 3 9 65 6 14 16 15 26 9 46.5 3.5 16 65 34.25 273.5 12 1 8.5 3197.25 3180.5 1 12.5 118 148 91 121 19.5 8 3 11 4 70 100 26.5 208 87 0 212 74 89 20.5 113 15.5 92 31.25 13 15 7 79.75 6 133 8 557 42 541 13 6 32 6 25 12 17 8 2 3
ENSG00000130427 0 0 3 3 3 6 0 2.5 1.5 3 3 1 3 0 12 9.5 1.5 0 0.5 0 2 20 0 4 82 63 46 1 3 0 2 4 2.25 3.5 0 0 3 0 1 0 0 3 3 6 1 722 15 0 1.5 0.5 19 3 5 170 1 5 0 12 3 1 3.5 4 1 0 2 15 2 1 4 2 12 0 9 0 4 6 0 3 2 1 31.5 6 5 14
ENSG00000130433 0 0 37 1 2 7 0 14 64.5 34 49 10 24.5 9 1 2.5 22 3.25 0 0 3 1 16 0 0 0 22 4 2 0 0 1 225 22 1 0 1 0 0 0 0 35 27 2 0 0 1 133 0 0 8 16 0 0 113 0 18 0 17 5 0 0.5 1726 2.5 2 0 2 14.25 2 12 0 30 123 1 2 2 3 2 2 1 1 1 10.5 0
ENSG00000130528 406 184.5 153 297 32286 16.5 0 100 559 161 142 115 244.5 62 43 74.5 93.5 235 0 0 649 246 84 6 397.5 386 256 0 258 132.5 96 253 435.75 193.5 263 0 509.5 63544 55418 0 0 165 141 214.25 0 97.5 177 126.25 121 0 180 168 206 64.5 106 121 86 179 292 90 56 133 25028.5 37 136 243 27 76.25 657 242 127 281 153 343.5 1183.5 366 27 6 133 158.75 513.5 252 38 34.5
ENSG00000130529 1323 492 611 3866 3744.5 557.5 67.5 198 1709.25 703 646 526 492 563 754 817.5 555 2812.5 949 64 2907 3784 4301.5 34 1626 2099 856 196 2271 559.5 2190 2571 1148.75 630 1166 191 1814.5 1908 3920.5 386 252 526 610 1727 102 978 4871 1558.25 342.5 54.5 4589 454 168.5 1178 745 1151 428 4756 518 2709.5 1643 2432 3189.5 7524 3635 634 493 4461.75 2239 747.5 4472 1183 375.5 1058 3508 1019 225 2812.5 10978 1482.25 1434 2192 634 2499.5
ENSG00000130943 21 20.25 15 22 41.5 22 77 44.5 35 14 11 22 23 23 26 48 21.5 60 0.5 0 21 18 62 27 36 22 45 128 36 47 41 37 33.25 24.5 46 5 15 52 49 0 0 16 18 29.5 76 18.5 42 12.5 10 5.5 27 23 48.5 26.5 30 14 30 30 19 86 42.5 30.5 70 124.25 46 34 17 29.75 22 20 45 0 486 27 14 45 18 32.5 46 29.25 33 30 20.5 134
ENSG00000130988 254 9339.25 708 1429.5 660 54.5 1 542 374.25 712 599 636 640 36 1676 1388 440 142.75 13 1 805 785.5 587 17 357.5 377 217 23 701 158.5 132 579.5 136.5 613 210 3 165 1200.25 1202 0 0 552 420 2383.75 2 20330 79 495.5 77.5 40 110 557 1380.5 1547 252 359 572 463 637 53.5 632 319 1218 986.25 51 244 134 384 233.5 703.5 78 575 71.5 1113 1476 65 38 433 91 201.25 386.5 214 37.5 46.5
ENSG00000131042 883 343.75 115 436.5 360.5 16460.5 5241 60 311 69 45 310 103 0 15 15 64 222.5 732 209 604 275 618 44 117 178 157 5 226 285 102 226.5 269 39.5 1362 1406 840.5 215 208 3009 1824.5 107 149 171.5 7075 470 79 2518.5 550.5 70 214 79 159.5 221 214 655 32 166 87 546 166 237.5 52 431.75 432 271 6060 404.75 579 147.5 68 86 135 161.5 126.5 339 212 1 274 1026.5 159.5 168 19724.5 67
ENSG00000131477 2520 669 249 549 1167.5 104.5 2 378 1802.75 239 197 328 219.5 0 145 287 207 459 20 2 994 563.5 145 63 1425.5 1171 622 4 1166 231 383 1075.5 585.25 556 381 1 2525 1321 2041 1 16 278 219 664 10 261.5 798 1707.25 553.5 4.5 548 190 573 256 180 1219 199 440 265 236.5 216.5 394.5 3050 92.5 393 1158 574 297.75 3215.5 425 630 724 95 616 1019.5 1287 425 69 343 313 1167 541 254.5 258
ENSG00000131504 4352 4536.5 3828 6165.5 3853 8549 7593.5 5464 4913.75 4230 4290 2158 4941 23160 3613 3586 3972 6788.5 12365 2947 6287 11296.5 10422.5 4963 4496 4515 5315 2554 3221 14936 11127 2878 5786.75 2890 10550 5983 4817 5252 5438 5927 10783.5 3738 5474 10678.75 13541 13643 8749 12849.75 9249.5 2295 8865 6628 4246 6797.5 8102 6636 4636 3970 4275 8925.5 4387.5 2246.5 8734 8121.75 7630 4946 6440 11376.5 5916.5 2746 7686 3909 8717 7515 5459 5230 12618 3059 5109 6663.5 3684 6767 11671.5 8028.5
ENSG00000131981 12047 2446.75 2314 5810 7719 7751 11518 1356 14345.75 2868 2122 1729 1693.5 1205 926 1263.5 1696 23806.5 129.5 25 6487 3856 23417.5 3043 13884 10157 5789 3604 8823.5 14462.5 12716 7181.5 7649.75 390.5 10539 1 11826 7794 8592.5 25 44.5 1977 1324 3725 5054 468.5 19389 16394.25 3601.5 7.5 11962 1797 8541 2887.5 2381 7582 1017 5450 1610 27939 11145.5 8813 2074.5 34157 14719 5066 2081 11859.5 16480.5 1869.5 18119.5 606 2601 2575 6257 10603 3139 11349 30835 8239.75 6869.5 11911 7330 13718
ENSG00000132329 103 470.5 3288 12638.5 4028 216.5 22 738.5 87.5 3197 2247 1958 2722.5 254 826 1655.5 1517 1282.5 1241.5 4298 6216 351 1019 34 8556 6765 2980 21 6103.5 119.5 168 5353.5 2700 2491.5 442 3073 344.5 2556.5 6540 2326 644.5 2821 2368 206 71 1668.5 227 391.5 204.5 2637 113 3665 256.5 4749.5 240 350 1217 2180 3063 80 21.5 5331.5 5104 1750.5 775 2133 164 730.25 118.5 2766.5 222.5 5773 86 105 6781 938 45 85 1525 1227.5 14401 1400 417 47.5
ENSG00000132376 3899 1597.5 2209 2333.5 2364.5 5107 3259 1837.5 3430 2407 2109 1842 2106.5 569 1830 2291 2089 1647.25 1689.5 399 2498 2024 1314.5 895 2293 2013 1604 308 2479.5 1785.5 1869 2638.5 1794 2733 1616 1294 3333.5 2128.5 2727.5 1127 1685.5 2249 2274 1894 2447 1251 3229 3497 1983 1531.5 2327 2138 1521.5 1914.5 1797 2174 2173 1708 2262 1558.5 1684.5 2033 2177 1038.5 2331 1325 2067 1915.25 3556.5 2196 2910.5 4166 3114 3650 2263 2994 2146 1444.5 2161 2250.25 2085 2151 1708.5 2883
ENSG00000132911 0 2.5 2 0 0 3 2 15.5 0 4 5 29 2 138 1 8 7.5 1.5 41.5 2 0 0 2.5 8 0 1 6 338 0 3.5 2 0 0 18.5 4 1 0 3 2 21 96.5 5 13 2.75 4 0 0 7.5 0 3.5 0 2 1.5 0 3 3 28 2 4 4.5 0 2 3 1 2 0 0 28.25 0 7.5 0 22 21 18 1 6 5 1 2 0.75 1 0 1 0
ENSG00000133107 73 58 49 342 128 2 1 91.5 22 53 48 28 31 60 19 21.5 80 149.25 2 1 448 78 41 2 293.5 253 1568 60 26.5 12.5 14 25 104.25 106.5 235 1 64 97.25 81 1 24.5 66 74 61.5 51 19 11 105.5 31.5 1 19 29 283.5 70 12 304 114 365 42 41 11.5 260.5 68 39.75 33 1886 7 72 70.5 49 8 210 6 50.5 481.5 32 5 229.5 64 98.25 1077.5 129 77.5 17
ENSG00000133112 124954 117322.5 83458 89930 109359.5 38876 96029 62593.5 129319.25 50537 40544 107009 78492 80631 22560 16872 40132.5 225322.5 694992.5 128773 101662 107125.5 144690.5 67075 108520.5 114739 113622 59488 77965 123309.5 107622 72483 102070.25 16858.5 161486 147842 155988.5 126202.5 87425.5 210575 316161.5 81972 65921 151442.75 122746 209872 73160 270786.25 214244.5 128223.5 125657 81065 193277 305179 77529 141687 21169 108450 77638 122023.5 263824 120371.5 221610 135634.75 84536 89612 112806 109156.5 101798.5 92359 80965.5 16054 44334.5 105690 71115.5 66665 111179 92063.5 78185 139827.25 92146.5 115127 116595 80289
ENSG00000133657 6017 4482.25 2517 6476 8982.5 2219 10411.5 3329 8009.75 2424 2481 2573 2942.5 2155 3347 2524.5 3642.5 7560.5 4478.5 823 6447 3855 6346 6504 3246 3129 7977 5707 2867.5 5723.5 2994 3007.5 3990.5 1349 12916 2943 6158.5 6634.5 5234 2522 3164 2710 2389 8174 5523 14409 2081 5834.25 5340.5 1247.5 4577 2831 3279 2694.5 2746 14161 2304 4492 2951 8510.5 4460.5 2769 1860 6191 2941 6512 3907 6058.25 5287.5 2494.5 2132.5 846 3332 13695 6183 5013 6007 10538 3155 5812.25 3355 3066 11449.5 3510.5
ENSG00000133872 12357 24068.75 19368 12053 9430 19848.5 22744 26392 10915 22401 23257 19808 17927 20429 11648 10889 27484 18627.75 955007 48464 10080 8229.5 10001 6638 7328 8737 12124 29915 6839.5 8493 5632 6215.5 11743 22413.5 16176 34169 9839.5 12275 9890 52884 51805.5 19206 23853 15557 58000 27775 5400 19091.25 21477.5 34079.5 9813 20670 19622.5 16512 15426 26670 27284 18095 17485 12032.5 19177 8191 8347 12987 7751 13004 9410 10577.5 7554.5 19935.5 6095.5 26859 8188 20314 10442 7971 15621 7141 7268 10467.25 8558.5 6784 13362 6790.5
ENSG00000134160 21 0.5 21 0 1 13 1 3 14 7 8 73 7 403 6 8 3.5 6 5 1 2 7 0 11 3 9 0 184 1 4 6 1 0.5 5 0 0 7 0.5 2 51 155.5 24 3 11.25 18 0 426 1.5 6 1.5 5 3 7.5 0 2 19 37 1 18 0 4 0.5 2 0.5 1 0 2 0 7 65.5 399 0 128 1 0 1 0 10 1 0.5 1 2 0 1273
ENSG00000134242 265 204 38 139 89.5 1499 3143.5 31.5 162.25 28 30 136 38.5 3426 57 37 44.5 445 3059.5 1274 157 78.5 1273 2309 69 101 214 957 62 420 149 57 168.75 8.5 1509 2079 272.5 32 33 2166 5409 39 56 75 1636 111 60 1288 2192.5 885 128 44 97 140 53 191 15 126 38 895.5 221.5 382.5 8 2105.5 1126 219 1792 640.5 159.5 49 73 0 220 90.5 69 143 1883 298 454 657.75 64 137 2262 115
ENSG00000134817 878 435.5 1044 262 1396.5 83 68 2760.5 1955.25 550 240 5200 269.5 1 262 516.5 1609 414 13 3 493 177 321.5 22 54.5 26 319 3853 386 254 142 530.5 68 1438 923 1 552.5 1950 2167 1 4 1069 1073 525.5 6 1056.5 245 115.5 1289.5 2.5 129 270 151 130 75 7761 547 24 126 431 270 173 4405 137.5 168 1010 4801 189.5 920.5 1701 200 2166 44 544 334 209 481 19 252 373.5 65 56 624.5 762.5
ENSG00000134851 4786 4617.5 2940 4841 3179.5 2142.5 1847 4507 4247.75 1654 1755 9815 2536.5 3651 1440 1214.5 1943.5 3188.5 8825 711 4294 2607.5 2596.5 4118 3494 3467 3794 4877 3635.5 3724.5 5075 3812 2191.25 2217.5 4846 1752 5214 2426.5 2776 1361 1607.5 4049 2716 2782 4362 1618 3088 6210 4025 2629 4034 1830 2902 3939 2073 4632 1339 3336 2972 3027 1807.5 2527.5 1129.5 4514.5 2660 4336 3639 3364.5 4206 5784 2898 2371 1207 3297 3575 3410 3610 6842 2499 4304.25 3351.5 4123 4473 3188.5
ENSG00000135018 8339 8038.5 6578 6255 6102.5 4068.5 10949 18285.5 7773 7617 9090 8214 6323.5 2852 6286 5791 12820.5 9597 9083 2972 6058 5562 6970 5659 6331.5 5642 8363 2729 5217.5 9548.5 6118 5423 6178 8815 9698 3464 7053.5 8437 5475.5 4879 7452.5 6914 7929 9165.5 8082 9378 6345 8634.75 8300.5 3642 5787 7085 6634.5 5415.5 5301 8631 12839 8105 5985 8698 5569.5 6901.5 8305 8453.75 5282 8179 5941 6640 6590.5 7311 6265 5260 7739 8112 6511.5 5583 11027 7096 5054 6919 5610 5935 8643.5 6548
ENSG00000135124 895 894.75 551 1057 579 3058 2376 460.5 807.75 477 466 745 429.5 4308 3320 3172 493 1462.25 7564 5640 984 1465 2025.5 1699 961 1387 687 2414 763.5 414 412 713 1018.75 806.5 1569 7940 878.5 447.5 447 7376 3751 538 487 1024.75 1579 1343.5 591 1605 1104.5 6193 1826 404 1272.5 2633.5 1183 2773 416 1128 467 2208.5 1938 821.5 179 2453.5 1808 643 1115 1696 960.5 538.5 521 1548 503 860 849 844 699 912 2665 881.5 727.5 789 1148.5 394.5
ENSG00000135222 0 0 0 0 0 0 0 2.5 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 173 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0
ENSG00000135413 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 1 0 0 0 0 0 0 0 0 0 2.5 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
ENSG00000135744 530 924.5 8137 2408 9481.5 126 15.5 8583 337.25 5935 5600 3830 7963.5 5 9610 12158.5 6206 401 2.5 1 3762 1134.5 131 28 384 642 105 3 446.5 115 60 569.5 241 4637.5 3990 0 489 10979.5 10807.5 0 0 4988 3369 2620.5 2 135207 91 178 406 1 184 4596 161.5 389 440 35 6075 202 8241 151.5 69.5 138 8509 124.75 401 228 4 313.5 285 6088 44 10600 110 548 3536 527 10 168 244 237.5 141.5 150 135 16.5
ENSG00000135914 43 540 7 114 173.5 9 115 12.5 103.5 7 6 9 8 167 6 11 9.5 241 354.5 0 107 91.5 95.5 36 104.5 88 1497 64 168 42.5 13 362.5 83.25 6 72 297 37 89 24 211 62 9 7 157 4 123 8 32.25 183.5 130.5 21 6 72.5 8 17 429 4 25 9 98 33.5 557.5 8.5 32.5 20 905 15 30 35.5 10 9 26 19 79 64 12 64 69 87 115.75 358 32 102 11.5
ENSG00000136758 7948 9062.5 4377 5268.5 6611.5 4219 8520 8061 7253 4450 4426 4141 4587.5 12765 4155 3119 5267 10762.75 17945.5 11167 5490 4784 8511 6170 5693.5 5811 9417 9657 4601 12029 6027 4446 7231.5 2759 11881 11560 5940 9454 5819 13373 16659.5 4366 5288 7904.25 7064 9123 4708 8495.5 8466 8660 5704 4581 8468.5 6095 5703 10053 4404 9277 4276 10349 7793.5 6193.5 5849 7914.75 4689 9068 5966 6772 5427 4422.5 4875.5 952 10789 10223 5058.5 4939 9874 7216 4990 7999 4840 5510 9126.5 7500.5
ENSG00000137077 698 813.5 4 197.5 106 56 1 0 695.5 3 3 5 3 0 3 2.5 2 1583.25 2 1 1089 603.5 786.5 16 1154.5 971 1044 2 2058 1593 1825 2380 2410 0 941 0 2165.5 531.5 517 0 0 3 2 378.5 24 1087 796 1914 57984 1 269 3 481 219 24 39 0 317 3 2344.5 279.5 1998.5 225 828.75 2479 1205 2176 406.5 474.5 3 819.5 0 242 1926 104 77 23159 11 965 467 666.5 744 3831 887.5
ENSG00000137672 520 48.25 52 184.5 51 55 131.5 54 489.75 100 58 29 63 12624 40 46 70 408.25 2 1 186 97.5 142.5 6 325 296 633 2109 837 611.5 189 1958 242 75.5 172 1 371 75.5 76 1 20 64 60 165 260 14 280 1298 185 16.5 58 37 180.5 78 23 2489 148 147 40 203 108.5 447.5 136 84 131 635 134 169.75 639 90 249.5 118 42 678 215.5 105 114 386 153 173.5 347.5 280 100 319.5
ENSG00000138448 10502 6595.5 3983 13803 7615 655.5 1896.5 8960.5 8453.25 4164 3469 8107 4285.5 2031 3890 4176 7045 10695.5 4203.5 1988 9887 4504.5 4009.5 2358 5238 4357 11528 852 5390.5 6752 2733 6271 4815.75 3372 14028 2874 5376 25410.5 11807.5 1931 2547.5 3812 2780 11266.75 4209 3148 3811 6228.5 6545 1689 3781 4361 10121 3917.5 2045 13166 3246 6991 4502 5753 7486 3785.5 5577 6612 2344 18068 2846 6881.25 5365 5410.5 4240 2587 2596 10093 12459 5068 5574 14033.5 2878 7162 6364 3399 8713 11626
ENSG00000138685 5681 516 1425 3141 889.5 68 15 1939 3779 1195 929 929 1596.5 320 366 344 1505.5 3172.5 1.5 1 1930 269.5 282 733 1970 1563 2322 232 2350 1178.5 291 2463.5 1248.25 341.5 1078 0 1724 1026.5 829 1 23 828 1030 501.25 27 314 330 802.5 763 2 426 1293 2194.5 114 300 807 513 978 1257 578.5 630.5 2778 849 220.5 221 3255 108 334.25 2589 1085 268.5 237 178.5 523 3503.5 1723 389 12501.5 620 1214 2440 787 909.5 175.5
ENSG00000138741 48 5.75 59 16 20 23 10.5 64 22.25 81 87 34 121 208 132 542.5 81 9.5 10.5 2 13 8 6.5 9 91.5 92 28 289 60.5 11 9 43 28.25 128 52 1 30 27.75 24 2 55.5 55 54 10.25 4 9 7 52 10.5 4 7 55 25 7 398 116 104 14 196 13 23.5 14.5 50.5 27.75 19 32 16 18.75 25 68 7 284 10.5 14 131 12 7 11 19 116.25 49.5 53 11 7.5
ENSG00000138755 289 147.75 5 128.5 58.5 52.5 56 7.5 154.5 3 2 24 5 82 2 1 17 226 1 1 106 94 244.5 34 17.5 11 237 38 25 139.5 44 23.5 156.25 0 626 0 86.5 251.75 52 0 310 6 4 185 286 152 33 1232.5 8366 0.5 70 3 241.5 26 30 65 6 114 5 1351.5 1686.5 157.5 214 158.25 139 183 270 556.25 159 6 20 0 148 129 99.5 32 3624 3 38 742.25 18.5 43 5509 135
ENSG00000138798 12 9 67 4 555 62 20 97.5 574.5 108 108 61 57.5 7255 4 7.5 115 113.75 199.5 0 10 2533 18.5 2 6 10 75 132 21.5 36 30 39 54 94 475 6 5 705.5 486 18 556 99 91 9847.5 235 0 133 117.75 22 0 616 59 10 5391 76 8 120 220 36 314 4035.5 41.5 3052 29.25 34 149 26 4.5 4 82.5 117.5 257 88 330 4 12 2 6 68 58.25 73.5 31 43 172.5
ENSG00000138814 4091 3670.25 7071 1790.5 1411.5 4017.5 2213 21535 4309.75 12537 20411 2166 23362 11150 15389 13019 12713 5492.75 12440 10083 1942 874.5 1609.5 1831 2370 1892 1811 8841 1630.5 2390.5 1284 1604.5 1719.25 20504 2319 6186 2664.5 1587 1324.5 12425 3977.5 12774 4336 1606.5 10836 1800 2613 3551 3277 10963 2306 22906 3034 1306 1199 1957 23607 6836 22565 2759.5 3172 2088 7549.5 2415 1390 2467 2054 2680 3261.5 2436.5 2653.5 18457 1294.5 2209 2208 2329 3002 3214.5 1539 2585 1500.5 2386 2428.5 4677.5
ENSG00000139151 0 1 0 0 4 1 1 0 6 0 0 0 0 112 0 0 0 0 6 1 0 6 0 1 2 2 0 150 1 4 5 2 3 0 5 0 0 7 3 21 72 0 0 6 28 0 33 0 0 1.5 1 0 0 0 0 0 0 1 0 0 0 0 1 1.25 1 0 0 27.75 0 0 37 0 801 0 0 0 0 1 0 0 0 1 0 101
ENSG00000139644 37391 37783.25 29864 19487.5 16974.5 42959 17692.5 34710 33078.25 29368 23276 33794 33145.5 249330 11760 13661.5 29408.5 44603.25 632767 115047 21170 34225 47818 16312 19212 20436 27514 201531 18252.5 35066.5 29044 17861 31412.75 17519.5 40025 116509 27620.5 16319 16457.5 170873 155688.5 25243 25567 69613.5 52795 116535 17722 51407 29975.5 86250 31980 28507 27328 28606 13712 28465 22105 37001 29774 53537.5 42485.5 19328.5 15538 61056.75 27224 33172 19269 42933.25 22572.5 29505.5 18510.5 17794 19507 46169 19587 22234 34340 28730.5 28686 32238.25 17154 21027 25764.5 22958.5
ENSG00000139780 2 0 0 0 0 0 0 13 0.5 16 40 0 0 20 12 18.5 27 2 0 0 0 0 0 0 0.5 1 3 0 0 0 0 0 3.25 60 5 0 0 0 0 0 0 1 1 0 0 0 0 1 4.5 0 0 0 6.5 0 0 56 59 0 0 0 0 0 69 0 0 12 0 0 0 0 0 0 10.5 0 0 0 0 2 0 0 4.5 0 0 0
ENSG00000139890 10 21.75 40 45 19 1762.5 425.5 193.5 33 48 84 37 255.5 21 145 205.5 71.5 15 0 0 35 69 35 51 41 68 30 9 47.5 10 41 51.5 79.75 107 32 0 30 8.5 17 192 34 60 125 30.5 89 9 116 45.75 94 0 54 448 43 27 315 19 49 30 247 20 30.5 55.5 17 25.75 93 29 275 41.25 43 35.5 99 82 107 19 45 52 33 13 52 35.75 61.5 52 55.5 34.5
ENSG00000140090 149 104.75 838 618.5 101 4854.5 1406.5 1031 117.5 906 1357 743 331.5 382 121 134.5 1561 80.5 1132 90 149 52.5 93.5 73 90.5 132 44 591 205.5 63.5 59 192 54.5 1427 124 872 144.5 91.5 97 210 435 577 635 40 5772 95.5 60 261.5 262.5 303 62 1237 106 26.5 380 102 1850 83 412 85 39.5 103 132.5 57.25 119 62 632 60.25 146 1310 60 2435 269 60 74 1330 117 24 95 125.75 59 89 385.5 42
ENSG00000140464 7858 2293 1765 5010.5 3512.5 4716.5 4620 1579.5 6153.25 1555 1517 1745 1771.5 705 965 1386.5 1549.5 2596.5 1127 3265 4954 3871.5 2566 4950 6414 5936 4209 721 4258 2366 3792 3920 4753.5 1971 4287 2473 7978 1691.5 3107.5 3191 2568.5 1517 1763 1716.25 2350 934 4592 5722.5 3495.5 2630 5312 1638 2675.5 1520 2958 4126 1422 3037 1629 1634 5914 4438 1128 2027.25 4439 4105 4127 3932 8847 1625.5 4464.5 3196 1463 2386 4284 5141 2054 5966.5 3723 4204 6547 5352 3963 2588
ENSG00000140939 1475 1835 1954 2216.5 3516.5 377.5 46 600 1471.75 1219 1220 1432 1276 230 1304 1304 923 693.5 1009 44 2489 1429.5 454 1103 1993.5 1863 660 101 2830 1042.5 2165 2669 1276 1347.5 839 87 1785.5 2713.5 4183 67 223.5 1655 1599 867 56 788 3216 891.25 312.5 36.5 2619 1165 632 2810 3170 1036 810 2464 1742 763 1589 1582.5 5655 317.25 871 655 404 1416.5 1739 2159.5 3630.5 1862 313 849 2092.5 1223 307 1156 1410 1005.5 1424.5 2046 332 3369.5
ENSG00000140992 2414 2621.5 3313 2255 2284 2079 2775 3768.5 1844 4463 4686 2115 4399.5 1030 4950 5255 4281 2912.5 2432.5 1055 2290 2473.5 3114 3119 2246.5 2222 2446 1113 2464.5 3036 2583 2572.5 2780.25 4423 2438 1309 1928.5 3276.5 2495.5 1353 606 3357 2644 3475 5231 2441.5 2581 2070.5 2712.5 909.5 2429 5256 2541.5 3140.5 2347 2756 5921 2326 3943 3618.5 3414.5 2541 3227 5986.5 3039 2873 2541 2509.25 2182.5 2040 2451.5 4633 2193 2587 2499 2034 3141 2366 2846 2578.5 2395.5 2103 2607 3051
ENSG00000141385 2921 3207.75 1694 1276 4022.5 670 2716.5 3919 2428.75 2100 2503 1587 1908 1290 2009 1783.5 2965 3850.5 4524 1186 1478 2893 8999 2824 1634 1472 3099 1983 1702.5 4713 2739 1737.5 2229 2455.5 2958 1736 2022.5 10062 6164.5 596 1819 1726 1965 5954.5 1401 3832 2596 2188.5 1892.5 966.5 2369 1928 2303.5 3350 1888 2730 3125 2062 1849 6373.5 3413 2327 7318 7912 2687 2724 1886 3388.5 1948.5 1679 2608 2173 2620.5 4607 1441 1815 3145 1942.5 3541 2811.5 1538 2053 2893.5 3724
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment