Skip to content

Commit 7a40ee6

Browse files
author
Ciarán O'Mara
committed
Merge tag 'v0.4.1' into develop
2 parents 5d975c1 + b125263 commit 7a40ee6

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
## [Unreleased]
99
- Added conversion capability for SAM to BAM ([#63](https://github.com/BioJulia/XAM.jl/pull/63)).
1010

11+
## [0.4.1]
12+
13+
### Fixed
14+
- Corrected `isproperpair` method ([#78](https://github.com/BioJulia/XAM.jl/pull/78)).
15+
1116
## [0.4.0]
1217

1318
### Added

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "XAM"
22
uuid = "d759349c-bcba-11e9-07c2-5b90f8f05f7c"
33
authors = ["Kenta Sato <bicycle1885@gmail.com>", "Ben J. Ward <ward9250@gmail.com>", "Ciarán O'Mara <Ciaran.OMara@utas.edu.au>"]
4-
version = "0.4.0"
4+
version = "0.4.1"
55

66
[deps]
77
Automa = "67c07d97-cdcb-5c2c-af73-a7f9c32a568b"

src/flags.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ end
7171
Query whether the segment is in a template where all segments are properly aligned according to the aligner.
7272
"""
7373
function isproperpair(record::XAMRecord)::Bool
74-
return flags(record) & PROPER_PAIR == PROPER_PAIR
74+
return flags(record) & FLAG_PROPER_PAIR == FLAG_PROPER_PAIR
7575
end
7676

7777
"""

0 commit comments

Comments
 (0)