Skip to content
Snippets Groups Projects
Commit 6c676125 authored by Christophe Bradley Smith's avatar Christophe Bradley Smith
Browse files

Added README and added method to get reviewers initials.

parent 3c93ffed
No related branches found
No related tags found
No related merge requests found
# SaveTranscription
SaveTranscription is a script that manages saving transcription files to make it easier to review in the future.
## Usage
Run the code in MATLAB and follow any prompts you may see. For ease of use adhere the to the convention that the file you load into the Command Window is the lss file and the file exported from the app is the ls file.
\ No newline at end of file
...@@ -17,8 +17,11 @@ remainingFiles = FindRemainingFiles(ls, lss, remainingFiles); ...@@ -17,8 +17,11 @@ remainingFiles = FindRemainingFiles(ls, lss, remainingFiles);
% Transfer labels % Transfer labels
lss = TransferLabels(ls, lss); lss = TransferLabels(ls, lss);
% Prompt user for Inits
reviewerInit = input('Please enter your initials: ', 's');
% Save latest transcription and progress % Save latest transcription and progress
uisave({'lss', 'remainingFiles'}, 'lss.mat') uisave({'lss', 'remainingFiles'}, ['lss_' reviewerInit '.mat'])
%% Functions %% Functions
function ls = CheckmiscLS(miscLS) function ls = CheckmiscLS(miscLS)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment