Skip to content

Commit

Permalink
gnsf structure detection: use default transcribe settings if nothing …
Browse files Browse the repository at this point in the history
…specified
  • Loading branch information
FreyJo committed Jul 8, 2019
1 parent c57dcc7 commit 6e3229f
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,13 @@


%% load transcribe_opts
if ~exist('transcribe_opts', 'var')
disp('WARNING: GNSF structure detection called without transcribe_opts');
disp(' using default settings');
disp('');
transcribe_opts = struct;
end

if isfield(transcribe_opts, 'print_info')
print_info = transcribe_opts.print_info;
else
Expand Down

0 comments on commit 6e3229f

Please sign in to comment.