From e1ddd31bf8de6edd75b3c040b175dd419d694347 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 3 Apr 2020 13:11:38 +0200 Subject: [PATCH] jenkinsfile --- line_counter.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/line_counter.sh b/line_counter.sh index ec15576..8060b7b 100644 --- a/line_counter.sh +++ b/line_counter.sh @@ -1,6 +1,10 @@ wc -l wikiniews_results.tsv > liczba_linii.txt -awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < wikiniews_results.tsv > reference.trn +cut -f3 wikiniews_results.tsv > reference.txt +cut -f2 wikiniews_results.tsv > hypothesis.txt + +awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < reference.txt > reference.trn +awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < hypothesis.txt > hypothesis.trn + +sclite -f 0 -r reference.trn trn -h hypothesis.trn trn -e utf-8 -i rm -o all stdout -head -15 wikiniews_results.tsv -head -15 wikiniews_results.trn \ No newline at end of file