Merge two FASTQ or FASTA files into a single output file
Concatenate FASTQ Files
Concatenation combines multiple sequencing files into a single output file by appending the contents of one file after another. This is a common step in next-generation sequencing (NGS) workflows when sequencing data is distributed across multiple lanes or runs.
.fastq, .fq)
.fasta, .fa,
.fna)
.gz)
file1.fastq
+
file2.fastq
↓
concatenated_output.fastq
cat file1.fastq file2.fastq \
> merged.fastq
cat file1.fastq.gz \
file2.fastq.gz \
> merged.fastq.gz