How do you decide to set the run to SE or PE on trimmomatic?
How do you decide to set the run to SE or PE on trimmomatic?
If you have two FASTQ
files per sample (e.g., something_R1.fastq
and something_R2.fastq
), then you have paired end (PE) reads. If you have only one FASTQ
file per sample (e.g., something_R1.fastq
only), then you have single end (SE) reads.
You call Trimmmomatic
on whatever data you have (SE or PE). There really isn't much of a choice here unless you're going to discard one of the read pairs from a PE sequencing run.
I decided on PE. I mean in general. Out of these parameters.
PE [-version] [-threads <threads>] [-phred33|-phred64] [-trimlog
<trimLogFile>] [-quiet] [-validatePairs] [-basein <inputBase> |
<inputFile1> <inputFile2>] [-baseout <outputBase> | <outputFile1P>
<outputFile1U> <outputFile2P> <outputFile2U>] <trimmer1>...
We are having trouble trimming the adapters properly, so what would you suggest which parameter I can change to experiment?
We are having trouble trimming the adapters properly
What made you decide that is the case? You should generally know from the kit used to prepare the libraries what kind of adapters your data has.
Your data does not NEED to have adapters present. Only if the length of sequencing is longer than the insert size then the read will have read-through into adapter at 3'-end. Having no adapter sequence is a good sign.
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
I ran this command and it was successful in trimmomatic but there is no trimmomatic-logs folder in the results. What am I missing?
Please do not post output of commands as answers. Answers are meant to be NEW answers for the original question at the top of the post.
It is tempting to ask for help for every small thing but there is a learning process that needs to happen. Bioinformatics is not just running commands but it is also about understanding what the program does with its options. Experiment and try things out. When you have specific questions or run into issues ask. We are here to help.