Given two sequences, where one is a substring of the other, we define a substring alignment by matching the substring with the longer sequence and placing gaps everywhere else. For example if the input is ACCTGTAGG and TGT then the substring alignment is ACCTGTAGG ---TGT--- Write a Perl program that prints the substring alignment of two unaligned sequences in a FASTA file. If no substring alignment exists then the program should print "No alignment found". Hint: Use the Perl built-in function called index to determine if a given string x is a substring of another string y. Submit my Tuesday 11:30am via email to hc44@njit.edu.