Help for this page

Select Code to Download


  1. or download this
    # EXAMPLE OF HOW THE OBJECT IS NORMALLY DECLARED
    #my $dssp_obj = new Bio::Structure::SecStr::DSSP::Res('-file'=>'3bit.d
    +ssp');
    
  2. or download this
    my $dssp_obj = new Bio::Structure::SecStr::DSSP::Res('-file'=>$ARGV[0]
    +);
    
  3. or download this
      my @dssp_objs = ();
      foreach my $file (@ARGV)
      {
          push @dssp_objs, Bio::Structure::SecStr::DSSP::Res->new('-file'=
    +>$file);
      }