Package htsjdk.samtools.filter
Class AlignedFilter
- java.lang.Object
-
- htsjdk.samtools.filter.AlignedFilter
-
- All Implemented Interfaces:
SamRecordFilter
public class AlignedFilter extends Object implements SamRecordFilter
Filter to either include or exclude aligned reads $Id$
-
-
Constructor Summary
Constructors Constructor Description AlignedFilter(boolean includeAligned)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanfilterOut(SAMRecord record)Determines whether a SAMRecord matches this filterbooleanfilterOut(SAMRecord first, SAMRecord second)Determines whether a pair of SAMRecord matches this filter
-
-
-
Method Detail
-
filterOut
public boolean filterOut(SAMRecord record)
Determines whether a SAMRecord matches this filter- Specified by:
filterOutin interfaceSamRecordFilter- Parameters:
record- the SAMRecord to evaluate- Returns:
- true if the SAMRecord matches the filter, otherwise false
-
filterOut
public boolean filterOut(SAMRecord first, SAMRecord second)
Determines whether a pair of SAMRecord matches this filter- Specified by:
filterOutin interfaceSamRecordFilter- Parameters:
first- the first SAMRecord to evaluatesecond- the second SAMRecord to evaluate- Returns:
- true if the SAMRecords matches the filter, otherwise false
-
-