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

Method ThreadConfig

src/threadconfig.cpp:4–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2#include "util.h"
3
4ThreadConfig::ThreadConfig(Options* opt, int threadId, bool paired){
5 mOptions = opt;
6 mThreadId = threadId;
7 mWorkingSplit = threadId;
8 mCurrentSplitReads = 0;
9 mPreStats1 = new Stats(mOptions);
10 mPostStats1 = new Stats(mOptions);
11
12 mWriter1 = NULL;
13
14 mFilterResult = new FilterResult(opt, paired);
15 mCanBeStopped = false;
16 mInputList = NULL;
17}
18
19ThreadConfig::~ThreadConfig() {
20 cleanup();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected