Help for this page

Select Code to Download


  1. or download this
    my $open;         # variable with file scope
    # The sub open :
    sub open_file {$open = $mw->getOpenFile(    # no my here!
       ...
    
  2. or download this
    sub get_statistics {
        ...
        my $fastaFile = $open;
        ...
    
  3. or download this
    sub get_statistics {
        ...
        my $fastaFile = $current_file;
        ...