Package org.broadinstitute.gatk.engine.contexts

Examples of org.broadinstitute.gatk.engine.contexts.ReferenceContext$ForwardingProvider


     * @param read the mapped read to test
     * @return
     */
    public ReferenceContext getReferenceContext( final SAMRecord read ) {
        GenomeLoc loc = genomeLocParser.createGenomeLoc(read);
        return new ReferenceContext( genomeLocParser, loc, loc, getReferenceBasesProvider(loc) );
    }
View Full Code Here


                referenceSequence = reference.getSequence(genomeLoc.getContig());
            refStart = (int)window.getStart()-1;
        }

        int len = (int)window.size();
        return new ReferenceContext( genomeLocParser, genomeLoc, window, new Provider(refStart, len));
    }
View Full Code Here

TOP

Related Classes of org.broadinstitute.gatk.engine.contexts.ReferenceContext$ForwardingProvider

Copyright © 2018 www.massapicom. 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.