FASTQ Adapter & Quality Trimmer
fastq_trimTrim FASTQ reads: an ungapped sliding-suffix adapter match (against the same named Illumina adapters as the QC report) followed by a BWA-style 3' quality trim (the same algorithm Cutadapt's own -q option reuses), then drops reads below a minimum length. Returns the trimmed FASTQ plus before/after read-count, mean-length and mean-quality stats.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| input | Yes | FASTQ text: records of an '@id' header, sequence, '+' separator and quality line (four lines each). | |
| minLength | No | Reads shorter than this after trimming are dropped. | |
| qualityOffset | No | FASTQ Phred ASCII offset (33 = Sanger/Illumina 1.8+, 64 = Illumina 1.3-1.7). | |
| qualityThreshold | No | 3' quality-trim threshold (Phred score). |