You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @wjwei-handsome. Can you submit a PR of what you have so far? Supporting fai files is an interesting use case but I'm not sure if it will be compatible with current functionality as this library assumes sequential, rather than random, access to data (for example, it's impossible to seek if you're reading from /dev/stdin).
Hi,
The
fai
index file records name/seq_len/byte_offset/line_width/line_byte infomations.I' working for add an implementation for
FastaReader
toseek
orfetch
function to random access the region(chr:start-end).But when I add a
std::io::Seek
trait forparse_fastx_reader
, I noticed that thestd::io::Chain
struct didn't satisfiedSeek
trait.So I would love to hear your team thoughts on this and if could give me some advices or help.
The text was updated successfully, but these errors were encountered: