> I am developing an application in java I issue a script command "restrict > within (5.0,residueNo)". So what will be displayed is the atoms within 5 > ang > of radius of residue specified by residueNo. > > But my problem is I have to display the complete residues of the atoms > displayed. I want a java program to do it. > > Is there anyway of doing this? I am also ready to modiy a part of Jmol > code. > I want to know what should I look for and where.
restrict within(group,within(5.0, <residueNo>)) Jmol supports an extended version of the within command: within(group|chain|model, <set>) The selected set is extended to the group, chain, or model. You said that you want to use a java program to do it. Construct your script as a string and use the 'script' command to execute it. Miguel ------------------------------------------------------- SF.Net email is Sponsored by the Better Software Conference & EXPO September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf _______________________________________________ Jmol-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jmol-users

