Package htsjdk.samtools.filter
Class JavascriptSamRecordFilter
java.lang.Object
htsjdk.samtools.filter.AbstractJavascriptFilter<SAMFileHeader,SAMRecord>
htsjdk.samtools.filter.JavascriptSamRecordFilter
- All Implemented Interfaces:
SamRecordFilter
public class JavascriptSamRecordFilter
extends AbstractJavascriptFilter<SAMFileHeader,SAMRecord>
implements SamRecordFilter
javascript based read filter
The script puts the following variables in the script context:
- 'record' a SamRecord (
https://github.com/samtools/htsjdk/blob/master/src/java/htsjdk/samtools/
SAMRecord.java ) - 'header' (
https://github.com/samtools/htsjdk/blob/master/src/java/htsjdk/samtools/
SAMFileHeader.java )
-
Field Summary
Fields inherited from class htsjdk.samtools.filter.AbstractJavascriptFilter
bindings, DEFAULT_HEADER_KEY -
Constructor Summary
ConstructorsConstructorDescriptionJavascriptSamRecordFilter(File scriptFile, SAMFileHeader header) constructor using a javascript FileJavascriptSamRecordFilter(Reader scriptReader, SAMFileHeader header) constructor using a java.io.ReaderJavascriptSamRecordFilter(String scriptExpression, SAMFileHeader header) constructor using a javascript expression -
Method Summary
Methods inherited from class htsjdk.samtools.filter.AbstractJavascriptFilter
accept, getHeaderKey
-
Constructor Details
-
JavascriptSamRecordFilter
constructor using a javascript File- Parameters:
scriptFile- the javascript file to be compiledheader- the SAMHeader- Throws:
IOException
-
JavascriptSamRecordFilter
constructor using a javascript expression- Parameters:
scriptExpression- the javascript expression to be compiledheader- the SAMHeader
-
JavascriptSamRecordFilter
constructor using a java.io.Reader- Parameters:
scriptReader- the javascript reader to be compiled. will be closedheader- the SAMHeader
-
-
Method Details
-
filterOut
return true of both records are filteredOut (AND)- Specified by:
filterOutin interfaceSamRecordFilter- Parameters:
first- the first SAMRecord to evaluatesecond- the second SAMRecord to evaluate- Returns:
- true if the pair of records matches filter, otherwise false
-
filterOut
read is filtered out if the javascript program returns false- Specified by:
filterOutin interfaceSamRecordFilter- Parameters:
record- the SAMRecord to evaluate- Returns:
- true if the SAMRecord matches the filter, otherwise false
-
getRecordKey
Description copied from class:AbstractJavascriptFilterreturns key used for record binding- Specified by:
getRecordKeyin classAbstractJavascriptFilter<SAMFileHeader,SAMRecord>
-