TransferChainAssignments
Macro to transfer assignments form one molecular system chain to another
Size 1 kB - File type text/python-sourceFile contents
def transferChainAssignments(argServer):
from ccpnmr.analysis.MoleculeBasic import transferChainAssignments
argServer.showInfo('Select source chain')
chainA = argServer.getChain()
argServer.showInfo('Select destination chain')
chainB = argServer.getChain()
transferChainAssignments(chainA,chainB)