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
fun Path.inputStream(vararg options: OpenOption) =
FileInputStream(toFile()).buffered(32 * 1024).streamFor(name)
instead of
fun Path.inputStream(vararg options: OpenOption) =
Files.newInputStream(this, *options).buffered().streamFor(name)
There are some reports that seek operation is slow while using Files.newInputStream(this, *options), althoug shouldn't affect us due to reading file from the begining up to end in Bed parser.
Bed track opening is too slow when file is on a SSHFS disk
E.g. try to open
/mnt/stripe/bio/experiments/blueprint/data_redo/bp.all.covered.regions.hg19.filtered.mean10.bed
.IO reading speed is about 50-100 kb/s or less.
Probably it is caused by my current network connection conditions. Let's check it later.
Is related to #1302.
The text was updated successfully, but these errors were encountered: