FastQC Quality Control Element

This element generates quality control reports for short read sequencing data using FastQC.

Element type: fastqc


Parameters

ParameterDescriptionDefault ValueParameter in Workflow FileType
Output fileName of the resulting FastQC report file. If not set, the input file name is used.Input fileout-filestring
List of adaptersOptional file with adapter sequences. Format: name<TAB>sequence. Lines starting with # are ignored.(not set)adapterstring
List of contaminantsOptional file with contaminants to screen for. Same format as adapters.(not set)contaminantsstring

Input/Output Ports

Input Port

Name in GUIName in Workflow FileSlotSlot in Workflow FileType
Short readsin-fileSource URLurlstring

Example

You can use this element to generate FastQC reports in a larger workflow:

ugene workflow run \
  --element fastqc \
  --url input_reads.fastq \
  --out-file fastqc_report.html

If you wish to customize adapter or contaminant lists:

ugene workflow run \
  --element fastqc \
  --url input.fastq \
  --adapter my_adapters.txt \
  --contaminants my_contaminants.txt \
  --out-file output_report.html

Adapter and contaminant files must contain tab-separated name<tab>sequence entries. Lines starting with # are ignored.