source: extensions/net.sf.basedb.mev/trunk/META-INF/extensions.xml @ 2477

Last change on this file since 2477 was 2477, checked in by Nicklas Nordborg, 9 years ago

Preparing for future release MeV launcher 1.12

  • Property svn:eol-style set to native
  • Property svn:keywords set to Date Id
File size: 3.7 KB
Line 
1<?xml version="1.0" encoding="UTF-8" ?>
2<extensions xmlns="http://base.thep.lu.se/extensions.xsd">
3  <about safe-scripts="1">
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.12-dev</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.3.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        <clazz>icon link auto-init</clazz>
82        <data-auto-init>launch-mev</data-auto-init>
83        <data-home>$HOME$</data-home>
84        <icon>~/images/tm4.png</icon>
85        <script>~/scripts/mev.js</script>
86      </parameters>
87    </action-factory>
88  </extension>
89  <extension
90    id="net.sf.basedb.mev.options"
91    extends="net.sf.basedb.clients.web.menu.extensions"
92    >
93    <index>1</index>
94    <about>
95      <name>MeV Launcher options</name>
96      <description>
97        Opens a dialog where a user can specify options for the MeV Launcher
98      </description>
99    </about>
100    <action-factory>
101      <factory-class>
102        net.sf.basedb.clients.web.extensions.menu.FixedMenuItemFactory
103      </factory-class>
104      <parameters>
105        <title>MeV Launcher options&amp;hellip;</title>
106        <tooltip>Specify options for the MeV Launcher</tooltip>
107        <data-url>$HOME$/options.jsp?ID=$SESSION-ID$</data-url>
108        <data-popup>MeVLauncherOptions, 450, 300</data-popup>
109        <icon>~/images/tm4.png</icon>
110      </parameters>
111    </action-factory>
112  </extension> 
113</extensions>
Note: See TracBrowser for help on using the repository browser.