allpy
changeset 1029:12b9d1770582
blocks_to_pymol(): fix the order of pair_fit arguments
(This seems not to be documented in pymol's wiki)
pair_fit from to
author | Boris Nagaev <bnagaev@gmail.com> |
---|---|
date | Fri, 16 Mar 2012 00:54:26 +0400 |
parents | aac0f23643f2 |
children | cc76c6e13ba1 |
files | allpy/structure.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line diff
1.1 --- a/allpy/structure.py Fri Mar 16 00:20:00 2012 +0400 1.2 +++ b/allpy/structure.py Fri Mar 16 00:54:26 2012 +0400 1.3 @@ -548,7 +548,7 @@ 1.4 for block in blocks: 1.5 if fit_to in block.sequences and fit_from in block.sequences: 1.6 columns |= set(block.columns) 1.7 - file.write("pair_fit %(fit_to)s, %(fit_from)s\n" % 1.8 + file.write("pair_fit %(fit_from)s, %(fit_to)s\n" % 1.9 {'fit_to': columns_line(columns, fit_to) + " and name ca", 1.10 'fit_from': columns_line(columns, fit_from) + " and name ca"}) 1.11 file.write("hide everything, all\n")