diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..652354548b70928f603acdf7a7b727d58571f440 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# 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 diff --git a/SaveTranscriptions.m b/SaveTranscriptions.m index d17c1267550c56d13c96029431e60cc6901a1d4a..8ab81089d591aa0e5354de2d35b400030cfa6b13 100644 --- a/SaveTranscriptions.m +++ b/SaveTranscriptions.m @@ -17,8 +17,11 @@ remainingFiles = FindRemainingFiles(ls, lss, remainingFiles); % Transfer labels lss = TransferLabels(ls, lss); +% Prompt user for Inits +reviewerInit = input('Please enter your initials: ', 's'); + % Save latest transcription and progress -uisave({'lss', 'remainingFiles'}, 'lss.mat') +uisave({'lss', 'remainingFiles'}, ['lss_' reviewerInit '.mat']) %% Functions function ls = CheckmiscLS(miscLS)