Skip to content

Commit

Permalink
issue-8: added missing docs
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljon committed May 18, 2022
1 parent 19bbc09 commit a8df819
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Models/ReadFlag.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,46 +11,57 @@ public enum ReadFlag : ushort
Paired = 1,

/// <summary>
/// each segment properly aligned according to the aligner (read mapped in proper pair)
/// </summary>
Aligned = 2,

/// <summary>
/// segment unmapped (read1 unmapped)
/// </summary>
SegmentUnmapped = 4,

/// <summary>
/// next segment in the template unmapped (read2 unmapped)
/// </summary>
NextSegmentUnmapped = 8,

/// <summary>
/// SEQ being reverse complemented (read1 reverse complemented)
/// </summary>
ReverseComplemented = 16,

/// <summary>
/// SEQ of the next segment in the template being reverse complemented (read2 reverse complemented)
/// </summary>
NextSegmentReverseComplemented = 32,

/// <summary>
/// the first segment in the template (is read1)
/// </summary>
FirstSegment = 64,

/// <summary>
/// the last segment in the template (is read2)
/// </summary>
LastSegment = 128,

/// <summary>
/// not primary alignment
/// </summary>
NotPrimaryAlignment = 256,

/// <summary>
/// alignment fails quality checks
/// </summary>
FailedQualityChecks = 512,

/// <summary>
/// PCR or optical duplicate
/// </summary>
OpticalDuplicate = 1024,

/// <summary>
/// supplementary alignment (e.g. aligner specific, could be a portion of a split read or a tied region)
/// </summary>
SupplementaryAlignment = 2048
}
Expand Down

0 comments on commit a8df819

Please sign in to comment.