Personal tools

User:Hisa/SemanticSbox: Difference between revisions

From FANTOM5_SSTAR

Jump to: navigation, search
No edit summary
No edit summary
 
(42 intermediate revisions by the same user not shown)
Line 1: Line 1:
<html>
<html>
<style type="text/css" title="currentStyle">
<script type="text/javascript" src="/resource_browser/rb_js/datatables/media/js/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="/resource_browser/rb_js/datatables/extras/TableTools/media/js/TableTools.min.js"></script>
 
<script type="text/javascript" src="/resource_browser/rb_js/d3.v2.min.js"></script>
 
  <style type="text/css">
@import "/resource_browser/rb_js/datatables/media/css/jquery.dataTables.css";
@import "/resource_browser/rb_js/datatables/media/css/jquery.dataTables.css";
</style>
@import "/resource_browser/rb_js/datatables/extras/TableTools/media/css/TableTools.css";
<script type="text/javascript" language="javascript" src="/resource_browser/rb_js/datatables/media/js/jquery.dataTables.min.js"></script>
 
</script>
.axis path,
.axis line {
    fill: none;
    stroke: black;
    shape-rendering: crispEdges;
}
 
.axis text {
    font-family: sans-serif;
    font-size: 12px;
}
 
circle {
  stroke: none;
}
 
circle:hover {
  stroke: slategray;
  stroke-width: 15px;
}
 
#progress {
    -webkit-border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color:    white;
    font-size: 18px;
    font-weight: bold;
    height: 80px;
    padding: auto;
    line-height:80px;
    margin: 0 auto;
    text-align: center;
    top:120px;
    width:120px;
}
 
 
  </style>
 
 
<div id="elem01"></div>
  <div id="mes01"></div>
 
</html>
</html>
{{#gene_exptable:Hg19|{{#ask:[[Category:FFCP]][[Short description::p1@ACTB]]|mainlabel=-|?phase1_expression|link=none|format=list|headers=hide|limit=1|intro=p1@ACTB,|searchlabel=}}|{{#ask:[[Category:FFCP]][[Short description::p2@ACTB]]|mainlabel=-|?phase1_expression|link=none|format=list|headers=hide|limit=1|intro=p2@ACTB,|searchlabel=}}|{{#ask:[[Category:FFCP]][[Short description::p3@ACTB]]|mainlabel=-|?phase1_expression|link=none|format=list|headers=hide|limit=1|intro=p3@ACTB,|searchlabel=}}|{{#ask:[[Category:FFCP]][[Short description::p4@ACTB]]|mainlabel=-|?phase1_expression|link=none|format=list|headers=hide|limit=1|intro=p4@ACTB,|searchlabel=}}|{{#ask:[[Category:FFCP]][[Short description::p5@ACTB]]|mainlabel=-|?phase1_expression|link=none|format=list|headers=hide|limit=1|intro=p5@ACTB,|searchlabel=}}|{{#ask:[[Category:FFCP]][[Short description::p6@ACTB]]|mainlabel=-|?phase1_expression|link=none|format=list|headers=hide|limit=1|intro=p6@ACTB,|searchlabel=}}|{{#ask:[[Category:FFCP]][[Short description::p7@ACTB]]|mainlabel=-|?phase1_expression|link=none|format=list|headers=hide|limit=1|intro=p7@ACTB,|searchlabel=}}|{{#ask:[[Category:FFCP]][[Short description::p8@ACTB]]|mainlabel=-|?phase1_expression|link=none|format=list|headers=hide|limit=1|intro=p8@ACTB,|searchlabel=}}|{{#ask:[[Category:FFCP]][[Short description::p9@ACTB]]|mainlabel=-|?phase1_expression|link=none|format=list|headers=hide|limit=1|intro=p9@ACTB,|searchlabel=}}|{{#ask:[[Category:FFCP]][[Short description::p10@ACTB]]|mainlabel=-|?phase1_expression|link=none|format=list|headers=hide|limit=1|intro=p10@ACTB,|searchlabel=}}
}}
<html>
<div id='chart'></div>
<script type="text/javascript">
//width
w = 750;
//height
h = 400;
//padding
var pad = 50;
//color generator
var c10 = d3.scale.category10();
//chart body
var svg;
var oTable =  $('#gene_exptable').dataTable({
    "sScrollY": "300px",
    "bPaginate": false,
    "bScrollCollapse": true,
    "iDisplayLength": -1,
    "aaSorting": [[1,'desc']],
    "aoColumnDefs": [ { "asSorting": [ "desc", "asc" ], "aTargets": [ "_all" ] }  , { "bSortable": false, "aTargets": [ 0 ] }],
    "fnDrawCallback": function() {drawchart()}
    // "fnDrawCallback": function() {$('#mes01').text($("#gene_exptable tr")[1].cells[5].innerHTML);}
  });
