Changeset 1203
- Timestamp:
- Mar 11, 2010, 11:30:14 AM (14 years ago)
- Location:
- plugins/base2/net.sf.basedb.illumina/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/base2/net.sf.basedb.illumina/trunk/README_PluginDetails
r1197 r1203 5 5 There are many plug-ins in the Illumina plug-in package for BASE. This 6 6 file gives detailed information on some of the contributed plug-ins. 7 8 9 == Illumina expression background correction plug-in == 10 11 This plug-in will remove a per-slide global background from all 12 spots. The background is calculated from a set of negative control 13 spot on the array. See implementation details below for details. 14 15 === Parameters === 16 17 The only parameter to set is how background intensities should be 18 calculated. Allowed values are median or mean, i.e. the background is 19 either the median or the mean of the negative control spots on the 20 array. 21 22 === Implementation details === 23 24 Each assay is treated separately, i.e., no samples are combined 25 together. All calculations are made on the current bioassay data 26 implying that this plug-in should be used early in analysis and before 27 background spots are removed. 28 29 A spot is considered to be a negative control spot if it has an 30 ''Control group name'' exactly matching the string ''negative''. 31 7 32 8 33 … … 25 50 plug-in. 26 51 27 28 52 === Parameters === 29 53 … … 42 66 }}} 43 67 where `MAD` is the median absolute deviation. 44 45 68 46 69 === Implementation details === … … 70 93 value for arguments outside this range is set to -1 and 1, 71 94 respectively. 95 72 96 73 97 … … 100 124 ---------------------------------------------------------------------- 101 125 {{{ 102 Copyright (C) 2009 Jari Häkkinen126 Copyright (C) 2009, 2010 Jari Häkkinen 103 127 104 128 This file is part of Illumina plug-in package for BASE. -
plugins/base2/net.sf.basedb.illumina/trunk/src/net/sf/basedb/illumina/plugins/BackgroundCorrection.java
r1120 r1203 91 91 private static final About about = new AboutImpl 92 92 ( "Illumina expression background correction", 93 "This plug-in implements BeadStudio like background correction methods " + 94 "for Illumina expression data. Please send feedback to " + 93 "This plug-in will remove a per-slide global background from all " + 94 "spots. The background is calculated from a set of negative control " + 95 "spots on the array.\n\n" + 96 "Each assay is treated separately, i.e., no samples are combined " + 97 "together. All calculations are made on the current bioassay data " + 98 "implying that this plug-in should be used early in analysis and before " + 99 "background spots are removed.\n\n" + 100 "A spot is considered to be a negative control spot if it has an " + 101 "''Control group name'' exactly matching the string ''negative''.\n\n" + 102 "The only parameter to set is how background intensities should be " + 103 "calculated. Allowed values are median or mean, i.e. the background is " + 104 "either the median or the mean of the negative control spots on the " + 105 "array.\n\n" + 106 "Please send feedback to " + 95 107 Illumina.EMAIL, 96 108 Illumina.VERSION,
Note: See TracChangeset
for help on using the changeset viewer.