Skip to content

Commit a8fe948

Browse files
author
jakebeal
committed
finished adjusting for issue 429
1 parent 39e77e0 commit a8fe948

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

03_flow_MEFL/exercises.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
TASBEConfig.set('beads.rangeMin', 1); % Don't consider beads less than this 10^1 amount
8888
% Things we'll talk about in the next section...
8989
CM=set_translation_plot(CM, true);
90-
CM=set_translation_channel_min(CM,[2,2,2]);
90+
TASBEConfig.set('colortranslation.channelMinimum',[2,2,2]);
9191
% and build it!
9292
CM = resolve(CM); % plots1
9393

@@ -152,7 +152,7 @@
152152
fcs_scatter(DataFile('fcs', [colordata '2012-03-12_mkate_EBFP2_EYFP_P3.fcs']),'FITC-A','Pacific Blue-A',0,[0 0; 6 6],1); % Fig6
153153
% Notice that it's only nicely linear for the higher levels,
154154
% and that it's much smearier than our compensation controls
155-
% The first is what set_translation_channel_min is for
155+
% The first is what setting colortranslation.channelMinimum is for
156156

157157
% The way we partition is controlled by the colorpairfiles configuration:
158158
% colorpairfiles{1} = {channels{1}, channels{3}, channels{2}, [colordata '2012-03-12_mkate_EBFP2_EYFP_P3.fcs']};

template_colormodel/make_color_model.m

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,6 @@
5858
% sizebeadfile = '../example_controls/180614_PPS6K_A02.fcs';
5959

6060
CM = ColorModel(beadfile, blankfile, channels, colorfiles, colorpairfiles, sizebeadfile);
61-
CM=set_translation_plot(CM, true);
62-
CM=set_noise_plot(CM, true);
6361

6462
TASBEConfig.set('beads.beadModel','SpheroTech RCP-30-5A'); % Entry from BeadCatalog.xls matching your beads
6563
TASBEConfig.set('beads.beadBatch','Lot AA01, AA02, AA03, AA04, AB01, AB02, AC01, GAA01-R'); % Entry from BeadCatalog.xls containing your lot
@@ -74,7 +72,7 @@
7472
%TASBEConfig.set('beads.peakThreshold', 200);
7573
CM=set_ERF_channel_name(CM, 'FITC-A');
7674
% Ignore channel data for ith channel if below 10^[value(i)]
77-
CM=set_translation_channel_min(CM,[2,2,2]);
75+
TASBEConfig.set('colortranslation.channelMinimum',[2,2,2]);
7876

7977
% Configuration for size beads, if used
8078
% TASBEConfig.set('sizebeads.beadModel','SpheroTech PPS-6K'); % Entry from BeadCatalog.xls matching your beads

0 commit comments

Comments
 (0)