Thank you so much! That's very helpful.
Hello everyone,
I would like to compare the following trimming tools' outputs: Trimmomatic, TrimGalore, FastP. For consistency, I want to trim fastq files with these trimming tools with same parameters/flags. What would be the basic equivalent commands of these trimming tools for paired-end reads of length=100 obtained by illumina 1.9?
1 answer
there are subtle differences in how tools work, and I found it surprisingly difficult to produce the exact same QC output with different tools, some behaviors are not well explained
for example, the trimmomatic window trim operates from left to right, whereas most other tools trim from the right to the left. The trimmomatic parameters of:
SLIDINGWINDOW:4:30 MINLEN:150
will be equivalent to the fastp flags of:
--cut_window_size 4 --cut_mean_quality 30 --cut_right -l 150
trimmomatic does not support left to right window trim, whereas fastp does.
Log in to answer this question.
For trimmomatic I have used this:
For trimgalore! I have used this:
For Fastp I'm not sure. As for the above code, I'm unsure if they have equivalent flags.
Why isn't this a direct answer rather than comment?
I am not sure if it is correct. I'm looking for help.