Entering edit mode
7.4 years ago
db
•
0
I am wondering how exactly we should run jellyfish
to count k-mers for paired end sequencing data. Is it enough to concatenate the forward and reverse read (using cat
) or do we need to merge the reads (using something like PEAR
)?
Thank you Brian. Are you saying it is ok to concatenate based on your experience (not that I don't trust you)? It's just that I could not find any documentation on how to deal with paired end data.
For pure kmer counting, read pairing does not matter, and concatenated fastq files are still valid fastq files. I have never actually concatenated two files and then run Jellyfish on the result, but I have done that with various other programs.
Thanks you very much!