4f9bfef018058f217935dbe8cd2d1aebebe6e8e7,pyCellProfiler/cellprofiler/modules/measureobjectradialdistribution.py,MeasureObjectRadialDistribution,settings,#MeasureObjectRadialDistribution#,212
Before Change
result = [self.image_count, self.object_count, self.bin_counts_count]
for x in (self.images, self.objects, self.bin_counts):
for settings in x:
result += settings.settings()
return result
def visible_settings(self):
result = []
After Change
result = [self.image_count, self.object_count, self.bin_counts_count]
for x in (self.images, self.objects, self.bin_counts):
for settings in x:
temp = [s for s in settings.unpack_group()
if not (isinstance(s, cps.Divider) or isinstance(s, cps.RemoveSettingButton))]
result += temp
return result
def visible_settings(self):
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 4
Instances Project Name: CellProfiler/CellProfiler
Commit Name: 4f9bfef018058f217935dbe8cd2d1aebebe6e8e7
Time: 2009-11-20
Author: thouis@1fc53939-2000-0410-845c-e8453a809027
File Name: pyCellProfiler/cellprofiler/modules/measureobjectradialdistribution.py
Class Name: MeasureObjectRadialDistribution
Method Name: settings
Project Name: CellProfiler/CellProfiler
Commit Name: 0fd73bff90271636e803c339711deda82f779883
Time: 2009-10-19
Author: thouis@1fc53939-2000-0410-845c-e8453a809027
File Name: pyCellProfiler/cellprofiler/modules/measurecorrelation.py
Class Name: MeasureCorrelation
Method Name: settings
Project Name: CellProfiler/CellProfiler
Commit Name: 7ab14d8af6637faecd1f609d951cd3cb5304d6b7
Time: 2009-10-18
Author: thouis@1fc53939-2000-0410-845c-e8453a809027
File Name: pyCellProfiler/cellprofiler/modules/speedupcellprofiler.py
Class Name: SpeedUpCellProfiler
Method Name: settings