Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
gzip -c filename.fastq > filename.fastq.gz

3.b batchalternatively run a loop to compress all fastq files in the folder:

Code Block
for file in `ls *.fastq`; do echo $file; gzip -c $file > ${file}.gz; done

...