Help for this page

Select Code to Download


  1. or download this
    cog_class(\@c1_uniq_cog_ids, $name1);
    
  2. or download this
        my $c1_uniq_cog_ids = shift;
        my $name = shift;
    
  3. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
            # BLAH BLAH
        }
    }
    
  4. or download this
    foreach my $id (@{c1_uniq_cog_ids}) {
        # Do stuff
    }
    
  5. or download this
    for (@{c1_uniq_cog_ids}) {
        # Do stuff
    }