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
It would be nice to be able to specify an output name when using bgzip>
Especially when the input comes from stdin (e.g output from some preprocessing of an input file).
$ echotest| bgzip /dev/stdin
[bgzip] can't create /dev/stdin.gz: Permission denied# Now this is required.$ echo test | bgzip -c /dev/stdin > test.gz# This would be useful to have.$ echo test | bgzip -o test.gz /dev/stdin
The text was updated successfully, but these errors were encountered:
It would be nice to be able to specify an output name when using bgzip>
Especially when the input comes from
stdin
(e.g output from some preprocessing of an input file).The text was updated successfully, but these errors were encountered: