in reply to How to match the sequences with headers
while (<IFILE>) { ... elsif ($_ =~ /^(\w*)$/) { @sequence = $_; } ... foreach my $sequence(@sequence) { print OFILE1 "$headerseq\n$sequence\n"; } ... }
I'm not familiar with processing FASTA sequence data, but a couple of things strike me in the code fragment originally posted by anonym:
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to match the sequences with headers
by anonym (Acolyte) on Oct 23, 2011 at 17:03 UTC |