Hello Monks!
I need to do the following:
In a document with the following format:
>id1|various annotation1
sequence of characters1
>id2|various annotation2
sequence of characters2
...
>idN|various annotationN
sequence of charactersN
I want to group the lines that have the same
various annotation and
sequence but not the same
id into one line, like this:
>id1-id15-id22|various annotation1
sequence of characters1
...
When the
various annotation is the same, then the
sequence is also the same.
I am pretty sure I need to use the
map command, but I am a bit unsure how I would handle this. So far I have used it when I have 2 things to compare, e.g. only the
id that would change and the
sequence that could be repeated, and I was grouping based on the sequence. Like this:
use strict;
use warnings;
my %res;
while (<>)
{
chomp;
my ( $name, $rest ) = split /\t/;
push @{ $res{$name} }, $rest;
}
for ( sort keys %res )
{
print "$_:", join( ",", @{ $res{$_} } );
print "\n";
}
But now, I have 3 things instead.
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.