From 6c67612558f2db06bf2555ec8ef247b4b6ea880e Mon Sep 17 00:00:00 2001
From: Chirsophe <cbsmith2@uab.edu>
Date: Mon, 10 Mar 2025 21:20:48 -0500
Subject: [PATCH] Added README and added method to get reviewers initials.

---
 README.md            | 7 +++++++
 SaveTranscriptions.m | 5 ++++-
 2 files changed, 11 insertions(+), 1 deletion(-)
 create mode 100644 README.md

diff --git a/README.md b/README.md
new file mode 100644
index 0000000..6523545
--- /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 d17c126..8ab8108 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)
-- 
GitLab