Biotech > FAQ > BioPerl FAQ (Frequently Asked Questions)

How do I merge a set of sequences along with the...

To see other biotech frequently asked questions, please visit http://biotech.fyicenter.com/faq/

(Continued from previous question...)

How do I merge a set of sequences along with their features and annotations?

Try the cat() method in Bio::SeqUtils:

 $merged_seq = Bio::SeqUtils->cat(@seqs)

This method uses the first sequence in the array as a foundation and adds the subsequent sequences to it, along with their features and annotations.

(Continued on next question...)

Other Frequently Asked Questions