source: extensions/net.sf.basedb.mev/tags/1.8/META-INF/extensions.xml @ 1444

Last change on this file since 1444 was 1443, checked in by Nicklas Nordborg, 12 years ago

Preparing 'MeV Launcher 1.8' release (again).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Date Id
File size: 3.6 KB
Line 
1<?xml version="1.0" encoding="UTF-8" ?>
2<extensions xmlns="http://base.thep.lu.se/extensions.xsd">
3  <about>
4    <name>MEV Launcher package</name>
5    <description>
6      This package adds the possibility to launch the MEV
7      application with Java web start and automatically have
8      it import data from the current bioassay set.
9    </description>
10    <version>1.8</version>
11    <copyright>BASE development team</copyright>
12    <email>basedb-users@lists.sourceforge.net</email>
13    <url>http://baseplugins.thep.lu.se/wiki/net.sf.basedb.mev</url>
14    <min-base-version>3.0.0</min-base-version>   
15  </about>
16  <plugin-definition id="PackageInstaller">
17    <about>
18      <name>MeV package installer</name>
19      <description>
20        This plug-in will install required data files types, etc. that
21        are required to use the MeV launcher and plug-ins. Start the installation by
22        selecting this plug-in from the list at Administrate -> Plugins -> Definitions.
23        Then click on the 'Run plugin' button.
24      </description>
25    </about>
26    <plugin-class>net.sf.basedb.mev.install.Install</plugin-class>
27    <settings>
28      <property name="immediate-execution">1</property>
29    </settings>
30  </plugin-definition>
31  <plugin-definition id="CghExporterPlugin">
32    <about>
33      <name>MeV CGH exporter</name>     
34      <description>
35        MeV CGH exporter Comparative Genomic Hybridization exporter for bioassay set data.
36        The resulting file can be opened in MeV for further analysis.
37      </description>
38    </about>   
39    <plugin-class>net.sf.basedb.mev.plugin.CghExporterPlugin</plugin-class>
40    <settings>
41      <property name="everyone-use">1</property>
42    </settings>
43  </plugin-definition>
44  <plugin-definition id="TdmsExporterPlugin">
45    <about>
46      <name>MeV TDMS exporter</name>
47      <description>
48        Tab-delimited Multiple Sample exporter for bioassay set data.
49        The resulting file can be opened in MeV for further analysis.
50      </description>     
51    </about>   
52    <plugin-class>net.sf.basedb.mev.plugin.TdmsExporterPlugin</plugin-class>
53    <settings>
54      <property name="everyone-use">1</property>
55    </settings>
56  </plugin-definition>
57  <extension
58    id="net.sf.basedb.mev.launchmev"
59    extends="net.sf.basedb.clients.web.bioassayset.list.tools"
60    >
61    <index>1</index>
62    <about>
63      <name>MeV Launcher</name>
64      <description>
65        Adds an action to the "Tools" column that starts MeV using Java
66        web start and automatically loads data from the current bioassay
67        set. The bioassay set must have a MeV TDMS file attached to it.
68      </description>
69    </about>
70    <action-factory>
71      <factory-class>
72        net.sf.basedb.mev.factory.MevButtonFactory
73      </factory-class>
74      <parameters>
75        <title>Start MeV</title>
76        <tooltip>
77          Launch MeV with data from this bioassay set. If
78          you have not yet created any MeV file you will be
79          given the option to do so.
80        </tooltip>
81        <onClick>MeV.launch($ID$)</onClick>
82        <icon>~/images/tm4.png</icon>
83        <script>~/scripts/mev.jsp</script>
84      </parameters>
85    </action-factory>
86  </extension>
87  <extension
88    id="net.sf.basedb.mev.options"
89    extends="net.sf.basedb.clients.web.menu.extensions"
90    >
91    <index>1</index>
92    <about>
93      <name>MeV Launcher options</name>
94      <description>
95        Opens a dialog where a user can specify options for the MeV Launcher
96      </description>
97    </about>
98    <action-factory>
99      <factory-class>
100        net.sf.basedb.clients.web.extensions.menu.FixedMenuItemFactory
101      </factory-class>
102      <parameters>
103        <title>MeV Launcher options&amp;hellip;</title>
104        <tooltip>Specify options for the MeV Launcher</tooltip>
105        <onClick>Main.openPopup('$HOME$/options.jsp?ID='+getSessionId(), 'MeVLauncherOptions', 500, 400)</onClick>
106        <icon>~/images/tm4.png</icon>
107      </parameters>
108    </action-factory>
109  </extension> 
110</extensions>
Note: See TracBrowser for help on using the repository browser.