1.

How Do I Merge A Set Of Sequences Along With Their Features And Annotations?

Answer»

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.

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.



Discussion

No Comment Found