Skip to content

Commit 8eaea41

Browse files
committed
Commit before snapshot generation
1 parent a7ff930 commit 8eaea41

File tree

70 files changed

+356
-496
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+356
-496
lines changed

Source/aktparawin_livecellminer.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%%
22
% LiveCellMiner.
3-
% Copyright (C) 2020 D. Moreno-Andres, A. Bhattacharyya, W. Antonin, J. Stegmaier
3+
% Copyright (C) 2021 D. Moreno-Andrés, A. Bhattacharyya, W. Antonin, J. Stegmaier
44
%
55
% Licensed under the Apache License, Version 2.0 (the "License");
66
% you may not use this file except in compliance with the License.

Source/callback_chromatindec_estimate_cell_cycle_stage.m

Lines changed: 0 additions & 3 deletions
This file was deleted.

Source/callback_livecellminer_add_combined_experiment_output_variable.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%%
22
% LiveCellMiner.
3-
% Copyright (C) 2020 D. Moreno-Andres, A. Bhattacharyya, W. Antonin, J. Stegmaier
3+
% Copyright (C) 2021 D. Moreno-Andrés, A. Bhattacharyya, W. Antonin, J. Stegmaier
44
%
55
% Licensed under the Apache License, Version 2.0 (the "License");
66
% you may not use this file except in compliance with the License.
@@ -72,9 +72,9 @@
7272
definput = {zgf_y_bez(experimentId, associatedExperiments(1)).name};
7373
combinedName = inputdlg(prompt,dlgtitle,[1 100],definput);
7474

75-
zgf_y_bez(outputVariableId, i).name = combinedName{1};
75+
zgf_y_bez(outputVariableId, i).name = combinedName{1}; %#ok<SAGROW>
7676
else
77-
zgf_y_bez(outputVariableId, i).name = zgf_y_bez(experimentId, associatedExperiments).name;
77+
zgf_y_bez(outputVariableId, i).name = zgf_y_bez(experimentId, associatedExperiments).name; %#ok<SAGROW>
7878
end
7979
end
8080

Source/callback_livecellminer_add_oligoid_output_variable.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%%
22
% LiveCellMiner.
3-
% Copyright (C) 2020 D. Moreno-Andres, A. Bhattacharyya, W. Antonin, J. Stegmaier
3+
% Copyright (C) 2021 D. Moreno-Andrés, A. Bhattacharyya, W. Antonin, J. Stegmaier
44
%
55
% Licensed under the Apache License, Version 2.0 (the "License");
66
% you may not use this file except in compliance with the License.
@@ -76,7 +76,7 @@
7676

7777
%% open the text file and process each line
7878
fileID = fopen(oligoIdTextFile);
79-
currentLine = fgetl(fileID); %% skip the specifiers
79+
fgetl(fileID); %% skip the specifiers
8080
currentLine = fgetl(fileID);
8181

8282
%% process all lines
@@ -101,7 +101,7 @@
101101
if (existingID == 0)
102102
existingID = length(oligoIDs)+1;
103103
oligoIDs{existingID} = currentOligoID;
104-
zgf_y_bez(newOutputVariable,existingID).name = currentOligoID;
104+
zgf_y_bez(newOutputVariable,existingID).name = currentOligoID; %#ok<SAGROW>
105105
end
106106

107107
%% find positionId in the output variable

Source/callback_livecellminer_batch_processing.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%%
22
% LiveCellMiner.
3-
% Copyright (C) 2020 D. Moreno-Andres, A. Bhattacharyya, W. Antonin, J. Stegmaier
3+
% Copyright (C) 2021 D. Moreno-Andrés, A. Bhattacharyya, W. Antonin, J. Stegmaier
44
%
55
% Licensed under the Apache License, Version 2.0 (the "License");
66
% you may not use this file except in compliance with the License.

Source/callback_livecellminer_candidate_list_generation.m

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%%
22
% LiveCellMiner.
3-
% Copyright (C) 2020 D. Moreno-Andres, A. Bhattacharyya, W. Antonin, J. Stegmaier
3+
% Copyright (C) 2021 D. Moreno-Andrés, A. Bhattacharyya, W. Antonin, J. Stegmaier
44
%
55
% Licensed under the Apache License, Version 2.0 (the "License");
66
% you may not use this file except in compliance with the License.
@@ -97,9 +97,9 @@
9797
currentMother(2:3) = [currentMother(3)-timeWindowMother+1, currentMother(3)];
9898
currentDaughter1(2:3) = [currentDaughter1(2), currentDaughter1(2) + timeWindowDaughter - 1];
9999
currentDaughter2(2:3) = [currentDaughter2(2), currentDaughter2(2) + timeWindowDaughter - 1];
100-
motherList = [motherList; currentMother];
101-
daughterList = [daughterList; currentDaughter1; currentDaughter2];
102-
motherDaughterList = [motherDaughterList; motherIndex, daughter1Index, daughter2Index];
100+
motherList = [motherList; currentMother]; %#ok<AGROW>
101+
daughterList = [daughterList; currentDaughter1; currentDaughter2]; %#ok<AGROW>
102+
motherDaughterList = [motherDaughterList; motherIndex, daughter1Index, daughter2Index]; %#ok<AGROW>
103103
end
104104
end
105105
end

