Subsections


Create UMI Reads from Grouped Reads

The tool Create UMI Reads from Grouped Reads generates a single consensus read, called a UMI read, from reads which belong to the same group, as determined by the Calculate Unique Molecular Index Groups tool. The consensus reads are placed in a read mapping at the location of the original reads. Therefore, the output of the tool is a read mapping of generated UMI reads.

The tool can be found in the Toolbox here:

        Tools | QIAseq Panel Expert Tools (Image qiaseq_expert_folder_closed_16_n_p) | QIAseq DNA Panel Expert Tools (Image qiaseqv3_folder_open_16_h_p) | Create UMI Reads from Grouped Reads (Image create_umi_from_groups_16_n_p)

In the first dialog (figure 6.68), select a read mapping of the original reads with UMI annotations that was previously handled with the Calculate Unique Molecular Index Groups tool.

Image createsupereads
Figure 6.68: Select a read mapping of the original reads with UMI annotations.

The second dialog of the wizard (figure 6.69) offers the following options:

Image createsupereads2
Figure 6.69: Settings for the Create UMI Reads from Grouped Reads tool.

Click Next to Open or Save the resulting read mapping of UMI reads, i.e., a read mapping of the merged UMI groups. It is also possible to generate a report that will indicate how many reads were ignored and the reason why they were not included in a UMI read. This data will let you verify the found variants, and examine why expected variants were not found.

Consensus nucleotide calculation is performed following the method described in [Hiatt et al., 2013]. The consensus base is chosen so that the posterior probability of the observed read bases is maximized.

In order to maximize the posterior probability of calling a base, i.e.,

$\displaystyle P(C\vert O_1O_2\ldots O_k) = \frac{P(O_1O_2\ldots O_k\vert C)P(C)...
...{P(O_1O_2\ldots O_k\vert C)P(C)}{\sum_{x \in B}P(O_1O_2\ldots O_k\vert x)P(x)}
$

where Oi is the observed base at a given position, C the base in question, and where all possible bases are summed up in the denominator, e.g. B=A,T,C,G.

Assuming that the prior for observing any base is equal, i.e., P(A)=P(T)=P(C)=P(G), then the posterior probability is:

$\displaystyle P(C\vert O_1O_2\ldots O_k) = \frac{P(O_1O_2\ldots O_k\vert C)}{\sum_{x \in B}P(O_1O_2\ldots O_k\vert x)}
$

And by assuming each read base observation is independent,

$\displaystyle P(C\vert O_1O_2\ldots O_k) = \frac{P(O_1\vert C)P(O_2\vert C) \ld...
...(O_k\vert C)}{\sum_{x \in B}P(P(O_1\vert x)P(O_2\vert x) \ldots P(O_k\vert x)}
$

To obtain the consensus base we only need to maximize the numerator.


Consensus Q-score

The Hiatt Q-score is $ -10\log_{10}$ of the probability of making a wrong call, i.e.

$\displaystyle 1 - P(C\vert O_1O_2\ldots O_k)
$

which means that the Hiatt Q-score is

$\displaystyle -10\log_{10}\left(1 - P(C\vert O_1O_2\ldots O_k)\right)
$

Q-scores are capped at 60.

The probabilistic model outlined above and used in the Hiatt Q-score, assumes the only source of errors are independent sequencing errors. While PCR errors are typically rarer than sequencing errors, PCR errors are not independent and they can affect a large fraction of the reads in an UMI group. For this reason, the Hiatt quality scores will often attain the maximum value of 60, even in situations where the reads constituting the UMI group do not unanimously agree on the base call.

The Fixed Ploidy and Low Frequency Variant Detection tools both rely on statistical models for the sequencing error rates, which is estimated for each value of the Q-score and each substitution type, for details see https://resources.qiagenbioinformatics.com/manuals/clcgenomicsworkbench/current/index.php?manual=Variant_Detection_error_model_estimation.html. If most quality scores are 60, the variant callers can not differentiate between, i.e. reads with unanimous agreement and reads without, or between small groups with unanimous agreement and large groups with unanimous agreement.

MAGERI Q-scores does not have a probabilistic interpretation as Hiatt Q-scores, but they a more distributed in the set of possible Q-scores, allowing the variant callers to differentiate between qualities. The MAGERI Q-scores is an adaption of the method described in [Shugay et al., 2017].

First, the frequency, f, of the consensus base is computed, only bases with a Q-score above 25 contribute to the frequency computation. A pseudo-count is applied to the denominator, so that larger groups automatically get higher Q-scores:

$\displaystyle f = \frac{c}{n + 0.9},
$

where c is the count of the consensus base and n is the total count.

The MAGERI Q-score is then computed as

$\displaystyle Q = \frac{60}{3}\cdot(4f-1).
$