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