Description Usage Arguments Value
View source: R/run_trimmomatic.R
This function uses trimmomatic to trim input fastq files and outputs them to the specified base dir. Please supply input as character type.
1 2 3 4 5 6 7 8 9 10 | run_trimmomatic(
mode = "SE",
f1,
f2 = "",
prefix = "trimmed",
phred = "33",
minlen = "90",
window = "4:15",
logfile = "trimmomatic_log.txt"
)
|
mode |
Single end ("SE") or paired end ("PE") fastq file(s) input, default = "SE" |
f1 |
Absolute path to fastq read one, supply single end file / direction one PE here |
f2 |
Absolute path to fastq read two, only use for second paired end file not for single end file, default = "". (single end) |
prefix |
Name of prefix for output files. Default = "trimmed" |
phred |
Phred scale, e.g. 33 / 64. Default = "33" |
minlen |
Minimum length of reads to keep, default = "90" |
window |
Sliding window for quality trimming to use, default = "4:15" |
outdir |
Absolute path directory to store output files, default = "./trimmomatic". Directory will be made my script. |
Creates trimming output files in specified directory
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.