Help for this page

Select Code to Download


  1. or download this
    if ($_=~m/^ATOM\s+\d+\s+\w+\s+\w+\s+\w+\d+\s+(\S+)\s+(\S+)\s+(\S+)/){
    
  2. or download this
    open (IN, '6U9D.pdb.txt');
    
  3. or download this
    my $filename = '6U9D.pdb.txt';
    open (IN, $filename)
        or die "Couldn't open '$filename': $!";
    
  4. or download this
    %amino_acid_conversion = (
        ALA=>'A',
    ...
        ILE=>'I',
        VAL=>'V'
    );