| 2 | #include "NewGenomeFile.h" |
| 3 | |
| 4 | ComplementFile::ComplementFile(ContextComplement *context) |
| 5 | : ToolBase(context), |
| 6 | _genomeFile(context->getGenomeFile()), |
| 7 | _currStartPos(0), |
| 8 | _onlyChromsWithBedRecords(context->getOnlyChromsWithBedRecords()), |
| 9 | _outputMgr(NULL), |
| 10 | _chromList(_genomeFile->getChromList()), |
| 11 | _currPosInGenomeList(-1) {} |
| 12 | |
| 13 | ComplementFile::~ComplementFile() {} |
| 14 |
nothing calls this directly
no test coverage detected