Hello,
I tested the signal receiving function of the ReadUntil API with an accumulating cache and found that some reads are missing parts of the signal (e.g., signals from the first and third seconds are combined, but the second is missing). I observed this issue not only during playback, but also in real nanopore sequencing. How can I fix it.
Client I used:
from read_until import AccumulatingCache, ReadUntilClient
client=ReadUntilClient(
cache_type=AccumulatingCache,
filter_strands=True,
one_chunk=False,
#calibrated_signal=True,
)
Hello,
I tested the signal receiving function of the ReadUntil API with an accumulating cache and found that some reads are missing parts of the signal (e.g., signals from the first and third seconds are combined, but the second is missing). I observed this issue not only during playback, but also in real nanopore sequencing. How can I fix it.
Client I used: