From 3bfe5f9cc69b3c97aa6336b50611f168b24bd0da Mon Sep 17 00:00:00 2001
From: s416178 <marszc13@st.amu.edu.pl>
Date: Fri, 3 Apr 2020 13:28:28 +0200
Subject: [PATCH] Update task 3

---
 shell_script.sh | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/shell_script.sh b/shell_script.sh
index 23412d5..a76f452 100644
--- a/shell_script.sh
+++ b/shell_script.sh
@@ -9,10 +9,9 @@ awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < hypothesis.txt > hypothesis.tr
 awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < reference.txt > reference.trn
 
 sclite -f 0 -r reference.trn trn -h hypothesis.trn trn -e utf-8 -i rm -o all stdout | grep Scores > scores 
-awk 'BEGIN{FS=OFS="\t"}{ print $6, $7, $8, $9 }' < scores > step1
+awk -v OFS='\t' '{print $6, $7, $8, $9}' < scores > step1
 cat step1
 awk '{ print ($2 + $3 + $4)/($2 + $3 + $1) }' < step1 > wer.tsv
-cat wer.tsv
 
 awk 'BEGIN{FS=OFS="\t"}{ bad = bad + $1; all++ }END{ print bad/all }' < wer.tsv > wer.txt
 awk 'BEGIN{FS=OFS="\t"}{ if ( $1 == 0 ) good++; all++ }END{ print good/all }' < wer.tsv > srr.txt