Examples of ValidateSamTester


Examples of picard.sam.testers.ValidateSamTester

        final int mergeExitStatus = runPicardCommandLine(args);
        Assert.assertEquals(mergeExitStatus, 0);
        final SAMFileReader reader = new SAMFileReader(mergedOutput);
        Assert.assertEquals(reader.getFileHeader().getSortOrder(), SAMFileHeader.SortOrder.coordinate);

        new ValidateSamTester().assertSamValid(mergedOutput);
    }
View Full Code Here

Examples of picard.sam.testers.ValidateSamTester

        assertSamValid(merged);
    }

    private void assertSamValid(final File sam) {
        new ValidateSamTester().assertSamValid(sam);
    }
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.