Hi all,
Through the RNA-seq analysis workflow using Linux,
Trimmomatic generates 4 out-put files; forward-paired.fq.gz, reverse-paired.fq.gz, and the 2 unpaired files.
As I read in several threads, Trimomatic is expected to;
- Remove the adapters and the low-quality reads.
- generates 2 paired-fq.gz files with the same read number.
FastQC reports for both paired.files (for each sample) indicate good quality, but I received different read counts for the two (paired) files. Downstream analysis might be affected, especially feature counts (This issue is likely behind the error; Paired-end reads are included, and The reads are assigned on the single-end mode, when I run featureCounts).
For example;
sample1-forward.paired-fq.gz (wc -l ) = 4457636
sample2-reverse.paired.fq.gz (wc -l) = 4580400
I used the command line below as explained in Trimmomaic manual;
java -jar $EBROOTTRIMMOMATIC/trimmomatic-0.39.jar PE samplef1.fastq.gz sampler1.fastq.gz samplef1.paired.fq.gz samplef1_unpaired.fq.gz sampler1_paired.fq.gz sampler1_unpaired.fq.gz ILLUMINACLIP:NexteraPE-PE.fa:2:30:10:2:True LEADING:3 TRAILING:3 MINLEN:36
So, what could be the extra reads? could you please suggest any solution to fix this issue?
Thank you in advance.
trimmomatic
rna-seq