1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
package jalview.gui; |
22 |
|
|
23 |
|
import jalview.datamodel.PDBEntry; |
24 |
|
import jalview.datamodel.SequenceI; |
25 |
|
import jalview.datamodel.StructureViewerModel; |
26 |
|
import jalview.gui.StructureViewer.ViewerType; |
27 |
|
|
28 |
|
|
29 |
|
|
30 |
|
|
31 |
|
|
32 |
|
|
33 |
|
@author |
34 |
|
|
35 |
|
|
|
|
| 0% |
Uncovered Elements: 12 (12) |
Complexity: 6 |
Complexity Density: 1 |
|
36 |
|
public class ChimeraXViewFrame extends ChimeraViewFrame |
37 |
|
{ |
38 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
39 |
0 |
public ChimeraXViewFrame(PDBEntry pdb, SequenceI[] seqsForPdb,... |
40 |
|
String[] chains, AlignmentPanel ap) |
41 |
|
{ |
42 |
0 |
super(pdb, seqsForPdb, chains, ap); |
43 |
|
} |
44 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
45 |
0 |
public ChimeraXViewFrame(PDBEntry[] pdbsForFile, boolean superposeAdded,... |
46 |
|
SequenceI[][] theSeqs, AlignmentPanel ap) |
47 |
|
{ |
48 |
0 |
super(pdbsForFile, superposeAdded, theSeqs, ap); |
49 |
|
} |
50 |
|
|
51 |
|
|
52 |
|
|
53 |
|
|
54 |
|
@param |
55 |
|
@param |
56 |
|
@param |
57 |
|
@param |
58 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
59 |
0 |
public ChimeraXViewFrame(StructureViewerModel viewerData,... |
60 |
|
AlignmentPanel alignPanel, String sessionFile, String vid) |
61 |
|
{ |
62 |
0 |
super(viewerData, alignPanel, sessionFile, vid); |
63 |
|
} |
64 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
65 |
0 |
@Override... |
66 |
|
public ViewerType getViewerType() |
67 |
|
{ |
68 |
0 |
return ViewerType.CHIMERAX; |
69 |
|
} |
70 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
71 |
0 |
@Override... |
72 |
|
protected String getViewerName() |
73 |
|
{ |
74 |
0 |
return "ChimeraX"; |
75 |
|
} |
76 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
77 |
0 |
@Override... |
78 |
|
protected JalviewChimeraBindingModel newBindingModel(AlignmentPanel ap, |
79 |
|
PDBEntry[] pdbentrys, SequenceI[][] seqs) |
80 |
|
{ |
81 |
0 |
return new JalviewChimeraXBindingModel(this, |
82 |
|
ap.getStructureSelectionManager(), pdbentrys, seqs, null); |
83 |
|
} |
84 |
|
} |