Efficient sequence analysis with bqtools
Help 8 / 12
Concatenation

Sometimes we have a large collection of files and we actually just want to put them all together into a single file.

We can do this easily with the bqtools cat command.

bqtools cat fastq/sample*.vbq -o merged.vbq

Let’s take a look at the number of reads in the merged file:

bqtools count merged.vbq

Great! They’re all there.

Loading...