Examples of reciprocialOverlapFraction()


Examples of org.broadinstitute.gatk.utils.GenomeLoc.reciprocialOverlapFraction()

            final GenomeLoc loc = getWalker().getToolkit().getGenomeLocParser().createGenomeLoc(cnv);
            IntervalTree<GenomeLoc> intervalTree = knownCNVs.get(loc.getContig());

            final Iterator<IntervalTree.Node<GenomeLoc>> nodeIt = intervalTree.overlappers(loc.getStart(), loc.getStop());
            while ( nodeIt.hasNext() ) {
                final double overlapP = loc.reciprocialOverlapFraction(nodeIt.next().getValue());
                if ( overlapP > MIN_CNV_OVERLAP )
                    return true;
            }
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.