1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#pragma once
#include "stdafx.h"
// #include "ProgramOptions.h"
class CReadsMappingFlags
{
public:
CReadsMappingFlags(void);
~CReadsMappingFlags(void);
protected:
// int ptr_initialization(CProgramOptions *_param);
int set_Default_Opt(void);
//unsigned int uiSubThreshold;
bool bSaveTable;
bool bPrintUnMappedReads;
bool bPrintAlignment;
bool bPrintGeneName;
// search not only the best in terms of mismatches, but all within the criteria.
bool bSearchAllAlignment; // Currently set to be false by default
char cOutputFormat;
};
|