the separation sign or string in MAF(mult.align)
Dear biostar community,
I've read the answers to this Question:
Perl How To Isolate Fasta Sequences With A Specific Keyword
Fortunately, we have a separation block sign '>' in fasta.
I have a huge maf (multiple alignments) from UCSC-database, and I need to do about the same - to find the multiple alignments with some particular key-words.
Is there the separation sign between different multiple alignments in maf?
Knowing the starting symbol or starting string, I would try something like that:
# reading from input-file
while($line=<IN>) {
next if $line =~ /^\s$/;
# skip empty line
next if ($line =~ /No hits/);
if($line =~ /^>/) {
#start a new block
But what should I do for maf?
Please, help me!
Thank you very much,
Natasha
• 301 views
•
link
0 answers
No answers yet.
Log in to answer this question.
Please flag your previous question as answered.
what would be a 'keyword' in tha following maf ?