From a8df81966bf1379e7549c4d325d75d473168445c Mon Sep 17 00:00:00 2001 From: Michaeljon Miller Date: Wed, 18 May 2022 09:54:38 -0700 Subject: [PATCH] issue-8: added missing docs --- Models/ReadFlag.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Models/ReadFlag.cs b/Models/ReadFlag.cs index 0848cbb..5af2fae 100644 --- a/Models/ReadFlag.cs +++ b/Models/ReadFlag.cs @@ -11,46 +11,57 @@ public enum ReadFlag : ushort Paired = 1, /// + /// each segment properly aligned according to the aligner (read mapped in proper pair) /// Aligned = 2, /// + /// segment unmapped (read1 unmapped) /// SegmentUnmapped = 4, /// + /// next segment in the template unmapped (read2 unmapped) /// NextSegmentUnmapped = 8, /// + /// SEQ being reverse complemented (read1 reverse complemented) /// ReverseComplemented = 16, /// + /// SEQ of the next segment in the template being reverse complemented (read2 reverse complemented) /// NextSegmentReverseComplemented = 32, /// + /// the first segment in the template (is read1) /// FirstSegment = 64, /// + /// the last segment in the template (is read2) /// LastSegment = 128, /// + /// not primary alignment /// NotPrimaryAlignment = 256, /// + /// alignment fails quality checks /// FailedQualityChecks = 512, /// + /// PCR or optical duplicate /// OpticalDuplicate = 1024, /// + /// supplementary alignment (e.g. aligner specific, could be a portion of a split read or a tied region) /// SupplementaryAlignment = 2048 }