-
Notifications
You must be signed in to change notification settings - Fork 0
/
bundle_info.xml
80 lines (69 loc) · 3.33 KB
/
bundle_info.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!--
ChimeraX bundle names must start with "ChimeraX-"
to avoid clashes with package names in pypi.python.org.
When uploaded to the ChimeraX toolshed, the bundle
will be displayed without the ChimeraX- prefix.
-->
<BundleInfo name="ChimeraX-RMF"
version="0.16" package="chimerax.rmf"
minSessionVersion="1" maxSessionVersion="1"
purePython="false">
<!-- Additional information about bundle source -->
<Author>Ben Webb, Sali Lab, University of California San Francisco</Author>
<Email>ben@salilab.org</Email>
<URL>https://integrativemodeling.org/rmf/</URL>
<!-- Synopsis is a one-line description
Description is a full multi-line description -->
<Synopsis>Support for the RMF file format</Synopsis>
<Description>Reads files in the Rich Molecular Format (RMF), which are
used by the Integrative Modeling Platform (IMP) software.
Currently it will only read and display the first frame from an RMF file and any
2-particle restraints (such as cross-links) although the longer-term goal
is to offer the same functionality as the RMF viewer in legacy Chimera plus
support for newer RMF features, such as provenance.
</Description>
<!-- Categories is a list where this bundle should appear -->
<Categories>
<Category name="General"/>
</Categories>
<!-- Dependencies on other ChimeraX/Python packages -->
<Dependencies>
<Dependency name="ChimeraX-Atomic" version=">=1.0"/>
<Dependency name="ChimeraX-Core" version=">=1.7"/>
<Dependency name="ChimeraX-UI" version=">=1.0"/>
</Dependencies>
<!-- Non-Python files that are part of package -->
<DataFiles>
<DataFile>docs/user/commands/rmf.html</DataFile>
<DataFile>docs/user/tools/rmf.html</DataFile>
<DataFile platform="mac">mac/RMF*.py</DataFile>
<DataFile platform="mac">mac/*.so</DataFile>
<DataFile platform="mac">mac/*.dylib</DataFile>
<DataFile platform="linux">linux/RMF*.py</DataFile>
<DataFile platform="linux">linux/*.so*</DataFile>
<DataFile platform="windows">windows/RMF*.py</DataFile>
<DataFile platform="windows">windows/*.pyd</DataFile>
<DataFile platform="windows">windows/*.dll</DataFile>
</DataFiles>
<Classifiers>
<!-- Development Status should be compatible with bundle version number -->
<PythonClassifier>Development Status :: 3 - Alpha</PythonClassifier>
<PythonClassifier>License :: MIT</PythonClassifier>
<Providers manager="data formats">
<Provider name="RMF" suffixes=".rmf,.rmf3" nicknames="rmf"
reference_url="https://integrativemodeling.org/rmf/"
category="Molecular structure" synopsis="RMF" />
</Providers>
<Providers manager="open command">
<Provider name="RMF" want_path="true" />
</Providers>
<ChimeraXClassifier>ChimeraX :: Command :: rmf hierarchy :: General ::
Given a model read from an RMF file, print its hierarchy</ChimeraXClassifier>
<ChimeraXClassifier>ChimeraX :: Command :: rmf chains :: General ::
Given a model read from an RMF file, show the RMF name for each chain ID</ChimeraXClassifier>
<ChimeraXClassifier>ChimeraX :: Command :: rmf readtraj :: General ::
Read trajectory frames</ChimeraXClassifier>
<ChimeraXClassifier>ChimeraX :: Tool :: RMF Viewer ::
General :: Display information extracted from RMF files</ChimeraXClassifier>
</Classifiers>
</BundleInfo>