The current implementation in our reader factory uses File.toPath for opening FASTQ files, but this will fail with non-local java.nio.Path (e.g., HDFS). This should be fixed to open the Path as a stream instead of using the default FastqReader constructor.
The current implementation in our reader factory uses
File.toPath
for opening FASTQ files, but this will fail with non-localjava.nio.Path
(e.g., HDFS). This should be fixed to open thePath
as a stream instead of using the defaultFastqReader
constructor.