bioinformatics has asked for the wisdom of the Perl Monks concerning the following question:
Fixed code tags - dvergin 2003-07-07open (FILE, "brca1_prettybase.txt"); our @data=''; @data = <FILE>; close (FILE); $i=0; while ($i <=300) { #for ($i=0; $i<=89; $i++) { # @zz=$data[$i]; @zz=splice(@data, 0, 89); foreach $_(@zz){ $a=''; $b=''; $c=''; $d=''; ($a, $b, $c, $d) = split(/[\t]/,$_); $qq=join ('/',$c,$d); push (@qqq, $qq); #print "$b\n"; } print "$a\n"; print @qqq; $i++; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Printing in succesive columns...
by Zaxo (Archbishop) on Jul 07, 2003 at 20:16 UTC | |
|
Re: Printing in succesive columns...
by TomDLux (Vicar) on Jul 07, 2003 at 21:17 UTC | |
by Albannach (Monsignor) on Jul 07, 2003 at 21:28 UTC |