Changeset 1540
- Timestamp:
- Feb 22, 2012, 9:31:59 AM (11 years ago)
- Location:
- extensions/net.sf.basedb.mev/trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.mev/trunk/.classpath
r1383 r1540 8 8 <classpathentry kind="lib" path="resources/jar/mev-gui-impl.jar" sourcepath="/mev-4.4.1/source"/> 9 9 <classpathentry kind="lib" path="resources/jar/HTTPClient.jar"/> 10 <classpathentry kind="lib" path="lib/compile/base-core-3. 0.0.jar"/>11 <classpathentry kind="lib" path="lib/compile/base-coreplugins-3. 0.0.jar"/>12 <classpathentry kind="lib" path="lib/compile/base-webclient-3. 0.0.jar"/>13 <classpathentry kind="lib" path="lib/compile/base-webservices-client-3. 0.0.jar"/>10 <classpathentry kind="lib" path="lib/compile/base-core-3.1.0.jar"/> 11 <classpathentry kind="lib" path="lib/compile/base-coreplugins-3.1.0.jar"/> 12 <classpathentry kind="lib" path="lib/compile/base-webclient-3.1.0.jar"/> 13 <classpathentry kind="lib" path="lib/compile/base-webservices-client-3.1.0.jar"/> 14 14 <classpathentry kind="output" path="bin"/> 15 15 </classpath> -
extensions/net.sf.basedb.mev/trunk/META-INF/extensions.xml
r1443 r1540 8 8 it import data from the current bioassay set. 9 9 </description> 10 <version>1. 8</version>10 <version>1.9-dev</version> 11 11 <copyright>BASE development team</copyright> 12 12 <email>basedb-users@lists.sourceforge.net</email> 13 13 <url>http://baseplugins.thep.lu.se/wiki/net.sf.basedb.mev</url> 14 <min-base-version>3. 0.0</min-base-version>14 <min-base-version>3.1.0</min-base-version> 15 15 </about> 16 16 <plugin-definition id="PackageInstaller"> … … 103 103 <title>MeV Launcher options&hellip;</title> 104 104 <tooltip>Specify options for the MeV Launcher</tooltip> 105 <onClick>Main.openPopup('$HOME$/options.jsp?ID='+getSessionId(), 'MeVLauncherOptions', 500, 400)</onClick>105 <onClick>Main.openPopup('$HOME$/options.jsp?ID='+getSessionId(), 'MeVLauncherOptions', 450, 300)</onClick> 106 106 <icon>~/images/tm4.png</icon> 107 107 </parameters> -
extensions/net.sf.basedb.mev/trunk/README
r1442 r1540 1 1 == Requirements == 2 2 3 1. BASE 3. 0or later.3 1. BASE 3.1 or later. 4 4 5 5 == Introduction == -
extensions/net.sf.basedb.mev/trunk/build.xml
r1539 r1540 10 10 <!-- variables used --> 11 11 <property name="name" value="mev-launcher" /> 12 <property name="version" value="1. 8" />12 <property name="version" value="1.9-dev" /> 13 13 <property name="src" location="src" description="Location of source files" /> 14 14 <property name="build" location="build" description="Location of compiled files" /> … … 24 24 <property name="javac.encoding" value="UTF-8" /> 25 25 <property name="depend.base-version" 26 value="3. 0.0"26 value="3.1.0" 27 27 description="The BASE version that this project depends on." 28 28 /> -
extensions/net.sf.basedb.mev/trunk/lib/compile
- Property svn:ignore
-
old new 1 BASE2*.jar 2 base-core-3.0.0.jar 3 base-coreplugins-3.0.0.jar 4 base-webclient-3.0.0.jar 5 base-webservices-client-3.0.0.jar 1 base-*.jar 2
-
- Property svn:ignore
-
extensions/net.sf.basedb.mev/trunk/src/server/net/sf/basedb/mev/Mev.java
r1443 r1540 36 36 The current version of this plug-in package. 37 37 */ 38 public static final String VERSION = "1. 8";38 public static final String VERSION = "1.9-dev"; 39 39 40 40 /** -
extensions/net.sf.basedb.mev/trunk/src/server/net/sf/basedb/mev/export/TdmsExporter.java
r1416 r1540 31 31 import net.sf.basedb.core.BioAssay; 32 32 import net.sf.basedb.core.BioAssaySet; 33 import net.sf.basedb.core.ClonableProperty; 33 34 import net.sf.basedb.core.DatabaseException; 34 35 import net.sf.basedb.core.DbControl; 35 36 import net.sf.basedb.core.DynamicResultIterator; 36 37 import net.sf.basedb.core.DynamicSpotQuery; 37 import net.sf.basedb.core.ExtendedProperties;38 import net.sf.basedb.core.ExtendedProperty;39 38 import net.sf.basedb.core.Formula; 40 39 import net.sf.basedb.core.IntensityTransform; 40 import net.sf.basedb.core.ReporterCloneTemplate; 41 41 import net.sf.basedb.core.Type; 42 42 import net.sf.basedb.core.query.SqlResult; … … 280 280 /** 281 281 Adds position, externalId, symbol, plus all admin-defined extended 282 properties as reporter fields. 282 properties as reporter fields. If the experiment has cloned reporter annotations 283 only fields that are present in the copy are exported. 283 284 */ 284 285 protected void addReporterFields() 285 286 { 286 287 addReporterField(ExportableFieldFactory.jep("pos()", "id", Type.INT, Formula.AverageMethod.NONE, null)); 287 addReporterField(ExportableFieldFactory.reporter("externalId", null, Type.STRING, null, null)); 288 addReporterField(ExportableFieldFactory.reporter("symbol", null, Type.STRING, null, null)); 289 for (ExtendedProperty ep : ExtendedProperties.getProperties("ReporterData")) 290 { 291 addReporterField(ExportableFieldFactory.reporter(ep, null, null)); 288 ReporterCloneTemplate template = getSource().getExperiment().getVirtualDb().getReporterCloneTemplate(); 289 290 if (template.hasClonableProperty(ClonableProperty.EXTERNAL_ID)) 291 { 292 addReporterField(ExportableFieldFactory.reporter(template.getClonableProperty(ClonableProperty.EXTERNAL_ID), null, null)); 293 } 294 295 if (template.hasClonableProperty(ClonableProperty.SYMBOL)) 296 { 297 addReporterField(ExportableFieldFactory.reporter(template.getClonableProperty(ClonableProperty.SYMBOL), null, null)); 298 } 299 300 List<ClonableProperty> properties = template == null ? 301 ClonableProperty.getAll() : template.getClonableProperties(); 302 for (ClonableProperty ep : properties) 303 { 304 if (ep.isExtendedProperty()) 305 { 306 addReporterField(ExportableFieldFactory.reporter(ep, null, null)); 307 } 292 308 } 293 309 }
Note: See TracChangeset
for help on using the changeset viewer.