var fDesc=new Array(); fDesc[0] = "CentiBiN is an application for the calculation and visualization of centralities for biological networks.
Features:
- Computing different vertex and graph centrality measures
- Visualize a network and the computed centralities with five different layout algorithms
- Display distribution plots and histograms for computed centralities
- Reading and writing networks in different file formats
- Navigation within the network (Zoom&Pan)"; 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 = ''; } }