diff --git a/count2.sh b/count2.sh index c7eb4d9..0e7c551 100755 --- a/count2.sh +++ b/count2.sh @@ -1,5 +1,6 @@ #!/bin/bash cat output.txt | awk '{print (($7 + $8 + $9)/($7 + $8 + $6))*100;}' > clear.txt +paste -d ' ' wikiniews_results.tsv clear.txt avg=$(numaverage clear.txt) srr_matching=$(grep -x "0" clear.txt | wc -l) diff --git a/jenkinsfile b/jenkinsfile index bc27266..25269ee 100644 --- a/jenkinsfile +++ b/jenkinsfile @@ -20,6 +20,7 @@ sh label: '', script: './count2.sh wikiniews_results.tsv' stage('Archive atifacts') { steps { archiveArtifacts 'clear.txt' +archiveArtifacts 'wikiniews_results.tsv' } } }