public void highlightAtoms(List<AtomSpec> atoms)
{
/*
- * https://pymolwiki.org/index.php/Label#examples
+ * https://pymolwiki.org/index.php/indicate#examples
*/
StringBuilder sb = new StringBuilder();
for (AtomSpec atom : atoms)
{
// todo promote to StructureCommandsI.showLabel()
- // todo handle CA|P correctly
String modelId = getModelIdForFile(atom.getPdbFile());
- sb.append(String.format(" %s//%s/%d/CA", modelId,
+ sb.append(String.format(" %s//%s/%d/*", modelId,
atom.getChain(),
atom.getPdbResNum()));
}
{
return;
}
- StructureCommandI command = new StructureCommand("label", labelSpec, LABEL_FORMAT);
+ StructureCommandI command = new StructureCommand("indicate", labelSpec);
executeCommand(command, false);
- /*
- * and remove the label(s) previously shown
- */
- if (lastLabelSpec != null)
- {
- command = new StructureCommand("label", lastLabelSpec, "");
- executeCommand(command, false);
- }
-
lastLabelSpec = labelSpec;
}