mirror of
https://github.com/MillironX/XAM.jl.git
synced 2024-11-14 22:33:14 +00:00
Add tests for issue #31
Test for expected results as decribed in https://github.com/BioJulia/XAM.jl/issues/31.
This commit is contained in:
parent
22667dc7af
commit
0e6ef62e3e
4 changed files with 11 additions and 0 deletions
BIN
test/data/SRR7993829_1.100K.forward.bam
Normal file
BIN
test/data/SRR7993829_1.100K.forward.bam
Normal file
Binary file not shown.
BIN
test/data/SRR7993829_1.100K.forward.bam.bai
Normal file
BIN
test/data/SRR7993829_1.100K.forward.bam.bai
Normal file
Binary file not shown.
|
@ -25,3 +25,4 @@ end
|
|||
|
||||
include("test_sam.jl")
|
||||
include("test_bam.jl")
|
||||
include("test_issues.jl")
|
||||
|
|
10
test/test_issues.jl
Normal file
10
test/test_issues.jl
Normal file
|
@ -0,0 +1,10 @@
|
|||
@testset "Issues" begin
|
||||
# https://github.com/BioJulia/XAM.jl/issues/31
|
||||
path_bam = joinpath(@__DIR__, "data", "SRR7993829_1.100K.forward.bam")
|
||||
open(BAM.Reader, path_bam, index = path_bam * ".bai") do reader
|
||||
|
||||
@test count((r)-> true, eachoverlap(reader, "JH584304.1", 51000:51200)) == 0
|
||||
@test count((r)-> true, eachoverlap(reader, "JH584304.1", 51000:51715)) == 1
|
||||
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue