Changeset 698
- Timestamp:
- May 21, 2008, 11:57:29 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/base2/net.sf.basedb.illumina/trunk/src/net/sf/basedb/illumina/plugins/DetectionPValue.java
r689 r698 114 114 is added, or a corresponding list for 2-channel types must be 115 115 added. 116 117 Note, changing the string in the list will affect the behaviour118 of the plug-in and most certaintly unexpected results will be119 generated. As an example, changing 'Whole Genome BeadChip'120 will break the median method.121 116 */ 122 117 private static final 123 PluginParameter<String> arrayType 1Parameter = new PluginParameter<String>124 ( " method",125 " Correction method",126 " These methods are implemented:\n\n" +127 " Detection P-value calculation for IllumineWhole Genome BeadChips\n" +128 " Detection P-value calculation for Illumine Focused Arrays",118 PluginParameter<String> arrayTypeParameter = new PluginParameter<String> 119 ( "arraytype", 120 "Array type", 121 "Detection P-value calculation for array types:\n\n" + 122 "Illumina Whole Genome BeadChips\n" + 123 "Illumina Focused Arrays (not yet implemented)", 129 124 new StringParameterType(255, "Whole Genome BeadChip", true, 1, 0, 0, 130 125 Arrays.asList( … … 185 180 186 181 // Plug-in options 187 storeValue(job, request, arrayType 1Parameter);182 storeValue(job, request, arrayTypeParameter); 188 183 storeValue(job, request, outlierParameter); 189 184 … … 241 236 242 237 // background correction method 243 parameters.add(arrayType 1Parameter);238 parameters.add(arrayTypeParameter); 244 239 parameters.add(outlierParameter); 245 240 … … 382 377 try 383 378 { 384 String arrayType = (String)job.getValue(arrayType 1Parameter.getName());379 String arrayType = (String)job.getValue(arrayTypeParameter.getName()); 385 380 dc = sc.newDbControl(); 386 381 BioAssaySet source = getSourceBioAssaySet(dc);
Note: See TracChangeset
for help on using the changeset viewer.