Fixed direction of SHIFT to match implementation

This commit is contained in:
wtup
2022-04-26 20:56:43 -05:00
committed by Andrew Johnson
co-authored by Andrew Johnson
parent e329fa3296
commit 9eb88f27d9
@@ -114,9 +114,9 @@ which links will be processed by the seq record,
in combination with the C<SHFT> field:
if (SHFT >= 0)
SELN = SELN << -SHFT
else
SELN = SELN >> SHFT
else
SELN = SELN << -SHFT
I<(By default, the SHFT field is initialized to -1)>