File: ReadsMappingFlags.cpp

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 (27 lines) | stat: -rw-r--r-- 563 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
24
25
26
27
#include "stdafx.h"
#include "ReadsMappingFlags.h"

CReadsMappingFlags::CReadsMappingFlags(void)
{
    this->set_Default_Opt();
}

CReadsMappingFlags::~CReadsMappingFlags(void)
{
}

int CReadsMappingFlags::set_Default_Opt(void)
{
// OUTPUT
    // Default is print all the 'best' alignments with the fewest substitutions.
    this->bSearchAllAlignment = false;
    this->bPrintUnMappedReads = false;
    this->bPrintGeneName = true;
    this->bPrintAlignment = true;
    this->cOutputFormat = 'm';
// PREPROCESSING
    this->bSaveTable = false;
    return(0);
}