Class ReadNameFilter

java.lang.Object
htsjdk.samtools.filter.ReadNameFilter
All Implemented Interfaces:
SamRecordFilter

public class ReadNameFilter extends Object implements SamRecordFilter
Filter by a set of specified readnames

$Id$

  • Constructor Details

    • ReadNameFilter

      public ReadNameFilter(File readNameFilterFile, boolean includeReads)
    • ReadNameFilter

      public ReadNameFilter(Set<String> readNameFilterSet, boolean includeReads)
  • Method Details

    • filterOut

      public boolean filterOut(SAMRecord record)
      Determines whether a SAMRecord matches this filter
      Specified by:
      filterOut in interface SamRecordFilter
      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 SAMRecords matches this filter
      Specified by:
      filterOut in interface SamRecordFilter
      Parameters:
      first - the first SAMRecord to evaluate
      second - the second SAMRecord to evaluate
      Returns:
      true if the pair of records matches filter, otherwise false