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 41
|
#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 <pbdata/sam/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
|