Package org.broadinstitute.gatk.utils.interval

Examples of org.broadinstitute.gatk.utils.interval.IntervalMergingRule


            return new FilePointer(IntervalMergingRule.ALL);
        }

        Map<SAMReaderID, List<GATKChunk>> fileChunks = new HashMap<SAMReaderID, List<GATKChunk>>();
        List<GenomeLoc> locations = new ArrayList<GenomeLoc>();
        IntervalMergingRule mergeRule = filePointers.get(0).getIntervalMergingRule();

        // First extract all intervals and file chunks from the FilePointers into unsorted, unmerged collections
        for ( FilePointer filePointer : filePointers ) {
            locations.addAll(filePointer.getLocations());
            if (mergeRule != filePointer.getIntervalMergingRule())
View Full Code Here

TOP

Related Classes of org.broadinstitute.gatk.utils.interval.IntervalMergingRule

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.