Hi, I would like to add some new features into genebank file in order to visulize them in some software like Snapgene.
I have create a dict with the position information and sequnce, like:
{Seq('TTCAGAGAAGCCTGAACTATTGGAGTGCTCGGCGGCT'): (129576, 129612), Seq('TTCAACGGACCCGGCTGTTCCCGACAGCTCCAGACGG'): (130899, 130607),Seq('TTCGAGTCTCTGCCGCAGCCGCTGGTTCTCCAAGGTG'): (129652, 129688)}
And I want to merge these sequences into gbk file and name them as "feature1, feature2 ... ..."
caution: sometimes the sequence is reverse, like second sequence (130899, 130607)
How can I do it by using biopython or other methods? I want everything to be sorted by position
Thanks a lot, good man.