function drawchart(){
d3.select("#svg01").remove();
      var data = [];
    var mx1 = [];
    var sname = [];
svg = d3.select("#chart").append('svg:svg').attr("id", "svg01").attr("width", w).attr("height", h);
      for (i2=1, len2=11; i2<len2; i2++){
      var plots = [];
      for (i1=1, len1=$('#gene_exptable tr').length; i1<len1; i1++) {
            plots.push([i1, parseFloat($("#gene_exptable tr")[i1].cells[i2].innerHTML)]);
      }
      sname.push(name+i2);
      mx1.push(d3.max(plots, function(d) { return d[1]; }));
      data.push(plots);
    }
$('#mes01').text(sname);
var xScale = d3.scale.linear()
                    .domain([0, data[0].length])
                    .range([pad, w - pad]);
var yScale = d3.scale.linear().domain([0, d3.max(mx1)]).range([h - pad, pad]);
for(i1=0, len1=data.length; i1 < len1; i1++){
svg.selectAll("circle"+i1).data(data[i1]).enter().append("circle")
      .attr("cx", function(d) {return xScale(d[0]);})
      .attr("cy", function(d) {return yScale(d[1]);})
      .attr("r", 3)
      .style("fill", c10(i1))
      .append("svg:title").text(function(d, i) { return "TPM: " + d[1]; });
// legends
svg.append("circle")
      .attr("cx", w - 150)
      .attr("cy", pad + 20 * i1)
      .attr("r", 5)
      .style("fill", c10(i1));
svg.append("text")
      .attr("x", w - 140)
      .attr("y", pad + 22 * i1)
      .text(sname[i1])
      .on("mouseover", function(){updatetxt()})
      .style("fill", c10(i1));
}
var yAxis = d3.svg.axis()
                  .scale(yScale)
                  .orient("left")
                  .ticks(5);


== TFBS overrepresentation ==
svg.append("g")
{{#info:The values shown are the p-values for overrepresentation of the motif in this coexpression cluster. So a small p-value means a strong overrepresentation. <br>Analyst: Michiel de Hoon}}
    .attr("class", "axis")
<html>
    .attr("transform", "translate(" + pad + ",0)")
<script type="text/javascript">
    .call(yAxis);
$(document).ready(function() {
 
var motifs = ['1-CAATGACATC','1-CSGATGAAT','1-GGAGGAGRAGG','1-TATKWNTTCMGTGTY','1-TGAGTCATTTCCT','1-TGGTCCYSCTGGTCC','1-TWTTWVNSCS','10-ACTTCCTCTTCC','10-ATCGATTG','10-CGCGTGTTA','10-GCTTHCTCAT','10-GGGAAGTGACG','10-GGTTTCTTTT','10-GTAACHDC','10-GTGATGTCACT','10-GTTTCTACG','10-TCCTCCGATT','10-TCTATGAC','10-TCTBACKA','10-TGCGTCATTT','10-TGTCACTGCG','10-VGGAAACGAC','10-WGACAAC','10-YGAGTCHYTD','11-AACGAATCGA','11-AGGCAGTACCTC','11-CGGGGAAATTAC','11-CGTCTGCGTA','11-GATTTCACAACC','11-GCTGTGACGA','11-GTAACGCCCC','11-TCGGGGTGTTTT','11-TSACGCSTCAGT','11-TTTGAGGAAGTTG','11-WACGYACGTG','11-WGTGKKTTTT','12-CGCGGCGGCGGCT','12-CSCCYTTTWA','12-GCNGTGTRAC','12-GTAGCWCSGC','12-GWTYKNKNTTG','12-GYTTGWTATTG','12-SSARTSACMRCA','12-TGCAGTNTTT','12-TGWCACGGCG','13-AATTCCG','13-CBTACGCAA','13-CGTCACAGGAAAC','13-GGATTTGT','13-GGCTGKTACT','13-GTACTTTCCA','13-GTGTCABACG','13-MGCTGACACACGC','13-STTYSWCWTCY','14-ACWTCYTGCTT','14-ATTACGC','14-CACTTCCGTAA','14-RSCGSWVTCT','14-TACGCCC','14-TSTCRGCTR','14-TTAMCGKAA','15-AGRMAACCG','15-CWTCTGACTV','15-NNNTDAGHAA','15-TKABWMGC','16-ATGACTCACTT','16-GCTTYCTS','16-GTKACGDWGC','16-RBYKBTWACG','16-TCAGCTGACG','18-GAAGTGGGTGG','2-AATGCGTT','2-AWTSGCT','2-CCTTTTAA','2-CGBTDATTA','2-GATYGSAS','2-SVGTTTAAA','2-TATATAGCCG','2-TTCAAATCTCCCGC','2-TTWAACCS','3-AAACYGGTTTG','3-AGAAAAVGGAACT','3-ATAAADCGC','3-AWTTSSYS','3-CCCCCCTTTTTT','3-CGCCCATT','3-CGCTATTTAAAC','3-GATGATGAT','3-GCGGGAGGGAGT','3-GCGTTTGAAT','3-MASTTCCCCTTW','3-TTTCGAAT','4-AAAACGCGC','4-AAAWRCG','4-CGGAGAGATA','4-CGTRGTTT','4-CTCTCTCTC','4-GAAGTRCCCAAGAAA','4-GCAAATCGGA','4-GCYTCTYTBTTTTT','4-GGGTTAAA','4-HCTTHYBCTD','4-NTGTTTTTTTKTC','4-SGSTTAWA','4-TAAAAAGACAGC','4-TTAAACCG','4-TTTAAAGCGG','4-TTYCTCTKCWGMR','5-ATTGGGCGG','5-AWTKGKCGVG','5-CCCGCCTTTA','5-CCGGATTTA','5-CGGGAAACTAC','5-CGRAWAT','5-CGTCACTMGT','5-CGTCTGATA','5-GCGAATA','5-GCGATTCAAA','5-GCTTSYTGTTTW','5-GGTGRTTDTT','5-GTTGTTGC','5-NCTSTCTCTTTN','5-SBGTYRTYWGRS','5-TCATTTGC','5-TCTGCGTCAC','5-TGWTTKCCWG','5-TTAATCAGCC','5-WCCGWTAR','6-AAAAACGCCC','6-AAGTTCCGC','6-AATCTCGC','6-AATTAGAGCG','6-ACGCTTGTTT','6-AGGAAGTGAYGYAA','6-AGTTCTGTTTT','6-ATATTTGGCA','6-ATGATTAGTCA','6-ATTAAAGGCG','6-CGCCTAAA','6-CGHYWRA','6-CGTTTCA','6-CTGATYACA','6-CTTCCTGTCAGAG','6-CTTGTGA','6-GAGAGGGGGTGG','6-GCGGTTTTTT','6-GCTGCAAATAGA','6-GTTAACCAATC','6-HNCGKHTKWGRA','6-HWDHHWNCASC','6-TCGGCTG','6-TDTAAWSAG','6-TTACAGC','6-TTAHWHCG','6-YWARCGCN','7-AAAAGMGCS','7-AGTCATATGAC','7-AVAVAGSAAAST','7-CGTCTGA','7-CGTTGCTA','7-GCAGAYTK','7-GCAKYWTTTWT','7-GCTGCATT','7-GCWGCATT','7-GTGTGTGTGT','7-GTKTGWCWC','7-SCGYTTAA','7-TGTTTCT','7-TSTCWCG','7-TTTYTTTTTTCTG','8-AGCAGAAGTG','8-ATCCRAGC','8-CACACYCMCACA','8-CATACGC','8-CGGWGAYW','8-GAAACAACCT','8-GAATGAAAGCG','8-GGHAACT','8-GTTGTTKKGKT','8-HTTTGCGC','8-MHRGTVACTTBN','8-SGAAATGACA','8-TAWAARGCG','8-TBTSTGTBTGC','8-TCGGAGT','8-TGCTGATT','8-TTTGCGGAAGC','8-WNHTTDCGTKTYW','9-AAACAACGCC','9-AAACTGCA','9-AATRCATCGC','9-ACTTMCTHC','9-CGGAAACAA','9-CTGTTGCGT','9-CTSASTCACTG','9-GATCCGCTA','9-GCTAGCAAAA','9-GGGGTTT','9-GTAGGAT','9-HGASWSVGYG','9-RTKACAA','9-TAGTTACCG','9-TATAWACGC','9-TATCCGMH','9-TDDCRNMASM','9-TTTCSCT','9-VCTTKCTKC','AAAAGCACTGC,motif961','AAAARAAG,motif736','AAACCCCCCC,motif448','AAACTATA,motif684','AAATAGGGAAGT,motif184','AAGACTACCA,motif544','AAGATCGAS,motif641','AAGCAGGAA,motif523','AATGGGG,motif928','AATTCCCGG,motif577','AAYAATC,motif540','ACGAGACGGATGA,motif936','ACGTCACAA,motif25','AGACTCAGA,motif213','AGAGAAAGAG,motif627','AGCASAGGA,motif488','AGKAGGACCA,motif546','AGTCTCAAGTT,motif953','AGTTTCCGC,motif855','AHR_si','AIRE','AIRE_f2','ALX1','AP2A_f2','ARAGGGGK,motif561','ARI3A_do','ARI5B_f1','AR_LNCAP-AR-ChIP-Seq/Homer','ATAGCGAC,motif639','ATCATTTCC,motif740','ATF5_si','ATF6','ATGATGGTGGC,motif457','ATGGAGGTCGTC,motif943','ATTGGCGGCG,motif630','ATYACCC,motif728','BPTF_si','CAAACTTAGCC,motif480','CAATGATGG,motif925','CACACTTTTTA,motif844','CACGAAG,motif790','CACTTCCTTCCT,motif281','CAGAGTTCTAG,motif792','CARGWTGY,motif333','CATCCATGTC,motif545','CATTAGGACCAG,motif719','CATTRTGACG,motif6','CAYAAST,motif606','CCAATCCGGT,motif823','CCAGTACA,motif794','CCCACAGACTCAG,motif858','CCCCCTATTA,motif248','CCCCCTCTCTCC,motif580','CCCGAAC,motif795','CCCGATCC,motif958','CCGCCAATYC,motif849','CCGTCTYT,motif741','CDC5L_si','CDX1,2,4','CDX2_f1','CEBPB_ThioMac-CEBPb-ChIP-Seq/Homer','CEBPB_f1','CGATCCGGAT,motif767','CGCTCTCKCT,motif771','CGCTTAAA,motif359','CGGAAACGGAA,motif609','CGGCAGCGGA,motif385','CGGCTTAAA,motif768','CGTVTCAYCA,motif126','CKACTAC,motif854','CNhs10624_bl_f0','CNhs10625_bl_f0','CNhs10632_bl_f0','CNhs10633_bl_f0','CNhs10634_bl_f2','CNhs10636_bu_f0','CNhs10643_bu_f2','CNhs10731_bl_f2','CNhs10734_bu_f2','CNhs10751_bu_f2','CNhs10752_bl_f1','CNhs10839_bl_f1','CNhs10843_bu_f2','CNhs10846_bu_f1','CNhs10846_bu_f2','CNhs11047_bu_f2','CNhs11051_bl_f2','CNhs11051_bu_f2','CNhs11068_bl_f2','CNhs11073_bl_f1','CNhs11073_bl_f2','CNhs11185_bl_f2','CNhs11245_bl_f2','CNhs11253_bl_f1','CNhs11257_bl_f2','CNhs11258_bu_f2','CNhs11265_bl_f2','CNhs11267_bl_f2','CNhs11270_bl_f2','CNhs11276_bl_f2','CNhs11279_bu_f2','CNhs11284_bl_f2','CNhs11287_bu_f1','CNhs11290_bl_f2','CNhs11331_bl_f2','CNhs11332_bl_f1','CNhs11341_bu_f1','CNhs11344_bl_f2','CNhs11354_bl_f2','CNhs11372_bl_f2','CNhs11377_bl_f2','CNhs11380_bl_f1','CNhs11380_bu_f0','CNhs11716_bu_f2','CNhs11725_bl_f1','CNhs11725_bu_f2','CNhs11729_bl_f2','CNhs11741_bu_f1','CNhs11747_bu_f2','CNhs11750_bl_f0','CNhs11756_bl_f2','CNhs11756_bu_f1','CNhs11774_bu_f2','CNhs11777_bu_f2','CNhs11781_bl_f0','CNhs11781_bu_f1','CNhs11786_bl_f2','CNhs11786_bu_f1','CNhs11789_bl_f2','CNhs11793_bu_f1','CNhs11811_bl_f2','CNhs11822_bl_f1','CNhs11822_bl_f2','CNhs11828_bl_f2','CNhs11828_bu_f0','CNhs11828_bu_f1','CNhs11828_bu_f2','CNhs11833_bl_f2','CNhs11840_bl_f0','CNhs11840_bl_f2','CNhs11842_bl_f0','CNhs11848_bu_f2','CNhs11853_bu_f1','CNhs11862_bl_f2','CNhs11882_bl_f2','CNhs11882_bu_f2','CNhs11892_bl_f2','CNhs11893_bl_f1','CNhs11893_bu_f2','CNhs11931_bu_f2','CNhs11986_bl_f2','CNhs11986_bu_f1','CNhs11990_bl_f1','CNhs11990_bl_f2','CNhs12001_bu_f0','CNhs12008_bl_f1','CNhs12008_bu_f2','CNhs12013_bu_f2','CNhs12028_bl_f2','CNhs12030_bl_f0','CNhs12035_bu_f0','CNhs12036_bu_f2','CNhs12040_bu_f2','CNhs12043_bu_f1','CNhs12065_bl_f2','CNhs12087_bl_f0','CNhs12087_bu_f1','CNhs12092_bu_f2','CNhs12093_bu_f2','CNhs12096_bl_f2','CNhs12098_bu_f2','CNhs12102_bl_f1','CNhs12103_bl_f1','CNhs12105_bl_f2','CNhs12128_bu_f2','CNhs12192_bu_f0','CNhs12316_bu_f2','CNhs12323_bu_f0','CNhs12341_bl_f2','CNhs12345_bu_f2','CNhs12348_bl_f1','CNhs12494_bl_f0','CNhs12494_bu_f1','CNhs12497_bu_f2','CNhs12498_bl_f2','CNhs12500_bl_f2','CNhs12500_bu_f2','CNhs12502_bl_f1','CNhs12518_bu_f0','CNhs12522_bl_f0','CNhs12523_bl_f1','CNhs12524_bu_f2','CNhs12525_bl_f0','CNhs12530_bu_f2','CNhs12545_bl_f2','CNhs12546_bu_f2','CNhs12566_bl_f1','CNhs12574_bl_f1','CNhs12622_bl_f1','CNhs12623_bl_f2','CNhs12623_bu_f2','CNhs12625_bl_f1','CNhs12625_bu_f2','CNhs12626_bu_f0','CNhs12626_bu_f2','CNhs12627_bu_f2','CNhs12703_bl_f2','CNhs12727_bl_f1','CNhs12733_bl_f2','CNhs12825_bl_f2','CNhs12838_bl_f1','CNhs12839_bu_f2','CNhs12846_bl_f1','CNhs12846_bl_f2','CNhs12849_bu_f0','CNhs12849_bu_f1','CNhs12851_bu_f0','CNhs12856_bu_f2','CNhs12857_bu_f2','CNhs12859_bu_f2','CNhs12920_bl_f2','CNhs12922_bu_f1','CNhs12952_bu_f0','CNhs13059_bl_f0','CNhs13060_bl_f1','CNhs13063_bl_f2','CNhs13063_bu_f1','CNhs13068_bl_f2','CNhs13099_bl_f0','CNhs13099_bu_f2','CNhs13156_bu_f0','CNhs13435_bu_f1','CNhs13439_bl_f1','CNhs13449_bl_f1','CNhs13458_bl_f1','CNhs13458_bl_f2','CNhs13458_bu_f2','CNhs13460_bu_f2','CNhs13464_bu_f2','CNhs13480_bl_f0','CNhs13498_bu_f1','CNhs13505_bu_f1','CNhs13549_bu_f2','CNhs13550_bl_f1','CNhs13793_bl_f2','CNhs13800_bu_f2','CNhs13801_bl_f2','CNhs13847_bu_f0','COE1_f2','CRACCWA,motif272','CRATCGC,motif590','CREB1_f1','CRX_Retina-Crx-ChIP-Seq/Homer','CSAAYWAG,motif787','CTACCAGTAC,motif314','CTACTTC,motif605','CTBGTCBTC,motif677','CTCCTGTTCC,motif443','CTCF_f2','CTCTCGATC,motif564','CTCTTAGTCATG,motif820','CTCTTCCAGTTC,motif857','CTSTTTCTTTAAG,motif929','CTTCTTTCC,motif732','DBP','DDIT3_f1','DMC1_Testis-DMC1-ChIP-Seq/Homer','E2F4_do','EBNA1_Raji-EBNA1-ChIP-Seq(GSE30709)/Homer','EGR1_K562-EGR1-ChIP-Seq/Homer','EOMES_f1','EPAS1_si','ESR1_do','ETV1_GIST48-ETV1-ChIP-Seq/Homer','EVI1_f1','FOSL2_f1','FOXA1_LNCAP-FOXA1-ChIP-Seq/Homer','FOXC2_f1','FOXD1_si','FOXM1','FOXO1_si','FOXP3','FOXP3_f1','FOX(C1,C2)','FUBP1_f1','GAAAAGC,motif664','GAAGSCG,motif658','GAATTSGA,motif806','GAGAGACAAAGG,motif729','GATA1..3','GATA1_si','GATCGCT,motif797','GATTGGTGCAG,motif851','GATTTTTWT,motif458','GAYCAGG,motif573','GCAGGAAACCACAG,motif220','GCCGCAAAC,motif342','GCCGCTTTAA,motif411','GCGCGCG,motif507','GCGGACTGAA,motif633','GCM1_f1','GCTCCGCTC,motif508','GFI1_f1','GGAAGAACTAG,motif201','GGACAAG,motif387','GGACCCCCTA,motif709','GGACCGCCG,motif717','GGAGKYTTAA,motif746','GGATGACGAA,motif197','GGCAACTTCT,motif638','GGGAATTTTTG,motif407','GGGGGAAAGAAA,motif661','GGGTGACTCGTA,motif209','GGGTTGCGTCA,motif101','GGTGACACAKC,motif113','GLI3_si','GTACGRC,motif321','GTAGATGTTGA,motif291','GTAGTCGA,motif591','GTATTAGG,motif834','GTCACCCTCA,motif402','GTGAATG,motif414','GTGACTSGG,motif114','GTTCCTATT,motif134','GTTGCTCAACAG,motif852','GTTGTAGCCC,motif679','GTWCAACA,motif210','GZF1','HES1_f1','HEY2_f1','HLTF_f1','HMGA2_f1','HNF1A','HNF4A_f1','HNF4G_f1','HNF6_f1','HOXC9_Ainv15-Hoxc9-ChIP-Seq/Homer','HOX(A5,B5)','HSF1_f2','HXA13_f1','HXB7_si','HXC8_f1','HXD13_f1','HXD4_f1','HXD9_f1','INSM1_f1','IRF2_f1','IRF5_f1','ISL1_f1','KAISO_f1','KCCGCCDY,motif582','KLF12','KLF4_mES-Klf4-ChIP-Seq/Homer','KLF8_f1','LHX2_f1','LHX3,4','MAFA_f1','MCR_f1','MEF2(A,B,C,D)','MEIS1_f2','MLXPL_f1','MSX2_f1','MTE(core)','MTF1_f1','MYBB_f1','MYB_ERMYB-Myb-ChIPSeq(GSE22095)/Homer','NAAAGTT,motif944','NANOG_mES-Nanog-ChIP-Seq/Homer','NEUROD1_Islet-NeuroD1-ChIP-Seq(GSE30298)/Homer','NFAC2_f1','NFAT5_f1','NFATC1_motifA:Jurkat-NFATC1-ChIP-Seq/Homer','NFIX','NFKB1_REL_RELA','NFYB_f1','NKX2-1,4','NKX21_f1','NKX22_si','NKX3-2','NR0B1_si','NR1H4_f1','NR1I3_f2','NR1I3_si','NR2C2_Hela-TR4-ChIP-Seq/Homer','NR6A1_do','NRF1_MCF7-NRF1-ChIP-Seq/Homer','P73_si','PAX3_Rh4-PAX3:FKHR-ChIP-Seq/Homer','PAX4','PAX5_f1','PAX5_motifB:GM12878-PAX5-ChIP-Seq/Homer','PAX6_f1','PAX8_f1','PBX3_GM12878-PBX3-ChIP-Seq/Homer','PKNX1_si','PLAG1_f1','PLAG1_si','PO3F2_si','PO5F1_do','PO6F1_f1','POU1F1','POU3F1..4','POU5F1_mES-Oct4-ChIP-Seq/Homer','PRGR_f1','PROP1_f1','PRRX2_f1','PTF1A_f1','PURA_f1','RAGAGAGAGAGAG,motif269','RARA_f1','RARG_do','REST_f1','RFX1_NPC-Rfx1-ChIP-Seq/Homer','RGAAAGSAGAAG,motif654','RGCGGCSGC,motif262','RORA_f1','RRCGAACC,motif176','RREB1_si','RTATACTKT,motif723','RUNX1..3','RXR(A,B,G)','SGAGMKTAK,motif947','SMAD3_f1','SNAI2_f1','SOX17_f2','SOX18_f1','SOX2','SP1_f1','SP4_f1','SPDEF_VCaP-SPDEF-ChIP-Seq/Homer','SPZ1','SREBP1A_HepG2-Srebp1a-ChIP-Seq/Homer','SRF_do','STAT4_CD4-Stat4-ChIP-Seq/Homer','STCGWAG,motif238','STTCGVC,motif597','SUH_f1','TAACTGTACA,motif845','TACAGTATTC,motif699','TACCGGATC,motif263','TACCGGT,motif604','TACCTCCGC,motif788','TACTGYAG,motif560','TAGAMCCTAT,motif779','TAGGAAAC,motif60','TAGGCGA,motif945','TAGTCTGACG,motif940','TATCCCATT,motif724','TBP','TBX20_Heart-Tbx20-ChIP-Seq(GSE29636)/Homer','TBX3_f1','TBX5_HL1-Tbx5.biotin-ChIP-Seq/Homer','TCATCAGTTCC,motif933','TCATCCACATC,motif938','TCCTATTG,motif697','TCGCGCYG,motif706','TCKCGCT,motif355','TCSAGMT,motif441','TCSCGAGCTG,motif769','TCTCGCT,motif467','TCTCKCTC,motif323','TCTTCAA,motif816','TCTTCTTCTTC,motif479','TEAD1_f1','TEF','TF7L2_f1','TFCP2L1_mES-Tfcp2l1-ChIP-Seq/Homer','TFDP1','TGAATTGGCTG,motif563','TGACATCATAATG,motif44','TGACCAA,motif340','TGACGAA,motif9','TGCAGCATTA,motif668','TGGACGAA,motif481','TGGGAADTGTAGT,motif425','TGGTYCTMRT,motif814','TGIF1_f1','TGIF1_si','TGTGTGCG,motif245','THB_do','TKAAAGBGRCA,motif293','TLX1..3_NFIC(dimer)','TLX1_f1','TMCGYCR,motif946','TOPORS','TP53_Saos-p53-ChIP-Seq/Homer','TTAAGCGGC,motif366','TTATTCTGCTG,motif789','TTCCKGTCYG,motif829','TTCGTTCC,motif579','TTCTGCACC,motif618','TTCTTCAGCG,motif357','TTGATGATGATG,motif935','TTGCAGCGTA,motif613','TTGGCTCGGC,motif500','TTGGGRAATTTA,motif177','TTGTAGGT,motif707','TTHCTVTW,motif188','TTTTTCGCGGCT,motif429','TTYCGSTTC,motif442','TYTYTYTYTYYYYY,motif247','USF1_GM12878-Usf1-ChIP-Seq/Homer','VDR_f2','WYCKMKCG,motif815','YCYCTTT,motif332','YTCKCTT,motif512','YTGGTCCTGVT,motif924','ZBT7A_f1','ZBTB16','ZBTB4!METH_f1','ZBTB4_si','ZBTB6_si','ZEP2_si','ZFP161','ZN219_f1','ZN333_f1','ZN350_f1','ZN384_f1','ZN423_f1','ZN589_f1','ZNF143','motif10','motif1026','motif103','motif1032','motif1044','motif1049','motif106','motif1068','motif1097','motif11','motif119','motif123','motif125','motif134','motif136','motif143','motif145','motif162','motif177','motif183','motif189','motif196','motif198','motif199','motif210','motif218','motif222','motif233','motif238','motif247','motif252','motif260','motif261','motif263','motif27','motif282','motif29','motif290','motif293','motif297','motif3','motif30','motif300','motif301','motif307','motif313','motif316','motif324','motif33','motif335','motif351','motif357','motif359','motif361','motif365','motif37','motif373','motif378','motif382','motif41','motif415','motif424','motif432','motif44','motif440','motif441','motif443','motif445','motif459','motif46','motif461','motif463','motif468','motif475','motif477','motif478','motif486','motif489','motif494','motif498','motif499','motif515','motif516','motif517','motif527','motif550','motif553','motif554','motif558','motif560','motif561','motif563','motif568','motif57','motif577','motif585','motif588','motif602','motif606','motif61','motif614','motif624','motif627','motif64','motif647','motif66','motif660','motif667','motif668','motif670','motif679','motif680','motif682','motif684','motif686','motif688','motif74','motif75','motif77','motif80','motif816','motif822','motif827','motif830','motif835','motif837','motif839','motif843','motif858','motif861','motif867','motif87','motif882','motif885','motif886','motif890','motif895','motif897','motif898','motif9','motif90','motif906','motif909','motif915','motif929','motif931','motif935','motif943','motif944','motif950','motif953','motif956','motif957','motif963','motif965','motif969','motif97','motif970','motif977','motif981','motif990','motif991','motif999','motif_AAGTCN','motif_ACAGTN','motif_ACNGGT','motif_ACTGGN','motif_AGGGCN','motif_AGNCGT','motif_AGNCTT','motif_ANAGCT','motif_ANCAGT','motif_ANCGCT','motif_ANCTGT','motif_ANGACT','motif_ANGCCT','motif_ANGTCT','motif_ANTGCT','motif_ATGNCT','motif_ATNGCT','motif_CAAGTNNCA','motif_CACNGT','motif_CAGNAT','motif_CAGNCT','motif_CAGNGT','motif_CAGTNT','motif_CANCTG','motif_CANGTT','motif_CANTTG','motif_CATGNT','motif_CCAGCN','motif_CCANGT','motif_CCANTG','motif_CCCTNA','motif_CCNAGT','motif_CCNGAT','motif_CCNGCA','motif_CCNGGA','motif_CGACNT','motif_CGANCT','motif_CGNTGA','motif_CNAATG','motif_CNACTG','motif_CNAGGT','motif_CNAGTCTC','motif_CNAGTT','motif_CNATGG','motif_CNCAGT','motif_CNCATG','motif_CNGAAT','motif_CNGACT','motif_CNGATG','motif_CNGATT','motif_CNGCAG','motif_CNGCAT','motif_CNGCCA','motif_CNGGAT','motif_CNGGTA','motif_CTAGNG','motif_CTAGNT','motif_CTANGG','motif_CTATGN','motif_CTCANG','motif_CTGGGN','motif_CTGGNG','motif_CTNAGT','motif_CTNATG','motif_CTNGAT','motif_CTNTAG','motif_CTTANG','motif_CTTNAG','motif_GAACNT','motif_GAAGNT','motif_GACNCT','motif_GACNGT','motif_GACNTG','motif_GAGNCT','motif_GANACT','motif_GANCAT','motif_GANGTC','motif_GANTCT','motif_GANTTC','motif_GATCTN','motif_GATNTC','motif_GCAANT','motif_GCAATN','motif_GCACNT','motif_GCANTG','motif_GCNACT','motif_GCNCAT','motif_GCNGAT','motif_GCTCANGG','motif_GCTNAT','motif_GGACTN','motif_GGAGCN','motif_GGANTC','motif_GGCANT','motif_GGCNAT','motif_GGCNCA','motif_GGGACN','motif_GGNATC','motif_GGNCAT','motif_GNAATC','motif_GNACAT','motif_GNACCT','motif_GNACTT','motif_GNATCC','motif_GNATCT','motif_GNATTC','motif_GNCAAT','motif_GNCATC','motif_GNCATG','motif_GNCATT','motif_GNCTAG','motif_GNGAGC','motif_GNGCTA','motif_GNTACC','motif_GNTACT','motif_GNTCAT','motif_GTAANC','motif_GTACTN','motif_GTANCT','motif_GTCANC','motif_GTCANG','motif_GTCATN','motif_GTCNAG','motif_GTNACC','motif_GTNACT','motif_GTNATC','motif_GTNCAT','motif_GTNGAC','motif_GTTNAC','motif_TAACNG','motif_TAANGC','motif_TACANG','motif_TACTGN','motif_TAGCNG','motif_TAGGNC','motif_TAGNCT','motif_TAGNGC','motif_TAGNTC','motif_TAGTNC','motif_TANAGC','motif_TCAANG','motif_TCACNG','motif_TCAGNT','motif_TCCNGC','motif_TCNAGT','motif_TCNGAG','motif_TCNGGA','motif_TCTNAG','motif_TGAANC','motif_TGACNC','motif_TGACNG','motif_TGANAC','motif_TGANCT','motif_TGCNAG','motif_TGCTAN','motif_TGGAGN','motif_TGNACC','motif_TGNACT','motif_TGNCAC','motif_TGNCAT','motif_TGNCCA','motif_TGNCTA','motif_TGNGAC','motif_TGNTCA','motif_TGTANC','motif_TGTNAC','motif_TNAAGC','motif_TNAGCA','motif_TNAGCC','motif_TNAGGC','motif_TNATGC','motif_TNCAAG','motif_TNCACG','motif_TNCAGA','motif_TNCAGT','motif_TNCATG','motif_TNCGCA','motif_TNCTAG','motif_TNCTGA','motif_TNGACA','motif_TNGGAC','motif_TNGGCA','motif_TNTAGC','motif_TNTGCA','motif_TTACNG','motif_TTCANG','motif_TTCNGA','motif_TTGACN','motif_TTGCAN','motif_TTGNCA','motif_TTNAGC','motif_TTNCAG'];
 
//var pval = [</html>{{{tfbs_overrepresentation}}}<html>];
}
var pval = [0.571237,0.901494,0.998145,0.846517,0.48273,0.749244,0.814577,1,0.720638,0.631483,0.00639468,0.924499,0.810545,0.888312,0.945215,0.91366,0.929769,0.55913,0.345363,0.445659,0.986386,0.792814,0.962325,0.894487,0.803613,0.995118,0.413455,0.878726,0.997391,0.976657,0.998512,0.945611,0.502177,0.993517,0.928561,0.851228,1,0.814286,0.369229,0.741424,0.544584,0.615283,0.979117,0.661035,0.726485,0.170153,0.437387,0.244307,0.989137,0.957946,0.459881,0.629369,0.938498,0.976284,0.969802,0.777238,0.809771,0.999896,0.956129,0.259504,0.317442,0.946523,0.0361013,0.804971,0.0226525,0.590183,0.999946,0.685468,0.858748,0.827627,0.999986,0.50301,0.871795,0.716752,0.249982,0.484109,0.349637,0.819613,0.76664,0.24348,0.017303,0.86115,0.495744,0.845316,0.999103,0.999985,0.115509,0.998754,1,0.452096,0.857292,0.857671,0.978563,0.844392,0.967336,0.328833,0.999984,0.998328,0.886611,0.570178,0.662051,0.96324,0.696488,0.764933,0.605655,0.798495,0.929909,0.998425,0.997446,0.997758,0.983021,0.734434,0.946759,0.49541,0.774909,0.378901,0.545103,0.386848,0.996779,0.848157,0.992647,0.95335,0.979184,0.262903,0.918145,0.077106,0.878591,0.435218,0.850689,0.996137,0.418401,0.348662,0.895497,0.221512,0.755855,0.987542,0.726921,0.641059,0.724157,0.140942,0.586532,0.966733,0.935694,0.957007,1,0.760927,0.760238,0.850047,0.781859,0.725958,0.246072,0.707621,0.946097,0.643976,0.498373,0.991718,0.0817713,0.930557,0.869299,0.731552,0.96891,0.895841,0.950429,0.943598,0.993608,0.682707,0.791148,0.96644,0.793817,0.988461,0.944362,0.817907,0.964165,0.881575,0.618734,0.973179,0.97935,0.881344,0.980278,0.751148,0.960936,0.00552089,0.655353,0.848497,0.791042,0.992172,0.996228,0.792341,0.963704,0.99443,0.630769,0.540028,0.877715,0.999482,0.311195,0.842499,0.603912,0.68796,0.748627,0.93651,0.872912,0.218798,0.698954,0.690799,0.97608,0.972475,0.998115,0.998188,0.993011,0.995424,0.10868,0.793026,0.871123,0.836533,0.676738,0.835859,0.967462,0.773243,0.711515,0.785277,0.83659,0.850172,0.474134,0.99077,0.339621,0.417227,0.996754,0.451667,0.908404,0.214543,0.999986,0.98906,0.000304498,0.952682,0.741512,0.976483,0.00302303,0.946013,0.96667,0.999032,0.883373,0.999989,0.757571,0.84446,0.338298,0.813757,0.836375,0.6641,0.996881,0.0541655,0.990017,0.984536,0.999621,0.362363,0.905262,0.794582,0.987074,0.972735,0.937005,0.999994,0.913736,0.994769,0.998928,0.967329,0.739819,0.834048,0.0473974,0.714963,0.991906,0.950706,0.994673,0.714008,0.996,1,0.67392,0.773926,0.901628,0.997705,0.99979,0.971046,0.999291,0.982238,0.999819,1,0.995011,0.999893,0.72311,0.907162,0.996986,0.943259,0.673444,0.941889,0.999879,0.667334,0.931353,0.692259,0.917536,0.977593,0.994864,0.971464,0.999702,0.860484,0.539725,0.924651,0.881027,0.782202,0.652037,0.210087,0.908649,0.794614,0.543941,0.169226,0.987587,0.96481,0.955583,0.982487,0.916189,0.401471,0.999835,0.792708,0.879284,0.914052,0.861223,0.98711,0.994955,0.999986,0.998763,0.99968,0.998363,0.951887,0.989813,0.99916,0.751333,0.674835,0.999347,0.6288,0.984175,0.957275,0.999282,0.368189,1,1,0.999747,0.687963,0.9766,0.892853,0.149045,0.983245,0.999527,0.999711,0.84807,0.999305,0.973464,0.919646,0.811754,0.998116,0.966374,0.131268,0.556254,0.89034,0.991749,0.99998,0.998654,0.991346,0.973541,0.999239,0.983929,0.943234,0.958625,0.848183,0.996397,0.527979,0.797585,0.299749,0.660517,0.996449,0.989966,0.955848,0.267757,0.976376,0.999971,0.966026,1,0.929774,1,0.999712,0.989076,0.787328,0.737416,0.889215,0.941543,0.997198,0.966151,0.885833,0.968191,1,0.69563,0.393134,0.718836,0.995261,0.947279,0.999045,0.999982,0.986279,0.608932,0.545482,0.976656,0.939821,0.47962,0.981289,0.950857,0.997051,0.409149,0.959707,0.333931,0.985687,0.785889,0.982557,0.998954,0.941296,0.945163,0.998039,0.858977,0.841621,0.950413,0.999469,0.999566,0.999979,0.658627,0.999067,0.993606,0.972637,0.426699,0.976608,0.777681,0.999704,0.138647,0.926375,0.999974,0.899078,0.355251,0.90269,0.877918,0.959159,0.289542,0.681414,0.997949,1,0.933908,0.875364,0.992638,0.992481,0.607938,0.962173,0.999993,0.914919,0.764168,0.888782,0.710235,0.378061,0.662831,0.936891,0.964338,0.974329,0.999998,1,0.909266,0.305702,0.904427,0.818483,0.814553,0.265113,0.996123,0.930012,0.993572,0.709804,0.999988,0.499819,0.999897,0.967013,0.999992,0.838715,0.568641,0.946642,0.252344,0.875612,0.86159,0.229724,0.930548,0.512769,0.138801,0.961453,0.610681,0.999883,0.830768,0.96269,0.584515,0.0203167,0.929059,0.94851,0.472101,0.911183,0.999419,0.838212,0.100246,0.99967,0.849359,0.970964,0.999739,0.273642,0.994914,0.95209,0.993359,0.970284,0.189833,0.352033,0.999935,0.62999,0.866029,0.168856,0.976649,0.930074,0.998886,0.689738,0.455038,0.825513,0.610429,0.978487,0.879172,0.958726,0.980339,0.900595,0.993618,0.493788,0.64573,0.998704,0.999997,0.996527,0.430951,1.04611e-20,3.95243e-07,0.73657,0.398036,0.086077,0.514844,0.988514,0.367783,0.0047974,0.649454,0.805112,0.0122812,0.0195277,0.931729,0.993641,0.971973,0.00366299,0.994731,0.999607,0.724516,0.999935,0.999216,0.0712437,7.09076e-06,0.999962,0.736137,0.643783,0.291615,0.974197,0.305514,0.999999,0.847512,0.068033,0.864959,0.637973,0.00344154,0.87028,0.235393,0.959851,0.0221577,0.996582,0.945809,0.643431,0.806038,0.58796,0.232801,0.370345,0.999997,0.0928882,0.693917,0.171194,0.0161267,0.971884,0.999921,0.322122,0.843951,0.894426,0.803881,0.972655,2.18214e-05,0.455026,0.606393,0.454287,0.999998,0.999104,0.150254,0.569118,0.314586,0.913408,0.186378,0.52023,0.149026,0.734678,4.36522e-10,0.994415,1,0.999888,0.0555223,0.996498,0.992297,0.988193,0.868837,1,0.662863,0.557423,0.98292,0.222821,0.977946,0.398355,0.941362,0.964876,0.0285217,0.404324,0.754775,0.209873,1,1,0.998606,0.984436,0.987636,0.930937,0.816424,0.856627,0.741039,0.390138,0.579627,0.267045,0.823752,0.528937,0.996814,0.987562,0.770712,0.635265,0.828837,0.62665,0.682423,0.037133,0.304683,0.925121,0.172582,0.895291,0.997714,0.951651,0.998916,0.99823,0.916901,0.995627,0.983548,0.997543,0.308156,0.995948,0.950225,0.91635,0.427107,0.736505,1,0.887688,0.942724,0.713787,0.687524,0.936855,0.748035,0.552237,0.998431,0.926026,0.716304,0.976763,0.865169,0.228316,0.946702,0.954508,0.965217,0.901182,0.0452138,0.83538,0.676617,0.977516,0.894298,0.947517,0.995007,0.928759,0.910542,0.988633,0.246093,0.943688,0.629307,0.999129,0.878481,0.999459,0.992723,0.81003,0.961391,0.952781,0.475569,0.998583,1,0.0878924,0.998674,0.980236,0.470027,0.990198,1,1,0.755572,0.999393,0.904353,0.0936781,0.973392,0.998709,0.686463,0.997839,0.28366,0.875499,0.998217,0.928662,0.77267,0.988923,0.995147,0.605741,0.809546,0.734461,0.994911,0.975008,0.228847,0.619686,0.0764055,0.999227,0.848757,0.983497,0.948533,0.648322,0.477612,1,1,0.401333,0.982263,0.998225,0.960619,0.971577,0.92974,0.999405,0.976772,0.948144,0.00202283,0.59355,0.900907,0.820326,0.996738,0.974307,0.968739,0.474319,0.999632,0.998434,0.999994,0.850726,0.999996,0.999959,0.513421,0.999998,0.991361,0.941413,1,0.968556,0.999999,0.861049,0.999997,0.999999,1,0.642065,0.0149179,0.389176,0.803582,0.935179,0.978495,0.00325306,0.999277,0.0161369,0.528344,0.800867,0.743017,0.286167,0.416422,0.155462,0.971641,0.00475121,0.628223,0.115023,0.853474,0.982277,0.886456,0.939079,0.973345,0.786767,0.731468,0.927133,0.978661,0.716809,0.997459,0.961509,0.624928,1,0.995156,0.109727,0.499199,0.4973,0.997193,0.999978,0.336155,0.870638,0.949788,0.677362,0.999985,0.401278,0.738455,0.00237778,0.915508,0.820418,0.936163,0.998056,0.905665,0.974777,0.980167,0.960079,0.931393,0.939526,0.818147,0.0607335,0.974182,0.778175,0.537432,0.34026,0.589239,0.924548,0.847921,0.994454,0.951836,0.966459,0.539679,0.31845,0.696539,0.686759,0.463896,0.995362,0.670165,0.790695,0.597224,0.482811,0.937616,0.602557,0.00193966,0.750291,0.981533,0.82932,0.899829,0.402505,0.98258,0.928531,0.952394,0.677075,0.892426,0.785417,0.319435,0.996708,0.538184,0.919566,0.00282221,0.516668,0.417925,0.904322,0.882925,0.927037,0.986624,0.519612,0.86342,0.203361,0.586196,0.65321,0.731432,0.19027,0.808102,0.900112,0.779122,0.400742,0.907247,0.196904,0.676159,0.91129,0.942969,0.8761,0.978547,0.916341,0.926943,0.157729,0.576646,0.977484,0.272238,0.144702,0.913735,0.487104,0.375865,0.343074,0.562996,0.468623,0.969629,0.996778,0.567429,0.480788,0.719222,0.88873,0.993762,0.635662,0.999435,0.0311193,0.856381,0.296416,0.993549,0.850547,0.745535,0.930893,0.943736,0.991753,0.943735,0.99761,0.778926,0.806134,0.931655,0.562853,0.443777,0.736728,0.608691,0.832567,0.652548,0.364059,0.303866,0.202917,0.368043,0.907121,0.933754,0.418235,0.90266,0.647338,0.960742,0.917543,0.882266,0.811195,0.253612,0.640134,0.0401238,0.468659,0.595583,0.462877,0.00227624,0.260057,0.387571,0.548929,0.363041,0.943918,0.768047,0.441796,0.942198,0.931723,0.577484,0.309322,0.335952,0.756363,0.519579,0.851268,0.971406,0.827259,0.92182,0.725023,0.634233,0.0221479,0.800444,0.112167,0.929979,0.616009,0.901482,0.861792,0.995318,0.609635,0.958031,0.840136,0.861551,0.986792,0.16363,0.879826,0.183077,0.817205,0.473043,0.624806,0.870408,0.723962,0.980234,0.0623834,0.881971,0.116067,0.961227,0.208433,0.921236,0.556639,0.0150409,0.794397,0.738494,0.0880516,0.897228,0.285406,0.250534,0.743328,0.155713,0.76191,0.974709,0.00876183,0.918784,0.319832,0.828349,0.835734,0.896861,0.987955,0.00322128,0.655149,0.795039,0.785926,0.867808,0.00634714,0.512056,0.629255,0.0201971,0.183057,0.349292,0.642891,0.809033,0.185868,0.508805,0.240455,0.505704,0.847218,0.216471,0.19668,0.392335,0.215934,0.314096,0.257428,0.987454,0.976861,0.966545,0.645164,0.403238,0.979007,0.858081,0.6986,0.846187,0.649707,0.666346,0.773596,0.997872,0.0561886,0.846183,0.749438,0.127765,0.99907,0.441136,0.181771,0.921984];
 
var data = [];
// drawchart();
for(i1=0;i1<motifs.length;i1++){
 
data.push([motifs[i1],pval[i1]]);
function updatetxt(t){
  $('#mes01').text(t+'yes!');
}
}


    $('#tfbs_overexpression_table').dataTable({
//"aaData": [["one", 1],["two", 3],["three", 0]],
"sScrollY": "300px",
"bScrollCollapse": true,
"bPaginate": false,
"bFilter": false,
"bInfo": false,
"aaData": data,
"aoColumns": [{ "sTitle": "Motifs", "sWidth": "200pt", "fnRender": function(obj) {
return sReturn = "<a href=\"/resource_browser/index.php/MacroAPE_1083:"+obj.aData[ obj.iDataColumn ]+"\">"+obj.aData[ obj.iDataColumn ]+"</a>";
} },{ "sTitle": "p-value" }],
"aaSorting": [[ 1, "asc" ]],
});
});
</script>
</script>
<table id="tfbs_overexpression_table"></table>
 
</html>
</html>

Latest revision as of 15:22, 19 November 2012

Sample

p1@ACTB

p2@ACTB

p3@ACTB

p4@ACTB

p5@ACTB

p6@ACTB

p7@ACTB

p8@ACTB

p9@ACTB

p10@ACTB

Adipocyte - breast, donor1.CNhs11051.11376-118A80.000.000.000.000.000.000.000.000.000.00
Adipocyte - breast, donor2.CNhs11969.11327-117E47972.2536.8341.9617.3411.1313.4921.849.6313.9210.28
Adipocyte - omental, donor1.CNhs11054.11473-119C610453.3257.2321.2820.7212.9713.397.4714.5211.287.33
Adipocyte - omental, donor2.CNhs12067.11474-119C711241.2348.0438.0338.0322.0237.0321.0222.0242.036.00
Adipocyte - omental, donor3.CNhs12068.11475-119C87147.3536.6522.3521.9012.5130.8412.9611.1745.148.05
Adipocyte - perirenal, donor1.CNhs12069.11476-119C910420.9633.1529.6641.8717.4543.6220.0615.7037.5110.47
Adipocyte - subcutaneous, donor1.CNhs12494.11259-116F810023.0855.7310.1317.7312.6637.992.5335.4620.262.53
Adipocyte - subcutaneous, donor2.CNhs11371.11336-117F43841.4925.908.846.326.956.952.533.796.321.26
Adipocyte - subcutaneous, donor3.CNhs12017.11408-118E42962.6315.677.318.626.278.364.186.273.131.57
Alveolar Epithelial Cells, donor1.CNhs11325.11510-119G713276.0235.3936.3718.1818.684.1814.254.421.976.88
Alveolar Epithelial Cells, donor2.CNhs12084.11590-120G634850.9867.69111.6591.4129.3146.7555.8224.4262.1016.05
Amniotic Epithelial Cells, donor1.CNhs11341.11533-120A38673.4329.4925.7822.0616.162.628.084.812.185.68
Amniotic Epithelial Cells, donor3.CNhs12125.11694-123A29175.9333.5021.6319.7810.0218.737.914.484.225.80
Anulus Pulposus Cell, donor1.CNhs10876.11248-116E63817.4516.466.317.306.062.853.474.081.112.60
Anulus Pulposus Cell, donor2.CNhs12064.11463-119B53318.9420.556.968.625.634.644.648.624.311.33
Aortic smooth muscle cell response to FGF2, 00hr00min, biol_rep1 (LK1).CNhs13339.12642-134G58014.1235.6328.9129.5830.9317.4814.7926.2212.108.07
Aortic smooth muscle cell response to FGF2, 00hr00min, biol_rep2 (LK2).CNhs13358.12740-135I48657.1046.4120.4927.1222.9015.079.0411.459.648.44
Aortic smooth muscle cell response to IL1b, 00hr00min, biol_rep1 (LK31).CNhs13349.12652-134H69440.7249.6619.7220.4524.8312.4213.1513.8812.426.57
Aortic smooth muscle cell response to IL1b, 00hr00min, biol_rep2 (LK32).CNhs13369.12750-136A57725.9345.3823.9130.7431.7214.6413.1716.5912.6912.69
Astrocyte - cerebellum, donor1.CNhs11321.11500-119F611187.0353.9316.8718.5910.104.319.114.435.174.68
Astrocyte - cerebellum, donor2.CNhs12081.11580-120F511975.0448.7627.5425.709.3823.6611.6318.7713.268.16
Astrocyte - cerebellum, donor3.CNhs12117.11661-122F510668.4344.5127.9024.767.2112.8513.176.584.075.96
Astrocyte - cerebral cortex, donor1.CNhs10864.11235-116D25639.9917.1714.0315.4610.026.015.724.295.446.01
Astrocyte - cerebral cortex, donor2.CNhs11960.11316-117D26196.8527.6528.0613.006.845.349.175.203.425.47
Astrocyte - cerebral cortex, donor3.CNhs12005.11392-118C67330.1835.6530.6319.2111.559.5410.805.023.776.65
B lymphoblastoid cell line: GM12878 ENCODE, biol_rep1.CNhs12331.10821-111C27928.9624.3835.009.557.2613.5315.1311.397.566.72
B lymphoblastoid cell line: GM12878 ENCODE, biol_rep2.CNhs12332.10822-111C39016.8624.2225.4510.519.8511.5810.848.547.553.69
B lymphoblastoid cell line: GM12878 ENCODE, biol_rep3.CNhs12333.10823-111C47863.6822.9826.929.927.959.059.927.566.535.19
Basophils, donor1.CNhs12546.12241-129G98678.4018.4919.2716.5218.090.7912.1912.190.796.69
Basophils, donor2.CNhs12563.12242-129H14160.718.0614.2011.909.981.154.995.760.774.22
Basophils, donor3.CNhs12575.12243-129H27277.7514.4014.2414.7112.697.907.437.282.634.95
Bronchial Epithelial Cell, donor4.CNhs12054.11453-119A412656.7533.1022.0730.3411.959.1910.112.765.523.68
Bronchial Epithelial Cell, donor5.CNhs12058.11457-119A819589.5346.0843.0736.7515.9653.0121.695.126.939.94
Bronchial Epithelial Cell, donor6.CNhs12062.11461-119B37342.9432.1719.9728.106.6626.6211.091.484.074.44
Burkitt's lymphoma cell line:DAUDI.CNhs10739.10422-106C83370.998.297.596.515.191.242.941.081.392.63
Burkitt's lymphoma cell line:RAJI.CNhs11268.10476-106I82262.919.815.976.116.260.572.561.561.001.56
CD133+ stem cells - adult bone marrow derived, pool1.CNhs12552.12224-129F12936.593.232.064.403.820.291.474.400.000.59
CD14+ Monocytes, donor1.CNhs10852.11224-116B96652.9313.8517.1722.7118.282.228.317.206.657.76
CD14+ Monocytes, donor2.CNhs11954.11305-117B96376.5113.6418.6510.036.026.427.222.413.813.61
CD14+ Monocytes, donor3.CNhs11997.11381-118B45287.6914.1125.6118.4515.418.467.606.298.254.34
CD14+ monocyte derived endothelial progenitor cells, donor1.CNhs10858.11229-116C52839.706.7212.549.4012.327.392.912.913.813.81
CD14+ monocyte derived endothelial progenitor cells, donor2.CNhs11897.11310-117C52640.714.538.426.483.240.651.621.942.591.62
CD14+ monocyte derived endothelial progenitor cells, donor3.CNhs11904.11386-118B92759.924.385.676.956.187.982.581.803.090.77
CD14+ monocytes - mock treated, donor1.CNhs13468.11863-125A94630.3514.2519.059.748.8712.659.458.436.116.25
CD14+ monocytes - mock treated, donor2.CNhs13484.11873-125C14036.097.5611.348.6910.967.564.533.023.024.16
CD14+ monocytes - mock treated, donor3.CNhs13491.11883-125D24080.998.989.7011.649.705.589.224.853.403.64
CD14+ monocytes - treated with B-glucan, donor1.CNhs13474.11869-125B66305.5719.0620.6919.529.999.3011.854.885.819.99
CD14+ monocytes - treated with B-glucan, donor2.CNhs13489.11879-125C75266.6510.6913.9814.8016.047.4011.518.225.354.52
CD14+ monocytes - treated with B-glucan, donor3.CNhs13495.11889-125D85628.6010.8411.4616.4111.468.055.886.194.656.19
CD14+ monocytes - treated with BCG, donor1.CNhs13465.11860-125A67075.7918.1234.8125.8914.9610.6416.118.067.7711.22
CD14+ monocytes - treated with BCG, donor2.CNhs13475.11870-125B75711.3613.5813.8318.448.9711.279.227.686.403.59
CD14+ monocytes - treated with BCG, donor3.CNhs13543.11880-125C84585.6311.1110.647.098.515.206.393.071.422.60
CD14+ monocytes - treated with Candida, donor1.CNhs13473.11868-125B56467.4312.0722.0616.8914.488.9613.1010.343.458.27
CD14+ monocytes - treated with Candida, donor2.CNhs13488.11878-125C65054.1517.439.6811.6214.855.165.819.041.296.45
CD14+ monocytes - treated with Candida, donor3.CNhs13494.11888-125D74525.954.0618.9612.199.482.7112.199.480.004.06
CD14+ monocytes - treated with Cryptococcus, donor1.CNhs13472.11867-125B45405.5713.1822.4016.007.159.4112.249.606.788.28
CD14+ monocytes - treated with Cryptococcus, donor2.CNhs13487.11877-125C54495.319.2810.378.7311.467.378.737.103.274.64
CD14+ monocytes - treated with Cryptococcus, donor3.CNhs13546.11887-125D63532.209.895.848.9911.014.944.945.623.823.15
CD14+ monocytes - treated with Group A streptococci, donor1.CNhs13469.11864-125B17979.3016.8332.7520.8115.3015.6119.2817.4511.9411.02
CD14+ monocytes - treated with Group A streptococci, donor2.CNhs13532.11874-125C25440.719.958.996.4210.911.932.897.060.962.89
CD14+ monocytes - treated with Group A streptococci, donor3.CNhs13492.11884-125D35900.4410.239.5911.5119.828.316.3910.875.755.11
CD14+ monocytes - treated with IFN + N-hexane, donor1.CNhs13466.11861-125A74333.2611.2113.8513.192.646.276.934.296.273.30
CD14+ monocytes - treated with IFN + N-hexane, donor2.CNhs13476.11871-125B84200.518.989.579.577.188.987.383.793.196.58
CD14+ monocytes - treated with IFN + N-hexane, donor3.CNhs13490.11881-125C93543.218.959.3811.936.393.415.113.412.132.56
CD14+ monocytes - treated with Salmonella, donor1.CNhs13471.11866-125B38182.7421.1928.4418.5713.0613.0620.606.977.848.71
CD14+ monocytes - treated with Salmonella, donor2.CNhs13485.11876-125C46585.6418.1613.0515.3211.357.945.113.406.246.81
CD14+ monocytes - treated with Salmonella, donor3.CNhs13493.11886-125D56196.4612.4617.4415.5722.427.4710.596.853.114.36
CD14+ monocytes - treated with Trehalose dimycolate (TDM), donor1.CNhs13467.11862-125A86370.6613.8228.8917.3419.358.0412.317.796.786.78
CD14+ monocytes - treated with Trehalose dimycolate (TDM), donor2.CNhs13483.11872-125B95250.2913.0418.7721.3826.078.349.399.394.174.17
CD14+ monocytes - treated with Trehalose dimycolate (TDM), donor3.CNhs13544.11882-125D14332.927.3810.648.478.255.216.084.781.952.17
CD14+ monocytes - treated with lipopolysaccharide, donor1.CNhs13470.11865-125B26192.639.6924.2215.136.663.0310.294.243.633.63
CD14+ monocytes - treated with lipopolysaccharide, donor2.CNhs13533.11875-125C35266.006.269.9412.5212.151.474.794.051.103.68
CD14+ monocytes - treated with lipopolysaccharide, donor3.CNhs13545.11885-125D44207.6811.7112.977.2815.194.114.756.013.805.06
CD14+CD16+ Monocytes, donor1.CNhs13541.11789-124B78015.0322.3916.0615.639.933.806.136.762.113.17
CD14+CD16+ Monocytes, donor2.CNhs13208.11801-124D18436.9918.2813.1818.9211.276.176.179.994.255.53
CD14+CD16+ Monocytes, donor3.CNhs13549.11912-125G47567.2114.265.6612.587.132.733.354.611.681.47
CD14+CD16- Monocytes, donor1.CNhs13224.11788-124B66837.5612.1312.2410.227.414.945.056.402.703.26
CD14+CD16- Monocytes, donor2.CNhs13216.11799-124C86751.809.7613.0711.718.265.867.216.162.703.45
CD14+CD16- Monocytes, donor3.CNhs13540.11910-125G25860.549.3210.1311.898.363.054.182.891.773.21
CD14-CD16+ Monocytes, donor1.CNhs13229.11790-124B87733.8221.956.2716.254.561.143.9910.832.573.99
CD14-CD16+ Monocytes, donor2.CNhs13207.11800-124C98355.6923.6715.9118.908.957.968.558.954.972.59
CD14-CD16+ Monocytes, donor3.CNhs13548.11911-125G37747.8819.7310.0513.1511.694.024.028.042.563.29
CD19+ B Cells (pluriselect), donor090309, donation1.CNhs12177.12189-129B22733.227.041.761.760.000.000.001.760.001.76
CD19+ B Cells (pluriselect), donor090309, donation2.CNhs12179.12194-129B72739.436.554.373.823.280.001.092.730.551.64
CD19+ B Cells (pluriselect), donor090309, donation3.CNhs12181.12199-129C32693.437.124.456.234.450.002.670.890.890.00
CD19+ B Cells (pluriselect), donor090325, donation1.CNhs12531.12151-128F92068.364.274.695.125.551.280.005.550.850.85
CD19+ B Cells (pluriselect), donor090325, donation2.CNhs12175.12174-128I52898.877.215.216.414.001.601.602.403.201.60
CD19+ B Cells (pluriselect), donor090612, donation1.CNhs12183.12204-129C82434.653.452.303.450.570.001.150.570.001.15
CD19+ B Cells (pluriselect), donor090612, donation2.CNhs12185.12209-129D42968.754.633.319.255.290.003.312.640.001.32
CD19+ B Cells (pluriselect), donor090612, donation3.CNhs12188.12214-129D92482.453.821.914.773.820.001.910.950.000.95
CD19+ B Cells, donor1.CNhs12343.11544-120B52373.056.8311.386.833.421.712.282.282.281.14
CD19+ B Cells, donor2.CNhs12352.11624-122B42743.574.705.875.875.291.764.111.762.941.17
CD19+ B Cells, donor3.CNhs12354.11705-123B42381.185.7311.094.974.213.822.291.911.911.15
CD34+ Progenitors, donor1.CNhs13227.11545-120B62036.761.323.975.290.000.005.290.000.000.00
CD34+ Progenitors, donor2.CNhs12205.11625-122B51884.432.802.243.921.121.120.560.560.000.00
CD34+ stem cells - adult bone marrow derived, donor1, tech_rep1.CNhs12588.12225-129F22892.227.645.006.585.533.421.583.161.841.58
CD4+ T Cells, donor1.CNhs10853.11225-116C12009.787.087.874.136.101.182.561.770.981.77
CD4+ T Cells, donor2.CNhs11955.11306-117C12439.0212.589.838.652.362.753.543.932.750.79
CD4+ T Cells, donor3.CNhs11998.11382-118B53095.7414.1919.749.464.731.854.324.322.262.26
CD4+CD25+CD45RA+ naive regulatory T cells expanded, donor1.CNhs13203.11793-124C25094.6712.877.199.533.185.353.016.693.013.18
CD4+CD25+CD45RA+ naive regulatory T cells, donor1.CNhs13238.11780-124A72352.188.150.983.911.961.961.301.301.300.98
CD4+CD25+CD45RA+ naive regulatory T cells, donor2.CNhs13235.11796-124C52248.403.313.312.840.470.470.471.890.470.95
CD4+CD25+CD45RA+ naive regulatory T cells, donor3.CNhs13513.11907-125F82608.737.797.790.001.950.005.841.955.841.95
CD4+CD25+CD45RA- memory regulatory T cells expanded, donor1.CNhs13204.11794-124C35827.4436.7713.7013.267.5810.925.356.352.014.57
CD4+CD25+CD45RA- memory regulatory T cells, donor1.CNhs13195.11782-124A93865.5220.035.019.133.242.362.062.951.772.06
CD4+CD25+CD45RA- memory regulatory T cells, donor2.CNhs13206.11797-124C64033.4716.175.108.864.433.771.993.321.111.77
CD4+CD25+CD45RA- memory regulatory T cells, donor3.CNhs13538.11908-125F93411.8615.986.505.967.041.622.441.901.351.35
CD4+CD25+CD45RA- memory regulatory T cells expanded, donor2.CNhs13811.11916-125G87175.2936.8926.9020.8820.1110.8910.639.6110.638.71
CD4+CD25+CD45RA- memory regulatory T cells expanded, donor3.CNhs13812.11920-125H36642.5235.3824.7120.5517.439.7511.977.936.897.80
CD4+CD25-CD45RA+ naive conventional T cells expanded, donor2.CNhs13813.11913-125G57624.3338.3133.8737.0024.343.9514.1410.0311.186.91
CD4+CD25-CD45RA+ naive conventional T cells expanded, donor3.CNhs13814.11917-125G97368.0433.1627.0820.1718.793.0410.228.0111.055.53
CD4+CD25-CD45RA+ naive conventional T cells expanded, donor1.CNhs13202.11791-124B95627.9826.088.9811.308.694.063.482.901.744.35
CD4+CD25-CD45RA+ naive conventional T cells, donor1.CNhs13223.11784-124B22281.396.824.453.411.931.931.932.970.890.59
CD4+CD25-CD45RA+ naive conventional T cells, donor2.CNhs13205.11795-124C41833.196.421.873.482.140.801.340.540.541.07
CD4+CD25-CD45RA+ naive conventional T cells, donor3.CNhs13512.11906-125F72458.686.271.055.233.144.181.053.141.051.05
CD4+CD25-CD45RA- memory conventional T cells expanded, donor1.CNhs13215.11792-124C16652.7343.0611.2217.459.865.335.106.122.835.55
CD4+CD25-CD45RA- memory conventional T cells, donor1.CNhs13239.11786-124B43253.9312.652.304.601.151.920.773.830.771.15
CD4+CD25-CD45RA- memory conventional T cells, donor2.CNhs13237.11798-124C73149.008.932.415.842.061.721.374.121.371.03
CD4+CD25-CD45RA- memory conventional T cells, donor3.CNhs13539.11909-125G13097.4711.139.369.365.823.042.283.040.001.01
CD8+ T Cells (pluriselect), donor090309, donation1.CNhs12176.12186-129A83355.4511.795.107.653.821.273.192.872.552.23
CD8+ T Cells (pluriselect), donor090309, donation2.CNhs12178.12191-129B43092.659.121.956.511.300.651.302.601.952.60
CD8+ T Cells (pluriselect), donor090309, donation3.CNhs12180.12196-129B93319.9319.962.858.550.000.001.900.000.000.00
CD8+ T Cells (pluriselect), donor090325, donation1.CNhs12201.12148-128F63388.247.082.713.161.662.861.961.661.511.05
CD8+ T Cells (pluriselect), donor090325, donation2.CNhs12199.12171-128I23566.098.452.945.122.304.101.661.661.541.41
CD8+ T Cells (pluriselect), donor090612, donation1.CNhs12182.12201-129C52854.6714.995.009.991.250.003.753.751.252.50
CD8+ T Cells (pluriselect), donor090612, donation2.CNhs12184.12206-129D13722.6112.0810.187.103.552.603.083.081.182.60
CD8+ T Cells (pluriselect), donor090612, donation3.CNhs12187.12211-129D63400.2910.671.643.281.640.822.461.640.820.82
CD8+ T Cells, donor1.CNhs10854.11226-116C22686.0117.949.076.258.471.813.833.632.223.23
CD8+ T Cells, donor2.CNhs11956.11307-117C22877.6616.3112.035.623.741.345.885.354.811.07
CD8+ T Cells, donor3.CNhs11999.11383-118B62300.6811.1510.577.975.363.773.772.462.752.03
Cardiac Myocyte, donor1.CNhs12341.11525-119I44020.3826.827.3119.5017.070.002.449.7526.827.31
Cardiac Myocyte, donor2.CNhs12350.11605-120I35623.1628.8412.0714.084.693.356.042.681.341.34
Cardiac Myocyte, donor3.CNhs12571.11686-122I37986.3023.0213.6814.589.215.883.587.802.694.48
Chondrocyte - de diff, donor1.CNhs11923.11261-116G15634.8427.8311.579.7610.8410.846.513.2526.022.89
Chondrocyte - de diff, donor2.CNhs11372.11338-117F65733.8035.5914.0416.5412.539.025.515.510.001.50
Chondrocyte - de diff, donor3.CNhs12020.11410-118E64384.6518.5413.189.859.566.817.3910.578.403.04
Chondrocyte - re diff, donor2.CNhs11373.11339-117F71833.9325.4513.525.574.773.187.160.800.003.98
Chondrocyte - re diff, donor3.CNhs12021.11411-118E72834.6519.957.3013.143.896.334.872.921.952.43
Ciliary Epithelial Cells, donor1.CNhs10871.11242-116D96810.1031.3918.5319.0012.384.827.475.862.175.29
Ciliary Epithelial Cells, donor2.CNhs11966.11323-117D97822.3939.2525.7223.737.988.4314.638.657.766.43
Ciliary Epithelial Cells, donor3.CNhs12009.11399-118D47948.9636.6331.0120.9911.079.4011.518.344.928.17
Clontech Human Universal Reference Total RNA, pool1.CNhs10608.10000-101A13159.2815.724.723.474.063.211.442.100.851.38
Corneal Epithelial Cells, donor1.CNhs11336.11526-119I514288.7539.7137.8926.5920.407.6511.293.284.376.56
Corneal Epithelial Cells, donor3.CNhs12123.11687-122I410181.0023.7325.5814.465.935.567.429.644.822.97
Dendritic Cells - monocyte immature derived, donor1, tech_rep1.CNhs10855.11227-116C39874.6831.1628.2434.4026.295.5212.669.7411.687.79
Dendritic Cells - monocyte immature derived, donor1, tech_rep2.CNhs11062.11227-116C310743.9837.7926.4722.8119.685.229.2312.0116.198.88
Dendritic Cells - monocyte immature derived, donor3.CNhs12000.11384-118B711495.1544.4160.1041.0826.1919.8122.7413.6911.5715.29
Dendritic Cells - plasmacytoid, donor1.CNhs10857.11228-116C43273.764.5310.978.354.531.191.672.620.721.91
Dendritic Cells - plasmacytoid, donor2.CNhs12196.11309-117C43683.085.155.155.721.140.003.430.571.140.57
Dendritic Cells - plasmacytoid, donor3.CNhs12200.11385-118B82788.531.493.714.090.741.860.370.741.110.00
Endothelial Cells - Aortic, donor0.CNhs10837.11207-116A19486.7354.2617.8922.6613.9110.149.544.573.587.16
Endothelial Cells - Aortic, donor1.CNhs12495.11263-116G38320.1953.337.7424.954.304.300.860.863.441.72
Endothelial Cells - Aortic, donor2.CNhs11375.11340-117F88486.5443.059.7212.157.985.214.172.083.824.17
Endothelial Cells - Aortic, donor3.CNhs12022.11412-118E87313.3961.6211.3119.797.351.702.260.571.705.09
Endothelial Cells - Artery, donor1.CNhs12496.11264-116G47607.6244.8910.077.138.3911.336.2911.339.232.94
Endothelial Cells - Artery, donor2.CNhs11977.11341-117F98820.2838.7928.3416.787.4317.6114.5811.289.356.60
Endothelial Cells - Artery, donor3.CNhs12023.11413-118E911142.3662.4926.9623.837.9415.4715.055.642.9310.24
Endothelial Cells - Lymphatic, donor1.CNhs10865.11236-116D34111.9321.199.8212.405.943.884.391.814.393.10
Endothelial Cells - Lymphatic, donor2.CNhs11901.11317-117D34358.8524.907.4712.811.782.491.421.423.911.78
Endothelial Cells - Lymphatic, donor3.CNhs11906.11393-118C74532.1215.067.369.373.011.674.692.682.011.34
Endothelial Cells - Microvascular, donor1.CNhs11925.11265-116G58846.1337.0612.4916.118.4610.076.043.6322.962.42
Endothelial Cells - Microvascular, donor2.CNhs11376.11342-117G16672.9136.4910.6422.0510.646.0810.641.526.082.28
Endothelial Cells - Microvascular, donor3.CNhs12024.11414-118F19466.1941.9824.6516.8413.4219.0411.2320.9913.188.05
Endothelial Cells - Thoracic, donor1.CNhs11926.11266-116G66314.6127.576.9911.776.622.944.413.317.354.04
Endothelial Cells - Thoracic, donor2.CNhs11978.11343-117G27199.7333.2222.6817.8213.777.2916.206.482.430.81
Endothelial Cells - Umbilical vein, donor1.CNhs10872.11243-116E14876.0325.7213.488.577.237.143.933.752.682.86
Endothelial Cells - Umbilical vein, donor2.CNhs11967.11324-117E14431.3128.072.9211.456.746.293.372.252.471.80
Endothelial Cells - Umbilical vein, donor3.CNhs12010.11400-118D54732.7234.357.6614.3011.825.183.271.352.033.60
Endothelial Cells - Vein, donor1.CNhs12497.11267-116G710673.9064.3913.8012.274.6010.736.133.071.531.53
Endothelial Cells - Vein, donor2.CNhs11377.11344-117G312903.3779.749.4913.292.855.705.700.000.950.95
Endothelial Cells - Vein, donor3.CNhs12026.11416-118F37168.1350.3814.8416.307.3311.916.964.584.035.13
Eosinophils, donor2.CNhs12548.12245-129H48130.8511.862.6417.136.592.647.919.220.002.64
Eosinophils, donor3.CNhs12549.12246-129H510578.6515.5119.3934.9015.510.007.767.760.000.00
Esophageal Epithelial Cells, donor1.CNhs11323.11507-119G412133.8829.2233.1424.4220.066.116.548.292.183.05
Ewing's sarcoma cell line:Hs 863.T.CNhs11836.10705-109H36437.7746.2223.8547.2124.8513.4216.4012.9216.4014.91
Fibroblast - Aortic Adventitial, donor1.CNhs10874.11245-116E38121.9548.3718.4917.4818.2313.3010.5113.048.234.43
Fibroblast - Aortic Adventitial, donor2 (nuclear fraction).CNhs12581.14332-155F34067.4823.174.246.753.313.182.522.382.253.84
Fibroblast - Aortic Adventitial, donor3 (nuclear fraction).CNhs12400.14311-155C93288.8722.666.029.182.588.613.442.2910.330.57
Fibroblast - Aortic Adventitial, donor3.CNhs12011.11401-118D66675.5745.7526.6010.6415.9612.069.9311.7012.066.74
Fibroblast - Cardiac, donor1.CNhs12498.11268-116G87999.7535.3219.6220.1812.9014.026.735.057.856.17
Fibroblast - Cardiac, donor2.CNhs11378.11345-117G418527.3687.5333.0950.1710.674.2718.159.6121.355.34
Fibroblast - Cardiac, donor3.CNhs12027.11417-118F48826.0144.1524.1719.2415.0521.7114.0611.355.928.14
Fibroblast - Cardiac, donor4.CNhs11909.11452-119A33775.3019.929.346.222.491.872.491.870.931.24
Fibroblast - Cardiac, donor5.CNhs12057.11456-119A73971.4122.5012.809.704.0417.784.856.205.393.91
Fibroblast - Cardiac, donor6.CNhs12061.11460-119B25120.9327.9519.2911.773.6016.028.834.096.382.78
Fibroblast - Choroid Plexus, donor1.CNhs11319.11492-119E77033.1331.3313.629.545.604.995.452.882.723.33
Fibroblast - Choroid Plexus, donor2.CNhs12344.11572-120E64405.4424.785.198.645.194.615.761.732.881.15
Fibroblast - Conjunctival, donor1.CNhs11339.11531-120A14293.7114.2911.254.223.280.702.112.110.472.11
Fibroblast - Dermal, donor1.CNhs12499.11269-116G94051.2124.664.064.373.757.803.439.0512.171.56
Fibroblast - Dermal, donor2.CNhs11379.11346-117G58612.9846.7810.2723.967.425.132.280.572.852.85
Fibroblast - Dermal, donor3.CNhs12028.11418-118F54720.1919.8813.9010.167.027.175.8311.3611.214.48
Fibroblast - Dermal, donor4.CNhs12052.11450-119A14336.1521.3715.859.513.4114.445.991.764.112.94
Fibroblast - Dermal, donor5.CNhs12055.11454-119A54183.9327.6813.2710.682.1011.015.022.105.672.91
Fibroblast - Dermal, donor6.CNhs12059.11458-119A94438.6723.8815.3111.103.098.155.061.406.181.54
Fibroblast - Gingival, donor1.CNhs10866.11237-116D43909.1420.4211.6411.235.312.044.493.672.252.65
Fibroblast - Gingival, donor2.CNhs11961.11318-117D45079.5727.1517.0710.815.288.847.375.165.774.67
Fibroblast - Gingival, donor3.CNhs12006.11394-118C82664.8814.368.474.131.865.372.891.340.521.55
Fibroblast - Gingival, donor4 (GFH2).CNhs10848.11222-116B76859.5327.3214.2616.6313.072.384.758.324.753.56
Fibroblast - Gingival, donor5 (GFH3).CNhs11952.11303-117B77828.7234.1224.9728.4414.8411.379.6410.637.175.69
Fibroblast - Lymphatic, donor1.CNhs11322.11506-119G317055.5140.9616.3822.755.460.0010.011.823.643.64
Fibroblast - Lymphatic, donor3.CNhs12118.11667-122G216730.8735.2143.8433.069.3411.5013.656.477.902.87
Fibroblast - Periodontal Ligament, donor1.CNhs10867.11238-116D54374.8931.9814.6511.957.912.366.574.211.182.86
Fibroblast - Periodontal Ligament, donor2.CNhs11962.11319-117D54686.0625.4015.515.381.756.387.261.251.632.50
Fibroblast - Periodontal Ligament, donor3.CNhs11907.11395-118C95019.0225.775.825.540.831.112.491.112.491.66
Fibroblast - Periodontal Ligament, donor4 (PL29).CNhs12493.11223-116B89517.4737.3115.8024.1422.8310.976.582.194.396.15
Fibroblast - Periodontal Ligament, donor5 (PL30).CNhs11953.11304-117B811477.9745.3639.8429.4222.6817.7820.5318.3910.739.50
Fibroblast - Periodontal Ligament, donor6 (PLH3).CNhs11996.11380-118B37005.7537.1114.5729.6021.9322.847.967.066.765.41
Fibroblast - Pulmonary Artery, donor1.CNhs10878.11250-116E87875.1439.3618.8316.2218.494.549.7612.144.204.99
Fibroblast - skin dystrophia myotonica, donor1 (nuclear fraction).CNhs12405.14329-155E97791.4321.3510.059.333.418.253.774.3115.070.72
Fibroblast - skin dystrophia myotonica, donor1.CNhs11353.11556-120C85738.2910.689.828.978.335.343.844.061.492.35
Fibroblast - skin dystrophia myotonica, donor2.CNhs11354.11557-120C96179.5114.8410.6011.875.932.125.513.602.122.76
Fibroblast - skin dystrophia myotonica, donor3 (nuclear fraction).CNhs12399.14308-155C65509.3722.516.907.202.404.800.905.709.601.80
Fibroblast - skin dystrophia myotonica, donor3.CNhs11913.11560-120D36893.7017.527.1110.104.539.075.461.855.362.06
Fibroblast - skin normal, donor1 (nuclear fraction).CNhs12403.14323-155E38177.7717.5210.319.023.867.736.444.3815.202.58
Fibroblast - skin normal, donor1.CNhs11351.11553-120C57734.8324.3815.4510.988.755.404.094.472.982.23
Fibroblast - skin normal, donor2 (nuclear fraction).CNhs12582.14302-155B94799.4923.636.7510.639.962.533.385.402.533.38
Fibroblast - skin normal, donor2.CNhs11914.11561-120D410242.8729.4312.9611.215.7518.8110.234.588.772.53
Fibroblast - skin spinal muscular atrophy, donor1 (nuclear fraction).CNhs12404.14326-155E68354.5520.707.8310.603.536.065.054.8017.171.51
Fibroblast - skin spinal muscular atrophy, donor1.CNhs11074.11555-120C76310.0213.538.288.103.042.032.582.122.211.84
Fibroblast - skin spinal muscular atrophy, donor2.CNhs11911.11558-120D12565.659.703.562.422.425.171.132.261.291.29
Fibroblast - skin spinal muscular atrophy, donor3 (nuclear fraction).CNhs12398.14305-155C36453.7223.087.4610.652.494.264.621.4211.011.42
Fibroblast - skin spinal muscular atrophy, donor3.CNhs11912.11559-120D210706.2224.5814.3112.907.6617.338.664.536.554.03
Fibroblast - skin walker warburg, donor1.CNhs11352.11554-120C611120.8031.8814.5817.1314.415.779.506.614.242.88
Gingival epithelial cells, donor1 (GEA11).CNhs11061.11221-116B67572.7327.4411.2121.6511.216.963.876.965.603.67
Gingival epithelial cells, donor2 (GEA14).CNhs11896.11302-117B67799.1819.0912.0017.7311.464.366.006.554.365.73
Gingival epithelial cells, donor3 (GEA15).CNhs11903.11379-118B27061.4228.398.6012.337.462.293.154.887.174.30
H9 Embryonic Stem cells, biol_rep2 (H9ES-2).CNhs12824.12724-135G64793.8122.8110.8610.865.379.155.736.594.643.78
H9 Embryonic Stem cells, biol_rep3 (H9ES-3).CNhs12837.12822-136I54888.8916.962.923.841.722.121.461.991.991.33
H9 Embryoid body cells, melanocytic induction, day00, biol_rep1 (H9EB-1 d0).CNhs12822.12627-134E85006.1018.246.275.932.212.792.673.603.252.32
H9 Embryoid body cells, melanocytic induction, day00, biol_rep2 (H9EB-2 d0).CNhs12825.12725-135G74502.8319.187.058.093.328.404.255.393.522.80
H9 Embryoid body cells, melanocytic induction, day00, biol_rep3 (H9EB-3 d0).CNhs12908.12823-136I64830.4322.4613.6312.6210.358.837.579.594.294.79
HES3-GFP Embryonic Stem cells, cardiomyocytic induction, day00, biol_rep3 (UH-3).CNhs13738.13366-143F93662.5523.7211.6810.958.031.464.382.924.742.92
Hair Follicle Dermal Papilla Cells, donor1.CNhs12501.11271-116H214682.7948.5017.2125.034.6925.0310.959.394.696.26
Hair Follicle Dermal Papilla Cells, donor2.CNhs11979.11348-117G714834.4252.7548.2421.2314.7917.3714.7920.5828.958.36
Hair Follicle Dermal Papilla Cells, donor3.CNhs12030.11420-118F719537.80106.3649.7351.119.6723.4811.055.531.386.91
Hair Follicle Outer Root Sheath Cells, donor1.CNhs12339.11504-119G17912.8321.3623.6810.689.294.189.759.756.972.32
Hair Follicle Outer Root Sheath Cells, donor2.CNhs12347.11584-120F98353.5933.9318.0515.169.384.3312.999.387.222.89
Hep-2 cells mock treated, biol_rep1.CNhs13479.11898-125E85187.9921.3022.0114.0811.008.1610.177.344.616.27
Hep-2 cells mock treated, biol_rep2.CNhs13500.11899-125E95393.0219.0518.3817.2011.306.9110.968.432.534.38
Hep-2 cells mock treated, biol_rep3.CNhs13501.11900-125F15348.5218.0814.947.2311.334.586.995.302.654.10
Hep-2 cells treated with Streptococci strain 5448, biol_rep1.CNhs13477.11890-125D95481.1720.6222.0616.769.7111.1412.689.935.967.83
Hep-2 cells treated with Streptococci strain 5448, biol_rep2.CNhs13496.11891-125E15563.1219.6116.5613.077.197.6310.246.974.585.66
Hep-2 cells treated with Streptococci strain 5448, biol_rep3.CNhs13497.11892-125E25463.3918.0317.0811.8611.634.988.786.644.035.22
Hep-2 cells treated with Streptococci strain JRS4, biol_rep1.CNhs13478.11894-125E45135.7219.1518.3412.8111.196.349.579.844.993.78
Hep-2 cells treated with Streptococci strain JRS4, biol_rep2.CNhs13498.11895-125E55245.2021.7817.6612.9510.994.326.086.084.512.75
Hep-2 cells treated with Streptococci strain JRS4, biol_rep3.CNhs13499.11896-125E65523.0522.3215.7715.0112.705.398.4610.393.086.16
Hepatic Sinusoidal Endothelial Cells, donor1.CNhs12075.11521-119H97656.8953.8921.4113.296.6423.625.911.4811.074.43
Hepatic Sinusoidal Endothelial Cells, donor2.CNhs12092.11601-120H815923.0598.1749.0836.4625.2435.0615.438.4121.045.61
Hepatic Stellate Cells (lipocyte), donor1.CNhs11335.11524-119I311081.2244.4537.0424.2818.523.7015.238.642.884.53
Hepatic Stellate Cells (lipocyte), donor2.CNhs12093.11604-120I214806.7261.7460.2733.8127.9320.5820.587.357.355.88
Hepatocyte, donor1.CNhs12340.11523-119I21121.788.871.276.340.000.002.540.001.270.00
Hepatocyte, donor2.CNhs12349.11603-120I11631.495.902.955.902.950.000.980.000.000.00
Hepatocyte, donor3.CNhs12626.11684-122I11507.705.914.735.918.274.142.951.775.911.77
Hodgkin's lymphoma cell line:HD-Mar2.CNhs11715.10435-106E32467.3417.667.068.833.090.883.531.322.650.44
Intestinal epithelial cells (polarized), donor1.CNhs10875.11246-116E42875.966.896.035.044.805.172.583.072.462.09
Iris Pigment Epithelial Cells, donor1.CNhs12596.11530-119I95825.7624.3612.8711.677.555.663.2610.643.772.23
Keratinocyte - epidermal, donor1.CNhs11064.11272-116H39729.9126.8917.6711.968.3410.986.379.556.042.96
Keratinocyte - epidermal, donor2.CNhs11381.11349-117G816072.3346.0811.2424.7310.126.746.744.503.375.62
Keratinocyte - epidermal, donor3.CNhs12031.11421-118F88261.3715.0820.8114.8810.058.8510.8611.869.654.83
Keratinocyte - oral, donor1.CNhs10879.11251-116E95651.0422.6812.138.6111.394.814.723.982.873.61
Keratocytes, donor1.CNhs11337.11527-119I62789.2410.1012.385.213.260.652.930.650.002.93
Keratocytes, donor2.CNhs12095.11607-120I56101.3059.2822.8824.969.364.164.167.285.204.16
Lens Epithelial Cells, donor1.CNhs12342.11529-119I88262.9743.3021.6514.4310.105.7710.105.777.221.44
Lens Epithelial Cells, donor2.CNhs12568.11609-120I74733.4414.618.237.305.802.432.322.320.932.20
Lens Epithelial Cells, donor3.CNhs12572.11690-122I78513.8952.957.518.225.403.996.696.220.943.64
Lymphatic Endothelial cells response to VEGFC, 00hr00min, biol_rep1 (MM XIX - 1).CNhs11936.12260-130A16480.9031.9011.6914.583.904.915.205.202.891.59
Lymphatic Endothelial cells response to VEGFC, 00hr00min, biol_rep2 (MM XIV - 1).CNhs13157.12382-131E67278.6029.6326.8518.9818.989.268.8012.505.098.80
Lymphatic Endothelial cells response to VEGFC, 00hr00min, biol_rep3 (MM XXII - 1 ).CNhs13276.12504-133A25074.2721.319.8915.607.8013.329.137.995.524.19
MCF7 breast cancer cell line response to EGF1, 00hr00min, biol_rep2.CNhs12475.13097-140D15194.8014.227.1113.436.329.486.324.745.532.37
MCF7 breast cancer cell line response to EGF1, 00hr00min, biol_rep3.CNhs12703.13163-141B45291.7117.1711.1612.886.012.581.723.433.431.72
Macrophage - monocyte derived, donor1.CNhs10861.11232-116C87273.7411.0833.2421.6718.963.948.626.659.857.63
Macrophage - monocyte derived, donor2.CNhs11899.11313-117C811541.5626.6839.0830.898.664.689.835.157.726.32
Macrophage - monocyte derived, donor3.CNhs12003.11389-118C311887.8235.6744.8940.5829.2819.1718.139.518.0311.15
Mallassez-derived cells, donor1 (MZH3).CNhs12538.12142-128E97612.1223.4315.0011.258.440.004.6911.250.946.56
Mallassez-derived cells, donor2.CNhs13550.11929-125I38517.3711.7616.139.416.726.726.054.541.343.02
Mallassez-derived cells, donor3.CNhs13551.11930-125I49040.5714.0415.0312.0510.076.955.954.401.423.54
Mammary Epithelial Cell, donor1.CNhs11077.11273-116H43726.6214.066.545.916.631.973.672.512.061.88
Mammary Epithelial Cell, donor2.CNhs11382.11350-117G94170.6013.372.625.814.072.622.333.781.161.45
Mammary Epithelial Cell, donor3.CNhs12032.11422-118F916090.1948.6923.7728.756.1314.9512.274.223.077.28
Mast cell - stimulated, donor1.CNhs11073.11487-119E22936.7726.114.437.881.483.942.961.970.491.48
Mast cell, donor1.CNhs12566.11563-120D63367.9419.114.146.3418.0511.623.873.523.792.73
Mast cell, donor2.CNhs12594.11565-120D83328.2425.294.1510.1616.5933.592.077.052.702.07
Mast cell, donor3.CNhs12593.11566-120D92431.8823.925.769.9418.1621.471.874.043.462.31
Mast cell, donor4.CNhs12592.11567-120E13475.2031.183.4110.1022.3448.862.154.672.522.90
Melanocyte - dark, donor3.CNhs12570.11663-122F74028.3734.994.136.485.023.172.293.171.902.48
Melanocyte - light, donor1.CNhs11303.11274-116H57185.2064.1711.8413.3712.6111.465.738.402.293.44
Melanocyte - light, donor2.CNhs11383.11351-117H110767.5985.5717.5829.305.8611.7210.552.341.172.34
Melanocyte - light, donor3.CNhs12033.11423-118G19874.3097.5111.9842.7713.695.1311.9818.8215.405.13
Melanocyte, donor1 (MC+1).CNhs12816.12641-134G44755.9821.5911.008.125.559.055.146.684.423.39
Melanocyte, donor2 (MC+2).CNhs13156.12739-135I33539.5421.0211.7119.526.312.105.116.613.303.90
Melanocyte, donor3 (MC+3).CNhs13406.12837-137B22746.2210.587.156.005.142.573.434.293.141.14
Meningeal Cells, donor1.CNhs11320.11493-119E811054.1157.0710.097.401.463.814.041.352.021.79
Meningeal Cells, donor2.CNhs12080.11573-120E78001.1836.6219.189.593.4912.643.923.494.363.49
Meningeal Cells, donor3.CNhs12731.11654-122E78781.5356.8411.599.904.333.306.093.521.611.98
Mesenchymal Stem Cells - Wharton's Jelly, donor1.CNhs11057.11548-120B93635.9025.085.955.302.591.682.711.811.941.68
Mesenchymal Stem Cells - adipose, donor1.CNhs11345.11537-120A727121.0946.5010.7325.047.1514.3110.7314.313.580.00
Mesenchymal Stem Cells - adipose, donor3.CNhs12922.11698-123A66339.7732.9713.5217.757.610.855.925.929.302.54
Mesenchymal Stem Cells - amniotic membrane, donor1.CNhs11349.11547-120B88837.3932.9813.8313.0314.3614.896.916.385.054.52
Mesenchymal Stem Cells - amniotic membrane, donor2.CNhs12104.11627-122B79788.1458.2424.9620.8016.6426.0019.768.3219.763.12
Mesenchymal Stem Cells - bone marrow, donor1.CNhs11344.11536-120A69906.8647.5824.9515.1818.522.837.974.891.295.66
Mesenchymal Stem Cells - bone marrow, donor2.CNhs12100.11616-122A58669.8261.0035.4629.7931.217.0919.868.512.844.26
Mesenchymal Stem Cells - bone marrow, donor3.CNhs12126.11697-123A510408.3243.1627.1819.188.2611.999.069.066.665.33
Mesenchymal Stem Cells - hepatic, donor2.CNhs12730.11618-122A76733.9812.3010.449.446.862.572.575.862.143.15
Mesenchymal Stem Cells - umbilical, donor1.CNhs11347.11539-120A92379.9430.935.433.802.710.002.171.090.541.63
Mesenchymal Stem Cells - umbilical, donor3.CNhs12127.11700-123A812695.1947.7533.7523.8711.5314.0013.1710.706.595.76
Mesenchymal stem cells - adipose, donor0.CNhs10844.11217-116B25991.9222.8012.059.7715.314.895.548.793.261.63
Mesenchymal stem cells - hepatic, donor0.CNhs10845.11218-116B37003.3515.289.9511.7313.865.695.335.332.845.33
Mesenchymal stem cells - umbilical, donor0.CNhs12492.11214-116A86465.5019.808.7114.2615.055.544.7513.468.713.96
Mesothelial Cells, donor1.CNhs10850.11247-116E54419.1015.9810.257.5411.454.525.123.622.112.41
Mesothelial Cells, donor2.CNhs12197.12156-128G57576.2437.4810.469.594.363.496.105.231.742.61
Mesothelial Cells, donor3.CNhs12012.11402-118D75920.4025.0919.4911.4013.2010.008.906.806.806.80
Monocyte-derived macrophages response to udorn influenza infection, 00hr00min, donor2 (150_120:Ud_0h).CNhs13646.13317-143A59673.9612.1619.4620.6810.957.3010.959.7310.952.43
Monocyte-derived macrophages response to udorn influenza infection, 00hr00min, donor3 (536_119:Ud_0h).CNhs13650.13323-143B28437.4217.0828.1337.6716.5715.0717.0821.608.5410.55
Monocyte-derived macrophages response to udorn influenza infection, 00hr00min, donor4 (227_121:Ud_0h).CNhs13639.13311-142I89249.2846.3837.9580.1267.4710.5440.0669.5827.4110.54
Multipotent Cord Blood Unrestricted Somatic Stem Cells, donor1.CNhs11350.11549-120C15582.7861.827.436.2311.025.273.123.831.681.20
Multipotent Cord Blood Unrestricted Somatic Stem Cells, donor2.CNhs12105.11629-122B94910.3542.5012.639.196.898.045.741.158.042.30
Myoblast differentiation to myotubes, day00, control donor1.CNhs13847.13469-144I43724.2521.400.008.5615.690.001.430.009.981.43
Myoblast, donor1.CNhs10870.11241-116D86626.3557.0426.3519.8413.186.959.278.833.046.23
Myoblast, donor2.CNhs11965.11322-117D84169.9431.4419.319.254.115.964.934.733.292.47
Myoblast, donor3.CNhs11908.11398-118D35918.1436.7114.8612.534.483.404.305.552.862.69
NK T cell leukemia cell line:KHYG-1.CNhs11867.10777-110G33614.6315.2410.2010.4211.663.703.473.143.702.58
Natural Killer Cells, donor1.CNhs10859.11230-116C63402.9217.1411.236.508.474.933.944.532.563.55
Natural Killer Cells, donor2.CNhs11957.11311-117C63277.3217.2512.297.985.395.396.683.886.044.53
Natural Killer Cells, donor3.CNhs12001.11387-118C13177.6517.849.758.8612.195.016.295.135.522.70
Neural stem cells, donor1.CNhs11063.11275-116H64283.0217.795.592.801.521.521.022.545.340.51
Neural stem cells, donor2.CNhs11384.11352-117H24709.7618.221.305.215.210.001.302.602.601.30
Neurons, donor1.CNhs12338.11494-119E95644.2423.2019.3310.834.643.096.965.4113.923.09
Neurons, donor2.CNhs12726.11574-120E85489.3416.257.879.388.383.184.364.694.522.68
Neurons, donor3.CNhs13815.11655-122E85051.8438.9144.0241.4716.5910.2114.6712.7634.4510.21
Neutrophils, donor1.CNhs10862.11233-116C911765.4027.7123.2216.4828.4623.229.7442.6923.224.49
Neutrophils, donor2.CNhs11959.11314-117C914952.0989.75164.5483.7735.9014.9632.9171.8068.8123.93
Neutrophils, donor3.CNhs11905.11390-118C413675.3021.1433.9826.1121.1414.508.2922.7912.855.80
Nucleus Pulposus Cell, donor1.CNhs10881.11252-116F13221.1418.656.996.014.783.442.942.701.231.35
Nucleus Pulposus Cell, donor2.CNhs12019.11409-118E53357.6427.0112.0012.505.500.002.503.506.500.50
Nucleus Pulposus Cell, donor3.CNhs12063.11462-119B43504.7411.397.877.872.446.243.262.177.602.71
Olfactory epithelial cells, donor1.CNhs13816.11933-125I79096.0230.7848.6750.9532.4416.2219.7624.5423.5017.26
Olfactory epithelial cells, donor2.CNhs13817.11934-125I88043.0437.2981.1941.0427.4822.8433.3732.6533.1921.23
Olfactory epithelial cells, donor3.CNhs13818.11935-125I98349.7123.0241.3229.3323.0211.2017.5014.8215.3011.35
Olfactory epithelial cells, donor4.CNhs13819.11936-126A18693.5321.6726.0131.3918.7411.3614.2912.077.618.67
Osteoblast - differentiated, donor1.CNhs11311.11276-116H77176.0653.2711.1413.248.1314.755.125.122.413.31
Osteoblast - differentiated, donor2.CNhs11980.11353-117H34031.9472.7711.3734.116.829.109.106.820.002.27
Osteoblast - differentiated, donor3.CNhs12035.11425-118G32808.2613.455.176.214.144.1411.383.102.073.10
Osteoblast, donor2.CNhs11385.11354-117H48039.1231.885.317.979.300.662.665.312.661.33
Osteoblast, donor3.CNhs12036.11426-118G49153.5647.0114.3818.996.0813.837.375.902.583.32
Pancreatic stromal cells, donor1.CNhs10877.11249-116E76386.4728.2417.9011.3815.0310.519.3810.347.124.60
Pericytes, donor1.CNhs11317.11491-119E68473.8843.2714.2912.735.299.997.243.132.743.13
Pericytes, donor2.CNhs12079.11571-120E54806.0736.378.249.612.7511.322.067.216.523.43
Peripheral Blood Mononuclear Cells, donor1.CNhs10860.11231-116C74448.6110.759.309.104.761.652.892.481.452.27
Peripheral Blood Mononuclear Cells, donor2.CNhs11958.11312-117C74841.4915.9621.5714.245.186.477.773.454.754.53
Peripheral Blood Mononuclear Cells, donor3.CNhs12002.11388-118C24895.2714.4115.5810.147.906.728.115.233.632.99
Placental Epithelial Cells, donor1.CNhs11079.11278-116H95655.759.094.857.885.463.641.526.066.972.73
Placental Epithelial Cells, donor2.CNhs11386.11355-117H55598.8911.654.991.663.331.661.661.668.320.00
Placental Epithelial Cells, donor3.CNhs12037.11427-118G56720.6218.7513.6112.403.938.777.5610.589.075.14
Preadipocyte - breast, donor1.CNhs11052.11467-119B97089.4339.7012.9015.883.234.714.224.224.962.23
Preadipocyte - breast, donor2 (nuclear fraction).CNhs12584.14320-155D911105.8936.9818.1123.3316.579.219.517.065.379.05
Preadipocyte - breast, donor2.CNhs11971.11328-117E58486.0439.8535.0824.708.1414.5915.166.7415.449.26
Preadipocyte - omental, donor1.CNhs11065.11468-119C15666.7034.8512.1711.926.025.256.545.135.132.69
Preadipocyte - omental, donor2.CNhs11902.11329-117E69314.6139.9122.0020.4710.752.566.657.686.655.63
Preadipocyte - omental, donor3.CNhs12013.11403-118D811811.9960.8044.4037.3234.9127.0228.3115.6017.8516.89
Preadipocyte - perirenal, donor1.CNhs12065.11469-119C211591.4540.0716.3325.238.9119.2920.787.4219.292.97
Preadipocyte - subcutaneous, donor2.CNhs11981.11356-117H67170.9023.4430.389.253.868.7912.807.566.484.78
Preadipocyte - subcutaneous, donor3.CNhs12038.11428-118G66444.0728.0513.858.707.289.416.7512.7811.544.79
Preadipocyte - visceral, donor1.CNhs11082.11280-116I25798.6726.367.563.533.942.552.554.112.711.81
Preadipocyte - visceral, donor2.CNhs11982.11357-117H75079.8728.5628.569.352.600.008.314.159.351.56
Preadipocyte - visceral, donor3.CNhs12039.11429-118G76844.3327.3120.8015.1111.5019.6410.3414.4120.226.62
Prostate Epithelial Cells (polarized), donor1.CNhs10882.11253-116F23558.9519.948.106.167.7415.355.3210.644.711.69
Prostate Epithelial Cells, donor2.CNhs11972.11331-117E87041.3949.7325.0613.839.6215.6413.6315.2419.456.42
Prostate Epithelial Cells, donor3.CNhs12014.11404-118D95625.5024.8621.7313.6320.5319.808.9315.2912.895.34
Prostate Stromal Cells, donor1.CNhs10883.11254-116F36503.2132.4921.3614.8115.398.5010.919.534.825.40
Prostate Stromal Cells, donor2.CNhs11973.11332-117E95988.6128.9523.8510.204.925.6410.027.838.016.19
Prostate Stromal Cells, donor3.CNhs12015.11405-118E15163.5534.2221.5011.1516.0010.7510.6216.788.656.82
Renal Cortical Epithelial Cells, donor1.CNhs11331.11516-119H412054.2537.9031.5822.1119.406.3211.734.062.714.51
Renal Cortical Epithelial Cells, donor2.CNhs12728.11596-120H36931.6925.0312.3213.097.013.004.395.391.933.16
Renal Epithelial Cells, donor1.CNhs11332.11517-119H523648.9377.6536.0834.5114.9010.989.418.633.927.06
Renal Epithelial Cells, donor2.CNhs12088.11597-120H410805.5365.7632.1523.3814.617.3111.697.311.464.38
Renal Epithelial Cells, donor3.CNhs12732.11678-122H46142.1526.929.718.344.012.222.533.691.902.74
Renal Glomerular Endothelial Cells, donor1.CNhs12074.11514-119H210118.8651.1820.4726.1612.5125.0214.797.9612.512.27
Renal Glomerular Endothelial Cells, donor2.CNhs12086.11594-120H17208.0641.3326.5326.707.4819.0510.559.5313.615.95
Renal Glomerular Endothelial Cells, donor3.CNhs12624.11675-122H16396.2941.8921.3821.1611.018.8514.9010.804.106.05
Renal Glomerular Endothelial Cells, donor4.CNhs13080.11783-124B118064.6474.0353.9877.1118.5110.8023.137.719.259.25
Renal Mesangial Cells, donor1.CNhs11333.11518-119H612309.1055.8137.3922.2213.827.8611.925.964.064.61
Renal Mesangial Cells, donor3.CNhs12121.11679-122H516228.6667.7336.1222.0716.0523.0813.5512.0413.558.53
Renal Proximal Tubular Epithelial Cell, donor1.CNhs11330.11515-119H38242.9528.2922.6821.669.942.298.163.063.314.84
Renal Proximal Tubular Epithelial Cell, donor2.CNhs12087.11595-120H27609.3329.0924.9319.1114.1318.2810.804.994.160.83
Renal Proximal Tubular Epithelial Cell, donor3.CNhs12120.11676-122H210812.0338.5130.4523.7312.9812.5413.889.637.398.06
Reticulocytes, biol_rep1.CNhs13552.11931-125I51903.184.602.852.192.190.881.102.410.881.10
Reticulocytes, biol_rep2.CNhs13553.11932-125I61937.244.442.612.613.921.051.312.610.260.26
Retinal Pigment Epithelial Cells, donor0.CNhs10842.11215-116A93881.1223.088.467.186.922.313.595.133.591.54
Retinal Pigment Epithelial Cells, donor1.CNhs11338.11528-119I76645.9023.6224.9315.098.204.596.564.922.301.64
Retinal Pigment Epithelial Cells, donor3.CNhs12733.11689-122I63081.6615.294.565.530.001.301.630.980.650.98
SABiosciences XpressRef Human Universal Total RNA, pool1.CNhs10610.10002-101A51910.487.013.304.125.466.592.373.711.750.93
Saos-2 osteosarcoma treated with ascorbic acid and BGP to induce calcification, 00hr00min, biol_rep2 (A2 T0).CNhs12859.12760-136B64017.2416.5712.098.882.756.784.303.394.401.74
Saos-2 osteosarcoma treated with ascorbic acid and BGP to induce calcification, 00hr00min, biol_rep3 (A3 T0).CNhs12952.12858-137D52977.0312.054.464.371.651.321.731.491.161.65
Sebocyte, donor1.CNhs10847.11220-116B513977.6221.8218.9515.514.029.1910.342.870.575.17
Sebocyte, donor2.CNhs11951.11301-117B59811.3630.5526.0013.0010.407.1513.657.803.257.15
Sertoli Cells, donor1.CNhs10851.11255-116F48416.6225.7120.8919.2824.100.006.4314.466.433.21
Skeletal Muscle Cells, donor1.CNhs11083.11281-116I33876.7916.634.355.122.321.841.264.353.481.06
Skeletal Muscle Cells, donor4.CNhs12053.11451-119A24478.3523.8818.0215.254.7812.327.705.399.864.47
Skeletal Muscle Cells, donor5.CNhs12056.11455-119A64743.5723.9517.8115.046.4515.507.375.079.523.22
Skeletal Muscle Cells, donor6.CNhs12060.11459-119B14578.6617.3716.2611.855.798.556.063.728.823.03
Skeletal Muscle Satellite Cells, donor1.CNhs10869.11240-116D75311.8218.8013.1110.209.997.524.835.592.793.33
Skeletal Muscle Satellite Cells, donor2.CNhs11964.11321-117D75922.9222.4822.9112.334.936.246.825.223.773.19
Skeletal Muscle Satellite Cells, donor3.CNhs12008.11397-118D24940.9323.4419.7712.787.596.736.735.033.494.35
Skeletal muscle cells differentiated into Myotubes - multinucleated, donor1.CNhs11084.11282-116I44565.0322.535.975.522.944.272.312.762.311.87
Small Airway Epithelial Cells, donor1.CNhs10884.11256-116F54880.8623.6414.0512.567.604.638.437.112.643.80
Small Airway Epithelial Cells, donor2.CNhs11975.11334-117F25181.0625.3714.6118.0715.1813.075.573.655.776.34
Small Airway Epithelial Cells, donor3 (nuclear fraction).CNhs12583.14317-155D61929.386.644.477.273.060.890.891.660.771.91
Small Airway Epithelial Cells, donor3.CNhs12016.11406-118E23788.3624.7811.4318.8214.366.784.963.243.034.75
Smooth Muscle Cells - Aortic, donor0 (cytoplasmic fraction).CNhs12401.14313-155D26155.4849.7413.0211.166.043.255.1113.4824.171.86
Smooth Muscle Cells - Aortic, donor0 (nuclear fraction).CNhs12402.14314-155D35040.4625.813.785.041.894.412.521.899.131.57
Smooth Muscle Cells - Aortic, donor0.CNhs10838.11210-116A49527.8050.1911.8513.949.063.493.495.581.394.88
Smooth Muscle Cells - Aortic, donor1.CNhs11085.11283-116I515924.1031.737.706.474.934.623.081.852.770.92
Smooth Muscle Cells - Aortic, donor2.CNhs11305.11360-117I113850.0794.2216.5023.9511.716.397.987.455.324.26
Smooth Muscle Cells - Aortic, donor3.CNhs11309.11432-118H19296.1045.248.7010.4410.446.093.482.616.090.87
Smooth Muscle Cells - Brachiocephalic, donor1.CNhs11086.11284-116I618648.8188.2121.6830.7613.7121.3110.938.715.756.30
Smooth Muscle Cells - Brachiocephalic, donor3.CNhs12043.11433-118H23605.0329.775.308.871.8612.314.011.292.002.15
Smooth Muscle Cells - Brain Vascular, donor1.CNhs10863.11234-116D16085.1641.3121.5916.7516.372.619.303.723.354.09
Smooth Muscle Cells - Brain Vascular, donor2.CNhs11900.11315-117D16738.8839.5517.0817.726.641.586.645.693.482.53
Smooth Muscle Cells - Brain Vascular, donor3.CNhs12004.11391-118C58682.0643.4631.2621.1613.3411.829.538.777.247.63
Smooth Muscle Cells - Bronchial, donor1.CNhs11328.11512-119G915165.5345.2929.4317.9116.387.179.724.353.076.65
Smooth Muscle Cells - Bronchial, donor2.CNhs12348.11592-120G84472.8226.106.855.563.424.710.863.001.711.71
Smooth Muscle Cells - Carotid, donor1.CNhs11087.11285-116I77255.6733.097.964.773.184.451.270.952.552.23
Smooth Muscle Cells - Carotid, donor3.CNhs12044.11434-118H316145.6160.4432.1836.1114.1316.4818.847.067.065.49
Smooth Muscle Cells - Colonic, donor1.CNhs10868.11239-116D67169.7224.1022.8418.7114.754.147.377.735.405.40
Smooth Muscle Cells - Colonic, donor2.CNhs11963.11320-117D66453.5428.2826.0814.006.596.3111.264.127.143.57
Smooth Muscle Cells - Colonic, donor3.CNhs12007.11396-118D16636.8429.9226.7422.1511.7810.849.786.605.075.54
Smooth Muscle Cells - Coronary Artery, donor1.CNhs11088.11286-116I815729.8095.2318.4022.0411.9310.316.475.059.507.08
Smooth Muscle Cells - Coronary Artery, donor2.CNhs11987.11363-117I412726.79123.6423.7850.729.517.9312.686.347.937.93
Smooth Muscle Cells - Coronary Artery, donor3.CNhs12045.11435-118H49282.8532.0216.8530.759.6921.489.692.5311.806.74
Smooth Muscle Cells - Esophageal, donor1.CNhs11324.11508-119G517897.6258.0342.4233.1621.947.3114.148.295.369.75
Smooth Muscle Cells - Internal Thoracic Artery, donor2.CNhs11988.11364-117I54324.4521.4512.435.124.875.125.125.616.581.22
Smooth Muscle Cells - Internal Thoracic Artery, donor3.CNhs12046.11436-118H514754.0464.4515.8533.813.174.2311.622.119.514.23
Smooth Muscle Cells - Prostate, donor1.CNhs11920.11257-116F66320.3622.259.2813.2410.248.466.693.6911.193.28
Smooth Muscle Cells - Prostate, donor2.CNhs11976.11335-117F34734.9630.4018.108.4812.3010.759.909.7612.873.96
Smooth Muscle Cells - Pulmonary Artery, donor2.CNhs11989.11365-117I66962.4342.9418.0818.0810.1711.309.044.524.523.39
Smooth Muscle Cells - Subclavian Artery, donor1.CNhs11090.11289-117A212916.8455.1418.7520.404.413.317.722.765.513.31
Smooth Muscle Cells - Subclavian Artery, donor2.CNhs11990.11366-117I77568.5149.7618.5813.934.643.9811.945.9715.923.32
Smooth Muscle Cells - Subclavian Artery, donor3.CNhs12048.11438-118H79361.8063.5823.2424.1114.0333.3216.226.1411.8410.08
Smooth Muscle Cells - Tracheal, donor1.CNhs11329.11513-119H19625.6259.0437.0427.207.521.7412.153.471.745.79
Smooth Muscle Cells - Tracheal, donor3.CNhs12894.11674-122G95842.0526.8917.7115.0911.813.943.946.562.626.56
Smooth Muscle Cells - Umbilical Artery, donor1.CNhs11091.11290-117A318575.0284.8229.4224.5510.9613.1910.557.715.686.90
Smooth Muscle Cells - Umbilical Artery, donor2.CNhs11991.11367-117I818466.1084.2771.2657.0133.1527.5726.9513.948.9815.18
Smooth Muscle Cells - Umbilical Artery, donor3.CNhs12049.11439-118H815306.4967.6135.2141.4122.5434.6515.498.4512.6810.42
Smooth Muscle Cells - Umbilical Vein, donor1.CNhs12597.11541-120B27233.0922.8012.6211.9012.484.454.458.032.013.59
Smooth Muscle Cells - Umbilical Vein, donor2.CNhs12569.11621-122B110510.2922.4016.9017.9814.9310.817.279.331.876.48
Smooth Muscle Cells - Umbilical artery, donor0.CNhs10839.11212-116A618046.1385.2442.0930.3214.2716.4121.768.924.648.92
Smooth Muscle Cells - Uterine, donor3.CNhs11927.11466-119B86110.0523.7714.558.513.190.354.264.618.871.77
Synoviocyte, donor2.CNhs11992.11368-117I93739.9816.6814.789.509.087.817.609.299.503.59
Synoviocyte, donor3.CNhs12050.11440-118H93066.727.908.898.562.965.934.282.9618.110.33
Trabecular Meshwork Cells, donor1.CNhs11340.11532-120A29815.8356.1611.7613.288.353.425.691.521.142.28
Trabecular Meshwork Cells, donor3.CNhs12124.11693-123A111537.3546.5428.3416.1011.2010.8514.008.055.255.60
Tracheal Epithelial Cells, donor1.CNhs11092.11292-117A59174.6829.4420.2131.0813.867.4111.165.294.149.43
Tracheal Epithelial Cells, donor2.CNhs11993.11369-118A113670.8133.5226.1430.8312.749.3814.756.031.346.70
Tracheal Epithelial Cells, donor3.CNhs12051.11441-118I112457.1329.4016.3326.132.1810.8914.162.187.622.18
Universal RNA - Human Normal Tissues Biochain, pool1.CNhs10612.10007-101B41925.336.783.013.955.086.592.173.950.941.32
Urothelial Cells, donor1.CNhs11334.11520-119H814558.8334.0131.0025.8313.357.3211.627.324.745.60
Urothelial Cells, donor2.CNhs12091.11600-120H79618.0438.7521.9020.2221.9010.1113.485.058.426.74
Urothelial Cells, donor3.CNhs12122.11681-122H711989.0223.0628.8223.9511.0912.8612.428.876.214.43
Urothelial cells, donor0.CNhs10843.11216-116B19360.0819.9917.6918.3813.554.829.655.973.456.43
Whole blood (ribopure), donor090309, donation1.CNhs11675.12179-129A17934.4518.788.1217.765.582.035.073.551.522.03
Whole blood (ribopure), donor090309, donation2.CNhs11671.12180-129A26939.0813.007.657.654.593.822.292.292.291.53
Whole blood (ribopure), donor090309, donation3.CNhs11948.12181-129A37690.2420.5118.2312.533.425.1310.827.415.134.56
Whole blood (ribopure), donor090325, donation1.CNhs11075.12176-128I76009.169.058.8111.203.101.195.003.342.623.10
Whole blood (ribopure), donor090325, donation2.CNhs11076.12177-128I86304.5415.2211.1113.163.292.474.112.882.472.06
Whole blood (ribopure), donor090612, donation1.CNhs11672.12182-129A47019.0810.382.5911.023.893.241.302.592.591.95
Whole blood (ribopure), donor090612, donation2.CNhs11673.12183-129A56308.1112.424.869.181.083.243.781.624.321.08
Whole blood (ribopure), donor090612, donation3.CNhs11949.12184-129A68207.2621.4126.9726.177.143.9711.107.145.551.59
Wilms' tumor cell line:G-401.CNhs11892.10809-111A83492.1925.3211.8614.9610.684.275.234.274.063.42
Wilms' tumor cell line:HFWT.CNhs11728.10597-108E31679.539.621.922.892.890.001.920.001.920.96
acantholytic squamous carcinoma cell line:HCC1806.CNhs11844.10717-109I63423.2118.3810.0510.7811.033.196.132.212.702.45
acute lymphoblastic leukemia (B-ALL) cell line:BALL-1.CNhs11251.10455-106G54256.9411.8916.7215.4223.230.566.695.396.875.02
acute lymphoblastic leukemia (B-ALL) cell line:NALM-6.CNhs11282.10534-107G32520.535.483.613.465.050.871.301.011.011.15
acute lymphoblastic leukemia (T-ALL) cell line:HPB-ALL.CNhs10746.10429-106D63789.8012.245.347.114.271.992.282.062.132.06
acute lymphoblastic leukemia (T-ALL) cell line:Jurkat.CNhs11253.10464-106H54328.4229.6513.0714.9917.541.285.745.264.783.67
acute myeloid leukemia (FAB M0) cell line:KG-1.CNhs13053.10827-111C83339.9610.3814.1710.185.793.196.594.592.392.79
acute myeloid leukemia (FAB M0) cell line:Kasumi-3.CNhs13241.10789-110H62550.095.944.214.213.061.530.382.110.381.34
acute myeloid leukemia (FAB M1) cell line:HYT-1.CNhs13054.10828-111C94632.4813.9713.5512.9111.011.695.934.022.334.87
acute myeloid leukemia (FAB M2) cell line:Kasumi-1.CNhs13502.10788-110H51497.814.542.601.952.921.621.951.300.970.00
acute myeloid leukemia (FAB M2) cell line:Kasumi-6.CNhs13052.10792-110H92569.579.279.276.743.930.563.372.531.681.12
acute myeloid leukemia (FAB M2) cell line:NKM-1.CNhs11864.10765-110E93429.0013.2411.8715.7517.123.205.713.652.516.62
acute myeloid leukemia (FAB M3) cell line:HL60.CNhs13055.10829-111D13543.1612.0613.328.305.332.985.332.512.822.98
acute myeloid leukemia (FAB M4) cell line:FKH-1.CNhs13503.10830-111D21481.252.512.515.0112.530.000.000.000.000.00
acute myeloid leukemia (FAB M4) cell line:HNT-34.CNhs13504.10831-111D34594.5814.7317.1013.375.764.237.454.913.893.39
acute myeloid leukemia (FAB M4eo) cell line:EoL-1.CNhs13056.10832-111D43779.129.1513.6511.083.370.323.212.572.252.41
acute myeloid leukemia (FAB M4eo) cell line:EoL-3.CNhs13057.10833-111D55876.6114.7323.0118.5710.493.837.475.453.434.04
acute myeloid leukemia (FAB M5) cell line:NOMO-1.CNhs13050.10764-110E85362.6815.7611.0713.6317.892.982.982.135.542.56
acute myeloid leukemia (FAB M5) cell line:P31/FUJ.CNhs13051.10770-110F53339.909.6214.4312.027.562.064.121.722.751.37
acute myeloid leukemia (FAB M5) cell line:THP-1 (fresh).CNhs10722.10399-106A36828.7327.6510.755.536.143.697.682.462.461.23
acute myeloid leukemia (FAB M5) cell line:THP-1 (revived).CNhs10723.10400-106A47872.2833.7814.7610.518.722.684.473.363.584.25
acute myeloid leukemia (FAB M5) cell line:THP-1 (thawed).CNhs10724.10405-106A96972.4631.0311.017.518.013.005.172.501.843.84
acute myeloid leukemia (FAB M5) cell line:U-937 DE-4.CNhs13058.10834-111D66299.5123.8421.3014.858.212.747.034.104.696.25
acute myeloid leukemia (FAB M6) cell line:EEB.CNhs13059.10835-111D73690.8319.778.3519.4910.581.393.342.232.782.51
acute myeloid leukemia (FAB M6) cell line:F-36E.CNhs13060.10836-111D81611.2111.086.157.3913.540.000.001.233.693.69
acute myeloid leukemia (FAB M6) cell line:F-36P.CNhs13505.10837-111D94823.3120.5511.0912.447.843.527.572.982.434.60
acute myeloid leukemia (FAB M7) cell line:M-MOK.CNhs13049.10699-109G63139.5412.326.339.664.000.671.331.000.671.67
acute myeloid leukemia (FAB M7) cell line:MKPL-1.CNhs11888.10802-111A12663.2428.2014.109.8729.610.001.414.237.055.64
adenocarcinoma cell line:IM95m.CNhs11882.10796-110I42204.148.616.368.057.492.431.502.432.063.18
adipose tissue, adult, pool1.CNhs10615.10010-101C15371.7216.857.189.233.967.334.836.152.051.61
adrenal cortex adenocarcinoma cell line:SW-13.CNhs11893.10810-111A92348.8145.514.378.378.251.581.461.331.331.82
adult T-cell leukemia cell line:ATN-1.CNhs10738.10421-106C73566.5232.5410.1410.9214.932.564.124.353.793.12
alveolar cell carcinoma cell line:SW 1573.CNhs11838.10708-109H62765.5019.899.3811.377.963.986.253.693.984.26
amniotic membrane cells, donor1.CNhs12502.12235-129G34472.6410.037.1612.418.596.455.4910.273.585.73
amniotic membrane cells, donor2.CNhs12503.12236-129G42172.594.453.274.165.355.640.892.671.480.59
amniotic membrane cells, donor3.CNhs12379.12237-129G53984.184.914.9110.146.455.844.301.543.692.15
amygdala - adult, donor10196.CNhs13793.10167-103B52119.5217.894.972.980.991.993.982.982.980.00
amygdala, adult, donor10252.CNhs12311.10151-102I71531.899.424.223.242.811.411.411.691.971.55
anaplastic carcinoma cell line:8305C.CNhs10745.10428-106D52053.427.903.013.343.121.891.342.341.111.45
anaplastic large cell lymphoma cell line:Ki-JK.CNhs11881.10795-110I33987.9216.3219.7820.9318.294.618.739.064.456.43
anaplastic squamous cell carcinoma cell line:RPMI 2650.CNhs11889.10805-111A41105.456.122.532.116.970.631.062.741.271.06
aorta, adult, pool1.CNhs11760.10052-101G77636.7828.2930.4820.5215.7410.9612.356.779.368.77
appendix, adult.CNhs12842.10189-103D94748.2218.7912.998.018.016.916.639.675.804.70
argyrophil small cell carcinoma cell line:TC-YIK.CNhs11725.10589-108D41989.015.544.533.282.271.011.510.761.510.76
astrocytoma cell line:TM-31.CNhs10742.10425-106D23107.9511.258.1810.127.981.644.192.972.453.58
b cell line:RPMI1788.CNhs10744.10427-106D48483.5018.969.8510.836.893.574.924.312.714.43
basal cell carcinoma cell line:TE 354.T.CNhs11932.10702-109G99905.6876.8319.2831.7312.754.0411.206.229.026.53
bile duct carcinoma cell line:HuCCT1.CNhs10750.10432-106D94240.9819.325.758.095.934.043.412.432.161.80
bile duct carcinoma cell line:TFK-1.CNhs11265.10496-107C12314.216.098.417.169.491.251.971.974.121.97
biphenotypic B myelomonocytic leukemia cell line:MV-4-11.CNhs11845.10718-109I72875.045.639.2111.2510.233.584.095.632.562.56
bladder, adult, pool1.CNhs10616.10011-101C28645.4021.3122.5918.5414.1118.948.6814.013.456.21
blood, adult, pool1.CNhs11761.10053-101G88765.0821.5531.1326.3435.9214.3728.7438.3226.349.58
bone marrow stromal cell line:StromaNKtert.CNhs11931.10686-109F27717.3540.017.7821.1222.231.110.001.115.568.89
brain, adult, donor1.CNhs11796.10084-102B33197.8329.086.796.795.826.795.827.755.822.91
brain, adult, pool1.CNhs10617.10012-101C33402.5522.087.244.456.595.203.065.471.762.50
brain, fetal, pool1.CNhs11797.10085-102B44219.8421.9611.9811.989.985.990.002.003.992.00
breast carcinoma cell line:MCF7.CNhs11943.10482-107A51942.0114.327.5511.9813.802.602.082.867.033.65
breast carcinoma cell line:MDA-MB-453.CNhs10736.10419-106C52434.6210.763.064.294.721.140.960.960.961.49
breast, adult, donor1.CNhs11792.10080-102A83985.328.705.075.077.9722.475.8012.3215.951.45
bronchial squamous cell carcinoma cell line:KNS-62.CNhs11862.10760-110E42788.286.499.228.656.492.393.763.073.982.05
bronchioalveolar carcinoma cell line:NCI-H358.CNhs11840.10709-109H72199.5512.715.5911.7013.222.291.272.802.542.03
bronchogenic carcinoma cell line:ChaGo-K-1.CNhs11841.10710-109H82546.377.806.3810.647.803.314.962.363.313.55
carcinoid cell line:NCI-H1770.CNhs11834.10703-109H11723.7211.724.485.176.211.725.522.412.760.00
carcinoid cell line:SK-PN-DW.CNhs11846.10719-109I81818.4514.879.9111.668.161.462.923.213.502.62
carcinosarcoma cell line:JHUCS-1.CNhs11747.10642-109A31262.0811.984.513.472.082.782.080.873.130.52
caudate nucleus - adult, donor10196.CNhs13802.10177-103C62158.5511.513.547.096.203.540.890.000.890.89
caudate nucleus, adult, donor10252.CNhs12321.10164-103B21650.128.324.942.413.862.171.571.210.961.81
cerebellum - adult, donor10196.CNhs13799.10173-103C2955.1622.891.530.001.530.000.001.530.000.00
cerebellum, adult, donor10252.CNhs12323.10166-103B4677.8511.281.551.330.331.110.770.771.000.22
cerebellum, adult, pool1.CNhs11795.10083-102B21440.5031.625.916.502.072.962.665.325.321.77
cerebral meninges, adult.CNhs12840.10188-103D82178.2813.386.583.954.831.972.854.171.542.63
cervical cancer cell line:D98-AH2.CNhs11288.10552-107I31319.242.612.611.962.290.440.440.440.540.44
cervical cancer cell line:ME-180.CNhs11289.10553-107I43592.677.536.416.696.691.952.232.652.372.09
cervix, adult, pool1.CNhs10618.10013-101C44694.0415.247.168.6211.7716.014.3910.472.152.08
cholangiocellular carcinoma cell line:HuH-28.CNhs11283.10536-107G52407.6021.195.585.815.241.252.052.391.251.71
choriocarcinoma cell line:T3M-3.CNhs11820.10618-108G62886.4314.068.3015.2221.672.543.921.383.234.84
choriocarcinoma cell line:BeWo.CNhs10740.10423-106C92557.3712.394.764.768.896.822.965.563.411.62
choriocarcinoma cell line:SCH.CNhs11875.10785-110H21928.936.085.875.437.712.173.372.822.171.96
chorionic membrane cells, donor1.CNhs12504.12238-129G65154.7414.997.6614.3611.4810.214.4710.214.474.15
chorionic membrane cells, donor2.CNhs12506.12239-129G76678.2022.3514.6619.4221.9830.415.2215.114.958.34
chorionic membrane cells, donor3.CNhs12380.12240-129G85973.1920.2615.4625.058.0014.399.069.0625.054.26
chronic lymphocytic leukemia (T-CLL) cell line:SKW-3.CNhs11714.10416-106C27636.9142.9219.4219.4210.222.044.097.157.151.02
chronic myeloblastic leukemia (CML) cell line:KCL-22.CNhs11886.10801-110I93286.7016.3311.7717.2713.973.304.244.083.924.71
chronic myelogenous leukemia (CML) cell line:MEG-A2.CNhs11865.10766-110F13261.2411.979.9710.4715.461.502.493.163.164.99
chronic myelogenous leukemia cell line:K562 ENCODE, biol_rep1.CNhs12334.10824-111C52133.919.023.842.030.680.451.350.230.680.68
chronic myelogenous leukemia cell line:K562 ENCODE, biol_rep2.CNhs12335.10825-111C62012.399.213.143.530.590.781.180.590.780.59
chronic myelogenous leukemia cell line:K562 ENCODE, biol_rep3.CNhs12336.10826-111C72548.3711.245.542.351.511.511.850.840.840.84
chronic myelogenous leukemia cell line:K562.CNhs11250.10454-106G41100.006.262.664.743.040.380.380.951.140.76
chronic myelogenous leukemia cell line:KU812.CNhs10727.10409-106B43375.185.563.024.452.382.071.590.950.950.79
clear cell carcinoma cell line:JHOC-5.CNhs11745.10638-108I82687.0624.9011.607.815.912.115.703.593.801.90
clear cell carcinoma cell line:TEN.CNhs11930.10636-108I63172.4315.186.538.653.431.145.222.772.291.80
colon carcinoma cell line:CACO-2.CNhs11280.10513-107D93209.427.634.957.496.080.711.841.411.701.98
colon carcinoma cell line:COLO-320.CNhs10737.10420-106C61023.952.381.080.870.220.220.430.220.000.00
colon, adult, donor1.CNhs11794.10082-102B15346.556.9712.9419.9117.917.964.987.968.962.99
colon, adult, pool1.CNhs10619.10014-101C54235.1728.229.1115.4815.1313.893.368.142.923.01
colon, fetal, donor1.CNhs11780.10070-101I74269.8820.1610.3912.2232.3820.163.0612.2215.892.44
cord blood derived cell line:COBL-a 24h infection(-C).CNhs11049.10452-106G22427.9225.505.342.371.480.591.781.192.081.48
cord blood derived cell line:COBL-a 24h infection.CNhs11050.10453-106G35663.8046.4610.2611.006.432.103.834.325.682.47
cord blood derived cell line:COBL-a untreated.CNhs11045.10449-106F85879.3745.0110.2310.446.061.784.183.653.243.34
corpus callosum, adult, pool1.CNhs10649.10042-101F63461.4513.753.572.631.420.941.482.291.211.08
diaphragm, fetal, donor1.CNhs11779.10069-101I61803.3913.648.8312.048.033.210.804.013.212.41
diencephalon, adult.CNhs12610.10193-103E42493.2818.989.376.0911.013.753.282.814.451.64
diffuse large B-cell lymphoma cell line:CTB-1.CNhs11741.10631-108I14777.2110.2233.9412.049.317.8513.145.666.395.47
ductal cell carcinoma cell line:KLM-1.CNhs11100.10438-106E62674.747.834.309.005.480.201.170.391.371.37
ductal cell carcinoma cell line:MIA Paca2.CNhs11259.10488-107B24117.5619.919.4711.1711.652.193.643.642.433.40
ductus deferens, adult.CNhs12846.10196-103E72477.605.927.104.744.743.951.973.163.161.58
duodenum, fetal, donor1, tech_rep1.CNhs11781.10071-101I83321.2010.8921.7818.1510.894.844.848.476.056.05
temporal lobe, fetal, donor1, tech_rep2.CNhs12996.10063-101H93109.0918.0613.1610.414.902.144.593.062.144.90
dura mater, adult, donor1.CNhs10648.10041-101F57751.2915.999.866.076.9511.253.732.911.771.64
embryonic kidney cell line: HEK293/SLAM infection, 24hr.CNhs11047.10451-106G1794.1643.741.651.500.901.200.900.900.900.15
embryonic kidney cell line: HEK293/SLAM untreated.CNhs11046.10450-106F91851.1568.023.944.153.111.241.451.561.240.93
embryonic pancreas cell line:1B2C6.CNhs11731.10604-108F11202.3618.611.335.988.640.661.330.001.990.66
embryonic pancreas cell line:1C3D3.CNhs11732.10605-108F21900.2225.493.649.604.300.660.661.992.651.32
embryonic pancreas cell line:1C3IKEI.CNhs11733.10606-108F31687.7020.410.941.883.770.310.310.001.570.63
embryonic pancreas cell line:2C6.CNhs11814.10603-108E91458.768.361.195.9711.951.192.390.001.193.58
endometrial carcinoma cell line:OMC-2.CNhs11266.10497-107C21641.3410.254.272.857.120.850.851.423.420.85
endometrial stromal sarcoma cell line:OMC-9.CNhs11249.10448-106F73249.0124.829.579.2911.090.693.192.912.503.05
endometrioid adenocarcinoma cell line:JHUEM-1.CNhs11748.10643-109A44677.9614.9325.6913.717.123.9912.503.644.174.34
epidermoid carcinoma cell line:A431.CNhs10743.10426-106D32607.1915.196.179.1110.091.671.962.652.743.23
epidermoid carcinoma cell line:Ca Ski.CNhs10748.10431-106D84636.6913.415.576.274.612.442.001.742.182.87
epididymis, adult.CNhs12847.10197-103E82996.9110.6612.067.694.549.445.2417.126.294.19
epithelioid sarcoma cell line:HS-ES-1.CNhs11247.10443-106F23524.5125.6310.3213.4118.751.204.823.445.854.82
epitheloid carcinoma cell line: HelaS3 ENCODE, biol_rep1.CNhs12325.10815-111B51956.805.718.134.642.522.032.813.482.030.77
epitheloid carcinoma cell line: HelaS3 ENCODE, biol_rep2.CNhs12326.10816-111B61610.303.294.462.271.532.412.411.971.240.88
epitheloid carcinoma cell line: HelaS3 ENCODE, biol_rep3.CNhs12327.10817-111B72116.127.069.366.414.022.464.682.051.812.22
esophagus, adult, pool1.CNhs10620.10015-101C67377.1816.9715.2319.5915.0323.576.1113.294.364.95
extraskeletal myxoid chondrosarcoma cell line:H-EMC-SS.CNhs10728.10410-106B52346.3813.682.122.381.321.770.791.150.620.97
eye, fetal, donor1.CNhs11762.10054-101G91898.2413.117.232.033.622.262.712.262.491.13
fibrosarcoma cell line:HT-1080.CNhs11860.10758-110E23571.8632.4812.6112.3312.475.345.215.624.804.39
fibrous histiocytoma cell line:GCT TIB-223.CNhs11842.10711-109H92882.3626.635.5612.3214.112.582.583.584.772.98
frontal lobe, adult, pool1.CNhs10647.10040-101F42281.9114.942.852.150.441.141.080.700.440.44
gall bladder carcinoma cell line:TGBC14TKB.CNhs11256.10470-106I21903.3010.957.244.309.580.783.523.323.521.56
gall bladder carcinoma cell line:TGBC2TKB.CNhs10733.10415-106C13846.2617.886.657.376.811.682.572.080.963.13
gall bladder, adult.CNhs12848.10198-103E94584.1215.5810.037.476.8313.456.408.112.991.92
gastric adenocarcinoma cell line:MKN1.CNhs11737.10614-108G22349.367.9912.596.792.802.205.391.603.002.60
gastric adenocarcinoma cell line:MKN45.CNhs11819.10612-108F91162.523.173.313.312.881.581.301.011.010.72
gastric cancer cell line:AZ521.CNhs11286.10549-107H91309.6129.321.722.981.600.920.920.800.570.80
gastrointestinal carcinoma cell line:ECC12.CNhs11738.10615-108G31113.4822.993.432.061.201.371.541.030.860.69
giant cell carcinoma cell line:LU65.CNhs11274.10487-107B13325.3619.308.648.646.050.582.881.441.580.86
giant cell carcinoma cell line:Lu99B.CNhs10751.10433-106E14144.9420.504.606.595.474.351.992.611.742.73
glassy cell carcinoma cell line:HOKUG.CNhs11824.10688-109F42196.6713.677.5412.029.430.473.062.834.953.77
glioblastoma cell line:A172, tech_rep2.CNhs11248.10444-106F35251.7543.7614.5416.0436.831.094.213.269.389.11
glioblastoma cell line:A172.CNhs11185.10444-106F35720.7344.2514.0221.7621.552.204.294.086.178.47
glioblastoma cell line:T98G.CNhs11272.10485-107A85146.2234.5814.3814.2811.021.434.593.373.164.39
glioma cell line:GI-1.CNhs10731.10413-106B85012.7114.746.653.768.675.782.313.765.781.16
globus pallidus - adult, donor10196.CNhs13801.10175-103C42087.668.410.601.2010.212.400.603.601.200.60
globus pallidus, adult, donor10252.CNhs12319.10161-103A82200.488.496.165.206.162.463.152.461.921.37
granulocyte macrophage progenitor, donor1.CNhs12519.12131-128D71548.296.390.002.551.280.000.000.000.000.00
granulosa cell tumor cell line:KGN.CNhs11740.10624-108H35245.7225.797.7422.357.312.153.872.585.165.59
hairy cell leukemia cell line:Mo.CNhs11843.10712-109I17651.3462.8323.4026.5518.147.8911.307.899.207.36
heart - mitral valve, adult.CNhs12855.10205-103F71851.367.827.265.861.681.683.072.512.232.51
heart - pulmonic valve, adult.CNhs12856.10206-103F82219.655.962.524.353.901.831.151.375.960.46
heart - tricuspid valve, adult.CNhs12857.10207-103F92709.2510.777.185.033.594.311.445.0310.050.00
heart, adult, diseased post-infarction, donor1.CNhs11757.10050-101G52255.778.3913.783.994.994.196.393.002.801.40
heart, adult, diseased, donor1.CNhs11758.10051-101G61419.025.586.013.002.150.432.151.291.292.15
heart, adult, pool1.CNhs10621.10016-101C72214.538.264.914.697.813.352.454.462.451.79
heart, fetal, pool1.CNhs10653.10046-101G11631.285.111.611.410.400.600.740.540.400.40
hepatic mesenchymal tumor cell line:LI90.CNhs11868.10778-110G49694.5941.7927.3837.8366.668.6511.8911.1711.5311.89
hepatoblastoma cell line:HuH-6.CNhs11742.10633-108I31238.358.151.162.334.660.000.000.004.660.00
hepatocellular carcinoma cell line: HepG2 ENCODE, biol_rep1.CNhs12328.10818-111B81997.156.307.724.253.312.363.311.651.581.18
hepatocellular carcinoma cell line: HepG2 ENCODE, biol_rep2.CNhs12329.10819-111B91927.716.357.664.123.712.643.791.981.572.14
hepatocellular carcinoma cell line: HepG2 ENCODE, biol_rep3.CNhs12330.10820-111C11975.936.675.063.842.092.433.441.481.151.55
hepatoma cell line:Li-7.CNhs11271.10484-107A71842.564.825.224.332.850.591.481.180.891.18
hereditary spherocytic anemia cell line:WIL2-NS.CNhs11891.10808-111A76587.0818.0410.5810.9213.123.134.324.834.743.22
hippocampus - adult, donor10196.CNhs13795.10169-103B71913.3216.701.591.597.163.984.772.391.591.59
hippocampus, adult, donor10252.CNhs12312.10153-102I91316.008.445.453.685.041.501.233.133.001.09
iPS differentiation to neuron, control donor C11-CRL2429, day00, rep2.CNhs13822.13425-144D54127.0228.2916.4018.1711.906.117.2312.549.324.50
iPS differentiation to neuron, control donor C32-CRL1502, day00, rep1.CNhs13826.13433-144E44191.7933.0120.3619.6717.1912.5210.0415.6813.755.78
iPS differentiation to neuron, control donor C32-CRL1502, day00, rep2.CNhs13839.13437-144E83785.9135.7326.1724.1026.1718.2818.6930.7427.4212.46
immature langerhans cells, donor1.CNhs13537.11904-125F55040.9924.9713.7210.1213.053.151.802.701.353.15
immature langerhans cells, donor2.CNhs13480.11905-125F65853.0434.058.5114.706.963.106.197.746.195.42
insula, adult, pool1.CNhs10646.10039-101F32500.4517.192.862.250.970.610.790.550.360.49
keratoacanthoma cell line:HKA-1.CNhs11880.10791-110H81913.9910.734.705.374.365.373.695.702.352.68
kidney, adult, pool1.CNhs10622.10017-101C83189.3510.407.254.734.334.263.942.761.342.84
kidney, fetal, pool1.CNhs10652.10045-101F92887.948.343.252.991.312.361.260.730.370.58
large cell lung carcinoma cell line:IA-LM.CNhs11277.10509-107D51320.433.592.112.013.270.740.740.531.270.95
large cell lung carcinoma cell line:NCI-H460.CNhs12806.10839-111E22082.4214.883.776.102.512.693.771.970.901.43
large cell non-keratinizing squamous carcinoma cell line:SKG-II-SF.CNhs11825.10692-109F82446.539.405.768.6410.941.151.731.343.073.84
left atrium, adult, donor1.CNhs11790.10079-102A72640.807.8610.016.437.1510.012.1414.2911.445.72
left ventricle, adult, donor1.CNhs11789.10078-102A62249.795.968.617.289.936.622.658.613.312.65
leiomyoblastoma cell line:G-402.CNhs11848.10721-110A14701.4348.5716.0225.4333.564.323.563.314.077.88
leiomyoma cell line:10964C.CNhs11722.10569-108B25586.3884.1623.8914.665.437.069.774.897.063.80
leiomyoma cell line:15242A.CNhs11723.10570-108B36735.7480.3720.7419.014.326.0512.103.464.320.86
leiomyoma cell line:15425.CNhs11724.10571-108B46358.6671.8535.6017.969.476.2112.416.216.864.25
lens epithelial cell line:SRA 01/04.CNhs11750.10647-109A82273.6811.973.590.003.590.001.201.201.204.79
leukemia, chronic megakaryoblastic cell line:MEG-01.CNhs11859.10752-110D52949.3419.216.405.018.702.631.641.642.222.13
liposarcoma cell line:KMLS-1.CNhs11870.10782-110G84140.2621.3012.4410.2210.225.285.625.114.433.92
liposarcoma cell line:SW 872.CNhs11851.10726-110A63241.7526.977.149.8611.563.973.292.951.364.08
liver, adult, pool1.CNhs10624.10018-101C93071.8810.706.167.035.868.793.6611.721.911.32
liver, fetal, pool1.CNhs11798.10086-102B53357.7211.9311.937.955.309.286.6310.6010.602.65
locus coeruleus - adult, donor10196.CNhs13808.10182-103D22121.4012.542.593.626.081.941.812.462.460.52
locus coeruleus, adult, donor10252.CNhs12322.10165-103B31396.6413.094.362.382.251.721.322.911.590.93
lung adenocarcinoma cell line:A549.CNhs11275.10499-107C43284.1811.635.997.3613.342.222.052.053.593.25
lung adenocarcinoma cell line:PC-14.CNhs10726.10408-106B34127.4016.214.9311.9813.390.700.000.700.702.82
lung, adult, pool1.CNhs10625.10019-101D15122.9124.5613.2411.1113.3522.758.6511.322.465.45
lung, fetal, donor1.CNhs11680.10068-101I52560.396.603.774.400.470.471.570.630.790.47
lung, right lower lobe, adult, donor1.CNhs11786.10075-102A34357.7923.6114.0813.6721.9538.118.2833.5533.556.63
lymph node, adult, donor1.CNhs11788.10077-102A57276.2726.3021.3418.8514.8835.238.4329.2724.316.45
lymphangiectasia cell line:DS-1.CNhs11852.10727-110A73121.6721.3413.0413.8312.653.166.723.364.152.96
lymphoma, malignant, hairy B-cell cell line:MLMA.CNhs11935.10775-110G15800.6216.8115.4714.258.042.806.584.142.562.68
malignant trichilemmal cyst cell line:DJM-1.CNhs10730.10412-106B72033.1212.774.4712.139.580.002.551.281.920.00
mature adipocyte, donor1.CNhs12558.12231-129F82519.3512.511.092.187.072.181.632.180.541.09
mature adipocyte, donor2.CNhs12559.12232-129F92274.5118.051.504.266.270.501.252.260.751.25
mature adipocyte, donor3.CNhs12560.12233-129G11921.7110.112.454.292.143.371.231.530.610.92
mature adipocyte, donor4.CNhs12562.12234-129G21581.6610.491.973.932.300.660.661.970.330.33
maxillary sinus tumor cell line:HSQ-89.CNhs10732.10414-106B91208.226.281.262.363.462.040.001.730.790.94
medial frontal gyrus - adult, donor10196.CNhs13796.10170-103B81696.8214.182.664.432.662.660.892.660.890.89
medial temporal gyrus - adult, donor10196.CNhs13809.10183-103D31832.8314.6411.963.903.295.615.498.053.422.56
medial temporal gyrus, adult, donor10252.CNhs12310.10150-102I61211.227.762.632.752.001.880.502.251.251.00
medulla oblongata - adult, donor10196.CNhs13800.10174-103C31718.5111.472.871.729.171.722.871.152.870.57
medulla oblongata, adult, donor10252.CNhs12315.10155-103A21700.658.654.882.441.332.221.773.332.330.78
medulla oblongata, adult, pool1.CNhs10645.10038-101F23501.8619.683.103.040.620.811.060.620.430.43
medulloblastoma cell line:D283 Med.CNhs12805.10838-111E11451.972.493.602.081.110.691.800.690.970.42
medulloblastoma cell line:ONS-76.CNhs11861.10759-110E34341.0728.258.7512.1219.503.252.872.871.623.25
melanoma cell line:COLO 679.CNhs11281.10514-107E12523.2936.403.944.405.163.494.553.342.582.27
melanoma cell line:G-361.CNhs11254.10465-106H62598.5941.396.285.718.562.573.433.437.420.00
meningioma cell line:HKBMM.CNhs11945.10691-109F72985.0510.3514.829.885.184.946.353.062.594.00
merkel cell carcinoma cell line:MKL-1.CNhs12838.10843-111E61673.3616.3910.7712.184.220.471.411.874.226.56
merkel cell carcinoma cell line:MS-1.CNhs12839.10844-111E71466.7510.145.804.491.301.012.032.033.191.59
mesenchymal precursor cell - adipose, donor1.CNhs12363.11747-123G14497.7923.2813.737.914.6310.456.874.337.313.28
mesenchymal precursor cell - adipose, donor2.CNhs12364.11748-123G25820.6313.0910.758.885.6110.984.212.105.144.44
mesenchymal precursor cell - adipose, donor3.CNhs12365.11749-123G34113.8920.536.666.661.661.663.882.772.771.11
mesenchymal precursor cell - bone marrow, donor1.CNhs12366.11750-123G45594.028.716.825.114.7412.314.173.603.602.65
mesenchymal precursor cell - bone marrow, donor2.CNhs12367.11751-123G54509.8614.095.798.553.2710.063.524.784.531.51
mesenchymal precursor cell - bone marrow, donor3.CNhs13098.11840-124H43633.9918.698.015.348.011.783.562.671.781.78
mesenchymal precursor cell - cardiac, donor1.CNhs12368.11752-123G62093.899.154.813.431.146.641.371.374.120.69
mesenchymal precursor cell - cardiac, donor2.CNhs12369.11753-123G73956.3512.558.924.841.3612.252.422.277.861.36
mesenchymal precursor cell - cardiac, donor3.CNhs12370.11754-123G85778.2216.7912.438.085.1310.264.976.066.841.87
mesenchymal precursor cell - cardiac, donor4.CNhs12371.11755-123G94540.9316.866.956.653.707.842.964.884.881.77
mesenchymal precursor cell - ovarian cancer left ovary, donor1.CNhs12372.11756-123H15492.3916.8911.318.606.0510.995.263.824.783.50
mesenchymal precursor cell - ovarian cancer left ovary, donor2.CNhs13092.11833-124G61653.488.553.604.050.451.351.352.700.452.70
mesenchymal precursor cell - ovarian cancer left ovary, donor3.CNhs12376.11760-123H57113.3718.1710.7113.356.8311.184.814.668.073.57
mesenchymal precursor cell - ovarian cancer left ovary, donor4.CNhs13094.11836-124G96612.4924.0520.7412.8611.612.905.817.465.394.56
mesenchymal precursor cell - ovarian cancer metastasis, donor1.CNhs12374.11758-123H36212.1917.0111.7011.435.8510.375.325.054.792.13
mesenchymal precursor cell - ovarian cancer metastasis, donor2.CNhs13093.11835-124G86389.8137.5710.969.9113.579.397.834.705.746.78
mesenchymal precursor cell - ovarian cancer metastasis, donor3.CNhs12378.11762-123H78367.2518.4811.1211.426.7613.226.767.8110.221.95
mesenchymal precursor cell - ovarian cancer metastasis, donor4.CNhs13097.11838-124H27170.1849.5016.3714.4718.6617.1413.338.384.5710.28
mesenchymal precursor cell - ovarian cancer right ovary, donor1.CNhs12373.11757-123H24117.5321.168.147.734.073.252.441.224.070.81
mesenchymal precursor cell - ovarian cancer right ovary, donor2.CNhs12375.11759-123H46830.0515.0914.009.094.9116.557.467.8211.273.64
mesenchymal precursor cell - ovarian cancer right ovary, donor3 (SOC-57-02).CNhs12377.11761-123H65511.3417.1911.176.774.8310.964.623.766.551.93
mesenchymal precursor cell - ovarian cancer right ovary, donor3 (SOC-57-02-G).CNhs13507.11842-124H64349.8511.6013.466.506.962.786.033.253.253.71
mesenchymal precursor cell - ovarian cancer right ovary, donor4.CNhs13096.11837-124H17953.5633.4421.1018.3119.115.1810.756.776.775.18
mesenchymal stem cell line:Hu5/E18.CNhs11718.10568-108B16381.6449.2038.0020.8013.605.6018.405.206.804.80
mesenchymal stem cells (adipose derived), adipogenic induction, 00hr00min, biol_rep2.CNhs13420.13230-141I86922.8647.7316.4814.7710.6511.689.9611.338.936.18
mesenchymal stem cells (adipose derived), adipogenic induction, 00hr00min, biol_rep3.CNhs13421.13231-141I97411.1844.7921.2220.5412.467.078.088.087.075.39
mesodermal tumor cell line:HIRS-BM.CNhs12191.10696-109G35261.9121.451.263.7912.620.001.263.795.052.52
mesothelioma cell line:ACC-MESO-1.CNhs11263.10493-107B73198.2640.849.6313.2931.011.542.312.705.785.59
mesothelioma cell line:ACC-MESO-4.CNhs11264.10494-107B83378.5329.169.0112.0117.581.291.723.433.654.50
mesothelioma cell line:Mero-25.CNhs13066.10850-111F42702.3315.146.006.523.131.837.313.131.042.87
mesothelioma cell line:Mero-41.CNhs13067.10851-111F58433.0128.5624.9418.8211.114.5310.207.034.315.67
mesothelioma cell line:Mero-48a.CNhs13068.10852-111F68028.7434.2726.3927.7811.588.3312.277.417.875.79
mesothelioma cell line:Mero-82.CNhs13069.10853-111F73176.1920.5611.5011.507.102.205.634.165.873.92
mesothelioma cell line:Mero-83.CNhs13070.10854-111F83751.3724.3610.758.958.604.305.555.734.842.87
mesothelioma cell line:Mero-84.CNhs13072.10855-111F96266.8245.7023.7818.539.264.9410.815.871.858.96
mesothelioma cell line:Mero-95.CNhs13073.10856-111G15456.4538.5916.2312.0610.968.5510.095.044.603.29
mesothelioma cell line:NCI-H2052.CNhs13063.10847-111F13420.7019.269.547.422.830.713.001.242.471.94
mesothelioma cell line:NCI-H226.CNhs13062.10846-111E96263.9250.1615.6314.479.845.9811.965.984.244.44
mesothelioma cell line:NCI-H2452.CNhs13064.10848-111F23495.5918.4110.988.793.892.375.913.212.873.55
mesothelioma cell line:NCI-H28.CNhs13061.10845-111E82221.3624.347.699.483.840.773.331.792.311.28
mesothelioma cell line:No36.CNhs13074.10857-111G24268.1412.0913.8213.476.915.535.535.533.112.42
mesothelioma cell line:ONE58.CNhs13075.10858-111G34306.6119.1418.8424.619.123.958.818.204.253.95
middle temporal gyrus, donor10252.CNhs12316.10156-103A31266.725.812.901.383.041.521.241.660.970.00
migratory langerhans cells, donor1.CNhs13535.11901-125F215843.3143.4552.8138.5841.519.5521.4316.376.2418.51
migratory langerhans cells, donor2.CNhs13536.11902-125F315490.1836.8034.6836.0131.2211.4313.6910.894.3813.69
migratory langerhans cells, donor3.CNhs13547.11903-125F414619.9736.9727.3241.3842.538.6710.808.513.7610.47
mixed mullerian tumor cell line:HTMMT.CNhs11944.10689-109F52764.0422.2814.0922.934.593.283.936.228.855.57
mucinous adenocarcinoma cell line:JHOM-1.CNhs11752.10648-109A93607.4523.8418.6813.7618.927.3710.575.907.623.69
mucinous cystadenocarcinoma cell line:MCAS.CNhs11873.10784-110H13297.7410.578.889.3021.981.902.323.591.903.80
mycosis fungoides, T cell lymphoma cell line:HuT 102 TIB-162.CNhs11858.10744-110C612001.8483.3935.6040.2034.4025.2014.6015.4017.609.60
myelodysplastic syndrome cell line:SKM-1.CNhs11934.10772-110F73189.348.548.008.225.120.533.951.811.281.28
myeloma cell line:PCM6.CNhs11258.10474-106I63388.678.969.828.448.271.554.653.964.132.41
myxofibrosarcoma cell line:MFH-ino.CNhs11729.10600-108E63823.3511.355.116.245.111.141.700.576.815.11
myxofibrosarcoma cell line:NMFH-1.CNhs11821.10684-109E92465.1810.864.426.444.971.471.660.742.211.10
nasal epithelial cells, donor1, tech_rep1.CNhs12589.12226-129F34204.369.796.299.657.273.924.485.182.943.50
nasal epithelial cells, donor2.CNhs12574.12227-129F43684.5612.446.224.983.111.241.241.241.871.87
neuroblastoma cell line:CHP-134.CNhs11276.10508-107D41911.135.243.204.224.990.131.021.410.901.02
neuroblastoma cell line:NB-1.CNhs11284.10539-107G82703.6021.674.536.045.500.972.051.400.972.26
neuroblastoma cell line:NBsusSR.CNhs11818.10607-108F41054.474.563.623.151.890.791.570.790.940.79
neuroblastoma cell line:NH-12.CNhs11811.10555-107I61212.559.503.062.182.181.090.550.330.760.55
neuroectodermal tumor cell line:TASK1.CNhs11866.10774-110F91946.837.816.456.7911.543.563.392.042.891.70
neuroectodermal tumor cell line:FU-RPNT-1.CNhs11744.10637-108I72028.394.688.503.615.101.493.402.762.132.34
neuroectodermal tumor cell line:FU-RPNT-2.CNhs11753.10663-109C61379.535.707.684.216.323.974.093.726.321.98
neuroepithelioma cell line:SK-N-MC.CNhs11853.10728-110A81586.556.702.795.0311.730.561.680.561.121.12
neurofibroma cell line:Hs 53.T.CNhs11854.10729-110A98426.8035.3029.5745.4766.463.509.869.8612.4012.72
non T non B acute lymphoblastic leukemia (ALL) cell line:P30/OHK.CNhs10747.10430-106D71330.483.231.421.421.100.470.630.791.260.47
non-small cell lung cancer cell line:NCI-H1385.CNhs12193.10730-110B11775.6722.421.601.600.800.800.000.800.800.00
normal embryonic palatal mesenchymal cell line:HEPM.CNhs11894.10813-111B34824.9628.9216.5821.5116.939.8711.6411.6410.235.64
normal intestinal epithelial cell line:FHs 74 Int.CNhs11950.10812-111B28227.5942.5725.7222.667.353.987.356.4314.393.98
nucleus accumbens, adult, pool1.CNhs10644.10037-101F12474.3014.321.732.181.161.030.830.960.321.03
occipital cortex - adult, donor10196.CNhs13798.10172-103C11761.2917.004.254.250.002.830.000.002.832.83
occipital cortex, adult, donor10252.CNhs12320.10163-103B11162.615.593.993.194.471.441.602.392.390.32
occipital lobe, adult, donor1.CNhs11787.10076-102A42673.6926.053.6912.1022.1517.021.6413.135.132.46
occipital lobe, fetal, donor1.CNhs11784.10073-102A12528.0316.6411.3410.3311.6010.086.0512.104.035.80
occipital pole, adult, pool1.CNhs10643.10036-101E93308.6222.893.732.701.040.971.380.350.480.55
olfactory region, adult.CNhs12611.10195-103E62060.9113.565.655.494.681.782.422.754.201.45
optic nerve, donor1.CNhs13449.10277-104E73005.3024.274.2811.424.284.284.284.282.862.86
oral squamous cell carcinoma cell line:Ca9-22.CNhs10752.10434-106E22112.047.663.732.753.243.441.281.280.791.67
oral squamous cell carcinoma cell line:HO-1-u-1.CNhs11287.10550-107I11339.436.843.072.012.600.120.830.350.710.59
oral squamous cell carcinoma cell line:HSC-3.CNhs11717.10545-107H53101.7811.3717.068.074.404.595.502.022.572.75
oral squamous cell carcinoma cell line:SAS.CNhs11810.10544-107H42547.806.355.555.896.012.893.232.081.961.85
osteoclastoma cell line:Hs 706.T.CNhs11835.10704-109H25723.7828.2210.6819.077.631.143.433.054.582.67
osteosarcoma cell line:143B/TK^(-)neo^(R).CNhs11279.10510-107D62727.617.598.977.5910.360.000.690.003.453.45
osteosarcoma cell line:HS-Os-1.CNhs11290.10558-107I92988.126.175.573.984.770.801.791.191.190.80
ovary, adult, pool1.CNhs10626.10020-101D25458.1614.596.099.488.6516.853.9910.001.882.71
pagetoid sarcoma cell line:Hs 925.T.CNhs11856.10732-110B34956.1038.7319.1633.0847.805.659.487.066.258.67
pancreas, adult, donor1.CNhs11756.10049-101G41057.397.036.252.341.560.780.783.132.343.13
pancreatic carcinoma cell line:NOR-P1.CNhs11832.10698-109G52622.219.958.907.8611.265.244.452.628.382.62
papillary adenocarcinoma cell line:8505C.CNhs11716.10437-106E54013.8922.2721.958.685.084.4210.483.114.094.75
papillotubular adenocarcinoma cell line:TGBC18TKB.CNhs10734.10417-106C34298.1815.825.327.108.283.251.333.401.772.81
paracentral gyrus, adult, pool1.CNhs10642.10035-101E82520.6416.952.092.231.350.341.080.470.810.41
parietal lobe - adult, donor10196.CNhs13797.10171-103B91539.5012.507.030.783.914.693.912.344.690.78
parietal lobe, adult, donor10252.CNhs12317.10157-103A41094.616.202.891.032.070.831.031.861.240.83
parietal lobe, adult, pool1.CNhs10641.10034-101E72395.5316.681.781.970.821.011.200.760.440.82
parietal lobe, fetal, donor1.CNhs11782.10072-101I91871.7510.3910.3910.9413.134.926.567.665.473.28
parotid gland, adult.CNhs12849.10199-103F11718.241.644.394.392.740.002.191.101.641.64
penis, adult.CNhs12850.10200-103F24037.6711.9117.8618.365.462.986.955.466.454.47
peripheral neuroectodermal tumor cell line:KU-SN.CNhs11830.10697-109G42819.0419.527.568.624.051.413.691.762.462.29
pharyngeal carcinoma cell line:Detroit 562.CNhs11849.10723-110A33340.3511.889.0710.8614.444.226.003.193.193.71
pineal gland - adult, donor10196.CNhs13804.10179-103C8755.8810.182.140.541.610.541.070.000.540.54
pineal gland, adult, donor10252.CNhs12228.10160-103A7670.215.041.351.010.340.000.340.340.340.34
pituitary gland - adult, donor10196.CNhs13805.10180-103C91086.479.712.431.211.821.212.431.210.610.61
pituitary gland, adult, donor10252.CNhs12229.10162-103A9869.446.831.140.911.140.230.230.230.230.23
placenta, adult, pool1.CNhs10627.10021-101D33222.2912.065.414.084.173.812.663.190.891.69
plasma cell leukemia cell line:ARH-77.CNhs12807.10840-111E34587.9325.938.309.332.771.964.151.612.072.42
pleomorphic hepatocellular carcinoma cell line:SNU-387.CNhs11933.10706-109H44789.6615.0912.189.4314.062.923.603.776.001.89
pons, adult, pool1.CNhs10640.10033-101E62198.6814.411.772.181.160.680.820.610.610.68
postcentral gyrus, adult, pool1.CNhs10638.10032-101E52926.8919.074.413.620.991.321.451.380.791.12
prostate cancer cell line:DU145.CNhs11260.10490-107B43141.0029.558.518.637.801.303.663.192.362.72
prostate cancer cell line:PC-3.CNhs11243.10439-106E72248.659.128.2310.0120.911.001.782.673.894.12
prostate, adult, pool1.CNhs10628.10022-101D44856.6814.055.426.916.0411.622.354.632.281.41
putamen, adult, donor10196.CNhs12324.10176-103C51878.0010.376.442.832.202.512.041.892.201.26
rectal cancer cell line:TT1TKB.CNhs11255.10469-106I12024.695.614.207.2922.700.000.562.246.453.08
rectum, fetal, donor1.CNhs11777.10067-101I43105.6521.9216.448.2215.524.575.4812.787.317.31
renal cell carcinoma cell line:OS-RC-2.CNhs10729.10411-106B63009.1739.513.453.020.861.081.942.160.651.30
renal cell carcinoma cell line:TUHR10TKB.CNhs11257.10471-106I3466.767.640.482.391.430.001.910.480.960.96
retina, adult, pool1.CNhs10636.10030-101E32161.819.152.001.861.222.291.140.860.500.57
retinoblastoma cell line:Y79.CNhs11267.10475-106I71067.864.902.051.903.000.161.260.791.110.79
rhabdomyosarcoma cell line:KYM-1.CNhs11877.10787-110H42733.1820.9210.6911.2819.882.213.494.422.564.30
rhabdomyosarcoma cell line:RMS-YM.CNhs11269.10477-106I91525.617.134.005.5613.210.701.220.352.432.78
sacrococcigeal teratoma cell line:HTST.CNhs11829.10695-109G24298.7821.658.8216.8427.260.001.601.607.228.82
salivary acinar cells, donor1.CNhs12810.11771-123I72309.4210.364.143.522.903.522.072.072.071.04
salivary acinar cells, donor2.CNhs12811.11772-123I82093.8610.243.594.100.680.511.370.682.561.02
salivary acinar cells, donor3.CNhs12812.11773-123I91529.076.220.005.534.150.000.690.003.461.38
salivary gland, adult, pool1.CNhs11677.10093-102C31618.091.723.442.581.290.432.151.720.430.00
schwannoma cell line:HS-PSS, tech_rep2.CNhs11245.10442-106F12595.3820.714.854.145.801.542.012.482.841.18
schwannoma cell line:HS-PSS.CNhs11183.10442-106F13054.0528.635.285.285.453.922.561.620.772.22
seminal vesicle, adult.CNhs12851.10201-103F32657.1819.4844.4621.595.933.398.8911.856.358.47
serous adenocarcinoma cell line:JHOS-2.CNhs11746.10639-108I91435.356.644.814.351.831.152.060.461.601.15
serous adenocarcinoma cell line:SK-OV-3-R after co-culture with SOC-57-02-G, biol_rep1.CNhs13508.11843-124H71682.8711.794.343.721.551.863.722.790.311.24
serous adenocarcinoma cell line:SK-OV-3-R, biol_rep1.CNhs13099.11841-124H53274.6323.896.699.565.730.001.912.870.002.87
serous cystadenocarcinoma cell line:HTOA.CNhs11827.10693-109F92865.4011.196.945.592.571.682.352.911.571.34
signet ring carcinoma cell line:Kato III.CNhs10753.10436-106E41814.217.461.963.631.860.881.281.080.690.79
signet ring carcinoma cell line:NUGC-4.CNhs11270.10483-107A62205.8614.143.294.273.410.611.220.731.951.46
skeletal muscle - soleus muscle, donor1.CNhs13454.10282-104F3556.795.831.291.941.290.000.000.650.650.65
skeletal muscle, adult, pool1.CNhs10629.10023-101D51763.447.493.494.114.312.671.332.460.620.92
skeletal muscle, fetal, donor1.CNhs11776.10066-101I32957.539.2822.0418.566.966.9616.243.488.128.12
skin, fetal, donor1.CNhs11774.10065-101I21811.229.234.8613.1125.262.431.946.804.371.94
small cell cervical cancer cell line:HCSC-1.CNhs11885.10800-110I82884.0114.2713.8018.4812.163.514.445.613.743.28
small cell gastrointestinal carcinoma cell line:ECC10.CNhs11736.10610-108F71587.439.758.953.982.792.192.981.591.991.39
small cell lung carcinoma cell line:DMS 144.CNhs12808.10841-111E41836.1319.384.283.571.663.091.780.591.191.07
small cell lung carcinoma cell line:LK-2.CNhs11285.10541-107H11269.408.250.792.943.500.450.340.680.230.90
small cell lung carcinoma cell line:NCI-H82.CNhs12809.10842-111E51701.116.051.321.320.880.441.320.440.660.33
small cell lung carcinoma cell line:WA-hT.CNhs11812.10562-108A41499.827.252.263.173.170.600.450.601.361.51
small intestine, adult, pool1.CNhs10630.10024-101D64579.9016.757.0210.9613.0417.214.019.113.473.09
small intestine, fetal, donor1.CNhs11773.10064-101I13207.368.3116.176.565.256.568.744.378.524.15
small-cell gastrointestinal carcinoma cell line:ECC4.CNhs11734.10609-108F62014.3719.7513.175.172.820.473.765.172.353.29
smooth muscle, adult, pool1.CNhs11755.10048-101G38398.7819.6131.8725.2514.4616.6712.997.8411.037.35
somatostatinoma cell line:QGP-1.CNhs11869.10781-110G72014.8011.081.897.3110.371.180.712.361.181.41
spinal cord - adult, donor10196.CNhs13807.10181-103D12580.6716.4910.017.266.876.284.326.094.121.96
spinal cord, adult, donor10252.CNhs12227.10159-103A62641.638.024.164.751.780.301.192.672.670.89
spinal cord, fetal, donor1.CNhs11764.10056-101H22724.8619.4410.996.7614.794.238.036.762.965.49
spindle cell sarcoma cell line:Hs 132.T.CNhs11857.10737-110B811034.9048.2628.0435.3456.2510.038.337.486.1211.72
spleen, adult, pool1.CNhs10631.10025-101D75853.6919.7412.229.8710.1514.297.9913.912.823.38
spleen, fetal, pool1.CNhs10651.10044-101F85615.2515.414.834.832.844.642.002.711.481.68
splenic lymphoma with villous lymphocytes cell line:SLVL.CNhs10741.10424-106D16560.5411.499.497.207.402.504.803.102.402.90
squamous cell carcinoma cell line:EC-GI-10.CNhs11252.10463-106H41860.535.547.869.8216.250.002.862.505.892.68
squamous cell carcinoma cell line:T3M-5.CNhs11739.10616-108G42048.5514.474.944.943.880.352.120.000.711.41
squamous cell lung carcinoma cell line:EBC-1.CNhs11273.10486-107A91690.208.515.146.265.620.641.520.961.442.41
stomach, fetal, donor1.CNhs11771.10062-101H82078.5410.224.387.3022.642.920.732.195.114.38
submaxillary gland, adult.CNhs12852.10202-103F41620.234.136.425.055.050.468.263.670.924.13
substantia nigra, adult, donor10252.CNhs12318.10158-103A51663.036.746.454.014.162.582.292.723.441.43
synovial sarcoma cell line:HS-SY-II.CNhs11244.10441-106E92152.7910.104.897.7310.261.102.683.312.522.37
temporal lobe, adult, pool1.CNhs10637.10031-101E43472.6024.143.673.742.862.722.311.290.820.68
temporal lobe, fetal, donor1, tech_rep1.CNhs11772.10063-101H92549.6016.5810.042.6219.643.055.245.674.806.11
duodenum, fetal, donor1, tech_rep2.CNhs12997.10071-101I82984.7713.7518.5214.811.591.595.293.174.232.12
tenocyte, donor1.CNhs12639.11763-123H87184.7120.4632.3618.2313.762.608.566.705.956.70
tenocyte, donor2.CNhs12640.11765-123I13969.1615.2510.179.718.785.558.784.162.771.85
tenocyte, donor3.CNhs12641.11768-123I46525.3125.5223.7915.5717.315.1915.146.494.763.46
teratocarcinoma cell line:PA-1.CNhs11890.10807-111A64657.9420.9414.6416.9115.645.174.796.566.065.17
teratocarcinoma cell line:NCC-IT-A3.CNhs11878.10790-110H73975.5233.3314.4213.9912.893.724.814.376.773.72
teratocarcinoma cell line:NCR-G1.CNhs11884.10798-110I62468.4713.9410.529.508.745.575.453.296.082.53
testicular germ cell embryonal carcinoma cell line:ITO-II.CNhs11876.10786-110H33534.9319.077.859.5915.9119.794.906.027.653.26
testicular germ cell embryonal carcinoma cell line:NEC14.CNhs12351.10591-108D62634.5018.976.413.219.352.142.671.343.213.21
testicular germ cell embryonal carcinoma cell line:NEC15.CNhs12362.10593-108D82562.3114.245.796.896.349.833.311.844.412.48
testicular germ cell embryonal carcinoma cell line:NEC8.CNhs11726.10590-108D53169.4414.0419.568.024.762.017.274.516.522.76
testis, adult, pool1.CNhs10632.10026-101D83493.6324.484.706.448.4923.192.7323.423.492.50
testis, adult, pool2.CNhs12998.10096-102C61558.2122.244.293.752.411.882.141.611.610.54
thalamus - adult, donor10196.CNhs13794.10168-103B62055.518.294.981.664.981.660.833.325.800.83
thalamus, adult, donor10252.CNhs12314.10154-103A11629.696.934.342.693.313.311.862.482.280.72
throat, adult.CNhs12858.10209-103G22356.2410.456.613.622.134.903.623.202.563.62
throat, fetal, donor1.CNhs11770.10061-101H71634.797.865.242.144.294.292.142.142.141.90
thymus, adult, pool1.CNhs10633.10027-101D97440.7124.878.9810.017.3020.224.1316.214.463.68
thymus, fetal, pool1.CNhs10650.10043-101F73993.9516.084.034.592.616.271.302.671.551.06
thyroid carcinoma cell line:TCO-1.CNhs11872.10783-110G92976.658.3012.1110.209.873.813.814.933.033.03
thyroid, adult, pool1.CNhs10634.10028-101E11671.443.822.802.862.292.861.211.720.890.83
thyroid, fetal, donor1.CNhs11769.10060-101H61744.474.856.475.057.483.033.843.036.674.04
tongue, adult.CNhs12853.10203-103F52477.8310.6710.676.533.486.314.352.832.613.70
tongue, fetal, donor1.CNhs11768.10059-101H51958.948.219.925.822.743.424.796.166.162.05
tonsil, adult, pool1.CNhs10654.10047-101G25504.9513.545.466.062.762.363.032.490.471.41
trachea, adult, pool1.CNhs10635.10029-101E24000.6610.265.164.734.305.242.513.371.721.00
trachea, fetal, donor1.CNhs11766.10058-101H41780.408.984.667.325.322.663.992.662.992.66
transitional-cell carcinoma cell line:5637.CNhs10735.10418-106C43807.4828.413.174.885.211.791.951.630.732.52
transitional-cell carcinoma cell line:JMSU1.CNhs11261.10492-107B62045.648.117.265.9812.492.032.773.845.231.81
tridermal teratoma cell line:HGRT.CNhs11828.10694-109G13585.3521.2411.587.7242.480.001.931.9330.895.79
tubular adenocarcinoma cell line:SUIT-2.CNhs11883.10797-110I52675.179.794.946.026.473.951.352.433.682.25
umbilical cord, fetal, donor1.CNhs11765.10057-101H35220.7611.7316.4216.429.392.357.042.357.044.69
uterus, adult, pool1.CNhs11676.10100-102D15037.579.532.575.622.203.552.570.982.931.83
uterus, fetal, donor1.CNhs11763.10055-101H13503.7815.069.779.777.732.036.512.444.484.48
vagina, adult.CNhs12854.10204-103F62611.768.653.335.330.001.331.330.673.330.00
vein, adult.CNhs12844.10191-103E24351.7410.6715.107.454.434.035.845.035.033.22
xeroderma pigentosum b cell line:XPL 17.CNhs11813.10563-108A513378.6139.7538.7943.9228.5313.4618.598.668.669.94