<div dir="ltr">Hi Tom,<div><br></div><div>       Thank you for your quick reply. Your solution worked to get "foreach" to work and I have notes below if others in the future run into my problem. I was able to solve the issue with a bash script that creates command run files on the fly but it's pretty messy so if you have another way to do this it'd be nice to have things a bit cleaner. Below is my solution/follow-up question, a clarification to the $file1 question you asked and some notes about updating. Major apologies if I repeat myself or grammatical errors, as I wrote this email I came up with several ideas on how to make things work and had to edit the post multiple times each time I tried something new.</div><div><br></div><div>Follow up question:</div><div>      With your help I got this to work by typing these commands into the terminal directly:</div><div>$:chimerax --nogui</div><div>(waited to load chimerax)</div><div>$:open chimera-data-processing.cxc foreach S_0001_*-4-all-chain-A.pdb</div><div><br></div><div>       Is there a way to run the command script with foreach while opening chimerax? for example:</div><div>$:chimerax --nogui chimera-data-processing.cxc foreach S_0001_*-4-all-chain-A.pdb</div><div>        </div><div>          If I run this it give me a bunch of python errors and errors related to $file. The workaround I made was to have the master bash script write a new chimera script on the fly every time with the user inputted filenames saved in the master bash script.</div><div><br></div><div>masterscript.sh:</div><div>###run in terminal: "./masterscript.sh S_0001_ hsk2-template-with-metals.pdb</div><div>pdbstoalign=$1</div><div>pdbwithmetals=$2    </div><div>###$1 and $2 are equal to the user input while starting the script</div><div>###pdb editing stuff happening</div><div>if ($x = 5) ###5th alignment</div><div>###create foreach running script</div><div>echo "open chimera-data-processing.cxc foreach $pdbstoalign-[1-1000]-all-chain-A.pdb" > chimeraxrun.cxc</div><div>echo "quit" >> chimeraxrun.cxc</div><div>###create data processing script</div><div>echo 'open $file.pdb' > chimera-data-processing.cxc  ###print exactly this line not variable $file</div>echo "open $pdbwithmetals" >> chimera-data-processing.cxc<br>echo "info" >> chimera-data-processing.cxc<br>echo "align #1:240-244,765-769,1290-1294,1815-1819@o to_atoms #2:240-244,765-769,1290-1294,1815-1819@o matchAtomNames true; wait 300" >> chimera-data-processing.cxc<br>echo "save $file-sf-aligned.pdb #1 format pdb relModel #2; wait 30" >> chimera-data-processing.cxc<div><br></div><div>chimerax --nogui chimeraxrun.cxc</div><div>###pdb processing with output</div><div><br></div><div>chimeraxrun.cxc:</div><div>open foreach chimera-data-processing.cxc foreach S_0001_[1-1000]-4-all-chain-A.pdb   ###pdb filename comes from bash script</div><div><br></div><div>chimera-data-processing:</div><div><div>open $file.pdb</div>open hsk2-template-with-metals.pdb ###filename from bash master script</div><div>info<br>align #1:240-244,765-769,1290-1294,1815-1819@o to_atoms #2:240-244,765-769,1290-1294,1815-1819@o matchAtomNames true; wait 300<br>save $file-sf-aligned.pdb #1 format pdb relModel #2; wait 30<br></div><div><br></div><div>       While this works it is very messy and I need to create multiple files on the fly. It would be much easier if I could pass variables into the chimerax scripts that I can use inside the script. Does this make any sense?</div><div><br></div><div>Clarification:</div><div>      Hopefully the above example scripts clarifies why I asked about $file1 and $file2. I have 2 input files. a model with no metals and a template with models I need to align onto.</div><div><br></div><div>Updating issues:</div><div>        </div><div>          I forgot to mention that I tried updating chimerax-daily with this command</div><div><br></div><div>sudo /usr/bin/chimerax-daily -m pip install --upgrade pip<br></div><div><br></div><div>          which gave a success code. But when I checked the version via chimerax-daily --version I get this version.</div><div><br></div><div>UCSF ChimeraX version: 0.93 (2020-03-24)<br></div><div><br></div><div>          Is there a way to update to the newest version without reinstalling? I found toolshed update documentation but this appears to be for packages not the entire build. As you can see it is not them most updated version. I downloaded bother chimerax and chimerax-daily again. chimerax installed and used foreach with no errors. However, chimerax-daily will not install unless I do a complete uninstall so I think I'll go forward with chimerax.</div><div><br></div><div>         Another thing I noticed, while attempting ranges with chimerax-daily it only took single digit ranges. For example </div><div>S_0001-[1-10]-chain-A.pdb if only took pdbs with "1" in place of the range. if the range is 1-9 then it takes all files. If the range is 01-19 (trying to match number of digits) if only takes models 1 and 9. I get what it is doing here but I don't know the fix or if I'm doing it right. I'm just using a range for now to test 9 files instead of the full 1000. I'll replace the numbering with a '*' so it'll get them all. I won't have an issues going forward but thought this was significant for others in the future if I had typed it wrong.</div><div><br></div><div>Thank you again for your time and help,</div><div><br></div><div>Ryan</div><div><br></div><div>          </div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, May 5, 2022 at 12:01 AM Tom Goddard <<a href="mailto:goddard@sonic.net">goddard@sonic.net</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div style="overflow-wrap: break-word;">Hi Ryan,<div><br></div><div>  The "foreach" option you tried is exactly intended for this use.  The error message "Missing filename suffix foreach" suggests you are using an old version of ChimeraX (older than ChimeraX 1.3) that does not have the "foreach" option so it thinks that "foreach" is the name of a file.  Your script only saves one file so I don't understand what you mean by saving two files $file1 and $file2.  You would just use "save $file-sf-aligned.pdb ..." to save the aligned file.</div><div><br></div><div><span style="white-space:pre-wrap">       </span>Tom</div><div><br><div><br><blockquote type="cite"><div>On May 4, 2022, at 10:41 PM, Ryan Woltz via ChimeraX-users <<a href="mailto:chimerax-users@cgl.ucsf.edu" target="_blank">chimerax-users@cgl.ucsf.edu</a>> wrote:</div><br><div><div dir="ltr">Dear community,<div><br></div><div>         I'm sorry if this is a repeated question, I've seen a few posts about taking in a file for the command line and doing some things then exiting. I got most of this down and I'm sure at this point it is just a matter or correcting a few lines of code. </div><div><br></div><div>        I'm trying to automate a protein modeling protocol and I have 1000 decoys at this point. Now I need to insert the 5 metals into 5 different pockets into all my decoys for a final relax before selecting my top model. I have a template pdb with all the metals in place. For 4 of these metals I have used rosetta align mover to align a decoy onto the template around a single metal binding site, save the pdb, then add on the metal coordinates then repeat for the next binding site. So this method works because the chain is continuous around these metal binding sites. However the final metal binding site is in the center and coordinated by 4 chains coming together and the positioning needs to be very precise. </div><div><br></div><div>       Chimera or chimerax solves this very well but I don't know how to put this into a script. I have a few solutions if someone can help me edit this to work. My script (chimera-data-processing.cxc) looks like this right now.</div><div><br></div><div>cd results/</div><div>open S_0001_X-4-all-chain-A.pdb    ###X = 1-1000<br>open hsk2-cam-homology-from-map-refined-6cno-alignment-template-1-all-chain-A.pdb<br>info<br>align #1:240-244,765-769,1290-1294,1815-1819@o to_atoms #2:240-244,765-769,1290-1294,1815-1819@o matchAtomNames true; wait 300<br>save S_0001_X-4-all-chain-A-sf-aligned.pdb #1 format pdb relModel #2; wait 30<br>cd ../<br>close<br>quit<br></div><div><br></div><div>        This script is perfect if run for have a single model with the exact name written into the script after typing:</div><div><br></div><div>chimerax-daily --nogui chimera-data-processing.cxc</div><div><br></div><div>        I have two main solutions </div><div>A) run a while loop that counts down and passes a filename to chimerax:</div><div><br></div><div>while ( X < 1000 )</div><div><br></div><div>     chimerax-daily --nogui chimera-data-processing.cxc S_0001_X-4-all-chain-A.pdb hsk2-cam-homology-from-map-refined-6cno-alignment-template-1-all-chain-A.pdb</div><div><br></div><div>Where in the chimerax script I take the arg1 (S_0001*.pdb) and arg2  (hsk2*.pdb)(assuming chimera-data-processing.cxc is arg0) and modify to look like this:</div><div><br></div><div>open $arg1</div><div>open $arg2</div><div>...</div><div>save $arg1-sf-aligned.pdb #1 format pdb relModel #2; wait 30</div><div><br></div><div>      Option B is to use the foreach command described in the open command documentation (<a href="https://www.cgl.ucsf.edu/chimerax/docs/user/commands/open.html" target="_blank">https://www.cgl.ucsf.edu/chimerax/docs/user/commands/open.html</a>). However, a copy and past of that command:</div><div><br></div><div><b style="font-family:"Times New Roman";font-size:inherit">open myscript.cxc foreach ~/data/*.cif </b><br></div><div><b style="font-family:"Times New Roman";font-size:inherit">or</b></div><div><b style="font-family:"Times New Roman";font-size:inherit">open chimera-data-processing.cxc foreach results/S_0001_*-4-</b>all-chain-A.pdb</div><div><br></div><div>           results in this error:</div><div><br></div><div>Missing filename suffix foreach<br></div><div><br></div><div>          I also tried this:</div><div><br></div><div>chimerax-daily --nogui chimera-data-processing.cxc foreach results/S_0001_*-4-all-chain-A.pdb<br></div><div><br></div><div>        But it just runs the command. this seems to ignore everything after the first filename. I also read that if I used foreach inside the script I could use $file to replace the filename it is currently working on, would there be a way to fave $file1 and $file2? to automate this I'd also like the change the name of the template file I'm aligning to. I also attempted the python method using sys.arg = arg[1] then running things but I couldn't get it to work because I have no experience in python. What is the suggested way to complete this task? Again this is in a much larger script with user inputs so ideally it would look like this in a script (very shorthanded just for the concepts). I can also run a python command script in my bash sctipt</div><div><br></div><div>pdb transformations</div><div><br></div><div>if (y = 5) ###alignment metal number)</div><div>   while ( x < 1000)</div><div>###arg0 = command script arg1 = pdb to align arg2 = template pdb with metals</div><div>chimerax-daily --nogui chimera-command-script.cxc $filenamebase$x-$alignmentnumber-*.pdb $template.pdb   ###strings for variables are provided when script is initialized.<br></div><div><br></div><div>###code to extract metal coords for S_0001_$x-4-*.pdb</div><div><br></div><div>done</div><div>fi</div><div><br></div><div><br></div><div>chimera-command-script.cxc:</div><div>open arg1</div><div>open arg2</div><div>align model #1 to model #2 on specific atoms</div><div>save arg1-new-filename.pdb</div><div>close</div><div>exit</div><div><br></div><div>if someone would like a follow-up email with my attempt at chimera python sctipt using runcommand I'm very happy to supply that as a foundation to help fix, I just thought this one is easier to fix since it is really close, the script works but only for 1 pdb at a time. </div><div><br></div><div>Apologies for bad scripting terminology and confusion with python, I've had to teach coding to myself so I might have misused terms.</div><div><br></div><div>Thanks for any help that can be given,</div><div><br></div><div>Ryan</div></div>
_______________________________________________<br>ChimeraX-users mailing list<br><a href="mailto:ChimeraX-users@cgl.ucsf.edu" target="_blank">ChimeraX-users@cgl.ucsf.edu</a><br>Manage subscription:<br><a href="https://www.rbvi.ucsf.edu/mailman/listinfo/chimerax-users" target="_blank">https://www.rbvi.ucsf.edu/mailman/listinfo/chimerax-users</a><br></div></blockquote></div><br></div></div></blockquote></div>