10.34. Protex Protein Builder Tool#

Note

EdX does not support this tool.

The Protex protein builder asks students to create specified protein shapes by stringing together amino acids. In the example below, the goal protein shape is a simple line.

Image of the protein builder

10.34.1. Create the Protein Builder Tool#

To create the protein builder, follow these steps.

  1. Under Add New Component, click Problem, and then click Blank Advanced Problem.

  2. In the component that appears, click Edit.

  3. In the component editor, paste the problem component code from the section that follows.

  4. Make any changes that you want, and then click Save.

10.34.2. Protein Builder Tool Code#

<problem>
    <p>The protein builder allows you string together the building blocks of proteins, amino acids, and see how that string will form into a structure. You are presented with a goal protein shape, and your task is to try to re-create it. In the example below, the shape that you are asked to form is a simple line.</p>
   <p>Be sure to click "Fold" to fold your protein before you click "Check".</p>

<script type="loncapa/python">

def protex_grader(expect,ans):
  import json
  ans=json.loads(ans)
  if "ERROR" in ans["protex_answer"]:
    raise ValueError("Protex did not understand your answer. Try folding the protein.")
  return ans["protex_answer"]=="CORRECT"

</script>

  <text>
    <customresponse cfn="protex_grader">
      <designprotein2dinput width="855" height="500" target_shape="W;W;W;W;W;W;W"/>
    </customresponse>
  </text>
  <solution>
    <p>
      Many protein sequences, such as the following example, fold to a straight line.You can play around with the protein builder if you're curious.
    </p>
    <ul>
      <li>
          Stick: RRRRRRR
      </li>
    </ul>
  </solution>
</problem>

In this code:

  • width and height specify the dimensions of the application, in pixels.

  • target_shape lists the amino acids that, combined in the order specified, create the shape you’ve asked students to create. The list can only include the following letters, which correspond to the one-letter code for each amino acid. (This list appears in the upper-left corner of the protein builder.)

    A

    R

    N

    D

    C

    Q

    E

    G

    H

    I

    L

    K

    M

    F

    P

    S

    T

    W

    Y

    V