Skip to content

Commit

Permalink
Merge branch 'hotfix/isnextmapped'
Browse files Browse the repository at this point in the history
  • Loading branch information
CiaranOMara committed Jul 8, 2020
2 parents dfa5a32 + 639b823 commit a51e911
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "XAM"
uuid = "d759349c-bcba-11e9-07c2-5b90f8f05f7c"
authors = ["Kenta Sato <[email protected]>", "Ben J. Ward <[email protected]>", "Ciarán O'Mara <[email protected]>"]
version = "0.2.5"
version = "0.2.6"

[deps]
Automa = "67c07d97-cdcb-5c2c-af73-a7f9c32a568b"
Expand Down
2 changes: 1 addition & 1 deletion src/bam/record.jl
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ end
Test if the mate/next read of `record` is mapped.
"""
function isnextmapped(record::Record)::Bool
return isfilled(record) && (flag(record) & FLAG_MUNMAP == 0)
return isfilled(record) && (flag(record) & SAM.FLAG_MUNMAP == 0)
end

"""
Expand Down

2 comments on commit a51e911

@CiaranOMara
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/17638

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.6 -m "<description of version>" a51e91141fe967a920228f6e6077f7a38e0451b5
git push origin v0.2.6

Please sign in to comment.