-
Disclaimer: I am relatively new to rust/noodles so I am might be missing super obvious from the documentation. I am trying to use the LazyRecord (vcf) in a queried IndexedReader without much luck. So far I can tell that the reader has a Is there any way to iterate over lazy records instead? If not, is there any way to do something similar? I am thinking I should be able to "seek" the file but I am a bit lost with that part of the documentation. Thanks a lot for the help! 🙌🏻 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
There's currently no way to use the VCF query iterator with lazy records. You can, however, copy and modify the existing implementation to work with them, e.g.,
|
Beta Was this translation helpful? Give feedback.
There's currently no way to use the VCF query iterator with lazy records. You can, however, copy and modify the existing implementation to work with them, e.g.,
vcf_232.rs