root/galaxy-central/tools/plotting/plot_filter.py @ 3

リビジョン 2, 0.5 KB (コミッタ: hatakeyama, 14 年 前)

import galaxy-central

行番号 
1
2def validate(incoming):
3    """Validator for the plotting program"""
4   
5    bins = incoming.get("bins","")
6    col  = incoming.get("col","")
7
8    if not bins or not col:
9        raise Exception, "You need to specify a number for bins and columns"
10
11    try:
12        bins = int(bins)
13        col  = int(col)
14    except:
15        raise Exception, "Parameters are not valid numbers, columns:%s, bins:%s" % (col, bins)
16
17    if not 1<bins<100:
18        raise Exception, "The number of bins %s must be a number between 1 and 100" % bins
19
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。