diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2020-07-02 23:35:54 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-02 23:35:54 +0530 |
commit | 7c8897ec765e677ad54a285112f483818695e14f (patch) | |
tree | 4fb79a0a01737e76c6d770489632c9efd809d240 /scripts | |
parent | f5abe16f99e693e2627f8afeb61cebd327ee7144 (diff) |
enabling all PyMOL generations
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/quick-ligand-protein.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/scripts/quick-ligand-protein.py b/scripts/quick-ligand-protein.py index f2409ef..c72f370 100644 --- a/scripts/quick-ligand-protein.py +++ b/scripts/quick-ligand-protein.py @@ -69,14 +69,14 @@ def zoomTo(name): cmd.zoom(name) def generatePictures(): generatePNG('output-front') - #flipHorizontal() - #generatePNG('output-back') - #zoomTo(m2) - #generatePNG('closeup-back') - #orientEtZoom() - #flipHorizontal() - #zoomTo(m2) - #generatePNG('closeup-front') + flipHorizontal() + generatePNG('output-back') + zoomTo(m2) + generatePNG('closeup-back') + orientEtZoom() + flipHorizontal() + zoomTo(m2) + generatePNG('closeup-front') print("Initialising PyMol") @@ -96,4 +96,4 @@ surfaceTransparency(0.6) generatePictures() endTime = time.time() -print("Finished Execution in " + str(round((endTime - startTime),2)) + " seconds.")
\ No newline at end of file +print("Finished Execution in " + str(round((endTime - startTime),2)) + " seconds.") |