forked from idigbio-aocr/LabelExtraction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
submit-file.sh
executable file
·67 lines (59 loc) · 1.2 KB
/
submit-file.sh
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/env bash
SERVER="aocr1.acis.ufl.edu:8000"
usage()
{
cat << EOF
usage: $0 options
This script run the test1 or test2 over a machine.
OPTIONS:
-h Show this message
-f Filename
-i UUID or Filename (Optional if filename is <UUID>.type or <NAME>.type)
-n Your Name
-s A name for your software
-t Submission Type (one of: ocr, silver-parse, gold-parse)
EOF
}
FILE=
NAME=
SOFTWARE=
TYPE=
ID=
while getopts “hf:i:n:s:t:” OPTION
do
case $OPTION in
h)
usage
exit 1
;;
f)
FILE=$OPTARG
;;
n)
NAME=$OPTARG
;;
i)
ID=$OPTARG
;;
s)
SOFTWARE=$OPTARG
;;
t)
TYPE=$OPTARG
;;
?)
usage
exit
;;
esac
done
if [[ -z $FILE ]] || [[ -z $NAME ]] || [[ -z $SOFTWARE ]] || [[ -z $TYPE ]]
then
usage
exit 1
fi
if [[ -z $ID ]]
then
ID=`basename $FILE | cut -d. -f1`
fi
curl -F "user=$NAME" -F "software=$SOFTWARE" -"F file=@$FILE" http://$SERVER/scoring/$TYPE/$ID?json=1