Package org.broadinstitute.gatk.utils.recalibration

Examples of org.broadinstitute.gatk.utils.recalibration.ReadCovariates


        return tests.toArray(new Object[][]{});
    }
    @Test(dataProvider = "InfoProvider")
    public void testReadInfo(final int readLength, final boolean includeIndelErrors) {
        final ReadCovariates covariates = new ReadCovariates(readLength, 2);

        final byte[] bases = new byte[readLength];
        final byte[] baseQuals = new byte[readLength];
        final byte[] insertionQuals = new byte[readLength];
        final byte[] deletionQuals = new byte[readLength];
View Full Code Here

TOP

Related Classes of org.broadinstitute.gatk.utils.recalibration.ReadCovariates

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.