Help for this page

Select Code to Download


  1. or download this
    # First time
    next unless defined %{$matches{$fasta_id}};         # False
    ...
    # Second time
    next unless defined %{$matches{$fasta_id}};         # Now true!!
    last unless defined @{$matches{$fasta_id}{$site}};
    
  2. or download this
    # First time
    next unless defined %{$matches{$fasta_id}};         # False -> next
    ...
    # Second time
    next unless defined %{$matches{$fasta_id}};         # Still false
    last unless defined @{$matches{$fasta_id}{$site}};