Dear Monks,
I am new to perl and still learning the ropes. I am trying to use the foreach loop but not getting the desired output. Here's my code:
use warnings;
print "Please enter the cns file:\n";
chomp($t=<STDIN>);
open(THE,$t) or die "Can not open file: $!\n";
@data=<THE>;
close THE;
$sequence='';
$end=0;
foreach $line(@data){
if($line=~/^\@/){
$chro=$line;
}elsif($line=~/^[a-zA-Z]/){
$sequence.=$line;
}else{
$end++
}
}
$sequence=~s/\s*$//g;
print $chro,"\n";
print $sequence,"\n";
The file am reading in looks like this:
<@chr1
nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn
nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn
@chr2
nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn
nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn>
My problem is this will only output the last iteration i.e @chr2 followed by the nnnn's.
How can I make it return the file the way it looks like from the input i.e. @chr1 nnnn.. followed by @chr2 nnn....?
thanks.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.