1
0
Fork 0
mirror of https://github.com/MillironX/XAM.jl.git synced 2024-11-14 22:33:14 +00:00

Correct scope

This commit is contained in:
Diego Alvarez 2020-07-07 13:50:52 -03:00 committed by Ciarán O'Mara
parent eb11106b01
commit 639b8238c7

View file

@ -261,7 +261,7 @@ end
Test if the mate/next read of `record` is mapped. Test if the mate/next read of `record` is mapped.
""" """
function isnextmapped(record::Record)::Bool function isnextmapped(record::Record)::Bool
return isfilled(record) && (flag(record) & FLAG_MUNMAP == 0) return isfilled(record) && (flag(record) & SAM.FLAG_MUNMAP == 0)
end end
""" """