mirror of
https://github.com/MillironX/XAM.jl.git
synced 2024-11-14 22:33:14 +00:00
Correct not found check
This commit is contained in:
parent
cc18311539
commit
8b7a2ecc2b
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ end
|
|||
|
||||
function Base.iterate(iter::OverlapIterator)
|
||||
refindex = findfirst(isequal(iter.refname), iter.reader.refseqnames)
|
||||
if refindex == 0
|
||||
if refindex === nothing
|
||||
throw(ArgumentError("sequence name $(iter.refname) is not found in the header"))
|
||||
end
|
||||
@assert iter.reader.index !== nothing
|
||||
|
|
Loading…
Reference in a new issue