| 2 | #include "util.h" |
| 3 | |
| 4 | ThreadConfig::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 | |
| 19 | ThreadConfig::~ThreadConfig() { |
| 20 | cleanup(); |
nothing calls this directly
no outgoing calls
no test coverage detected