Here is an example FASTA sequence file to reproduce the error.
>g1 1|-6|0|5|0|204
A
>g2 0.66|0|0|6|0|202
A
After compressing the above sequence file using genozip and decompress it using genounzip, the resulted sequence file became
>g1 1|-6|0|5|0|204
A
>g2 0.60|0|0|6|0|202
A
And genounzip throw an error:
genounzip seq.fasta.genozip :
genounzip: Adler32 of reconstructed vblock=1,component=1 (122686285 ) differs from original file (128977747 ).
Note: genounzip is unable to check the Adler32 subsequent vblocks once a vblock is bad
Bad reconstructed vblock has been dumped to: seq.fasta.genozip.vblock-1.start-0.len-44.bad
To see the same data in the original file:
cat seq.fasta | head -c 44 | tail -c 44 > seq.fasta.genozip.vblock-1.start-0.len-44.good
genounzip: File integrity error: Adler32 of decompressed file seq.fasta is 122686285 , but Adler32 of the original FASTA file was 128977747
Done (0 seconds)
Hi,
Here is an example FASTA sequence file to reproduce the error.
After compressing the above sequence file using
genozip
and decompress it usinggenounzip
, the resulted sequence file becameAnd
genounzip
throw an error:Leiting