Dear sir<br><br>I am so grateful to you for your detailed answer.<span id="result_box" class="short_text" lang="en"><span title="点击可显示其他翻译" class="hps"></span></span><span class="p2"> Thanks a million.<br><br></span> best wishes<br><br><span class="p2">Tao Cui<br></span><br><br>------------------ 原始邮件 ------------------<br>>From: Eric Pettersen <pett@cgl.ucsf.edu><br>>Reply-To: UCSF Chimera Mailing List <chimera-users@cgl.ucsf.edu><br>>To: "cuitao@webmail.hzau.edu.cn" <cuitao@webmail.hzau.edu.cn><br>>Cc: UCSF Chimera Mailing List <chimera-users@cgl.ucsf.edu><br>>Subject: Re: using chimera command in batch mode<br>>Date: Wed, 9 Mar 2011 13:11:31 -0800<br>><br><br><div><div>On Mar 8, 2011, at 5:30 PM, Tao Cui wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite">    Dear sir:<br><br>I have seen one message you posted in dock-fans mail list.<br><br><a href="http://mailman.docking.org/pipermail/dock-fans/2007-May/001043.html">http://mailman.docking.org/pipermail/dock-fans/2007-May/001043.html</a><br><br>The batch mode solution you privided is really helpful to me.  I wnat to know if I can complete similar batch mode works for other applation? for example, delete all H atoms, save molecule to pdb format and writedms.<br><br>Thank you very much!</blockquote><br></div>Hi Tao,<div><span class="Apple-tab-span" style="white-space: pre;">    </span>You can use the same approach outlined in the dock-fans post to write scripts for other purposes.  The script in that post uses Python since that is the only way to call DockPrep from a script, but if the things you want to do are available as Chimera commands you can just write a Chimera command script and use it the same way (the script would need to end in .com or .cmd instead of .py though).  So deleting all H atoms would just be the command "del H".  You would save a file in PDB format with the "write" command (type "help write" in Chimera to see what arguments you would want).</div><div><span class="Apple-tab-span" style="white-space: pre;"> </span>Writing a DMS file isn't available as a command, so you would need to use Python scripting for that, along the lines of:</div><div><br></div><div><br></div><div>from chimera import runCommand, openModels, MSMSModel</div><div># generate surface using 'surf' command</div><div>runCommand("surf")</div><div><br></div><div># get the surf object</div><div>surf = openModels.list(modelTypes=[MSMSModel])[0]</div><div><br></div><div># write DMS</div><div>from WriteDMS import writeDMS</div><div>writeDMS(surf, "output.dms")</div><div><br></div><div><span class="Apple-tab-span" style="white-space: pre;">  </span>You would need to keep in mind that Chimera's surface generation will fail for some structures, more so on Windows than other platforms, so you might want to check that the output file actually has some surface points in it.  Alternately, in Chimera, the surface attribute "calculationFailed" will tell you if the surface calculation succeeded or not, so you could do something other than try to write the DMS file if that attribute is False.</div><div><br></div><div>--Eric</div><div><br></div><div apple-content-edited="true"> <span class="Apple-style-span" style="border-collapse: separate; border-spacing: 0px; color: rgb(0, 0, 0); font-family: Helvetica; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; text-indent: 0px; text-transform: none; orphans: 2; white-space: normal; widows: 2; word-spacing: 0px;"><div style=""><p style="margin: 0px;"><font style="font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; font-size: 16px; line-height: normal; font-size-adjust: none; font-stretch: normal;" face="Helvetica" size="5"><span class="Apple-converted-space">                       <span class="Apple-converted-space"> </span></span>Eric Pettersen</font></p><p style="margin: 0px;"><font style="font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; font-size: 16px; line-height: normal; font-size-adjust: none; font-stretch: normal;" face="Helvetica" size="5"><span class="Apple-converted-space">                       <span class="Apple-converted-space"> </span></span>UCSF Computer Graphics Lab</font></p><p style="margin: 0px;"><font style="font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; font-size: 16px; line-height: normal; font-size-adjust: none; font-stretch: normal;" face="Helvetica" size="5"><span class="Apple-converted-space">                        </span><a href="http://www.cgl.ucsf.edu">http://www.cgl.ucsf.edu</a></font></p><br class="Apple-interchange-newline"></div></span> </div><br>