Re: [Biopython] getting alignment out of Align.PairwiseAligner
Peter Cock <[email protected]>
| Newsgroups | gmane.comp.python.bio.general |
|---|---|
| Message-ID | <CAKVJ-_7sOOH1ShQ-FbjvZprkKfKYYpHeezA+v35ukEF3132tFA__41876.9473246813$1538756616$gmane$org@mail.gmail.com> |
Yes, if you look at the code which makes that string it does it via the path structure: https://github.com/biopython/biopython/blob/biopython-172/Bio/Align/__init__.py#L991 What do you want out of the alignment object? Two strings with gap characters inserted? Something else? Peter On Thu, Oct 4, 2018 at 9:48 PM John Berrisford <[email protected]> wrote: > > Hi > > > > How do I get the alignment out of Align.PairwiseAligner? > > > > I have the following code > > > > aligner = Align.PairwiseAligner() > > alignments = aligner.align(self.sequence1, self.sequence2) > for alignment in sorted(alignments): > > logging.debug(alignment) > logging.debug(alignment.score) > logging.debug(alignment.target) > logging.debug(alignment.query) > logging.debug(alignment.path) > logging.debug(dir(alignment)) > > > > my example > > Query 193 residues long. > > Target 6 residues long. > > > > out of this I can get the > > alignment – which appears to be a line separated string of query, alignment, target. > > In my example: > > MEKLEVGIYTRAREGEIACGDACLVKRVEGVIFLAVGDGIGHGPEAARAAEIAIASMESSMNTGLVNIFQLCHRELRGTRGAVAALCRVDRRQGLWQAAIVGNIHVKILSAKGIITPLATPGILGYNYPHQLLIAKGSYQEGDLFLIHSDGIQEGAVPLALLANYRLTAEELVRLIGEKYGRRDDDVAVIVAR > > --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|XX|XX----- > > --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------RANDOM----- > > score – the alignment score (I can also get this with aligner.score) > > target – self.sequence2 > > query – self.sequence1 > > path – I think this is what I want, but I don’t know how to interpret this – it is something the following in the above example: ((0, 0), (182, 0), (188, 6), (193, 6)) > > is this documented somewhere? > > It looks like 0-181 no alignment, 182 to 187 adds a score of 6. 188 to 193 keeps the score at 6. > > > > > > when I dir(alignment) I only see the above options > > ['__class__', '__cmp__', '__delattr__', '__dict__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt_ > > _', '__hash__', '__init__', '__le__', '__lt__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subc > > lasshook__', '__weakref__', '_format_psl', 'path', 'query', 'score', 'target'] > > > > what I’m after is the middle row of the alignment (above). Is the only option to split alignment on carriage return? > > > > Thanks > > > > John > > > > -- > > John Berrisford > > PDBe > > European Bioinformatics Institute (EMBL-EBI) > > European Molecular Biology Laboratory > > Wellcome Trust Genome Campus > > Hinxton > > Cambridge CB10 1SD UK > > Tel: +44 1223 492529 > > > > http://www.pdbe.org > > http://www.facebook.com/proteindatabank > > http://twitter.com/PDBeurope > > > > _______________________________________________ > Biopython mailing list - [email protected] > http://mailman.open-bio.org/mailman/listinfo/biopython _______________________________________________ Biopython mailing list - [email protected] http://mailman.open-bio.org/mailman/listinfo/biopython