Package org.broadinstitute.gatk.engine.refdata

Examples of org.broadinstitute.gatk.engine.refdata.RODRecordListImpl


    public RODRecordList getOverlapping(final GenomeLoc loc) {
        if ( lastQuery != null && loc.getStart() < lastQuery.getStart() )
            throw new IllegalArgumentException(String.format("BUG: query interval (%s) starts before the previous interval %s", loc, lastQuery));

        readOverlappingFutureFeatures(loc);
        return new RODRecordListImpl(name, subsetToOverlapping(loc, currentFeatures), loc);
    }
View Full Code Here


            GenomeLoc loc = first.getLocation();
            for ( final GATKFeature feature : myFeatures )
                loc = loc.merge(feature.getLocation());

            return new RODRecordListImpl(name, myFeatures, loc); // is this safe?
        }
View Full Code Here

TOP

Related Classes of org.broadinstitute.gatk.engine.refdata.RODRecordListImpl

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.