Torrent Suite Software 5.4 Help

Overview of BaseCaller functionality

In addition to creating a sequence of bases from the 1.wells file information, the BaseCaller module also performs read filtering and read trimming.

Notes on read filtering:

  • Filters out low-quality reads that were marked during signal processing.

  • Filters out reads that fail basecalling filters.

  • Filtered out reads do notappear in the BAM file. The BaseCaller keeps counts of these reads but there is no record of specific reads that are filtered out.

Notes on read trimming:

  • Removes certain bases from the read for quality reasons.

  • The read appears in the BAM file.

  • The removed bases do not appear in theBAM file.

These are the steps performed in the BaseCaller:

  1. Remove low-quality reads that were marked during the signal processing step.

  2. Do base calling:
    1. From the signal values, create the sequence of bases.

    2. Estimate the base quality value for each base.

  3. Do barcode classification:
    1. Assign each read to a barcode.

    2. Trim the barcode sequence away if --trim-barcodes=on is specified. (The default is 'on').

  4. Trim 5' unique molecular tag (only done if --trim-barcodes=on).

  5. Trim extra bases at the 5' end. Controlled by --extra-trim-left (default is 0, meaning no extra trimming).

  6. Filter out reads that are too short. Controlled by --min-read-length and -- trim-min-read-len.

  7. Filter out reads that do not have the correct library key. Can be turned off by --keypass-filter.
    1. Trim 3’ unique molecular tag (only done if P1 adapter was found).

    2. Trim extra bases on the 3’ end. Controlled by --extra-trim-right (default is 0, meaning no extra trimming. Only done if P1 adapter was found).

  8. Trim the P1 adapter (at the 3' end).

  9. Perform quality trimming. Affect ed by --trim-qual-window-size and -- trim-qual-cutoff.

Notes about quality trimming:

  • The purpose of quality trimming is to identify where quality issues begin at the end of a read. We try to identify when bases fall below a quality threshold and trim both those bases and a bit before those bases.

  • The parameter --trim-qual-window-size sets the window size for quality trimming. The algorithm slides through the sequence of bases and, each time the window shifts, computes the mean Base QV value for all bases in the window.

  • If the mean Base QV value for all bases in the window falls below a threshold (set the by parameter --trim-qual-cutoff, default 16), then we trim all bases from the center of the window at that time to the 5' end.