Skip to content

Commit

Permalink
Fix CRAM pseudocode for handling BAM mapped flag (PR #788)
Browse files Browse the repository at this point in the history
This was a trivial negation typo.  Fixes #749.
  • Loading branch information
jkbonfield committed Sep 4, 2024
1 parent ebebbc8 commit 4127441
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRAMv3.tex
Original file line number Diff line number Diff line change
Expand Up @@ -1325,7 +1325,7 @@ \subsubsection*{\textbf{Decode pseudocode}}
\State \Call{DecodeTagData}{}\Comment{See section \ref{subsec:tags}}
\Statex

\If{$(BF$ AND $4) \ne 0$}\Comment{Unmapped flag}
\If{$(BF$ AND $4) = 0$}\Comment{Unmapped flag}
\State \Call{DecodeMappedRead}{}\Comment{See section \ref{subsec:mapped}}
\Else
\State \Call{DecodeUnmappedRead}{}\Comment{See section \ref{subsec:unmapped}}
Expand Down

0 comments on commit 4127441

Please sign in to comment.