You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think you're correct. The pseudocode was added later and while I tried to get it correct obviously, this is a mistake as BF is "BAM flags" and adheres to the same bit-fields used in SAM/BAM. Thanks for reporting it.
In the CRAM specification, Section 10.6 has the following pseudocode:
I think
(BF AND 4) != 0
in the code should be(BF AND 4) = 0
, as the0x04
bit of theBF
flag means "unmapped". Or am I misunderstanding something?The text was updated successfully, but these errors were encountered: