Currently I'm working with PyMol application and practicing to write some Python scripts which will run in Pymol terminal.
What I am trying to do is generate pairwise combination of structure for example
str1=['1bcd','3acz','cdsa', 'se1a']
str2=['dacd','qacz','acda', 'e2ac']
Generate pairwise comparision of str1, str2 and between str1 and str2. I loaded all structures in Pymol then I tried to run Python script in Pymol terminal which will calculate all pairwise combination and return RMS value.
But, problem I am facing is Pymol doesn't recognize intertools.combination module which I have used in python script.
Is there any Python latest plugin that I can download for Pymol to make it compatible? I am using python 2.7 but according to Pymol terminal I can see sys.version =2.4.2
How can I solve my problem?
Thank you