-----------------------------------
If you have gzipped fastq files then are the following result files equivalent?
Code:
$ cat seq1.fq.gz seq2.fq.gz > all1.fq.gz $ zcat seq1.fq.gz seq2.fq.gz | gzip -c > all2.fq.gz
Explanation:
Some decompressors (gzip for example) will read all of the data from all1.fq.gz, but others (the java GZipInputStream class for example) will not and will silently finish at the the end of the first concatenated file.
Leave a comment: