var fDesc=new Array();
fDesc[0] = "The aim of MEGAN is to provide a tool for studying the taxonomic content of a set of DNA reads, typically collected in a metagenomics project.
Main features:
- Taxonomic analysis using the NCBI taxonomy or a customized taxonomy such as SILVA
- Functional analysis using InterPro2GO, SEED, eggNOG or KEGG
- Bar charts, word clouds, Voronoi tree maps and many other charts
- PCoA, clustering and networks
- Supports metadata
- MEGAN parses many different types of input";
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 = '';
}
}