Anto_ch has asked for the wisdom of the Perl Monks concerning the following question:
column1 column2 column3 .... column n
111111 222222 333333 ..... nnnnnnn
121212 212121 313131 ...... nnnnnnn
131313 232323 343434 ...... nnnnnnn
I would like to extract the second and the third column and put it on a new file, but with the code I wrote it enters the file but read and catch only the first number in column2. I don't know why it wan't iterate through the lines. Need help i am going crazy! :-) So far I had the same problem with another file where I have to subtract the values in column1 from columns 2 and it worked but when i tryied to use the same code to extract instead of subtracting catch only the first element of such column. thank you in advance for your help. code i am using is below:
use strict; use warnings; open(APRI2, "path to file.txt"); my@out_runseq = <APRI2>; close APRI2; print @out_runseq, "\n"; foreach my$lines (@out_runseq) { my@splitlines = split("\t", $lines); my(@motif_position) = ( ); if (my$splitlines = $splitlines[7]) { my$position1 = $splitlines[7]; print ("$position1\t"); push(@motif_position, $position1); } } exit;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: multicolumn extraction
by davido (Cardinal) on Jun 03, 2012 at 15:53 UTC | |
by NetWallah (Canon) on Jun 03, 2012 at 18:06 UTC | |
by Kenosis (Priest) on Jun 03, 2012 at 16:30 UTC | |
by sauoq (Abbot) on Jun 03, 2012 at 17:05 UTC | |
by Kenosis (Priest) on Jun 03, 2012 at 17:15 UTC | |
by GrandFather (Saint) on Jun 03, 2012 at 22:33 UTC | |
|