Skip to content

Commit 669fe11

Browse files
authored
Merge pull request #20 from TASBE/tutorial.ltiberio.bug86
Tutorial.ltiberio.bug86
2 parents c7ca6ef + f43b7e7 commit 669fe11

7 files changed

Lines changed: 11 additions & 4 deletions

File tree

template_analysis/batch_template.m

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
AP=setPemDropThreshold(AP,5');
2020
% Add autofluorescence back in after removing for compensation?
2121
AP=setUseAutoFluorescence(AP,false');
22+
% By default, analysis tries to fit constitutive to transformed and non-transformed components
23+
% If your distribution is more complex or less complex, you can change the number of components
24+
% AP=setNumGaussianComponents(AP,3);
2225

2326
% Make a map of condition names to file sets
2427
stem1011 = '../example_assay/LacI-CAGop_';
@@ -47,7 +50,7 @@
4750
% Make output plots
4851
OS = OutputSettings('LacI-CAGop','','','plots');
4952
OS.FixedInputAxis = [1e4 1e10];
50-
plot_batch_histograms(results,sampleresults,OS,{'b','y','r'});
53+
plot_batch_histograms(results,sampleresults,OS,{'b','y','r'},CM);
5154

5255
save('LacI-CAGop-batch.mat','AP','bins','file_pairs','OS','results','sampleresults');
5356

template_analysis/plots/placeholder.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

template_analysis/plusminus_template.m

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
AP=setPemDropThreshold(AP,5');
2424
% Add autofluorescence back in after removing for compensation?
2525
AP=setUseAutoFluorescence(AP,false');
26+
% By default, analysis tries to fit constitutive to “transformed” and “non-transformed” components
27+
% If your distribution is more complex or less complex, you can change the number of components
28+
% AP=setNumGaussianComponents(AP,3);
2629

2730
% Make a map of the batches of plus/minus comparisons to test
2831
% This analysis supports two variables: a +/- variable and a "tuning" variable

template_analysis/transfercurve_template.m

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525
AP=setPemDropThreshold(AP,5');
2626
% Add autofluorescence back in after removing for compensation?
2727
AP=setUseAutoFluorescence(AP,false');
28+
% By default, analysis tries to fit constitutive to “transformed” and “non-transformed” components
29+
% If your distribution is more complex or less complex, you can change the number of components
30+
% AP=setNumGaussianComponents(AP,3);
2831

2932
% Make a map of induction levels to file sets
3033
stem1011 = '../example_assay/LacI-CAGop_';

template_colormodel/CM120312.mat

28 Bytes
Binary file not shown.

template_colormodel/make_color_model.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
channels{1} = Channel('FITC-A', 488, 515, 20);
2626
channels{1} = setPrintName(channels{1}, 'EYFP'); % Name to print on charts
2727
channels{1} = setLineSpec(channels{1}, 'y'); % Color for lines, when needed
28-
colorfiles{1} = [stem0312 'EYFP_P3.fcs'];
28+
colorfiles{1} = [stem0312 'EYFP_P3.fcs']; % If there is only one channel, the color file is optional
2929

3030
channels{2} = Channel('PE-Tx-Red-YG-A', 561, 610, 20);
3131
channels{2} = setPrintName(channels{2}, 'mKate');

template_colormodel/plots/placeholder.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)