Click or drag to resize
SAMFlags Enumeration
SAM Flags. This enum represents the bitwise flags of the SAM format.

Namespace: Bio.IO.SAM
Assembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax
[FlagsAttribute]
public enum SAMFlags
Members
  Member nameValueDescription
PairedRead1 0x0001 The read is paired in sequencing, no matter whether it is mapped in a pair.
MappedInProperPair2 0x0002 The read is mapped in a proper pair (depends on the protocol, normally inferred during alignment).
UnmappedQuery4 0x0004 The query sequence itself is unmapped.
UnmappedMate8 0x0008 The mate is unmapped.
QueryOnReverseStrand16 0x0010 Strand of the query (0 for forward; 1 for reverse strand).
MateOnReverseStrand32 0x0020 Strand of the mate.
FirstReadInPair64 0x0040 The read is the first read in a pair.
SecondReadInPair128 0x0080 The read is the second read in a pair.
NonPrimeAlignment256 0x0100 The alignment is not primary (a read having split hits may have multiple primary alignment records).
QualityCheckFailure512 0x0200 The read fails platform/vendor quality checks.
Duplicate1024 0x0400 The read is either a PCR duplicate or an optical duplicate.
See Also