Python Forum
Problem Passing Arguement to do loop
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Problem Passing Arguement to do loop
#4
I have made a little bit of progress with this code:
#!/pythonsh
import subprocess
import sys
with open('ligands') as infile:
ligand = infile.read().strip().split()
for nvar in ligand:
subprocess.call([
sys.executable, "./prepare_ligand4.py",
"-l", nvar + ".mol2",
"-o", nvar + ".pbdqt" ])

execution goes without error until the for statement. Then there is a series errors, one for each .mol file. The problem is that pythonsh is not a bash file, but rather a bash shell file which sets paths to files in MGLTools which are written in python, albeit it happens to be python2.5. As far as I know the authors of MGLTools have to plans to upgrade the version of python they have used.

If I run ./pythonsh ./prepare_ligand4.py -l <name>.mol2 the .pdbqt file is generated and saved. So I know he code works, just not as I would prefer.
Reply


Messages In This Thread
RE: Problem Passing Arguement to do loop - by stephenmolnar - May-10-2019, 06:41 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  problem program runs in a loop jasserin 0 110 May-18-2024, 03:07 PM
Last Post: jasserin
  While Loop Problem Benno2805 1 612 Sep-06-2023, 04:51 PM
Last Post: deanhystad
  Loop reading csv file problem faustineaiden 1 1,610 Dec-11-2021, 08:40 AM
Last Post: ibreeden
  Infinite loop problem Zirconyl 5 3,069 Nov-16-2020, 09:06 AM
Last Post: DeaD_EyE
  Dataframe mean calculation problem: do we have to loop? sparkt 1 2,213 Aug-28-2020, 02:41 PM
Last Post: sparkt
  Python loop problem Kristenl2784 11 5,209 Jun-18-2020, 07:22 PM
Last Post: buran
  Problem with append list in loop michaelko03 0 1,716 Feb-16-2020, 07:04 PM
Last Post: michaelko03
  problem with for loop using integers python_germ 5 3,089 Aug-31-2019, 11:42 AM
Last Post: jefsummers
  problem in loop roseojha 3 2,348 Aug-26-2019, 09:03 AM
Last Post: perfringo
  Nested while loop problem + turtle DreamingInsanity 3 3,026 Jul-06-2019, 02:01 PM
Last Post: DreamingInsanity

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020