<?xml version="1.0" encoding="windows-1252"?>
<node id="1014935" title="Code won't proceed after input." created="2013-01-23 10:43:28" updated="2013-01-23 10:43:28">
<type id="115">
perlquestion</type>
<author id="1014920">
newbie1991</author>
<data>
<field name="doctext">
&lt;p&gt;
There seem to be no compilation errors, but once the filename is input, the screen just... does nothing. I have to restart the terminal to get anything done. What am I doing wrong?
I'm writing a program to compare an input string against a list, and calculating occurrence and frequency of that particular element. 
I have the code, it's a little messy, and I would appreciate ALL the help you have.
Also, why is , 'S' showing up as a highlighted + sign?

Updated the while loop but the values don't seem to be incrementing, the output shows 0, 0, 0 and [1], [2] for the first column instead of showing A, C, D..

&lt;/p&gt;

&lt;code&gt;

#!/usr/bin/perl-w
use warnings;
use diagnostics;

print "Enter the file containing the amino acid sequence \n";
my $filename = &lt;STDIN&gt;;
chomp $filename;

unless (open(FILENAME, $filename))
	{
		print "File $filename not found. Exiting program \n";
		exit;
	}

my @AASeq=&lt;FILENAME&gt;;
my $length = @AASeq;
close FILENAME;

my @AAMatrix = ('A','C','D','E','F','G','H','I','K','L','M','N','P','Q','R','S','T','V','W','Y');
my @AAOcc = (0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);
my @AAFreq = (0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);
my $i=0;
my $counter=0; #Counter for the initialized matrix


while ($counter&lt;=$length)
{
	for ($i=0; $i&lt;=19; $i++)
	{
		
		if( $AASeq[$counter]=~ $AAMatrix[$i])
		{
			++$AAOcc[$counter];
			next;
		}
		
	}
	++$counter;
}


#Calculating frequency of amino acid occurrence
my $x=0;

for ($x=0; $x&lt;=19; $x++)
{
	$AAFreq[$x] = $AAOcc[$x]/$length;
}

#Printing out the final array

print "AMINO ACID \t OCCURRENCE \t FREQUENCY ";
my $y=0;
for ($y=0; $y&lt;=19; $y++)
{
	print  "$AAMAtrix [$y] \t\t $AAOcc[$y] \t\t $AAFreq[$y] \t\t\n";
}

&lt;/code&gt;</field>
</data>
</node>
