Package org.broadinstitute.gatk.utils.sam

Examples of org.broadinstitute.gatk.utils.sam.ClippedGATKSAMRecord


            final ReadAnchoring anchoring = new ReadAnchoring(r,haplotypeGraph);
            if (anchoring.isAnchoredSomewhere())
                continue;
            final int start = anchoring.leftAnchorIndex;
            final int end = anchoring.rightAnchorIndex + haplotypeGraph.getKmerSize();
            final GATKSAMRecord clipped = new ClippedGATKSAMRecord(r, start, end);
            result.put(r, clipped);
        }
        return result;
    }
View Full Code Here

TOP

Related Classes of org.broadinstitute.gatk.utils.sam.ClippedGATKSAMRecord

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.