1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
#include "ParseReadsOpts.h"
CParseReadsOpts::CParseReadsOpts(void)
{
this->setDefaults();
}
CParseReadsOpts::~CParseReadsOpts(void)
{
}
void CParseReadsOpts::setDefaults(void)
{
strcpy(this->readsFile, "");
strcpy(this->qualityFile, "");
// Reads files
this->cFileFormatSymbol = 'N';
this->truncatedReadLength = MAX_LINE;
this->bDiscardReadWithN = true;
this->allowedNumOfNinRead = 0;
this->bMappedLongRead = false;
this->bOddReadLengthAndLongRead = false;
this->bMappedSOLiDRead = false;
}
|