MCPcopy Create free account
hub / github.com/OpenGene/fastplong / initOutput

Method initOutput

src/seprocessor.cpp:37–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35}
36
37void SingleEndProcessor::initOutput() {
38 if(!mOptions->failedOut.empty())
39 mFailedWriter = new WriterThread(mOptions, mOptions->failedOut);
40 if(mOptions->out.empty() && !mOptions->outputToSTDOUT)
41 return;
42 mLeftWriter = new WriterThread(mOptions, mOptions->out, mOptions->outputToSTDOUT);
43}
44
45void SingleEndProcessor::closeOutput() {
46 if(mLeftWriter) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected