Skip to the content.

Log into the HPC cluster’s On Demand Interface

[tutln01@login001 ~]$

Starting an Interactive Session

srun --pty -t 3:00:00 --mem 16G -N 1 --cpus 4 bash

Where:

command description
srun SLURM command to run a parallel job
--pty get a pseudo terminal
-t time we need here we request 3 hours
--mem memory we need here we request 16 Gigabytes
-N number of nodes needed here we requested 1 node
--cpus number of CPUs needed here we requested 4
[tutln01@c1cmp048 ~]$

Set Up For Analysis

cp -r /cluster/tufts/bio/tools/tool_examples/af2Workshop ./

Proliferating Cell Nuclear Antigen (PCNA)

PCNA is a very well conserved protein across eukaryotes and even Archea. It acts as a processivity factor of DNA Polymerase delta, necessary for DNA replication:

Aside from DNA replication PCNA is involved in:

It should also be noted that PCNA is a multimeric protein consisting of three monomers.

DNA ligase 1 (LIG1)

As evidenced by the picture above, DNA Ligase 1 is also involved in DNA replication but also DNA repair. As a part of the DNA replication machinery, DNA Ligase 1 joins Okazaki fragments during lagging strand DNA sythesis. This ligase also interacts with PCNA:

Here we note that DNA ligase is a monomer consisting of the following domains:

The contact between the PCNA interacting motif and PCNA induce a conformational change to create the DNA ligase catalytic region.

Question 1: Which protein do you expect will have an overall more accurate prediction by AlphaFold 2? Why?
Given that conservation aids AlphaFold's prediction accuracy, PCNA seems to have the better chance of having a more accurate structure prediction. Additionally, LIG1 contains disordered regions, like the PCNA domain which may impact structure prediction.

Next: AlphaFold Output

Previous: Introduction To AlphaFold

Main Page