next up previous
Next: Solvating the Protein Up: Basics of NAMD Previous: What is Needed

Generating a Protein Structure File (PSF)

Of the four files mentioned above, an initial PDB file will typically be obtained through the Protein Data Bank, and the parameter and topology files for a given class of molecule may be obtained via the Internet at
http://www.pharmacy.umaryland.edu/$\sim $alex/research.html. The NAMD configuration file is created by the user. The PSF file, however, must be created by the user from the initial PDB and parameter files.

1
Go to the 1-1-build directory. In a Unix Terminal window, you can change directories using the cd command. Type cd 1-1-build. You can see the contents of the directory you are in by typing ls. In this folder, you will find many files that you will use later.

First, you will remove the water molecules from 1UBQ.pdb, and create a clean pdb file of the protein alone.

2
Open VMD by typing vmd in the Unix Terminal window, and load 1UBQ.pdb by clicking File $\rightarrow$ New Molecule... menu item in the VMD Main window. In the Molecule File Browser use the Browse... button to find the file 1UBQ.pdb. Load it by pressing the Load button.

Note that the x-ray structure from the Protein Data Bank does not contain the hydrogen atoms of ubiquitin. This is because x-ray crystallography usually cannot resolve hydrogen atoms. The pdb file you generate along with the psf will contain guessed coordinates for hydrogen atoms of the structure. Later, energy minimization of the protein will ensure their positions are reasonable.

\fbox{
\begin{minipage}{.2\textwidth}
\includegraphics[width=2.3 cm, height=2....
...lography resolutions currently available are around 0.9{\AA}.}
\end{minipage} }

3
Choose the Extensions $\rightarrow$ tkcon menu item and in the VMD TkCon window, type the following commands:

set ubq [atomselect top protein]  
$ubq writepdb ubqp.pdb  


(Hit the Return key after each command.)

In the previous step you have created the file ubqp.pdb, which contains the coordinates of the ubiquitin alone without hydrogens, in the 1-1-build directory.

4
Delete the current displayed molecule in VMD using the VMD Main window by clicking on 1UBQ.pdb in the window, and selecting Molecule $\rightarrow$ Delete Molecule. Close VMD by typing exit in the vmd console window.

5
Now, you will create the psf file of ubquitin. The psfgen package of VMD is very useful in this regard. In order to create a psf, you will first make a pgn file, which will be the target of psfgen. In a Unix Terminal window type nedit ubq.pgn to create a new file called ubq.pgn. (Be sure that you are in the 1-1-build directory.) Then, type the following lines:

package require psfgen  
topology top_all27_prot_lipid.inp  
alias residue HIS HSE  
alias atom ILE CD1 CD  
segment U {pdb ubqp.pdb}  
coordpdb ubqp.pdb U  
guesscoord  
writepdb ubq.pdb  
writepsf ubq.psf  

\fbox{
\begin{minipage}{.2\textwidth}
\includegraphics[width=2.3 cm, height=2....
...e to use whichever text editor you are most comfortable with.}
\end{minipage} }

6
After typing this, save the file by clicking File $\rightarrow$ Save and quit the text editor by clicking File $\rightarrow$ Exit.

The file you just created contains the necessary commands to create the psf file of ubiquitin with hydrogen atoms and without water. Each command of the pgn file is explained:

\fbox{
\begin{minipage}{.2\textwidth}
\includegraphics[width=2.3 cm, height=2....
...'), and one in which both nitrogens are protonated (\lq\lq HSP'').}
\end{minipage} }

7
In a Unix Terminal window (again, be sure that you are in the 1-1-build directory), type the following command: vmd -dispdev text -e ubq.pgn. This will run the package psfgen on the file ubq.pgn in the text only version of VMD (no graphics). It will generate the psf and the pdb file of ubiquitin with hydrogens.

In your screen you will see different messages. Warnings are related to the ends of your molecule and are normal. Your system should have 1231 atoms and 631 with guessed coordinates.

8
Close the text version of VMD by typing exit at the vmd > prompt.

Having run psfgen, two new files will now appear in your 1-1-build directory: ubq.pdb and ubq.psf. Check this by typing ls. You have created the psf! You may want to inspect ubq.pdb using nedit.

\framebox[\textwidth]{
\begin{minipage}{.2\textwidth}
\includegraphics[width=2...
...\tt psfgen} package requires a {\tt pdb} file for each chain.}
\end{minipage} }

Figure 2: Flowchart indicating the role of files as used by VMD, NAMD, and psfgen.
\begin{figure}\begin{center}
\par\par\latex{
\includegraphics[scale=0.5]{pictures/tut_unit01_flow}
}
\end{center} \end{figure}


next up previous
Next: Solvating the Protein Up: Basics of NAMD Previous: What is Needed
namd@ks.uiuc.edu