in reply to concatenate/stitch multiple GZip fastq files and output combined gzip file
I'm not sure that there is any real merit in using Perl for something like this? I'd anticipate that a simple command shell pipe line would use less memory and run faster.
In theory, you ought to be able to do something like:
gunzip *.fastq.gz | gzip combined.fastq.gz
You'd need a little appropriate shell syntax to get the list of files from your input file, depending upon your chosen shell. ( <( type filelist.txt ) inplace of the wildcard?)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: concatenate/stitch multiple GZip fastq files and output combined gzip file
by Anonymous Monk on Dec 02, 2015 at 17:01 UTC | |
by Anonymous Monk on Dec 02, 2015 at 17:59 UTC | |
|
Re^2: concatenate/stitch multiple GZip fastq files and output combined gzip file
by Bioinfocoder (Novice) on Dec 03, 2015 at 16:32 UTC |