2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
21 package jalview.ext.rbvi.chimera;
23 import jalview.api.AlignViewportI;
24 import jalview.api.AlignmentViewPanel;
25 import jalview.api.FeatureRenderer;
26 import jalview.api.SequenceRenderer;
27 import jalview.datamodel.AlignmentI;
28 import jalview.datamodel.HiddenColumns;
29 import jalview.datamodel.SequenceFeature;
30 import jalview.datamodel.SequenceI;
31 import jalview.renderer.seqfeatures.FeatureColourFinder;
32 import jalview.structure.StructureMapping;
33 import jalview.structure.StructureMappingcommandSet;
34 import jalview.structure.StructureSelectionManager;
35 import jalview.util.ColorUtils;
36 import jalview.util.Comparison;
38 import java.awt.Color;
39 import java.util.ArrayList;
40 import java.util.HashMap;
41 import java.util.LinkedHashMap;
42 import java.util.List;
46 * Routines for generating Chimera commands for Jalview/Chimera binding
51 public class ChimeraCommands
54 public static final String NAMESPACE_PREFIX = "jv_";
57 * Constructs Chimera commands to colour residues as per the Jalview alignment
67 public static StructureMappingcommandSet[] getColourBySequenceCommand(
68 StructureSelectionManager ssm, String[] files,
69 SequenceI[][] sequence, SequenceRenderer sr,
70 AlignmentViewPanel viewPanel)
72 Map<Object, AtomSpecModel> colourMap = buildColoursMap(ssm, files,
73 sequence, sr, viewPanel);
75 List<String> colourCommands = buildColourCommands(colourMap);
77 StructureMappingcommandSet cs = new StructureMappingcommandSet(
78 ChimeraCommands.class, null,
79 colourCommands.toArray(new String[colourCommands.size()]));
81 return new StructureMappingcommandSet[] { cs };
85 * Traverse the map of colours/models/chains/positions to construct a list of
86 * 'color' commands (one per distinct colour used). The format of each command
91 * color colorname #modelnumber:range.chain
92 * e.g. color #00ff00 #0:2.B,4.B,9-12.B|#1:1.A,2-6.A,...
99 protected static List<String> buildColourCommands(
100 Map<Object, AtomSpecModel> colourMap)
103 * This version concatenates all commands into a single String (semi-colon
104 * delimited). If length limit issues arise, refactor to return one color
105 * command per colour.
107 List<String> commands = new ArrayList<String>();
108 StringBuilder sb = new StringBuilder(256);
109 boolean firstColour = true;
110 for (Object key : colourMap.keySet())
112 Color colour = (Color) key;
113 String colourCode = ColorUtils.toTkCode(colour);
118 sb.append("color ").append(colourCode).append(" ");
120 final AtomSpecModel colourData = colourMap.get(colour);
121 sb.append(colourData.getAtomSpec());
123 commands.add(sb.toString());
128 * Traverses a map of { modelNumber, {chain, {list of from-to ranges} } } and
129 * builds a Chimera format atom spec
131 * @param modelAndChainRanges
133 protected static String getAtomSpec(
134 Map<Integer, Map<String, List<int[]>>> modelAndChainRanges)
136 StringBuilder sb = new StringBuilder(128);
137 boolean firstModelForColour = true;
138 for (Integer model : modelAndChainRanges.keySet())
140 boolean firstPositionForModel = true;
141 if (!firstModelForColour)
145 firstModelForColour = false;
146 sb.append("#").append(model).append(":");
148 final Map<String, List<int[]>> modelData = modelAndChainRanges
150 for (String chain : modelData.keySet())
152 boolean hasChain = !"".equals(chain.trim());
153 for (int[] range : modelData.get(chain))
155 if (!firstPositionForModel)
159 if (range[0] == range[1])
165 sb.append(range[0]).append("-").append(range[1]);
169 sb.append(".").append(chain);
171 firstPositionForModel = false;
175 return sb.toString();
180 * Build a data structure which records contiguous subsequences for each colour.
181 * From this we can easily generate the Chimera command for colour by sequence.
185 * list of start/end ranges
186 * Ordering is by order of addition (for colours and positions), natural ordering (for models and chains)
189 protected static Map<Object, AtomSpecModel> buildColoursMap(
190 StructureSelectionManager ssm, String[] files,
191 SequenceI[][] sequence, SequenceRenderer sr,
192 AlignmentViewPanel viewPanel)
194 FeatureRenderer fr = viewPanel.getFeatureRenderer();
195 FeatureColourFinder finder = new FeatureColourFinder(fr);
196 AlignViewportI viewport = viewPanel.getAlignViewport();
197 HiddenColumns cs = viewport.getAlignment().getHiddenColumns();
198 AlignmentI al = viewport.getAlignment();
199 Map<Object, AtomSpecModel> colourMap = new LinkedHashMap<Object, AtomSpecModel>();
200 Color lastColour = null;
202 for (int pdbfnum = 0; pdbfnum < files.length; pdbfnum++)
204 StructureMapping[] mapping = ssm.getMapping(files[pdbfnum]);
206 if (mapping == null || mapping.length < 1)
211 int startPos = -1, lastPos = -1;
212 String lastChain = "";
213 for (int s = 0; s < sequence[pdbfnum].length; s++)
215 for (int sp, m = 0; m < mapping.length; m++)
217 final SequenceI seq = sequence[pdbfnum][s];
218 if (mapping[m].getSequence() == seq
219 && (sp = al.findIndex(seq)) > -1)
221 SequenceI asp = al.getSequenceAt(sp);
222 for (int r = 0; r < asp.getLength(); r++)
224 // no mapping to gaps in sequence
225 if (Comparison.isGap(asp.getCharAt(r)))
229 int pos = mapping[m].getPDBResNum(asp.findPosition(r));
231 if (pos < 1 || pos == lastPos)
236 Color colour = sr.getResidueColour(seq, r, finder);
239 * darker colour for hidden regions
241 if (!cs.isVisible(r))
246 final String chain = mapping[m].getChain();
249 * Just keep incrementing the end position for this colour range
250 * _unless_ colour, PDB model or chain has changed, or there is a
251 * gap in the mapped residue sequence
253 final boolean newColour = !colour.equals(lastColour);
254 final boolean nonContig = lastPos + 1 != pos;
255 final boolean newChain = !chain.equals(lastChain);
256 if (newColour || nonContig || newChain)
260 addColourRange(colourMap, lastColour, pdbfnum, startPos,
269 // final colour range
270 if (lastColour != null)
272 addColourRange(colourMap, lastColour, pdbfnum, startPos,
284 * Helper method to add one contiguous colour range to the colour map.
293 protected static void addColourRange(Map<Object, AtomSpecModel> map,
294 Object key, int model, int startPos, int endPos, String chain)
297 * Get/initialize map of data for the colour
299 AtomSpecModel atomSpec = map.get(key);
300 if (atomSpec == null)
302 atomSpec = new AtomSpecModel();
303 map.put(key, atomSpec);
306 atomSpec.addRange(model, startPos, endPos, chain);
310 * Constructs and returns Chimera commands to set attributes on residues
311 * corresponding to features in Jalview. Attribute names are the Jalview
312 * feature type, with a "jv_" prefix.
320 public static StructureMappingcommandSet getSetAttributeCommandsForFeatures(
321 StructureSelectionManager ssm, String[] files, SequenceI[][] seqs,
322 AlignmentViewPanel viewPanel)
324 Map<String, Map<Object, AtomSpecModel>> featureMap = buildFeaturesMap(
325 ssm, files, seqs, viewPanel);
327 List<String> commands = buildSetAttributeCommands(featureMap);
329 StructureMappingcommandSet cs = new StructureMappingcommandSet(
330 ChimeraCommands.class, null,
331 commands.toArray(new String[commands.size()]));
338 * Helper method to build a map of
339 * { featureType, { feature value, AtomSpecModel } }
348 protected static Map<String, Map<Object, AtomSpecModel>> buildFeaturesMap(
349 StructureSelectionManager ssm, String[] files, SequenceI[][] seqs,
350 AlignmentViewPanel viewPanel)
352 Map<String, Map<Object, AtomSpecModel>> theMap = new LinkedHashMap<String, Map<Object, AtomSpecModel>>();
354 FeatureRenderer fr = viewPanel.getFeatureRenderer();
360 List<String> visibleFeatures = fr.getDisplayedFeatureTypes();
361 if (visibleFeatures.isEmpty())
366 AlignmentI alignment = viewPanel.getAlignment();
367 for (int pdbfnum = 0; pdbfnum < files.length; pdbfnum++)
369 StructureMapping[] mapping = ssm.getMapping(files[pdbfnum]);
371 if (mapping == null || mapping.length < 1)
376 for (int seqNo = 0; seqNo < seqs[pdbfnum].length; seqNo++)
378 for (int m = 0; m < mapping.length; m++)
380 final SequenceI seq = seqs[pdbfnum][seqNo];
381 int sp = alignment.findIndex(seq);
382 if (mapping[m].getSequence() == seq && sp > -1)
385 * found a sequence with a mapping to a structure;
386 * now scan its features
388 SequenceI asp = alignment.getSequenceAt(sp);
390 scanSequenceFeatures(visibleFeatures, mapping[m], asp, theMap,
400 * Inspect features on the sequence; for each feature that is visible,
401 * determine its mapped ranges in the structure (if any) according to the
402 * given mapping, and add them to the map
404 * @param visibleFeatures
410 protected static void scanSequenceFeatures(List<String> visibleFeatures,
411 StructureMapping mapping, SequenceI seq,
412 Map<String, Map<Object, AtomSpecModel>> theMap, int modelNumber)
414 List<SequenceFeature> sfs = seq.getFeatures().getPositionalFeatures(
415 visibleFeatures.toArray(new String[visibleFeatures.size()]));
416 for (SequenceFeature sf : sfs)
418 String type = sf.getType();
421 * Only copy visible features, don't copy any which originated
422 * from Chimera, and suppress uninteresting ones (e.g. RESNUM)
424 boolean isFromViewer = JalviewChimeraBinding.CHIMERA_FEATURE_GROUP
425 .equals(sf.getFeatureGroup());
430 List<int[]> mappedRanges = mapping.getPDBResNumRanges(sf.getBegin(),
433 if (!mappedRanges.isEmpty())
435 String value = sf.getDescription();
436 if (value == null || value.length() == 0)
440 float score = sf.getScore();
441 if (score != 0f && !Float.isNaN(score))
443 value = Float.toString(score);
445 Map<Object, AtomSpecModel> featureValues = theMap.get(type);
446 if (featureValues == null)
448 featureValues = new HashMap<Object, AtomSpecModel>();
449 theMap.put(type, featureValues);
451 for (int[] range : mappedRanges)
453 addColourRange(featureValues, value, modelNumber, range[0],
454 range[1], mapping.getChain());
461 * Traverse the map of features/values/models/chains/positions to construct a
462 * list of 'setattr' commands (one per distinct feature type and value).
464 * The format of each command is
467 * <blockquote> setattr r <featureName> " " #modelnumber:range.chain
468 * e.g. setattr r jv:chain <value> #0:2.B,4.B,9-12.B|#1:1.A,2-6.A,...
475 protected static List<String> buildSetAttributeCommands(
476 Map<String, Map<Object, AtomSpecModel>> featureMap)
478 List<String> commands = new ArrayList<String>();
479 for (String featureType : featureMap.keySet())
481 String attributeName = makeAttributeName(featureType);
484 * clear down existing attributes for this feature
486 // 'problem' - sets attribute to None on all residues - overkill?
487 // commands.add("~setattr r " + attributeName + " :*");
489 Map<Object, AtomSpecModel> values = featureMap.get(featureType);
490 for (Object value : values.keySet())
493 * for each distinct value recorded for this feature type,
494 * add a command to set the attribute on the mapped residues
495 * Put values in single quotes, encoding any embedded single quotes
497 StringBuilder sb = new StringBuilder(128);
498 String featureValue = value.toString();
499 featureValue = featureValue.replaceAll("\\'", "'");
500 sb.append("setattr r ").append(attributeName).append(" '")
501 .append(featureValue).append("' ");
502 sb.append(values.get(value).getAtomSpec());
503 commands.add(sb.toString());
511 * Makes a prefixed and valid Chimera attribute name. A jv_ prefix is applied
512 * for a 'Jalview' namespace, and any non-alphanumeric character is converted
519 * @see https://www.cgl.ucsf.edu/chimera/current/docs/UsersGuide/midas/setattr.html
522 protected static String makeAttributeName(String featureType)
524 StringBuilder sb = new StringBuilder();
525 if (featureType != null)
527 for (char c : featureType.toCharArray())
529 sb.append(Character.isLetterOrDigit(c) ? c : '_');
532 String attName = NAMESPACE_PREFIX + sb.toString();
535 * Chimera treats an attribute name ending in 'color' as colour-valued;
536 * Jalview doesn't, so prevent this by appending an underscore
538 if (attName.toUpperCase().endsWith("COLOR"))