annotate plot_filter.py @ 0:6ff47de059a0 draft

Imported from capsule None
author devteam
date Mon, 28 Jul 2014 11:56:34 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
6ff47de059a0 Imported from capsule None
devteam
parents:
diff changeset
1
6ff47de059a0 Imported from capsule None
devteam
parents:
diff changeset
2 def validate(incoming):
6ff47de059a0 Imported from capsule None
devteam
parents:
diff changeset
3 """Validator for the plotting program"""
6ff47de059a0 Imported from capsule None
devteam
parents:
diff changeset
4
6ff47de059a0 Imported from capsule None
devteam
parents:
diff changeset
5 bins = incoming.get("bins","")
6ff47de059a0 Imported from capsule None
devteam
parents:
diff changeset
6 col = incoming.get("col","")
6ff47de059a0 Imported from capsule None
devteam
parents:
diff changeset
7
6ff47de059a0 Imported from capsule None
devteam
parents:
diff changeset
8 if not bins or not col:
6ff47de059a0 Imported from capsule None
devteam
parents:
diff changeset
9 raise Exception, "You need to specify a number for bins and columns"
6ff47de059a0 Imported from capsule None
devteam
parents:
diff changeset
10
6ff47de059a0 Imported from capsule None
devteam
parents:
diff changeset
11 try:
6ff47de059a0 Imported from capsule None
devteam
parents:
diff changeset
12 bins = int(bins)
6ff47de059a0 Imported from capsule None
devteam
parents:
diff changeset
13 col = int(col)
6ff47de059a0 Imported from capsule None
devteam
parents:
diff changeset
14 except:
6ff47de059a0 Imported from capsule None
devteam
parents:
diff changeset
15 raise Exception, "Parameters are not valid numbers, columns:%s, bins:%s" % (col, bins)
6ff47de059a0 Imported from capsule None
devteam
parents:
diff changeset
16
6ff47de059a0 Imported from capsule None
devteam
parents:
diff changeset
17 if not 1<bins<100:
6ff47de059a0 Imported from capsule None
devteam
parents:
diff changeset
18 raise Exception, "The number of bins %s must be a number between 1 and 100" % bins
6ff47de059a0 Imported from capsule None
devteam
parents:
diff changeset
19