What bam file readers that can read remote ftp/http files? I only know of samtools, but I would like to know of other tools that can also read remote files through ftp/http or other protocols. By remote access, I mean something like this:
samtools view ftp://ftp.site.com/file.bam chrN:1234-3456
samtools view http://www.site.com/file.bam chrN:1234-3456
that is not the same thing because you don't need to download the entire file to do a remote viewing - whereas your solution does that - the downloads could be impractically large
You are right, about the possibility of viewing files without download the whole things. But from my experience, it is better to load everything to my workstation and do whatever I like afterward.