Seqanswers Leaderboard Ad
Collapse
Announcement
Collapse
No announcement yet.
X
-
quality values for trimmomatic
I am having trouble understanding the quality value used in trimmomatic. I want to trim bases from 3' and 5' ends that are below Q20. I have Illumina 1.8+ so my quality values are phred64. For the sample script they use 3 as the quality value. This can't be a Qscore of 3 so what is this?
Comment
-
Originally posted by shawpa View PostI am having trouble understanding the quality value used in trimmomatic. I want to trim bases from 3' and 5' ends that are below Q20. I have Illumina 1.8+ so my quality values are phred64. For the sample script they use 3 as the quality value. This can't be a Qscore of 3 so what is this?
Please disregard. I was being stupid. My values are in phred33.
Comment
-
Hi all,
I started to use Trimmomatic 0.22 three weeks ago and i'm having some difficulties.
Until now i was doing the adapter trimming and quality trimming with CLC. In order to check which method is going to give me the better quality of trimmed reads i'm doing again the trimming of my libraries with Trimmomatic and comparing the fastQC reports of both (CLC and Trimmomatic).
For some reason Trimmomatic is not doing a very good job with my forward sequences and i'm still having some overrepresented sequences that the fastQC recognize as one of the Illumina indexes.
I thought that maybe was because my adapters fasta file was wrong so i was playing around a little bit with it.
Now i'm completely lost and exhausted so i need help. Here i attached my 2 adapters fasta files. Because i built my libraries with 2 different kits from Illumina (the Multiplexing Sample Prep Oligo Only kit: with homemade adapters and with Illumina adapters; and the TruSeq kit).
And here is my script:
for FRW in $(ls *_R1_005.fastq.gz); do
for RVS in $(ls *_R2_005.fastq.gz); do
bsub -q $queue java -Xincgc -Xms4g -Xmx4g -classpath ../../trimmomatic-0.22/Trimmomatic-0.22/trimmomatic-0.22.jar org.usadellab.trimmomatic.TrimmomaticPE -phred33 $FRW $RVS ../trimmomatic_data_trial/$FRW.FRWPE.fq.gz ../trimmomatic_data_trial/$FRW.FRWUnP.fq.gz ../trimmomatic_data_trial/$RVS.RVSPE.fq.gz ../trimmomatic_data_trial/$RVS.RVSUnP.fq.gz ILLUMINACLIP:../../trimmomatic-0.22/TruSeq_adapters.fa:2:40:15 LEADING:3 TRAILING:3 SLIDINGWINDOW:4:15 MINLEN:20
THANKS!!!
Comment
-
Well, your script is confusing. It looks like you'll be comparing multiple forward files to multiple reverse files without any correspondence between the forward and reverse sequences. You then regenerate the same output files over and over again with the last files being generated good for the reverse sequences but not the forward ones.
Now if you only have one matching file for your 'ls' the above observation doesn't really matter. But if you have multiple files then ... let's see.
Assume the following files:
A_R1_005.fastq.gz
B_R1_005.fastq.gz
C_R2_005.fastq.gz
D_R2_005.fastq.gz
Which I'll abbreviate as 'A', 'B', 'C', and 'D.
A vs C produces files:
A.FRWPE.fq.gz A.FRWUnP.fq.gz C.RVSPE.fq.gz C.RVSUnP.fq.gz
A vs D produces files: (bad match between R1 and R2)
A.FRWPE.fq.gz A.FRWUnP.fq.gz D.RVSPE.fq.gz D.RVSUnP.fq.gz
B vs C produces files: (bad match between R1 and R2)
B.FRWPE.fq.gz B.FRWUnP.fq.gz C.RVSPE.fq.gz C.RVSUnP.fq.gz
B vs D produces files:
B.FRWPE.fq.gz B.FRWUnP.fq.gz D.RVSPE.fq.gz D.RVSUnP.fq.gz
Everything is confused!
Now it is quite possible that your script is working ok (either because of single files or because it was not presented completely) but you may wish to run your Trimmomatic without the loops involved.
Comment
-
Hi westerman,
Thanks for the answer.
So, i only have one forward file (R1) and one reverse file (R2) so i think that even is better to not to use loops the script is not the problem. Before using this script with the loops i was using this:
java -Xincgc -Xms4g -Xmx4g -classpath ../../trimmomatic-0.22/Trimmomatic-0.22/trimmomatic-0.22.jar org.usadellab.trimmomatic.TrimmomaticPE -phred33 [name_forward_file] [name_reverse_file] ../trimmomatic_data_trial/[name_forward_file]_PE.fq.gz ../trimmomatic_data_trial/[name_forward_file]_UnP.fq.gz ../trimmomatic_data_trial/[name_reverse_file]_PE.fq.gz ../trimmomatic_data_trial/[name_reverse_file]_UnP.fq.gz ILLUMINACLIP:../../trimmomatic-0.22/TruSeq_adapters.fa:2:40:15 LEADING:3 TRAILING:3 SLIDINGWINDOW:4:15 MINLEN:20
... and i was having the same problem with my reverse trimmed sequences. That's why i thought that the problem is in my adapters fasta file.
Comment
-
Your adapter fasta files have /2 after the IDs of the index adapters which tells Trimmomatic to only check these sequences against the second (reverse) read. These adapters will show up in the first (forward) read, not the second. Likewise the universal adapter sequence will show up in the second read, not the first. You need to swap the /1 and /2 endings in your adapter FASTA files and you should use the reverse complement of the Universal adapter. You could remove /1 and /2 entirely forcing Trimmomatic to check the adapters against all reads but that is inefficient.
Comment
-
Ok, having gotten the possible script problem out of the way, everything else looks syntactically correct. Time to dig into the adapter file or the actual reads that are not being properly trimmed. It is possible that the 2:40:15 parameter to the ILLUMINACLIP is tripping you up. Are you using the simple trim or the, in my experience more rare, palindrome trim? You say:
i'm still having some overrepresented sequences that the fastQC recognize as one of the Illumina indexes.
Can you look at a handful of reads reported to have illumina indexes and manually see if they have the index. And, if so, how good is the match?
Comment
-
Originally posted by kmcarr View PostYour adapter fasta files have /2 after the IDs of the index adapters which tells Trimmomatic to only check these sequences against the second (reverse) read. ...
Comment
-
All my adapters are in one file. Given the number of adapters I can not see it working otherwise. I undoubtedly over process my sequences by looking at both strands in both directions with all possible adapters -- as kmcarr says, "inefficient" -- but it makes me more comfortable that I am picking up everything.
Comment
Latest Articles
Collapse
-
by seqadmin
Next-generation sequencing (NGS) and quantitative polymerase chain reaction (qPCR) are essential techniques for investigating the genome, transcriptome, and epigenome. In many cases, choosing the appropriate technique is straightforward, but in others, it can be more challenging to determine the most effective option. A simple distinction is that smaller, more focused projects are typically better suited for qPCR, while larger, more complex datasets benefit from NGS. However,...-
Channel: Articles
10-18-2024, 07:11 AM -
-
by seqadmin
Non-coding RNAs (ncRNAs) do not code for proteins but play important roles in numerous cellular processes including gene silencing, developmental pathways, and more. There are numerous types including microRNA (miRNA), long ncRNA (lncRNA), circular RNA (circRNA), and more. In this article, we discuss innovative ncRNA research and explore recent technological advancements that improve the study of ncRNAs.
Nobel Prize for MicroRNA Discovery
This week,...-
Channel: Articles
10-07-2024, 08:07 AM -
ad_right_rmr
Collapse
News
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
New Model Aims to Explain Polygenic Diseases by Connecting Genomic Mutations and Regulatory Networks
by seqadmin
Started by seqadmin, Yesterday, 05:31 AM
|
0 responses
10 views
0 likes
|
Last Post
by seqadmin
Yesterday, 05:31 AM
|
||
Started by seqadmin, 10-24-2024, 06:58 AM
|
0 responses
20 views
0 likes
|
Last Post
by seqadmin
10-24-2024, 06:58 AM
|
||
New AI Model Designs Synthetic DNA Switches for Targeted Gene Expression in Specific Cell Types
by seqadmin
Started by seqadmin, 10-23-2024, 08:43 AM
|
0 responses
50 views
0 likes
|
Last Post
by seqadmin
10-23-2024, 08:43 AM
|
||
Started by seqadmin, 10-17-2024, 07:29 AM
|
0 responses
58 views
0 likes
|
Last Post
by seqadmin
10-17-2024, 07:29 AM
|
Comment