Help for this page

Select Code to Download


  1. or download this
    if ($probe_ID =~ m/$probe_name[$i]/) #match the current entry with the list of probe names
  2. or download this
    # afater the first loop:
    my $probes_regex = join '|', @probe_name;
    ...
            print "no match\n";
        }
    }