<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">Hi Ed,<div><span class="Apple-tab-span" style="white-space:pre">     </span>If the purpose of the combination is to use Morph Conformations, then I think you're in for a world of hurt unless you use the 'combine' method.  One problem with the 'cat' method is the serial numbers as you surmised.  If you have any non-standard residues that require CONECT records then the serial numbers will be a real issue.  Another problem is that if you have any chains in models 8 and 9 that duplicate the ones you're using from #6 (a-p) or duplicate each other then Morph Conformations will probably fall over.  'combine' will rename chains that are in conflict and renumber problem residues.  'write' with the combined model will produce unique serial numbers.</div><div><span class="Apple-tab-span" style="white-space:pre">   </span>So your previous commands:<br></div><div><font class="Apple-style-span" color="#000000"><span class="Apple-style-span" style="background-color: transparent;"><br></span></font></div><div><font class="Apple-style-span" color="#000000"><span class="Apple-style-span" style="background-color: transparent;">select #6:.a-p #8 #9<br>write selected relative 0 #6,8,9 /path/to/file.pdb<br> ~select</span></font></div><div><br></div><div>could instead be:</div><div><br></div><div>sel #6:.a-p</div><div>sel invert sel</div><div>del sel</div><div>combine #6,8,9 refMol 0 modelId 7</div><div>write #7 /path/to/file.pdb</div><div><br></div><div>BTW, you have to use a daily build to get the 'modelId' part of the 'combine' command.</div><div><span class="Apple-tab-span" style="white-space:pre">      </span>If your models #8 and 9 are just small molecules then you may be able to get away with the 'cat' method by stripping CONECT records in addition to END records -- making Chimera come up with the connectivity itself (though if the residues had the same number and chain ID as other residues...).<br></div><div><br></div><div>--Eric</div><div><span class="Apple-tab-span" style="white-space:pre"><font class="Apple-style-span" color="#000000"><span class="Apple-style-span" style="background-color: transparent;">       </span></font></span><br><div><div>On Apr 1, 2009, at 1:32 PM, Edward Brignole wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"> <div> <!-- Converted from text/plain format --><p><font size="2">Great suggestion, I'll just use cat and strip the END lines. Since I want to then use these with morph conformations will I also have to resequence the atom id's?<br> <br> Ed<br> <br> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br> Edward Brignole<br> NIH Kirschstein Postdoctoral Fellow<br> Francisco Asturias Lab, CB227<br> Center for Integrative Molecular Biosciences<br> The Scripps Research Institute<br> <a href="http://www.scripps.edu/~brignole">www.scripps.edu/~brignole</a><br> <br> <a href="mailto:brignole@scripps.edu">brignole@scripps.edu</a><br> 443-653-2070 (cell)<br> 858-784-8598 (lab)<br> <br> <br> <br> -----Original Message-----<br> From: Eric Pettersen [<a href="mailto:pett@cgl.ucsf.edu">mailto:pett@cgl.ucsf.edu</a>]<br> Sent: Wed 4/1/2009 1:26 PM<br> To: Edward Brignole<br> Cc: <a href="mailto:chimera-users@cgl.ucsf.edu">chimera-users@cgl.ucsf.edu</a> BB<br> Subject: Re: [Chimera-users] write selected command<br> <br> Other possibilities include using the "combine" command to combine <br> models 6, 8, and 9 into a single model (with model 0 as the 'refMol') <br> and then use the write command on that (omitting 'relative 0'), or <br> writing the models to separate files and using 'system cat file1 file2 <br> file3 > file4' to combine them (though there would be END records <br> between the models that way).<br> <br> --Eric<br> <br>                          Eric Pettersen<br>                          UCSF Computer Graphics Lab<br>                          <a href="http://www.cgl.ucsf.edu">http://www.cgl.ucsf.edu</a><br> <br> <br> On Apr 1, 2009, at 1:11 PM, Elaine Meng wrote:<br> <br> > Hi Ed,<br> > The "write" command only allows you to save one model at a time.<br> > <<a href="http://www.cgl.ucsf.edu/chimera/docs/UsersGuide/midas/write.html">http://www.cgl.ucsf.edu/chimera/docs/UsersGuide/midas/write.html</a>><br> ><br> > To save multiple models to one PDB file you have to use the GUI<br> > ("File... Save PDB" or "Actions... Write PDB").<br> > <<a href="http://www.cgl.ucsf.edu/chimera/docs/UsersGuide/savemodel.html#pdb">http://www.cgl.ucsf.edu/chimera/docs/UsersGuide/savemodel.html#pdb</a>><br> ><br> > Sorry about that,<br> > Elaine<br> > -----<br> > Elaine C. Meng, Ph.D.                          <a href="mailto:meng@cgl.ucsf.edu">meng@cgl.ucsf.edu</a><br> > UCSF Computer Graphics Lab (Chimera team) and Babbitt Lab<br> > Department of Pharmaceutical Chemistry<br> > University of California, San Francisco<br> >                       <a href="http://www.cgl.ucsf.edu/home/meng/index.html">http://www.cgl.ucsf.edu/home/meng/index.html</a><br> ><br> > On Apr 1, 2009, at 1:02 PM, Edward Brignole wrote:<br> ><br> >> Elaine and co,<br> >><br> >> I have a mess of models that I'm opening, repositioning a ligand<br> >> using match to various positions in each model. No problem there.<br> >> For each model and ligand position I select the correct chains from<br> >> that model with the repositioned ligand models but can't manage to<br> >> save coordinates. Obviously there's the save pdb dialog but for all<br> >> these models and ligands this will be more convenient scripted into<br> >> chimera commands. I've got it all working except this:<br> >><br> >> select #6:.a-p #8 #9<br> >> write selected relative 0 #6,8,9 /path/to/file.pdb<br> >> ~select<br> >><br> >> The part it doesn't like is the model_numbers and I've tried<br> >> various permutations without success. The only way I can get it to<br> >> work is if I only specify one model number.<br> >><br> >> Can you please help me figure out how to phrase this command<br> >> correctly? An example or two on that commands page might make the<br> >> syntax easier to decipher.<br> >><br> >> Thank you for your excellent program and support.<br> >><br> >> Ed<br> >><br> >> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br> >> Edward Brignole<br> >> NIH Kirschstein Postdoctoral Fellow<br> >> Francisco Asturias Lab, CB227<br> >> Center for Integrative Molecular Biosciences<br> >> The Scripps Research Institute<br> >> <a href="http://www.scripps.edu/~brignole">www.scripps.edu/~brignole</a><br> >><br> >> <a href="mailto:brignole@scripps.edu">brignole@scripps.edu</a><br> >> 443-653-2070 (cell)<br> >> 858-784-8598 (lab)<br> >><br> >><br> >><br> >><br> >> _______________________________________________<br> >> Chimera-users mailing list<br> >> <a href="mailto:Chimera-users@cgl.ucsf.edu">Chimera-users@cgl.ucsf.edu</a><br> >> <a href="http://www.cgl.ucsf.edu/mailman/listinfo/chimera-users">http://www.cgl.ucsf.edu/mailman/listinfo/chimera-users</a><br> ><br> > _______________________________________________<br> > Chimera-users mailing list<br> > <a href="mailto:Chimera-users@cgl.ucsf.edu">Chimera-users@cgl.ucsf.edu</a><br> > <a href="http://www.cgl.ucsf.edu/mailman/listinfo/chimera-users">http://www.cgl.ucsf.edu/mailman/listinfo/chimera-users</a><br> <br> <br> </font> </p> </div> </blockquote></div><br></div></body></html>