If I understood correctly, you want something like:
-
Read and parse the sequences file
- For each sequence, open a file that is named after the sequence header
- From that file, get the first number of each line
- Associate each letter in the sequence with those numbers
use strict;
use warnings;
my ($seqfile) = @ARGV;
#seqfile is the file with the sequences.
open my $seqfh, "<", $seqfile or die $!;
{
local $/ = "\n>";
while (my $nextseq = <$seqfh>){
chop $nextseq unless eof $seqfh;
substr ($nextseq,0,1,"") if $. == 1;
my ($name,@seq) = split /\n/,$nextseq;
my @aas = split //,join "",@seq;
my @coords = getCoords ($name);
print "$aas[$_] $coords[$_]\n" for(0..$#aas);
}
}
sub getCoords
{
my ($fname) = @_;
local $/="\n";
my @ns;
open my $fh, "<", $fname or die $!;
while (my $line = <$fh>){
chomp $line;
my @ff = split /\s+/,$line;
push @ns, (split /\s+/,$line)[0];
}
close $fh;
return @ns;
}
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.