Homotrimer umi error proba analysis
The uc.plot.prob_correct
and uc.plot.prob_incorrect
functions allows you to plot the probability of correct and incorrect synthesis of homotrimer building blocks and full sequences across varying error rates. Please see this section for details.
- correct synthesis of a homotrimer building block (
num_nt=1
)
import numpy as np
error_rates= np.linspace(0.00001, 0.5, 500)
uc.plot.prob_correct(error_rate=error_rates, num_nt=1)

- incorrect synthesis of a whole sequence (
num_nt=12
)
uc.plot.prob_incorrect(error_rate=error_rates, num_nt=12)
