[693b90]: / ecg / examples / cinc17 / entry / next.sh

Download this file

31 lines (26 with data), 829 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#! /bin/bash
#
# file: next.sh
#
# This bash script analyzes the record named in its command-line
# argument ($1), and writes the answer to the file 'answers.txt'.
# This script is run once for each record in the Challenge test set.
#
# The program should print the record name, followed by a comma,
# followed by one of the following characters:
# N for normal rhythm
# A for atrial fibrillation
# O for other abnormal rhythms
# ~ for records too noisy to classify
#
# For example, if invoked as
# next.sh A00001
# it analyzes record A00001 and (assuming the recording is
# considered to be normal) writes "A00001,N" to answers.txt.
set -e
set -o pipefail
RECORD=$1
# || true so we can run locally
source myenv/bin/activate || true
printf "$RECORD," >> answers.txt
python evaler.py $RECORD >> answers.txt