Skip to content

Commit

Permalink
Added all tsne options
Browse files Browse the repository at this point in the history
  • Loading branch information
asom committed Oct 31, 2019
1 parent 8d0789c commit 2c7814d
Show file tree
Hide file tree
Showing 13 changed files with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions IMACytE.m
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ function Compute_map_Callback(hObject, eventdata, handles)
used_data=n_data(:,markerlist);

%% Select the tsne version you want to use
tsne_choice=listdlg('PromptString','Select tSNE method to utilize:','ListString',{'tSNE', 'Texture A-tSNE'},'SelectionMode','single');
tsne_choice=listdlg('PromptString','Select tSNE method to utilize:','ListString',{'tSNE', 'A-tSNE','Texture A-tSNE'},'SelectionMode','single');
% tsne_choice=1;
f = waitbar(0,'Please wait...');
switch tsne_choice
Expand All @@ -175,11 +175,17 @@ function Compute_map_Callback(hObject, eventdata, handles)
rethrow(ME)
end
case 2
try
tsne_map=fast_atsne(my_normalize(used_data,'column'));
catch ME
rethrow(ME)
end
case 3
try
tsne_map=my_texture_tsne(my_normalize(used_data,'column'));
catch ME
rethrow(ME)
end
end
end
waitbar(1,f,'Finished');

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 2c7814d

Please sign in to comment.