Package htsjdk.samtools.filter
Class MappingQualityFilter
java.lang.Object
htsjdk.samtools.filter.MappingQualityFilter
- All Implemented Interfaces:
SamRecordFilter
Filter things with low mapping quality.
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
MappingQualityFilter
public MappingQualityFilter(int minimumMappingQuality)
-
-
Method Details
-
filterOut
Description copied from interface:SamRecordFilter
Determines whether a SAMRecord matches this filter- Specified by:
filterOut
in interfaceSamRecordFilter
- Parameters:
record
- the SAMRecord to evaluate- Returns:
- true if the SAMRecord matches the filter, otherwise false
-
filterOut
Description copied from interface:SamRecordFilter
Determines whether a pair of SAMRecords matches this filter- Specified by:
filterOut
in interfaceSamRecordFilter
- Parameters:
first
- the first SAMRecord to evaluatesecond
- the second SAMRecord to evaluate- Returns:
- true if the pair of records matches filter, otherwise false
-