Class AbstractReadsFilterModule
- java.lang.Object
-
- fr.ens.biologie.genomique.eoulsan.modules.AbstractModule
-
- fr.ens.biologie.genomique.eoulsan.modules.mapping.AbstractReadsFilterModule
-
- All Implemented Interfaces:
Module
- Direct Known Subclasses:
ReadsFilterHadoopModule
,ReadsFilterLocalModule
public abstract class AbstractReadsFilterModule extends AbstractModule
This class define an abstract module for read filtering.- Since:
- 1.0
- Author:
- Laurent Jourdren
-
-
Field Summary
Fields Modifier and Type Field Description protected static String
COUNTER_GROUP
protected static String
MODULE_NAME
-
Constructor Summary
Constructors Constructor Description AbstractReadsFilterModule()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
configure(StepConfigurationContext context, Set<Parameter> stepParameters)
Set the parameters of the step to configure the module.String
getDescription()
Get the description of the moduleInputPorts
getInputPorts()
Get the input data format.String
getName()
Get the name of the module.OutputPorts
getOutputPorts()
Get the output data format.protected fr.ens.biologie.genomique.kenetre.bio.readfilter.MultiReadFilter
getReadFilter(fr.ens.biologie.genomique.kenetre.log.GenericLogger logger, fr.ens.biologie.genomique.kenetre.util.ReporterIncrementer incrementer, String counterGroup)
Get the ReadFilter object.protected Map<String,String>
getReadFilterParameters()
Get the parameters of the read filter.protected int
getReducerTaskCount()
Get the reducer task count.fr.ens.biologie.genomique.kenetre.util.Version
getVersion()
Get version of the Module.-
Methods inherited from class fr.ens.biologie.genomique.eoulsan.modules.AbstractModule
getChecker, getParallelizationMode, getRequiredEoulsanVersion, getRequirements
-
-
-
-
Field Detail
-
MODULE_NAME
protected static final String MODULE_NAME
- See Also:
- Constant Field Values
-
COUNTER_GROUP
protected static final String COUNTER_GROUP
- See Also:
- Constant Field Values
-
-
Method Detail
-
getReadFilterParameters
protected Map<String,String> getReadFilterParameters()
Get the parameters of the read filter.- Returns:
- a map with all the parameters of the filter
-
getReducerTaskCount
protected int getReducerTaskCount()
Get the reducer task count.- Returns:
- the reducer task count
-
getName
public String getName()
Description copied from interface:Module
Get the name of the module.- Returns:
- the name of the module
-
getDescription
public String getDescription()
Description copied from interface:Module
Get the description of the module- Specified by:
getDescription
in interfaceModule
- Overrides:
getDescription
in classAbstractModule
- Returns:
- the description of the module
-
getVersion
public fr.ens.biologie.genomique.kenetre.util.Version getVersion()
Description copied from interface:Module
Get version of the Module.- Returns:
- a Version object with the version of the Module
-
getInputPorts
public InputPorts getInputPorts()
Description copied from interface:Module
Get the input data format.- Specified by:
getInputPorts
in interfaceModule
- Overrides:
getInputPorts
in classAbstractModule
- Returns:
- a set with DataFormat or null if the module does not any need input format
-
getOutputPorts
public OutputPorts getOutputPorts()
Description copied from interface:Module
Get the output data format.- Specified by:
getOutputPorts
in interfaceModule
- Overrides:
getOutputPorts
in classAbstractModule
- Returns:
- an set with DataFormat or null if the module does not produce any output data
-
configure
public void configure(StepConfigurationContext context, Set<Parameter> stepParameters) throws EoulsanException
Description copied from interface:Module
Set the parameters of the step to configure the module.- Specified by:
configure
in interfaceModule
- Overrides:
configure
in classAbstractModule
- Parameters:
context
- configuration context. The context can be null for generator stepsstepParameters
- parameters of the step- Throws:
EoulsanException
- if a parameter is invalid
-
getReadFilter
protected fr.ens.biologie.genomique.kenetre.bio.readfilter.MultiReadFilter getReadFilter(fr.ens.biologie.genomique.kenetre.log.GenericLogger logger, fr.ens.biologie.genomique.kenetre.util.ReporterIncrementer incrementer, String counterGroup) throws EoulsanException
Get the ReadFilter object.- Parameters:
logger
- the generic loggerincrementer
- incrementer to usecounterGroup
- counter group for the incrementer- Returns:
- a new ReadFilter object
- Throws:
EoulsanException
- if an error occurs while initialize one of the filter
-
-