File: ZmwTypeMap.cpp

package info (click to toggle)
pbbam 2.4.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 14,144 kB
  • sloc: cpp: 60,214; xml: 2,908; ansic: 660; sh: 275; python: 203; makefile: 187
file content (19 lines) | stat: -rw-r--r-- 370 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "PbbamInternalConfig.h"

#include <pbbam/ZmwTypeMap.h>

namespace PacBio {
namespace BAM {

// clang-format off
std::map<char, ZmwType> ZmwTypeMap::ParseChar
{
    { 'C' , ZmwType::CONTROL   },
    { 'M' , ZmwType::MALFORMED },
    { 'N' , ZmwType::NORMAL    },
    { 'S' , ZmwType::SENTINEL  }
};
// clang-format on

}  // namespace BAM
}  // namespace PacBio