The following Markov model was designed to generate sequences in the
helical conformation.
We assume two types of residues alpha (helix) and beta (something else). An alpha
helix is defined as a sequence of all alpha amino acids. The parameters of the
model are as follows:
- If the previous residue was not alpha, then there is a
probability 0.3 that the next residue will be alpha.
- If the previous residue was alpha then the probability of the next residue to be
alpha is 0.7 (this is sometimes
called cooperativity effect in secondary structure formation).
- The zero
state (opening amino acids) has alpha and beta residues with equal probabilities.
Write a program that generates sequences consistent with the above model
and computes 100 sequences of length 100 consistent with the above model. In
your report includes the program and the average length of observed
continuous helices.