Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不想先解压缩 vcf.gz 文件,因为它是一个大文件,我的笔记本电脑没有空间存放它。我试着做:
gunzip -c file.vcf.gz > bgzip -c > file.vcf.bgz
但它没有用。想法?
尝试
gunzip -c file.vcf.gz | bgzip > file.vcf.bgz