Changeset 2176
- Timestamp:
- Dec 12, 2013, 11:39:47 AM (9 years ago)
- Location:
- plugins/base2/net.sf.basedb.normalizers/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/base2/net.sf.basedb.normalizers/trunk/INSTALL
r1454 r2176 5 5 Copyright (C) 2008, 2009 Jari Häkkinen, Martin Svensson 6 6 Copyright (C) 2010 Jari Häkkinen 7 Copyright (C) 2011 Nicklas Nordborg 8 Copyright (C) 2013 Jari Häkkinen 7 9 8 10 This file is part of the Normalizers plug-in package for BASE … … 32 34 == Requirements == 33 35 34 1. BASE 3. 0or later.36 1. BASE 3.2.4 or later. 35 37 36 38 == Installation/Upgrade == -
plugins/base2/net.sf.basedb.normalizers/trunk/META-INF/extensions.xml
r2165 r2176 1 1 <?xml version="1.0" encoding="UTF-8" ?> 2 <!-- 3 $Id$ 4 5 Copyright (C) 2011 Nicklas Nordborg 6 Copyright (C) 2013 Jari Häkkinen, Olle Månsson 7 8 This file is part of the Normalizers plug-in package for BASE 9 (net.sf.based.normalizers). The package is available at 10 http://baseplugins.thep.lu.se/ BASE main site is 11 http://base.thep.lu.se/ 12 13 This is free software; you can redistribute it and/or modify it 14 under the terms of the GNU General Public License as published by 15 the Free Software Foundation; either version 3 of the License, or 16 (at your option) any later version. 17 18 The software is distributed in the hope that it will be useful, 19 but WITHOUT ANY WARRANTY; without even the implied warranty of 20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 21 General Public License for more details. 22 23 You should have received a copy of the GNU General Public License 24 along with this program. If not, see <http://www.gnu.org/licenses/>. 25 --> 26 2 27 <extensions xmlns="http://base.thep.lu.se/extensions.xsd"> 3 28 <about> … … 10 35 used. 11 36 </description> 12 <version>1.1-beta </version>37 <version>1.1-beta2</version> 13 38 <min-base-version>3.2.4</min-base-version> 14 39 <copyright>BASE development team</copyright> … … 50 75 rows will contain mixed probes (also known as reporters or genes) 51 76 decided by their rank. For each row in the matrix, the expression 52 values are replaced with the row average value. Finally, each assay 77 values are replaced with the row average value (geometric or 78 arithmetic selectable by user). Finally, each assay is 53 79 is reordered into its original order to retain a standard 54 80 expression matrix where each row represents one probe. Assays are … … 58 84 bioassay set before running this plug-in. The bioassay set must not 59 85 contain any missing values. 60 61 Data stored in logarithmic format will be untransformed before averaging,62 and then transformed back to logarithmic format before results are stored.63 86 64 87 This plug-in supports 1-channel and 2-channel data. -
plugins/base2/net.sf.basedb.normalizers/trunk/build.xml
r2174 r2176 56 56 <!-- variables used --> 57 57 <property name="name" value="normalization-plugins" /> 58 <property name="version" value="1.1-beta " description="Version number of the package" />58 <property name="version" value="1.1-beta2" description="Version number of the package" /> 59 59 <property name="src" value="src" /> 60 60 <property name="build" value="build" description="Location of build class files"/> -
plugins/base2/net.sf.basedb.normalizers/trunk/src/net/sf/basedb/normalizers/Normalizations.java
r1454 r2176 36 36 The current version of this package. 37 37 */ 38 public static final String VERSION = "1.1-beta ";38 public static final String VERSION = "1.1-beta2"; 39 39 40 40 }
Note: See TracChangeset
for help on using the changeset viewer.