libStatGen Software  1
SamValidationError Class Reference

The SamValidationError class describes a validation error that occured, containing the error type, severity, and textual error message. More...

#include <SamValidation.h>

Public Types

enum  Severity { WARNING, ERROR }
 Severity of the error. More...
 
enum  Type {
  INVALID_QNAME, INVALID_REF_ID, INVALID_RNAME, INVALID_POS,
  INVALID_MAPQ, INVALID_CIGAR, INVALID_MRNM, INVALID_QUAL,
  INVALID_TAG
}
 Type of the error. More...
 

Public Member Functions

 SamValidationError (Type type, Severity severity, std::string Message)
 Constructor that sets the type, severity, and message for the validation error.
 
Type getType () const
 Return the type enum of this validation error object.
 
Severity getSeverity () const
 Return the severity enum of this validation error object.
 
const char * getMessage () const
 Return the error message of this validation error object.
 
const char * getTypeString () const
 Return the string representing this object's type of validation error.
 
const char * getSeverityString () const
 Return the string representing this object's severity of validation error.
 
void getErrorString (std::string &errorString) const
 Get the error string representing this object's error.
 
void printError () const
 Print a formatted output of the error to cerr.
 

Static Public Member Functions

static const char * getTypeString (Type type)
 Get the string representing the specified type of validation error.
 

Detailed Description

The SamValidationError class describes a validation error that occured, containing the error type, severity, and textual error message.

Definition at line 34 of file SamValidation.h.

Member Enumeration Documentation

◆ Severity

Severity of the error.

Enumerator
WARNING 

Warning is used if it is just an invalid value.

ERROR 

Error is used if parsing could not succeed.

Definition at line 38 of file SamValidation.h.

39  {
40  WARNING, ///< Warning is used if it is just an invalid value.
41  ERROR ///< Error is used if parsing could not succeed.
42  };

◆ Type

Type of the error.

TODO: NOT ALL INVALID TYPES HAVE BEEN ADDED SINCE NOT ALL VALIDATION IS COMPLETE YET

Enumerator
INVALID_QNAME 

Invalid read/query name.

INVALID_REF_ID 

Invalid reference id.

INVALID_RNAME 

Invalid reference name.

INVALID_POS 

Invalid position.

INVALID_MAPQ 

Invalid mapping quality.

INVALID_CIGAR 

Invalid CIGAR.

INVALID_MRNM 

Invalid mate/next fragment reference name.

INVALID_QUAL 

Invalid base quality.

INVALID_TAG 

Invalid tag.

Definition at line 47 of file SamValidation.h.

48  {
49  INVALID_QNAME, ///< Invalid read/query name
50  INVALID_REF_ID, ///< Invalid reference id
51  INVALID_RNAME, ///< Invalid reference name
52  INVALID_POS, ///< Invalid position
53  INVALID_MAPQ, ///< Invalid mapping quality
54  INVALID_CIGAR, ///< Invalid CIGAR
55  INVALID_MRNM, ///< Invalid mate/next fragment reference name
56  INVALID_QUAL, ///< Invalid base quality
57  INVALID_TAG ///< Invalid tag
58  };

The documentation for this class was generated from the following files:
SamValidationError::WARNING
@ WARNING
Warning is used if it is just an invalid value.
Definition: SamValidation.h:40
SamValidationError::INVALID_CIGAR
@ INVALID_CIGAR
Invalid CIGAR.
Definition: SamValidation.h:54
SamValidationError::INVALID_QNAME
@ INVALID_QNAME
Invalid read/query name.
Definition: SamValidation.h:49
SamValidationError::INVALID_QUAL
@ INVALID_QUAL
Invalid base quality.
Definition: SamValidation.h:56
SamValidationError::INVALID_POS
@ INVALID_POS
Invalid position.
Definition: SamValidation.h:52
SamValidationError::ERROR
@ ERROR
Error is used if parsing could not succeed.
Definition: SamValidation.h:41
SamValidationError::INVALID_RNAME
@ INVALID_RNAME
Invalid reference name.
Definition: SamValidation.h:51
SamValidationError::INVALID_MAPQ
@ INVALID_MAPQ
Invalid mapping quality.
Definition: SamValidation.h:53
SamValidationError::INVALID_MRNM
@ INVALID_MRNM
Invalid mate/next fragment reference name.
Definition: SamValidation.h:55
SamValidationError::INVALID_REF_ID
@ INVALID_REF_ID
Invalid reference id.
Definition: SamValidation.h:50
SamValidationError::INVALID_TAG
@ INVALID_TAG
Invalid tag.
Definition: SamValidation.h:57