Help for this page

Select Code to Download


  1. or download this
    if ($element[4] =~ /^
       (?=.*?\Q$Homosapiens\E)
       (?=.*?\Q$choromosome\E)
    /x)
    
  2. or download this
    if ($element[4] =~ /\Q$Homosapiens\E/ &&
        $element[4] =~ /\Q$choromosome\E/)
    
  3. or download this
    if (index($element[4], $Homosapiens) >= 0 &&
        index($element[4], $choromosome) >= 0)