Class ExpressionMerger
- java.lang.Object
-
- fr.ens.biologie.genomique.eoulsan.splitermergers.ExpressionMerger
-
-
Constructor Summary
Constructors Constructor Description ExpressionMerger()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
configure(Set<Parameter> conf)
Configure the merger.DataFormat
getFormat()
Get the format related to the splitter.void
merge(Iterator<DataFile> inFileIterator, DataFile outFile)
Merger data.
-
-
-
Method Detail
-
getFormat
public DataFormat getFormat()
Description copied from interface:Merger
Get the format related to the splitter.
-
configure
public void configure(Set<Parameter> conf) throws EoulsanException
Description copied from interface:Merger
Configure the merger.- Specified by:
configure
in interfaceMerger
- Parameters:
conf
- configuration- Throws:
EoulsanException
- if the configuration is invalid
-
merge
public void merge(Iterator<DataFile> inFileIterator, DataFile outFile) throws IOException
Description copied from interface:Merger
Merger data.- Specified by:
merge
in interfaceMerger
- Parameters:
inFileIterator
- iterator over DataFile to mergeroutFile
- output DataFile- Throws:
IOException
- if an error occurs while split data
-
-