Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bgzip: allow specification of output name. #1726

Closed
ghuls opened this issue Jan 11, 2024 · 0 comments · Fixed by #1747
Closed

bgzip: allow specification of output name. #1726

ghuls opened this issue Jan 11, 2024 · 0 comments · Fixed by #1747
Assignees

Comments

@ghuls
Copy link

ghuls commented Jan 11, 2024

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).

$ echo test | 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants