Help for this page

Select Code to Download


  1. or download this
    foreach my $ref (keys %$self){
       next unless $self->{$ref}{'chain'} = 1;
       # process chain 1 atoms 
    }
    
  2. or download this
    foreach my $ref (keys %$data){
       next unless $data->{$ref}->type eq 'ATOM';
    ...
    foreach my $ref (keys %{$self->{1}}) {
       # process chain 1 atoms
    }