Skip to content

Commit d991483

Browse files
author
coverney
authored
Merge branch 'master' into coverney.excel
2 parents 1f475d5 + da7c718 commit d991483

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

template_analysis/plusminus_template.m

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,20 @@
2828
% If your distribution is more complex or less complex, you can change the number of components
2929
% AP=setNumGaussianComponents(AP,3);
3030

31-
% Make a map of the batches of plus/minus comparisons to test
31+
% Make a map of the batches comparisons to test, add in a list of batch
32+
% names (e.g., {'+', '-'}) to signify possible sets.
3233
% This analysis supports two variables: a +/- variable and a "tuning" variable
3334
stem1011 = '../example_assay/LacI-CAGop_';
3435
batch_description = {...
35-
{'Lows';'BaseDox';
36+
{'Lows';'BaseDox';{'+', '-', 'control'};
3637
% First set is the matching "plus" conditions
37-
{0.1, {[stem1011 'B9_P3.fcs']}; % Replicates go here, e.g., {[rep1], [rep2], [rep3]}
38-
0.2, {[stem1011 'B10_P3.fcs']}};
39-
% Second set is the matching "minus" conditions
38+
{0.1, {[stem1011 'C3_P3.fcs']}; % Replicates go here, e.g., {[rep1], [rep2], [rep3]}
39+
0.2, {[stem1011 'C4_P3.fcs']}};
4040
{0.1, {[stem1011 'B3_P3.fcs']};
4141
0.2, {[stem1011 'B4_P3.fcs']}}};
42-
{'Highs';'BaseDox';
42+
{0.1, {[stem1011 'B9_P3.fcs']};
43+
0.2, {[stem1011 'B10_P3.fcs']}};
44+
{'Highs';'BaseDox';{'+', '-'};
4345
{10, {[stem1011 'C3_P3.fcs']};
4446
20, {[stem1011 'C4_P3.fcs']}};
4547
{10, {[stem1011 'B9_P3.fcs']};
@@ -55,7 +57,7 @@
5557
TASBEConfig.set('OutputSettings.StemName',batch_description{i}{1});
5658
TASBEConfig.set('OutputSettings.DeviceName',device_name);
5759
TASBEConfig.set('OutputSettings.PlotTickMarks',1);
58-
plot_plusminus_comparison(results{i})
60+
plot_plusminus_comparison(results{i}, batch_description{i}{3});
5961
end
6062

6163
save('-V7','LacI-CAGop-plus-minus.mat','batch_description','AP','results');

template_analysis/transfercurve_template.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959

6060
% Plot how the constitutive fluorescence was distributed
6161
TASBEConfig.set('OutputSettings.DeviceName',device_name);
62+
TASBEConfig.set('histogram.displayLegend',false);
6263
plot_bin_statistics(sampleresults);
6364

6465
% Plot the relation between inducer and input fluorescence

0 commit comments

Comments
 (0)