File: ReadGroup.hpp

package info (click to toggle)
pbseqlib 0~20161219-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 5,924 kB
  • ctags: 5,123
  • sloc: cpp: 82,727; makefile: 305; python: 239; sh: 8
file content (40 lines) | stat: -rw-r--r-- 903 bytes parent folder | download | duplicates (2)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
#ifndef _BLASR_SAM_READ_GROUP_HPP_
#define _BLASR_SAM_READ_GROUP_HPP_

#include <string>

/*
 * Minimal components of read group.  Define only required items. Use
 * if memory is scarce.  
 */
#include "SAMKeywordValuePair.hpp"

class SAMReadGroup {
 public:
  std::string id;
  void StoreValues(std::vector<SAMKeywordValuePair> &kvPairs,
                   uint64_t lineNumber = 0);
};

/*
 * Full read group. Use when all data are required.
 */
class SAMFullReadGroup : public SAMReadGroup {
 public:
  std::string centerName;
  std::string description;
  std::string date;
  std::string flowOrder;
  std::string keySequence;
  std::string library;
  std::string processingProgram;
  uint64_t    insertSize;
  std::string platform;
  std::string platformUnit;
  std::string sample;

  void StoreValues(std::vector<SAMKeywordValuePair> &kvPairs,
                   uint64_t lineNumber = 0);
};

#endif