Examples of RODRecordListImpl


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

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

            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
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.