BAM compression: .tar.gz = same size as before?
2
0
Entering edit mode
6.8 years ago
Marvin ▴ 220

I tried to compress 5 bam files using:

tar -czvf original_bams.tar.gz *.bam

The resulting file sizes ("ll --block-size=M") are:

8067M file1.bam
6962M file2.bam
10662M file3.bam
7794M file4.bam
7346M file5.bam
40828M original_bams.tar.gz

There's a difference of 3MB between the archive and the sum of the sizes of the bam files. Is this expected? I know that there is CRAM (which I will turn to next) but I'm surprised to see that good old .tar.gz has 0 effect?

bam compression tar gz • 7.1k views
ADD COMMENT
1
Entering edit mode

CRAM is good for archive purposes - it can take ~24 hours for a CRAM file to be created out of a ~30GB BAM file, and the size will be probably ~60% of the BAM. Check out if your BAM files have qual scores binned, and try to bin them while creating the CRAM - that will have a nontrivial impact on the size.

ADD REPLY
0
Entering edit mode

that seems like a really long time. do you have benchmarks?

ADD REPLY
0
Entering edit mode

Not really - I was running trials and I tried converting a really small BAM file and a large BAM file to check compression ratios.

ADD REPLY
0
Entering edit mode

You'll actually get better compression by converting them to sam.gz (or better yet, sam.bz2), and the process is quite fast using pigz/pbzip2.

ADD REPLY
8
Entering edit mode
6.8 years ago
Benn 8.3k

BAM files are already compressed (SAM files). Compressing them again doesn't make sense.

ADD COMMENT
3
Entering edit mode

this. if you did want to make a single file archive of them, just use tar and not tar.gz

ADD REPLY
0
Entering edit mode
2.7 years ago
Divon ▴ 230

Another option is Genozip (disclosure: I am the author). It compresses sam, sam.gz and bam files better than cram does, and it can even compress cram files.

Documentation: https://genozip.com/bam.html

Paper: https://www.researchgate.net/publication/349347156_Genozip_-_A_Universal_Extensible_Genomic_Data_Compressor

ADD COMMENT

Login before adding your answer.

Traffic: 2629 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6