Source/callback_livecellminer_cell_patch_extraction.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%%
22
% LiveCellMiner.
3-
% Copyright (C) 2020 D. Moreno-Andres, A. Bhattacharyya, W. Antonin, J. Stegmaier
3+
% Copyright (C) 2021 D. Moreno-Andrés, A. Bhattacharyya, W. Antonin, J. Stegmaier
44
%
55
% Licensed under the Apache License, Version 2.0 (the "License");
66
% you may not use this file except in compliance with the License.

Source/callback_livecellminer_clickEventHandler.m

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%%
22
% LiveCellMiner.
3-
% Copyright (C) 2020 D. Moreno-Andres, A. Bhattacharyya, W. Antonin, J. Stegmaier
3+
% Copyright (C) 2021 D. Moreno-Andrés, A. Bhattacharyya, W. Antonin, J. Stegmaier
44
%
55
% Licensed under the Apache License, Version 2.0 (the "License");
66
% you may not use this file except in compliance with the License.
@@ -25,14 +25,14 @@
2525
%%
2626

2727
function callback_livecellminer_clickEventHandler(~, ~)
28-
global parameters;
29-
global d_orgs;
28+
global parameters; %#ok<GVMIS>
29+
global d_orgs; %#ok<GVMIS>
3030

3131
%% get the modifier keys
3232
modifiers = get(gcf,'currentModifier'); %(Use an actual figure number if known)
33-
shiftPressed = ismember('shift',modifiers);
34-
ctrlPressed = ismember('control',modifiers);
35-
altPressed = ismember('alt',modifiers);
33+
shiftPressed = ismember('shift',modifiers); %#ok<NASGU>
34+
ctrlPressed = ismember('control',modifiers); %#ok<NASGU>
35+
altPressed = ismember('alt',modifiers); %#ok<NASGU>
3636

3737
%% identify the click position and the button
3838
buttonPressed = get(gcf, 'SelectionType');
@@ -71,7 +71,7 @@ function callback_livecellminer_clickEventHandler(~, ~)
7171
d_orgs(cellPair, 1:frameNumber, parameters.manualStageIndex) = 1;
7272
d_orgs(cellPair, (frameNumber+1):end, parameters.manualStageIndex) = 0;
7373
elseif (maxIndex == 1)
74-
alreadyLabeledIndices = find(squeeze(d_orgs(cellId, :, parameters.manualStageIndex) == 1));
74+
alreadyLabeledIndices = find(squeeze(d_orgs(cellId, :, parameters.manualStageIndex) == 1)); %#ok<MXFND>
7575
nextIndex = max(alreadyLabeledIndices)+1;
7676
d_orgs(cellPair, nextIndex:frameNumber, parameters.manualStageIndex) = 2;
7777
d_orgs(cellPair, (frameNumber+1):end, parameters.manualStageIndex) = 3;

Source/callback_livecellminer_combine_mother_daughter_tracks.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%%
22
% LiveCellMiner.
3-
% Copyright (C) 2020 D. Moreno-Andres, A. Bhattacharyya, W. Antonin, J. Stegmaier
3+
% Copyright (C) 2021 D. Moreno-Andrés, A. Bhattacharyya, W. Antonin, J. Stegmaier
44
%
55
% Licensed under the Apache License, Version 2.0 (the "License");
66
% you may not use this file except in compliance with the License.
@@ -132,7 +132,7 @@
132132
end
133133

134134
%% save the original Ids to retrieve the correct snippets later on
135-
originalIds = [originalIds; motherIndex, daughter1Index; motherIndex, daughter2Index];
135+
originalIds = [originalIds; motherIndex, daughter1Index; motherIndex, daughter2Index]; %#ok<AGROW>
136136

137137
%% increment counter by 2 as two lines are added (mother+daughter1 and mother+daughter2)
138138
currentIndex = currentIndex + 2;

Source/callback_livecellminer_compute_additional_single_features.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%%
22
% LiveCellMiner.
3-
% Copyright (C) 2020 D. Moreno-Andres, A. Bhattacharyya, W. Antonin, J. Stegmaier
3+
% Copyright (C) 2021 D. Moreno-Andrés, A. Bhattacharyya, W. Antonin, J. Stegmaier
44
%
55
% Licensed under the Apache License, Version 2.0 (the "License");
66
% you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)