File: SingleAlignmentFormatter.hpp

package info (click to toggle)
salmon 0.7.2%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,352 kB
  • ctags: 5,243
  • sloc: cpp: 42,341; ansic: 6,252; python: 228; makefile: 207; sh: 190
file content (22 lines) | stat: -rw-r--r-- 529 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef __SINGLE_ALIGNMENT_FORMATTER_HPP__
#define __SINGLE_ALIGNMENT_FORMATTER_HPP__

#include "RapMapUtils.hpp"

template <typename IndexPtrT>
struct SingleAlignmentFormatter {
    SingleAlignmentFormatter(IndexPtrT indexIn) : index(indexIn),
    readTemp(1000, 'A'),
    qualTemp(1000, '~'),
    cigarStr(buff, 1000){
    }

    // Data members
    IndexPtrT index;
    std::string readTemp;
    std::string qualTemp;
    char buff[1000];
    rapmap::utils::FixedWriter cigarStr;
};

#endif //__PAIR_ALIGNMENT_FORMATTER_HPP__