I tried to find some clue in the list but I couldn't, so sorry if I ask a repeated topic
I am PERL beginner and I am trying to write a program in PERL that take two DNA sequences, calculate the reverse of the second one and find the maximum complementary regions between them, that is:
input:
CGTAAATCTATCTT
CATGCGTCTTTACG
output:
CGTAAATCTATCTT
GCATTT--------
I have no problem to find the reverse of the second sequence, however my programming skills in PERL are rudimentary. Do I need to use a combined for an foreach loops?