Package org.broadinstitute.gatk.utils.smithwaterman

Examples of org.broadinstitute.gatk.utils.smithwaterman.Parameters


            hap = hapString.getBytes();
            this.expected = expected;
        }
       
        public Map<Integer,VariantContext> calcAlignment() {
            final SWPairwiseAlignment alignment = new SWPairwiseAlignment(ref, hap, new Parameters(3,-1,-4, -1));
            final Haplotype h = new Haplotype(hap, false, alignment.getAlignmentStart2wrt1(), alignment.getCigar());
            return HaplotypeCallerGenotypingEngine.generateVCsFromAlignment(h, ref, genomeLocParser.createGenomeLoc("4", 1, 1 + ref.length), "name");
        }
View Full Code Here

TOP

Related Classes of org.broadinstitute.gatk.utils.smithwaterman.Parameters

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.