in reply to Re^4: Human genome array
in thread Human genome array

To get rid of the Use of uninitialized value in regexp compilation warning message, I think you want to use:
my @str = split //, $temp_str;
This will split a string into individual characters.