File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ TranscodingStreams = "3bb67fe8-82b1-5028-8e26-92a6c54297fa"
1212[compat ]
1313BGZFStreams = " 0.3"
1414BioGenerics = " 0.1"
15- GenomicFeatures = " 2 "
15+ GenomicFeatures = " 3 "
1616TranscodingStreams = " 0.9.5"
1717julia = " 1"
1818
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ using TranscodingStreams
1212
1313import BGZFStreams
1414import BioGenerics
15- import GenomicFeatures: Interval
15+ import GenomicFeatures: GenomicInterval
1616
1717function Base. bytesavailable (stream:: BGZFStreams.BGZFStream{IOStream} )
1818
Original file line number Diff line number Diff line change 33
44struct TabixOverlapIterator{T}
55 reader:: T
6- interval:: Interval
6+ interval:: GenomicInterval
77end
88
99function Base. eltype (:: Type{TabixOverlapIterator{T}} ) where T
Original file line number Diff line number Diff line change 7070
7171
7272"""
73- overlapchunks(tabix::Tabix, interval::Interval )
73+ overlapchunks(tabix::Tabix, interval::GenomicInterval )
7474
7575Return chunks possibly overlapping with the range specified by `interval`.
7676
7777Note that records within the returned chunks are not guaranteed to actually overlap the query interval.
7878"""
79- function overlapchunks (tabix:: Tabix , interval:: Interval )
79+ function overlapchunks (tabix:: Tabix , interval:: GenomicInterval )
8080 seqid = findfirst (isequal (BioGenerics. seqname (interval)), tabix. names)
8181 if seqid == 0
8282 throw (ArgumentError (" failed to find sequence name '$(BioGenerics. seqname (interval)) '" ))
You can’t perform that action at this time.
0 commit comments