var fDesc=new Array();
fDesc[0] = "LigandScout is a fully integrated platform for accurate virtual screening based on 3D chemical feature pharmacophore models. It offers seamless workflows, starting both from ligand and structure based pharmacophore modeling, and includes novel high performance alignment algorithms for excellent prediction quality with unprecedented screening speed.
Features:
- Automatic interpretation of PDB ligands using geometry, dictionaries and rules.
- State-of-the-art user interface with advanced 3D graphics and undo-function.
- 2D view and hierarchical view directly linked to 3D interface.
- Fast alignment of molecules in their bio-active conformation to other molecules and 3D pharmacophores from several ligands and/or pharmacophores, shared feature pharmacophores can be derived to understand and model the relevant mode of action.
- Advanced handling of co-factors, ions, water molecules and covalently bound ligands.
- Pharmacophore export to Catalyst(tm), MOE(tm) and Phase(tm) for virtual screening.
- Extensive parameter control for more experienced users.";
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 = '';
}
}