var fDesc=new Array();
fDesc[0] = "Applied Biosystems SeqScape® software is designed for reference based analysis such as mutation detection and analysis, SNP discovery and validation, pathogen sub-typing, allele identification, and sequence confirmation. This product is also integrated for use with VariantSEQr™ Resequencing Set.
Main Features:
- Analyze data faster and more accurately with software optimized for Applied Biosystems sequencing reagents and instruments.
- Obtain quality values for each base pair, consensus sequence and mutation using robust algorithms, enhanced display capabilities, and detailed results reports.
- Automatically process raw data from genetic analyzers and generate reports with mutations hyperlinked to the source electropherograms.
- Streamline your resequencing projects using VariantSEQr™ Resequencing System primer sets and pre-configured project templates for SeqScape® software.
- Focus on relevant data by using the view-by-layer feature so you can create many custom views of the same data, each with specific sets of exons and introns.";
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 = '';
}
}