In paired-end sequencing, each fragment of DNA is sequenced from both ends, giving two reads: one forward and one reverse. When "properly paired," these reads are expected to align to a reference genome facing each other and pointing towards one another with respect to the reference.
When properly paired, the reads that comprise pairs will have one of the four following SAM flags: 83 (0x53), 163 (0xA3), 99 (0x63), or 147 (0x93). These SAM flags contain information on "mate reverse strand" (flag 16/0x10) or "read reverse strand" (flag 32/0x20).
My question is this: "mate reverse strand" (flag 16/0x10) or "read reverse strand" (flag 32/0x20) do not directly relate to the strandedness of the library in terms of library protocols (e.g., stranded vs. non-stranded); instead, they simply indicate the directionality of the read in relation to the reference genome—is that correct? That is, "mate reverse strand" means that a given alignment is considered "the mate" in a read pair and is the reverse complement of the sequence in the reference; "read reverse strand" means that a given alignment is considered "the read" in a read pair and is the reverse complement of the sequence in the reference. Is my understanding correct? If not, please help me understand.
Thanks for the explanation.
I noticed and corrected a typo in which "read reverse strand" initially read as "mate reverse strand" in the following snippet:
As an interpretation for "mate reverse strand", you wrote,
What is the accompanying interpretation for "read reverse strand"?