trimmomatic
from the Usadel lab.
It's helpful to a create a shortcut so that you can call the command by typing trimmomatic
rather than remembering the more complicated java command line every time. You can do this by adding a line like this to your bash profile:
alias trimmomatic='java -jar /Users/name/local/bin/trimmomatic-0.XX.jar'
Replace the path with the path to the *.jar file and the XX with the version number.
The command line does not provide very detailed help, so keep the Manual (PDF) handy!
trimmomatic
is that is deals well with collapsing and trimming paired-end sequencing of fragments that are shorter than the read length, where the read extends into the adaptors at the end of each read.
In this PE mode, trimmomatic
will collapse these sequences to a single (and now unpaired) read, so that it will not be counted as sequencing of two independent DNA molecules This is important when analyzing sequences isolated from a mixed population.
The manual didn't exactly make it clear what adaptor sequences need to be included to get this trimming to work properly. So let's assume you have constructed a library with this format.
Adaptor1-Forward‑Sequenced-DNA‑Adaptor2-Forward Prefix_Name/1
Adaptor1-Forward
>Prefix_Name/2
Adaptor2-Forward
Note: It is OK to put ambiguous bases (N) in the adaptor sequences if you have a barcode in your adaptors.
GenomeDiff
metadata files for your sequencing samples (highly recommended), then you can use the gdtools RUNFILE
command to generate your trimming commands
For unpaired sequencing reads, you should use gdtools RUNFILE -m trimmomatic
.
For paired-end reads, the resulting commands would trim each read independently, creating trimmed R1 and R2 sequences files that would no longer have the same number of sequences in them and not collapsing R1 and R2 when they overlap one another due to a short fragment size. This would make the output unsuitable for paired-end mapping. Instead, you should generally use the gdtools RUNFILE -m trimmomatic-PE-unique
command to generate your trimming commands for paired-end DNAseq or RNAseq data. Using that command will deal properly with overlapping reads. You must additionally supply the -p
option to preserve read pairing in the output files. This will create 4 output files (P1, P2, U1, U2) rather than 2 output files (R1, R2) of trimmed reads.
gdtools RUNFILE
also recognizes the TRIM-START-BASES
and TRIM-END-BASES
metadata lines in your GenomeDiff
to add the trimmomatic
options to remove a fixed number of bases from each end of each read.
Barrick Lab > ComputationList > ProtocolsTrimmomaticCommands