var fDesc=new Array(); fDesc[0] = "J-Express contains many analysis methods and data preparation tools. Supervised methods, such as SAM, T-test, Rank Product, GSEA and more can discover patterns in the data and reveal genes or gene groups (such as gene ontology groups or metabolic pathways) differentially expressed between samples. Unsupervised methods, such as PCA, clustering methods and Correspondence analysis can organize the data and discover patterns, or reveal underlying biological functions such as co-regulation."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }