Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Antonio Politi
NPCMaturation
Commits
32b1f41f
Commit
32b1f41f
authored
Feb 07, 2017
by
Antonio Politi
Browse files
workflow fit fye
parent
b46b9304
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
matlabcode/FCS/master_workflow_fit_dye.m
0 → 100644
View file @
32b1f41f
function
master_workflow_fit_dye
% MASTER_WORKFLOW_FIT_DYE call workflow_fit_dye for several directorie
% specified in the script
%
% Antonio Politi, EMBL, January 2017
wd
=
'Z:\AntonioP_elltier1\CelllinesImaging\MitoSysPipelines'
;
cd
(
wd
);
if
~
exist
(
fullfile
(
wd
,
'ProcessingHelpFiles'
));
mkdir
(
fullfile
(
wd
,
'ProcessingHelpFiles'
));
end
if
~
exist
(
fullfile
(
wd
,
'ProcessingHelpFiles'
,
'alexaDirectories.mat'
))
[
indirCell
]
=
getAllFolders
(
wd
,
'Alexa'
);
save
(
fullfile
(
wd
,
'ProcessingHelpFiles'
,
'alexaDirectories.mat'
),
'indirCell'
);
else
load
(
fullfile
(
wd
,
'ProcessingHelpFiles'
,
'alexaDirectories.mat'
));
end
% output subdiretoy to store results
outputdir
=
'optimisedFit'
;
% range to fit kappa
kappaVal
=
[
2
:
0.1
:
7
]
'
;
for
idir
=
1
:
length
(
indirCell
)
indir
=
indirCell
{
idir
};
display
([
'master_workflow_fit_dye processing directory '
num2str
(
idir
)
' '
indir
])
workflow_fit_dye
(
indir
,
kappaVal
,
outputdir
,
'1c'
);
end
\ No newline at end of file
matlabcode/FCS/workflow_fit_dye.m
View file @
32b1f41f
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment