| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
package jalview.ext.jmol; |
| 22 |
|
|
| 23 |
|
import java.awt.Container; |
| 24 |
|
import java.awt.event.ComponentEvent; |
| 25 |
|
import java.awt.event.ComponentListener; |
| 26 |
|
import java.io.File; |
| 27 |
|
import java.net.URL; |
| 28 |
|
import java.util.ArrayList; |
| 29 |
|
import java.util.Arrays; |
| 30 |
|
import java.util.HashMap; |
| 31 |
|
import java.util.List; |
| 32 |
|
import java.util.Map; |
| 33 |
|
import java.util.StringTokenizer; |
| 34 |
|
import java.util.Vector; |
| 35 |
|
|
| 36 |
|
import javax.swing.SwingUtilities; |
| 37 |
|
|
| 38 |
|
import org.jmol.adapter.smarter.SmarterJmolAdapter; |
| 39 |
|
import org.jmol.api.JmolAppConsoleInterface; |
| 40 |
|
import org.jmol.api.JmolSelectionListener; |
| 41 |
|
import org.jmol.api.JmolStatusListener; |
| 42 |
|
import org.jmol.api.JmolViewer; |
| 43 |
|
import org.jmol.c.CBK; |
| 44 |
|
import org.jmol.viewer.Viewer; |
| 45 |
|
|
| 46 |
|
import jalview.api.AlignmentViewPanel; |
| 47 |
|
import jalview.api.FeatureRenderer; |
| 48 |
|
import jalview.api.FeatureSettingsModelI; |
| 49 |
|
import jalview.api.SequenceRenderer; |
| 50 |
|
import jalview.bin.Console; |
| 51 |
|
import jalview.datamodel.PDBEntry; |
| 52 |
|
import jalview.datamodel.SequenceI; |
| 53 |
|
import jalview.gui.AppJmol; |
| 54 |
|
import jalview.gui.IProgressIndicator; |
| 55 |
|
import jalview.gui.StructureViewer.ViewerType; |
| 56 |
|
import jalview.io.DataSourceType; |
| 57 |
|
import jalview.io.StructureFile; |
| 58 |
|
import jalview.structure.AtomSpec; |
| 59 |
|
import jalview.structure.StructureCommand; |
| 60 |
|
import jalview.structure.StructureCommandI; |
| 61 |
|
import jalview.structure.StructureSelectionManager; |
| 62 |
|
import jalview.structures.models.AAStructureBindingModel; |
| 63 |
|
import jalview.ws.dbsources.Pdb; |
| 64 |
|
import javajs.util.BS; |
| 65 |
|
|
| |
|
| 54.3% |
Uncovered Elements: 226 (494) |
Complexity: 150 |
Complexity Density: 0.49 |
|
| 66 |
|
public abstract class JalviewJmolBinding extends AAStructureBindingModel |
| 67 |
|
implements JmolStatusListener, JmolSelectionListener, |
| 68 |
|
ComponentListener |
| 69 |
|
{ |
| 70 |
|
private String lastMessage; |
| 71 |
|
|
| 72 |
|
|
| 73 |
|
|
| 74 |
|
|
| 75 |
|
|
| 76 |
|
private boolean associateNewStructs = false; |
| 77 |
|
|
| 78 |
|
private Vector<String> atomsPicked = new Vector<>(); |
| 79 |
|
|
| 80 |
|
private String lastCommand; |
| 81 |
|
|
| 82 |
|
private boolean loadedInline; |
| 83 |
|
|
| 84 |
|
private StringBuffer resetLastRes = new StringBuffer(); |
| 85 |
|
|
| 86 |
|
public Viewer jmolViewer; |
| 87 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
| 88 |
62 |
public JalviewJmolBinding(StructureSelectionManager ssm,... |
| 89 |
|
PDBEntry[] pdbentry, SequenceI[][] sequenceIs, |
| 90 |
|
DataSourceType protocol) |
| 91 |
|
{ |
| 92 |
62 |
super(ssm, pdbentry, sequenceIs, protocol); |
| 93 |
62 |
setStructureCommands(new JmolCommands()); |
| 94 |
|
|
| 95 |
|
|
| 96 |
|
|
| 97 |
|
|
| 98 |
|
|
| 99 |
|
|
| 100 |
|
|
| 101 |
|
} |
| 102 |
|
|
| |
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 1 |
Complexity Density: 0.2 |
|
| 103 |
0 |
public JalviewJmolBinding(StructureSelectionManager ssm,... |
| 104 |
|
SequenceI[][] seqs, Viewer theViewer) |
| 105 |
|
{ |
| 106 |
0 |
super(ssm, seqs); |
| 107 |
|
|
| 108 |
0 |
jmolViewer = theViewer; |
| 109 |
0 |
jmolViewer.setJmolStatusListener(this); |
| 110 |
0 |
jmolViewer.addSelectionListener(this); |
| 111 |
0 |
setStructureCommands(new JmolCommands()); |
| 112 |
|
} |
| 113 |
|
|
| 114 |
|
|
| 115 |
|
|
| 116 |
|
|
| 117 |
|
|
| 118 |
|
@return |
| 119 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 120 |
62 |
public String getViewerTitle()... |
| 121 |
|
{ |
| 122 |
62 |
return getDynamicViewerTitle("Jmol", true); |
| 123 |
|
} |
| 124 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 125 |
60 |
private String jmolScript(String script)... |
| 126 |
|
{ |
| 127 |
60 |
return jmolScript(script, false); |
| 128 |
|
} |
| 129 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (9) |
Complexity: 2 |
Complexity Density: 0.29 |
|
| 130 |
1810 |
private String jmolScript(String script, boolean useScriptWait)... |
| 131 |
|
{ |
| 132 |
1809 |
Console.debug(">>Jmol>> " + script); |
| 133 |
1810 |
String s; |
| 134 |
1810 |
if (useScriptWait) |
| 135 |
|
{ |
| 136 |
2 |
s = jmolViewer.scriptWait(script); |
| 137 |
|
} |
| 138 |
|
else |
| 139 |
|
{ |
| 140 |
1808 |
s = jmolViewer.evalStringQuiet(script); |
| 141 |
|
} |
| 142 |
1806 |
Console.debug("<<Jmol<< " + s); |
| 143 |
|
|
| 144 |
1805 |
return s; |
| 145 |
|
} |
| 146 |
|
|
| |
|
| 84.6% |
Uncovered Elements: 2 (13) |
Complexity: 4 |
Complexity Density: 0.44 |
|
| 147 |
713 |
@Override... |
| 148 |
|
public List<String> executeCommand(StructureCommandI command, |
| 149 |
|
boolean getReply) |
| 150 |
|
{ |
| 151 |
713 |
if (command == null) |
| 152 |
|
{ |
| 153 |
0 |
return null; |
| 154 |
|
} |
| 155 |
713 |
String cmd = command.getCommand(); |
| 156 |
713 |
jmolHistory(false); |
| 157 |
709 |
if (lastCommand == null || !lastCommand.equals(cmd)) |
| 158 |
|
{ |
| 159 |
328 |
jmolScript(cmd + "\n", command.isWaitNeeded()); |
| 160 |
|
} |
| 161 |
709 |
jmolHistory(true); |
| 162 |
709 |
lastCommand = cmd; |
| 163 |
709 |
return null; |
| 164 |
|
} |
| 165 |
|
|
| |
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 166 |
0 |
public void createImage(String file, String type, int quality)... |
| 167 |
|
{ |
| 168 |
0 |
jalview.bin.Console.outPrintln("JMOL CREATE IMAGE"); |
| 169 |
|
} |
| 170 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
| 171 |
4 |
@Override... |
| 172 |
|
public String createImage(String fileName, String type, |
| 173 |
|
Object textOrBytes, int quality) |
| 174 |
|
{ |
| 175 |
4 |
jalview.bin.Console.outPrintln("JMOL CREATE IMAGE"); |
| 176 |
4 |
return null; |
| 177 |
|
} |
| 178 |
|
|
| |
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 179 |
0 |
@Override... |
| 180 |
|
public String eval(String strEval) |
| 181 |
|
{ |
| 182 |
|
|
| 183 |
|
|
| 184 |
0 |
return null; |
| 185 |
|
} |
| 186 |
|
|
| 187 |
|
|
| 188 |
|
|
| 189 |
|
|
| 190 |
|
|
| 191 |
|
|
| 192 |
|
|
| 193 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (10) |
Complexity: 3 |
Complexity Density: 0.5 |
|
| 194 |
78 |
@Override... |
| 195 |
|
public Map<String, String> getHetatmNames() |
| 196 |
|
{ |
| 197 |
78 |
HashMap<String, String> hetlist = new HashMap(); |
| 198 |
183 |
for (int mc = 0; mc < jmolViewer.ms.mc; mc++) |
| 199 |
|
{ |
| 200 |
105 |
Map<String, String> hets = jmolViewer.ms.getHeteroList(mc); |
| 201 |
105 |
if (hets != null) |
| 202 |
|
{ |
| 203 |
11 |
hetlist.putAll(hets); |
| 204 |
|
} |
| 205 |
|
} |
| 206 |
78 |
return hetlist; |
| 207 |
|
} |
| 208 |
|
|
| 209 |
|
|
| 210 |
|
|
| |
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 211 |
0 |
@Override... |
| 212 |
|
public float[][] functionXY(String functionName, int x, int y) |
| 213 |
|
{ |
| 214 |
0 |
return null; |
| 215 |
|
} |
| 216 |
|
|
| |
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 217 |
0 |
@Override... |
| 218 |
|
public float[][][] functionXYZ(String functionName, int nx, int ny, |
| 219 |
|
int nz) |
| 220 |
|
{ |
| 221 |
|
|
| 222 |
0 |
return null; |
| 223 |
|
} |
| 224 |
|
|
| 225 |
|
|
| 226 |
|
|
| 227 |
|
|
| 228 |
|
|
| 229 |
|
|
| 230 |
|
private int _modelFileNameMap[]; |
| 231 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (23) |
Complexity: 7 |
Complexity Density: 0.54 |
|
| 232 |
1718 |
@Override... |
| 233 |
|
public synchronized String[] getStructureFiles() |
| 234 |
|
{ |
| 235 |
1718 |
if (jmolViewer == null) |
| 236 |
|
{ |
| 237 |
73 |
return new String[0]; |
| 238 |
|
} |
| 239 |
|
|
| 240 |
1645 |
if (modelFileNames == null) |
| 241 |
|
{ |
| 242 |
286 |
int modelCount = jmolViewer.ms.mc; |
| 243 |
286 |
String filePath = null; |
| 244 |
286 |
List<String> mset = new ArrayList<>(); |
| 245 |
594 |
for (int i = 0; i < modelCount; ++i) |
| 246 |
|
{ |
| 247 |
|
|
| 248 |
|
|
| 249 |
|
|
| 250 |
|
|
| 251 |
308 |
filePath = jmolViewer.ms.getModelFileName(i); |
| 252 |
308 |
if (filePath != null && !mset.contains(filePath)) |
| 253 |
|
{ |
| 254 |
113 |
mset.add(filePath); |
| 255 |
|
} |
| 256 |
|
} |
| 257 |
286 |
if (!mset.isEmpty()) |
| 258 |
|
{ |
| 259 |
91 |
modelFileNames = mset.toArray(new String[mset.size()]); |
| 260 |
|
} |
| 261 |
|
} |
| 262 |
|
|
| 263 |
1645 |
return modelFileNames; |
| 264 |
|
} |
| 265 |
|
|
| 266 |
|
|
| 267 |
|
|
| 268 |
|
|
| |
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 269 |
0 |
@Override... |
| 270 |
|
public Map<String, Object> getRegistryInfo() |
| 271 |
|
{ |
| 272 |
|
|
| 273 |
0 |
return null; |
| 274 |
|
} |
| 275 |
|
|
| 276 |
|
|
| 277 |
|
|
| 278 |
|
|
| |
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
| 279 |
0 |
public void handlePopupMenu(int x, int y)... |
| 280 |
|
{ |
| 281 |
|
|
| 282 |
|
|
| 283 |
|
} |
| 284 |
|
|
| 285 |
|
|
| 286 |
|
|
| 287 |
|
|
| |
|
| 0% |
Uncovered Elements: 25 (25) |
Complexity: 6 |
Complexity Density: 0.4 |
|
| 288 |
0 |
@Override... |
| 289 |
|
public void highlightAtoms(List<AtomSpec> atoms) |
| 290 |
|
{ |
| 291 |
0 |
if (atoms != null) |
| 292 |
|
{ |
| 293 |
0 |
if (resetLastRes.length() > 0) |
| 294 |
|
{ |
| 295 |
0 |
jmolScript(resetLastRes.toString()); |
| 296 |
0 |
resetLastRes.setLength(0); |
| 297 |
|
} |
| 298 |
0 |
StringBuilder highlightCommands = null; |
| 299 |
0 |
for (AtomSpec atom : atoms) |
| 300 |
|
{ |
| 301 |
0 |
StringBuilder thisAtom = highlightAtom(atom.getAtomIndex(), |
| 302 |
|
atom.getPdbResNum(), atom.getChain(), atom.getPdbFile()); |
| 303 |
0 |
if (thisAtom != null) |
| 304 |
|
{ |
| 305 |
0 |
if (highlightCommands == null) |
| 306 |
|
{ |
| 307 |
0 |
highlightCommands = thisAtom; |
| 308 |
|
} |
| 309 |
|
else |
| 310 |
|
{ |
| 311 |
0 |
highlightCommands.append(thisAtom); |
| 312 |
|
} |
| 313 |
|
} |
| 314 |
|
} |
| 315 |
0 |
if (highlightCommands != null) |
| 316 |
|
{ |
| 317 |
0 |
jmolHistory(false); |
| 318 |
0 |
jmolScript(highlightCommands.toString()); |
| 319 |
0 |
jmolHistory(true); |
| 320 |
|
} |
| 321 |
|
|
| 322 |
|
|
| 323 |
|
|
| 324 |
|
|
| 325 |
|
|
| 326 |
|
|
| 327 |
|
|
| 328 |
|
|
| 329 |
|
|
| 330 |
|
|
| 331 |
|
|
| 332 |
|
|
| 333 |
|
|
| 334 |
|
|
| 335 |
|
|
| 336 |
|
|
| 337 |
|
|
| 338 |
|
|
| 339 |
|
|
| 340 |
|
|
| 341 |
|
|
| 342 |
|
|
| 343 |
|
|
| 344 |
|
} |
| 345 |
|
|
| 346 |
|
} |
| 347 |
|
|
| 348 |
|
|
| |
|
| 0% |
Uncovered Elements: 17 (17) |
Complexity: 3 |
Complexity Density: 0.23 |
|
| 349 |
0 |
private StringBuilder highlightAtom(int atomIndex, int pdbResNum,... |
| 350 |
|
String chain, String pdbfile) |
| 351 |
|
{ |
| 352 |
0 |
String modelId = getModelIdForFile(pdbfile); |
| 353 |
0 |
if (modelId.isEmpty()) |
| 354 |
|
{ |
| 355 |
0 |
return null; |
| 356 |
|
} |
| 357 |
|
|
| 358 |
0 |
StringBuilder selection = new StringBuilder(32); |
| 359 |
0 |
StringBuilder cmd = new StringBuilder(64); |
| 360 |
0 |
selection.append("select ").append(String.valueOf(pdbResNum)); |
| 361 |
0 |
selection.append(":"); |
| 362 |
0 |
if (!chain.equals(" ")) |
| 363 |
|
{ |
| 364 |
0 |
selection.append(chain); |
| 365 |
|
} |
| 366 |
0 |
selection.append(" /").append(modelId); |
| 367 |
|
|
| 368 |
0 |
cmd.append(selection).append(";wireframe 100;").append(selection) |
| 369 |
|
.append(" and not hetero;").append("spacefill 200;select none"); |
| 370 |
|
|
| 371 |
0 |
resetLastRes.append(selection).append(";wireframe 0;").append(selection) |
| 372 |
|
.append(" and not hetero; spacefill 0;"); |
| 373 |
|
|
| 374 |
0 |
return cmd; |
| 375 |
|
} |
| 376 |
|
|
| 377 |
|
private boolean debug = true; |
| 378 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 379 |
1422 |
private void jmolHistory(boolean enable)... |
| 380 |
|
{ |
| 381 |
1422 |
jmolHistory(enable, false); |
| 382 |
|
} |
| 383 |
|
|
| |
|
| 66.7% |
Uncovered Elements: 1 (3) |
Complexity: 3 |
Complexity Density: 3 |
|
| 384 |
1422 |
private void jmolHistory(boolean enable, boolean useScriptWait)... |
| 385 |
|
{ |
| 386 |
1422 |
jmolScript("History " + ((debug || enable) ? "on" : "off"), |
| 387 |
|
useScriptWait); |
| 388 |
|
} |
| 389 |
|
|
| |
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
| 390 |
0 |
public void loadInline(String string)... |
| 391 |
|
{ |
| 392 |
0 |
loadedInline = true; |
| 393 |
|
|
| 394 |
|
|
| 395 |
|
|
| 396 |
|
|
| 397 |
|
|
| 398 |
|
|
| 399 |
|
|
| 400 |
|
|
| 401 |
0 |
jmolViewer.openStringInline(string); |
| 402 |
|
} |
| 403 |
|
|
| |
|
| 50.8% |
Uncovered Elements: 32 (65) |
Complexity: 16 |
Complexity Density: 0.39 |
|
| 404 |
1 |
protected void mouseOverStructure(int atomIndex, final String strInfo)... |
| 405 |
|
{ |
| 406 |
1 |
int pdbResNum; |
| 407 |
1 |
int alocsep = strInfo.indexOf("^"); |
| 408 |
1 |
int mdlSep = strInfo.indexOf("/"); |
| 409 |
1 |
int chainSeparator = strInfo.indexOf(":"), chainSeparator1 = -1; |
| 410 |
|
|
| 411 |
1 |
if (chainSeparator == -1) |
| 412 |
|
{ |
| 413 |
0 |
chainSeparator = strInfo.indexOf("."); |
| 414 |
0 |
if (mdlSep > -1 && mdlSep < chainSeparator) |
| 415 |
|
{ |
| 416 |
0 |
chainSeparator1 = chainSeparator; |
| 417 |
0 |
chainSeparator = mdlSep; |
| 418 |
|
} |
| 419 |
|
} |
| 420 |
|
|
| 421 |
1 |
if (alocsep != -1) |
| 422 |
|
{ |
| 423 |
0 |
pdbResNum = Integer.parseInt( |
| 424 |
|
strInfo.substring(strInfo.indexOf("]") + 1, alocsep)); |
| 425 |
|
|
| 426 |
|
} |
| 427 |
|
else |
| 428 |
|
{ |
| 429 |
1 |
pdbResNum = Integer.parseInt( |
| 430 |
|
strInfo.substring(strInfo.indexOf("]") + 1, chainSeparator)); |
| 431 |
|
} |
| 432 |
1 |
String chainId; |
| 433 |
|
|
| 434 |
1 |
if (strInfo.indexOf(":") > -1) |
| 435 |
|
{ |
| 436 |
1 |
chainId = strInfo.substring(strInfo.indexOf(":") + 1, |
| 437 |
|
strInfo.indexOf(".")); |
| 438 |
|
} |
| 439 |
|
else |
| 440 |
|
{ |
| 441 |
0 |
chainId = " "; |
| 442 |
|
} |
| 443 |
|
|
| 444 |
1 |
String pdbfilename = modelFileNames[0]; |
| 445 |
1 |
if (mdlSep > -1) |
| 446 |
|
{ |
| 447 |
1 |
if (chainSeparator1 == -1) |
| 448 |
|
{ |
| 449 |
1 |
chainSeparator1 = strInfo.indexOf(".", mdlSep); |
| 450 |
|
} |
| 451 |
1 |
String mdlId = (chainSeparator1 > -1) |
| 452 |
|
? strInfo.substring(mdlSep + 1, chainSeparator1) |
| 453 |
|
: strInfo.substring(mdlSep + 1); |
| 454 |
1 |
try |
| 455 |
|
{ |
| 456 |
|
|
| 457 |
1 |
int mnumber = Integer.valueOf(mdlId).intValue() - 1; |
| 458 |
1 |
if (_modelFileNameMap != null) |
| 459 |
|
{ |
| 460 |
0 |
int _mp = _modelFileNameMap.length - 1; |
| 461 |
|
|
| 462 |
0 |
while (mnumber < _modelFileNameMap[_mp]) |
| 463 |
|
{ |
| 464 |
0 |
_mp--; |
| 465 |
|
} |
| 466 |
0 |
pdbfilename = modelFileNames[_mp]; |
| 467 |
|
} |
| 468 |
|
else |
| 469 |
|
{ |
| 470 |
1 |
if (mnumber >= 0 && mnumber < modelFileNames.length) |
| 471 |
|
{ |
| 472 |
1 |
pdbfilename = modelFileNames[mnumber]; |
| 473 |
|
} |
| 474 |
|
|
| 475 |
1 |
if (pdbfilename == null) |
| 476 |
|
{ |
| 477 |
0 |
pdbfilename = new File(jmolViewer.ms.getModelFileName(mnumber)) |
| 478 |
|
.getAbsolutePath(); |
| 479 |
|
} |
| 480 |
|
} |
| 481 |
|
} catch (Exception e) |
| 482 |
|
{ |
| 483 |
|
} |
| 484 |
|
} |
| 485 |
|
|
| 486 |
|
|
| 487 |
|
|
| 488 |
|
|
| 489 |
|
|
| 490 |
1 |
String label = getSsm().mouseOverStructure(pdbResNum, chainId, |
| 491 |
|
pdbfilename); |
| 492 |
1 |
if (label != null) |
| 493 |
|
{ |
| 494 |
|
|
| 495 |
0 |
label = label.replace(',', '|'); |
| 496 |
0 |
StringTokenizer toks = new StringTokenizer(strInfo, " "); |
| 497 |
0 |
StringBuilder sb = new StringBuilder(); |
| 498 |
0 |
sb.append("select ").append(String.valueOf(pdbResNum)).append(":") |
| 499 |
|
.append(chainId).append("/1"); |
| 500 |
0 |
sb.append(";set hoverLabel \"").append(toks.nextToken()).append(" ") |
| 501 |
|
.append(toks.nextToken()); |
| 502 |
0 |
sb.append("|").append(label).append("\""); |
| 503 |
0 |
executeCommand(new StructureCommand(sb.toString()), false); |
| 504 |
|
} |
| 505 |
|
} |
| 506 |
|
|
| |
|
| 0% |
Uncovered Elements: 10 (10) |
Complexity: 3 |
Complexity Density: 0.5 |
|
| 507 |
0 |
public void notifyAtomHovered(int atomIndex, String strInfo, String data)... |
| 508 |
|
{ |
| 509 |
0 |
if (strInfo.equals(lastMessage)) |
| 510 |
|
{ |
| 511 |
0 |
return; |
| 512 |
|
} |
| 513 |
0 |
lastMessage = strInfo; |
| 514 |
0 |
if (data != null) |
| 515 |
|
{ |
| 516 |
0 |
jalview.bin.Console.errPrintln( |
| 517 |
|
"Ignoring additional hover info: " + data + " (other info: '" |
| 518 |
|
+ strInfo + "' pos " + atomIndex + ")"); |
| 519 |
|
} |
| 520 |
0 |
mouseOverStructure(atomIndex, strInfo); |
| 521 |
|
} |
| 522 |
|
|
| 523 |
|
|
| 524 |
|
|
| 525 |
|
|
| 526 |
|
|
| 527 |
|
|
| 528 |
|
|
| |
|
| 0% |
Uncovered Elements: 30 (30) |
Complexity: 6 |
Complexity Density: 0.3 |
|
| 529 |
0 |
public void notifyAtomPicked(int atomIndex, String strInfo,... |
| 530 |
|
String strData) |
| 531 |
|
{ |
| 532 |
|
|
| 533 |
|
|
| 534 |
|
|
| 535 |
|
|
| 536 |
0 |
if (strData != null) |
| 537 |
|
{ |
| 538 |
0 |
jalview.bin.Console.errPrintln( |
| 539 |
|
"Ignoring additional pick data string " + strData); |
| 540 |
|
} |
| 541 |
0 |
int chainSeparator = strInfo.indexOf(":"); |
| 542 |
0 |
int p = 0; |
| 543 |
0 |
if (chainSeparator == -1) |
| 544 |
|
{ |
| 545 |
0 |
chainSeparator = strInfo.indexOf("."); |
| 546 |
|
} |
| 547 |
|
|
| 548 |
0 |
String picked = strInfo.substring(strInfo.indexOf("]") + 1, |
| 549 |
|
chainSeparator); |
| 550 |
0 |
String mdlString = ""; |
| 551 |
0 |
if ((p = strInfo.indexOf(":")) > -1) |
| 552 |
|
{ |
| 553 |
0 |
picked += strInfo.substring(p, strInfo.indexOf(".")); |
| 554 |
|
} |
| 555 |
|
|
| 556 |
0 |
if ((p = strInfo.indexOf("/")) > -1) |
| 557 |
|
{ |
| 558 |
0 |
mdlString += strInfo.substring(p, strInfo.indexOf(" #")); |
| 559 |
|
} |
| 560 |
0 |
picked = "((" + picked + ".CA" + mdlString + ")|(" + picked + ".P" |
| 561 |
|
+ mdlString + "))"; |
| 562 |
0 |
jmolHistory(false); |
| 563 |
|
|
| 564 |
0 |
if (!atomsPicked.contains(picked)) |
| 565 |
|
{ |
| 566 |
0 |
jmolScript("select " + picked + ";label %n %r:%c"); |
| 567 |
0 |
atomsPicked.addElement(picked); |
| 568 |
|
} |
| 569 |
|
else |
| 570 |
|
{ |
| 571 |
0 |
jmolViewer.evalString("select " + picked + ";label off"); |
| 572 |
0 |
atomsPicked.removeElement(picked); |
| 573 |
|
} |
| 574 |
0 |
jmolHistory(true); |
| 575 |
|
|
| 576 |
|
|
| 577 |
|
|
| 578 |
|
|
| 579 |
|
|
| 580 |
|
|
| 581 |
|
|
| 582 |
|
|
| 583 |
|
} |
| 584 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 585 |
237 |
@Override... |
| 586 |
|
public void notifyCallback(CBK type, Object[] data) |
| 587 |
|
{ |
| 588 |
|
|
| 589 |
|
|
| 590 |
|
|
| 591 |
237 |
SwingUtilities.invokeLater(new Runnable() |
| 592 |
|
{ |
| 593 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 594 |
237 |
@Override... |
| 595 |
|
public void run() |
| 596 |
|
{ |
| 597 |
237 |
processCallback(type, data); |
| 598 |
|
} |
| 599 |
|
}); |
| 600 |
|
} |
| 601 |
|
|
| 602 |
|
|
| 603 |
|
|
| 604 |
|
|
| 605 |
|
@param |
| 606 |
|
@param |
| 607 |
|
|
| |
|
| 55.9% |
Uncovered Elements: 15 (34) |
Complexity: 14 |
Complexity Density: 0.44 |
|
| 608 |
237 |
protected void processCallback(CBK type, Object[] data)... |
| 609 |
|
{ |
| 610 |
237 |
try |
| 611 |
|
{ |
| 612 |
237 |
switch (type) |
| 613 |
|
{ |
| 614 |
81 |
case LOADSTRUCT: |
| 615 |
81 |
notifyFileLoaded((String) data[1], (String) data[2], |
| 616 |
|
(String) data[3], (String) data[4], |
| 617 |
|
((Integer) data[5]).intValue()); |
| 618 |
|
|
| 619 |
79 |
break; |
| 620 |
0 |
case PICK: |
| 621 |
0 |
notifyAtomPicked(((Integer) data[2]).intValue(), (String) data[1], |
| 622 |
|
(String) data[0]); |
| 623 |
|
|
| 624 |
|
|
| 625 |
0 |
case HOVER: |
| 626 |
0 |
notifyAtomHovered(((Integer) data[2]).intValue(), (String) data[1], |
| 627 |
|
(String) data[0]); |
| 628 |
0 |
break; |
| 629 |
8 |
case SCRIPT: |
| 630 |
8 |
notifyScriptTermination((String) data[2], |
| 631 |
|
((Integer) data[3]).intValue()); |
| 632 |
8 |
break; |
| 633 |
55 |
case ECHO: |
| 634 |
55 |
sendConsoleEcho((String) data[1]); |
| 635 |
55 |
break; |
| 636 |
0 |
case MESSAGE: |
| 637 |
0 |
sendConsoleMessage( |
| 638 |
0 |
(data == null) ? ((String) null) : (String) data[1]); |
| 639 |
0 |
break; |
| 640 |
0 |
case ERROR: |
| 641 |
|
|
| 642 |
0 |
break; |
| 643 |
86 |
case SYNC: |
| 644 |
0 |
case RESIZE: |
| 645 |
86 |
refreshGUI(); |
| 646 |
86 |
break; |
| 647 |
7 |
case MEASURE: |
| 648 |
|
|
| 649 |
0 |
case CLICK: |
| 650 |
0 |
default: |
| 651 |
7 |
jalview.bin.Console.errPrintln( |
| 652 |
|
"Unhandled callback " + type + " " + data[1].toString()); |
| 653 |
7 |
break; |
| 654 |
|
} |
| 655 |
|
} catch (Exception e) |
| 656 |
|
{ |
| 657 |
2 |
jalview.bin.Console |
| 658 |
|
.errPrintln("Squashed Jmol callback handler error:"); |
| 659 |
2 |
e.printStackTrace(); |
| 660 |
|
} |
| 661 |
|
} |
| 662 |
|
|
| |
|
| 66.7% |
Uncovered Elements: 4 (12) |
Complexity: 9 |
Complexity Density: 0.75 |
|
| 663 |
537 |
@Override... |
| 664 |
|
public boolean notifyEnabled(CBK callbackPick) |
| 665 |
|
{ |
| 666 |
537 |
switch (callbackPick) |
| 667 |
|
{ |
| 668 |
55 |
case ECHO: |
| 669 |
81 |
case LOADSTRUCT: |
| 670 |
7 |
case MEASURE: |
| 671 |
0 |
case MESSAGE: |
| 672 |
0 |
case PICK: |
| 673 |
8 |
case SCRIPT: |
| 674 |
0 |
case HOVER: |
| 675 |
0 |
case ERROR: |
| 676 |
151 |
return true; |
| 677 |
386 |
default: |
| 678 |
386 |
return false; |
| 679 |
|
} |
| 680 |
|
} |
| 681 |
|
|
| 682 |
|
|
| 683 |
|
|
| 684 |
|
|
| 685 |
|
private long loadNotifiesHandled = 0; |
| 686 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 687 |
129 |
public long getLoadNotifiesHandled()... |
| 688 |
|
{ |
| 689 |
129 |
return loadNotifiesHandled; |
| 690 |
|
} |
| 691 |
|
|
| |
|
| 73% |
Uncovered Elements: 33 (122) |
Complexity: 28 |
Complexity Density: 0.37 |
|
| 692 |
81 |
public void notifyFileLoaded(String fullPathName, String fileName2,... |
| 693 |
|
String modelName, String errorMsg, int modelParts) |
| 694 |
|
{ |
| 695 |
81 |
if (errorMsg != null) |
| 696 |
|
{ |
| 697 |
7 |
fileLoadingError = errorMsg; |
| 698 |
7 |
refreshGUI(); |
| 699 |
7 |
return; |
| 700 |
|
} |
| 701 |
|
|
| 702 |
|
|
| 703 |
|
|
| 704 |
|
|
| 705 |
|
|
| 706 |
|
|
| 707 |
74 |
fileLoadingError = null; |
| 708 |
74 |
String[] oldmodels = modelFileNames; |
| 709 |
74 |
modelFileNames = null; |
| 710 |
74 |
boolean notifyLoaded = false; |
| 711 |
74 |
String[] modelfilenames = getStructureFiles(); |
| 712 |
74 |
if (modelfilenames == null) |
| 713 |
|
{ |
| 714 |
|
|
| 715 |
7 |
return; |
| 716 |
|
} |
| 717 |
67 |
if (jalview.bin.Console.isTraceEnabled()) |
| 718 |
|
{ |
| 719 |
0 |
jalview.bin.Console.trace("New structures loaded in Jmol:"); |
| 720 |
0 |
int i=1; |
| 721 |
0 |
for (String mfn: modelfilenames) |
| 722 |
|
{ |
| 723 |
0 |
jalview.bin.Console.trace(i++ +" "+((mfn==null) ? "NULL" : mfn)); |
| 724 |
|
} |
| 725 |
|
} |
| 726 |
|
|
| 727 |
67 |
if (oldmodels != null && oldmodels.length > 0) |
| 728 |
|
{ |
| 729 |
29 |
int oldm = 0; |
| 730 |
65 |
for (int i = 0; i < oldmodels.length; i++) |
| 731 |
|
{ |
| 732 |
46 |
for (int n = 0; n < modelfilenames.length; n++) |
| 733 |
|
{ |
| 734 |
46 |
if (modelfilenames[n] == oldmodels[i]) |
| 735 |
|
{ |
| 736 |
36 |
oldmodels[i] = null; |
| 737 |
36 |
break; |
| 738 |
|
} |
| 739 |
|
} |
| 740 |
36 |
if (oldmodels[i] != null) |
| 741 |
|
{ |
| 742 |
0 |
oldm++; |
| 743 |
|
} |
| 744 |
|
} |
| 745 |
29 |
if (oldm > 0) |
| 746 |
|
{ |
| 747 |
0 |
String[] oldmfn = new String[oldm]; |
| 748 |
0 |
oldm = 0; |
| 749 |
0 |
for (int i = 0; i < oldmodels.length; i++) |
| 750 |
|
{ |
| 751 |
0 |
if (oldmodels[i] != null) |
| 752 |
|
{ |
| 753 |
0 |
oldmfn[oldm++] = oldmodels[i]; |
| 754 |
|
} |
| 755 |
|
} |
| 756 |
|
|
| 757 |
|
|
| 758 |
0 |
getSsm().removeStructureViewerListener(this, oldmfn); |
| 759 |
|
} |
| 760 |
|
} |
| 761 |
67 |
refreshPdbEntries(); |
| 762 |
150 |
for (int modelnum = 0; modelnum < modelfilenames.length; modelnum++) |
| 763 |
|
{ |
| 764 |
83 |
String fileName = modelfilenames[modelnum]; |
| 765 |
83 |
boolean foundEntry = false; |
| 766 |
83 |
StructureFile pdb = null; |
| 767 |
83 |
String pdbfile = null; |
| 768 |
|
|
| 769 |
83 |
if (loadedInline) |
| 770 |
|
{ |
| 771 |
|
|
| 772 |
|
|
| 773 |
|
|
| 774 |
0 |
pdbfile = jmolViewer.getData( |
| 775 |
|
"" + (1 + _modelFileNameMap[modelnum]) + ".0", "PDB"); |
| 776 |
|
} |
| 777 |
|
|
| 778 |
|
|
| 779 |
210 |
for (int pe = 0; pe < getPdbCount(); pe++) |
| 780 |
|
{ |
| 781 |
127 |
boolean matches = false; |
| 782 |
127 |
addSequence(pe, getSequence()[pe]); |
| 783 |
127 |
if (fileName == null) |
| 784 |
|
{ |
| 785 |
0 |
if (false) |
| 786 |
|
|
| 787 |
|
{ |
| 788 |
|
|
| 789 |
0 |
pdb = getSsm().setMapping(getSequence()[pe], getChains()[pe], |
| 790 |
|
pdbfile, DataSourceType.PASTE, getIProgressIndicator()); |
| 791 |
0 |
getPdbEntry(modelnum).setFile("INLINE" + pdb.getId()); |
| 792 |
0 |
matches = true; |
| 793 |
0 |
foundEntry = true; |
| 794 |
|
} |
| 795 |
|
} |
| 796 |
|
else |
| 797 |
|
{ |
| 798 |
127 |
String jvPdbFile = getPdbEntry(pe).getFile(); |
| 799 |
127 |
File fl = new File(jvPdbFile); |
| 800 |
127 |
matches = fl.equals(new File(fileName)) || JmolCommands.filePathMatch(fileName, jvPdbFile); |
| 801 |
127 |
if (matches) |
| 802 |
|
{ |
| 803 |
80 |
foundEntry = true; |
| 804 |
|
|
| 805 |
|
|
| 806 |
|
|
| 807 |
|
|
| 808 |
|
|
| 809 |
80 |
DataSourceType protocol = DataSourceType.URL; |
| 810 |
80 |
try |
| 811 |
|
{ |
| 812 |
80 |
if (fl.exists()) |
| 813 |
|
{ |
| 814 |
77 |
protocol = DataSourceType.FILE; |
| 815 |
|
} |
| 816 |
|
} catch (Exception e) |
| 817 |
|
{ |
| 818 |
|
} catch (Error e) |
| 819 |
|
{ |
| 820 |
|
} |
| 821 |
|
|
| 822 |
80 |
pdb = getSsm().setMapping(true,getSequence()[pe], getPdbEntry(pe), getChains()[pe], |
| 823 |
|
getIProgressIndicator()); |
| 824 |
|
|
| 825 |
|
|
| 826 |
|
} |
| 827 |
|
} |
| 828 |
127 |
if (matches) |
| 829 |
|
{ |
| 830 |
80 |
stashFoundChains(pdb, fileName); |
| 831 |
80 |
notifyLoaded = true; |
| 832 |
|
} |
| 833 |
|
} |
| 834 |
|
|
| 835 |
83 |
if (!foundEntry && associateNewStructs) |
| 836 |
|
{ |
| 837 |
|
|
| 838 |
|
|
| 839 |
|
|
| 840 |
0 |
String pdbcontent = jmolViewer.getData("/" + (modelnum + 1) + ".1", |
| 841 |
|
"PDB"); |
| 842 |
|
|
| 843 |
|
|
| 844 |
|
|
| 845 |
|
|
| 846 |
0 |
notifyLoaded = true; |
| 847 |
|
|
| 848 |
|
} |
| 849 |
|
} |
| 850 |
|
|
| 851 |
|
|
| 852 |
|
|
| 853 |
|
|
| 854 |
|
|
| 855 |
|
|
| 856 |
|
|
| 857 |
67 |
if (!isLoadingFromArchive()) |
| 858 |
|
{ |
| 859 |
60 |
jmolScript( |
| 860 |
|
"model *; select backbone;restrict;cartoon;wireframe off;spacefill off"); |
| 861 |
|
} |
| 862 |
|
|
| 863 |
|
|
| 864 |
67 |
getSsm().addStructureViewerListener(this); |
| 865 |
67 |
if (notifyLoaded) |
| 866 |
|
{ |
| 867 |
64 |
FeatureRenderer fr = getFeatureRenderer(null); |
| 868 |
62 |
if (fr != null) |
| 869 |
|
{ |
| 870 |
62 |
FeatureSettingsModelI colours = new Pdb().getFeatureColourScheme(); |
| 871 |
62 |
((AppJmol) getViewer()).getAlignmentPanel().av |
| 872 |
|
.applyFeaturesStyle(colours); |
| 873 |
|
} |
| 874 |
62 |
refreshGUI(); |
| 875 |
62 |
loadNotifiesHandled++; |
| 876 |
|
} |
| 877 |
65 |
setLoadingFromArchive(false); |
| 878 |
|
} |
| 879 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 880 |
80 |
protected IProgressIndicator getIProgressIndicator()... |
| 881 |
|
{ |
| 882 |
80 |
return null; |
| 883 |
|
} |
| 884 |
|
|
| |
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 885 |
0 |
public void notifyNewPickingModeMeasurement(int iatom, String strMeasure)... |
| 886 |
|
{ |
| 887 |
0 |
notifyAtomPicked(iatom, strMeasure, null); |
| 888 |
|
} |
| 889 |
|
|
| 890 |
|
public abstract void notifyScriptTermination(String strStatus, |
| 891 |
|
int msWalltime); |
| 892 |
|
|
| 893 |
|
|
| 894 |
|
|
| 895 |
|
|
| 896 |
|
@param |
| 897 |
|
|
| 898 |
|
public abstract void sendConsoleEcho(String strEcho); |
| 899 |
|
|
| 900 |
|
|
| 901 |
|
|
| 902 |
|
|
| 903 |
|
|
| 904 |
|
|
| 905 |
|
|
| 906 |
|
|
| 907 |
|
|
| 908 |
|
@param |
| 909 |
|
|
| 910 |
|
|
| 911 |
|
|
| 912 |
|
public abstract void sendConsoleMessage(String strStatus); |
| 913 |
|
|
| |
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 914 |
0 |
@Override... |
| 915 |
|
public void setCallbackFunction(String callbackType, |
| 916 |
|
String callbackFunction) |
| 917 |
|
{ |
| 918 |
0 |
jalview.bin.Console |
| 919 |
|
.errPrintln("Ignoring set-callback request to associate " |
| 920 |
|
+ callbackType + " with function " + callbackFunction); |
| 921 |
|
|
| 922 |
|
} |
| 923 |
|
|
| |
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 924 |
0 |
public void showHelp()... |
| 925 |
|
{ |
| 926 |
0 |
showUrl("http://wiki.jmol.org" |
| 927 |
|
|
| 928 |
|
, "jmolHelp"); |
| 929 |
|
} |
| 930 |
|
|
| 931 |
|
|
| 932 |
|
|
| 933 |
|
|
| 934 |
|
@param |
| 935 |
|
|
| 936 |
|
public abstract void showUrl(String url, String target); |
| 937 |
|
|
| 938 |
|
|
| 939 |
|
|
| 940 |
|
|
| 941 |
|
@param |
| 942 |
|
|
| 943 |
|
public abstract void showConsole(boolean show); |
| 944 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 945 |
243 |
public static Viewer getJmolData(JmolParser jmolParser)... |
| 946 |
|
{ |
| 947 |
243 |
return (Viewer) JmolViewer.allocateViewer(null, null, null, null, null, |
| 948 |
|
"-x -o -n", jmolParser); |
| 949 |
|
} |
| 950 |
|
|
| 951 |
|
|
| 952 |
|
|
| 953 |
|
|
| 954 |
|
|
| 955 |
|
@param |
| 956 |
|
@param |
| 957 |
|
|
| 958 |
|
|
| 959 |
|
@param |
| 960 |
|
@param |
| 961 |
|
@param |
| 962 |
|
@param |
| 963 |
|
|
| |
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 964 |
0 |
public void allocateViewer(Container renderPanel, boolean jmolfileio,... |
| 965 |
|
String htmlName, URL documentBase, URL codeBase, |
| 966 |
|
String commandOptions) |
| 967 |
|
{ |
| 968 |
0 |
allocateViewer(renderPanel, jmolfileio, htmlName, documentBase, |
| 969 |
|
codeBase, commandOptions, null, null); |
| 970 |
|
} |
| 971 |
|
|
| 972 |
|
|
| 973 |
|
|
| 974 |
|
@param |
| 975 |
|
@param |
| 976 |
|
|
| 977 |
|
|
| 978 |
|
@param |
| 979 |
|
@param |
| 980 |
|
@param |
| 981 |
|
@param |
| 982 |
|
@param |
| 983 |
|
|
| 984 |
|
@param |
| 985 |
|
|
| 986 |
|
|
| |
|
| 64.7% |
Uncovered Elements: 6 (17) |
Complexity: 5 |
Complexity Density: 0.45 |
|
| 987 |
62 |
public void allocateViewer(Container renderPanel, boolean jmolfileio,... |
| 988 |
|
String htmlName, URL documentBase, URL codeBase, |
| 989 |
|
String commandOptions, final Container consolePanel, |
| 990 |
|
String buttonsToShow) |
| 991 |
|
{ |
| 992 |
|
|
| 993 |
62 |
jalview.bin.Console |
| 994 |
|
.errPrintln("Allocating Jmol Viewer: " + commandOptions); |
| 995 |
|
|
| 996 |
62 |
if (commandOptions == null) |
| 997 |
|
{ |
| 998 |
0 |
commandOptions = ""; |
| 999 |
|
} |
| 1000 |
62 |
jmolViewer = (Viewer) JmolViewer.allocateViewer(renderPanel, |
| 1001 |
62 |
(jmolfileio ? new SmarterJmolAdapter() : null), |
| 1002 |
|
htmlName + ((Object) this).toString(), documentBase, codeBase, |
| 1003 |
|
commandOptions, this); |
| 1004 |
|
|
| 1005 |
62 |
jmolViewer.setJmolStatusListener(this); |
| 1006 |
|
|
| 1007 |
62 |
try |
| 1008 |
|
{ |
| 1009 |
62 |
console = createJmolConsole(consolePanel, buttonsToShow); |
| 1010 |
|
} catch (Throwable e) |
| 1011 |
|
{ |
| 1012 |
0 |
jalview.bin.Console |
| 1013 |
|
.errPrintln("Could not create Jmol application console. " |
| 1014 |
|
+ e.getMessage()); |
| 1015 |
0 |
e.printStackTrace(); |
| 1016 |
|
} |
| 1017 |
62 |
if (consolePanel != null) |
| 1018 |
|
{ |
| 1019 |
62 |
consolePanel.addComponentListener(this); |
| 1020 |
|
|
| 1021 |
|
} |
| 1022 |
|
|
| 1023 |
|
} |
| 1024 |
|
|
| 1025 |
|
protected abstract JmolAppConsoleInterface createJmolConsole( |
| 1026 |
|
Container consolePanel, String buttonsToShow); |
| 1027 |
|
|
| 1028 |
|
|
| 1029 |
|
|
| 1030 |
|
|
| 1031 |
|
protected org.jmol.api.JmolAppConsoleInterface console = null; |
| 1032 |
|
|
| |
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 1033 |
0 |
@Override... |
| 1034 |
|
public int[] resizeInnerPanel(String data) |
| 1035 |
|
{ |
| 1036 |
|
|
| 1037 |
0 |
return null; |
| 1038 |
|
} |
| 1039 |
|
|
| 1040 |
|
|
| 1041 |
|
|
| 1042 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (7) |
Complexity: 4 |
Complexity Density: 0.8 |
|
| 1043 |
39 |
protected void closeConsole()... |
| 1044 |
|
{ |
| 1045 |
39 |
if (console != null) |
| 1046 |
|
{ |
| 1047 |
38 |
try |
| 1048 |
|
{ |
| 1049 |
38 |
console.setVisible(false); |
| 1050 |
|
} catch (Error e) |
| 1051 |
|
{ |
| 1052 |
|
} catch (Exception x) |
| 1053 |
|
{ |
| 1054 |
|
} |
| 1055 |
38 |
; |
| 1056 |
38 |
console = null; |
| 1057 |
|
} |
| 1058 |
|
} |
| 1059 |
|
|
| 1060 |
|
|
| 1061 |
|
|
| 1062 |
|
|
| |
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
| 1063 |
0 |
@Override... |
| 1064 |
|
public void componentMoved(ComponentEvent e) |
| 1065 |
|
{ |
| 1066 |
|
} |
| 1067 |
|
|
| 1068 |
|
|
| 1069 |
|
|
| 1070 |
|
|
| |
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
| 1071 |
0 |
@Override... |
| 1072 |
|
public void componentResized(ComponentEvent e) |
| 1073 |
|
{ |
| 1074 |
|
} |
| 1075 |
|
|
| 1076 |
|
|
| 1077 |
|
|
| 1078 |
|
|
| |
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 1079 |
0 |
@Override... |
| 1080 |
|
public void componentShown(ComponentEvent e) |
| 1081 |
|
{ |
| 1082 |
0 |
showConsole(true); |
| 1083 |
|
} |
| 1084 |
|
|
| 1085 |
|
|
| 1086 |
|
|
| 1087 |
|
|
| |
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 1088 |
0 |
@Override... |
| 1089 |
|
public void componentHidden(ComponentEvent e) |
| 1090 |
|
{ |
| 1091 |
0 |
showConsole(false); |
| 1092 |
|
} |
| 1093 |
|
|
| 1094 |
|
|
| |
|
| 66.7% |
Uncovered Elements: 4 (12) |
Complexity: 4 |
Complexity Density: 0.67 |
|
| 1095 |
638 |
@Override... |
| 1096 |
|
protected String getModelIdForFile(String pdbFile) |
| 1097 |
|
{ |
| 1098 |
638 |
if (modelFileNames == null) |
| 1099 |
|
{ |
| 1100 |
0 |
return ""; |
| 1101 |
|
} |
| 1102 |
817 |
for (int i = 0; i < modelFileNames.length; i++) |
| 1103 |
|
{ |
| 1104 |
817 |
if (JmolCommands.filePathMatch(modelFileNames[i],pdbFile)) |
| 1105 |
|
{ |
| 1106 |
638 |
return String.valueOf(i + 1); |
| 1107 |
|
} |
| 1108 |
|
} |
| 1109 |
0 |
return ""; |
| 1110 |
|
} |
| 1111 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 1112 |
2 |
@Override... |
| 1113 |
|
protected ViewerType getViewerType() |
| 1114 |
|
{ |
| 1115 |
2 |
return ViewerType.JMOL; |
| 1116 |
|
} |
| 1117 |
|
|
| |
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 1118 |
0 |
@Override... |
| 1119 |
|
protected String getModelId(int pdbfnum, String file) |
| 1120 |
|
{ |
| 1121 |
0 |
return String.valueOf(pdbfnum + 1); |
| 1122 |
|
} |
| 1123 |
|
|
| 1124 |
|
|
| 1125 |
|
|
| 1126 |
|
|
| 1127 |
|
@return |
| 1128 |
|
@see |
| 1129 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 1130 |
2 |
@Override... |
| 1131 |
|
public String getSessionFileExtension() |
| 1132 |
|
{ |
| 1133 |
2 |
return ".spt"; |
| 1134 |
|
} |
| 1135 |
|
|
| |
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
| 1136 |
0 |
@Override... |
| 1137 |
|
public void selectionChanged(BS arg0) |
| 1138 |
|
{ |
| 1139 |
|
|
| 1140 |
|
|
| 1141 |
|
} |
| 1142 |
|
|
| |
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 1143 |
0 |
@Override... |
| 1144 |
|
public SequenceRenderer getSequenceRenderer(AlignmentViewPanel avp) |
| 1145 |
|
{ |
| 1146 |
0 |
return new jalview.gui.SequenceRenderer(avp.getAlignViewport()); |
| 1147 |
|
} |
| 1148 |
|
|
| |
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 1149 |
0 |
@Override... |
| 1150 |
|
public String getHelpURL() |
| 1151 |
|
{ |
| 1152 |
0 |
return "http://wiki.jmol.org"; |
| 1153 |
|
} |
| 1154 |
|
} |