File: ReadsMappingFlags.h

package info (click to toggle)
perm 0.4.0-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 976 kB
  • sloc: cpp: 13,499; makefile: 98; sh: 12
file content (23 lines) | stat: -rw-r--r-- 580 bytes parent folder | download | duplicates (5)
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;
};