File: ParseReadsOpts.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 (20 lines) | stat: -rw-r--r-- 531 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
#pragma once
#include "stdafx.h"

class CParseReadsOpts
{
public:
    CParseReadsOpts(void);
    virtual ~CParseReadsOpts(void);
    void setDefaults(void);
    char readsFile[FILENAME_MAX];
    char qualityFile[FILENAME_MAX];
    char cFileFormatSymbol;
    // Reads files (can be selected by reads file)
    bool bDiscardReadWithN;           // Default is true
    bool bMappedSOLiDRead;
    bool bMappedLongRead;
    bool bOddReadLengthAndLongRead;
    unsigned int truncatedReadLength;
    unsigned int allowedNumOfNinRead;
};