Package org.broadinstitute.gatk.engine.walkers

Examples of org.broadinstitute.gatk.engine.walkers.Window.start()


        // Retrieve information about the window being accessed.
        if( walker.getClass().isAnnotationPresent(Reference.class) ) {
            Window window = walker.getClass().getAnnotation(Reference.class).window();

            if( window.start() > 0 ) throw new ReviewedGATKException( "Reference window starts after current locus" );
            if( window.stop() < 0 ) throw new ReviewedGATKException( "Reference window ends before current locus" );

            windowStart = window.start();
            windowStop = window.stop();
        }
View Full Code Here


            Window window = walker.getClass().getAnnotation(Reference.class).window();

            if( window.start() > 0 ) throw new ReviewedGATKException( "Reference window starts after current locus" );
            if( window.stop() < 0 ) throw new ReviewedGATKException( "Reference window ends before current locus" );

            windowStart = window.start();
            windowStop = window.stop();
        }
        else {
            windowStart = 0;
            windowStop = 0;
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.