Functions | |
| def | convert |
| def | group |
| def | read_bb |
| def convert::convert | ( | bb_name, | ||
| output_file | ||||
| ) |
Definition at line 36 of file convert.py.
| def convert::group | ( | lst, | ||
| n | ||||
| ) |
group([0,3,4,10,2,3], 2) => iterator Group an iterable into an n-tuples iterable. Incomplete tuples are discarded e.g. >>> list(group(range(10), 3)) [(0, 1, 2), (3, 4, 5), (6, 7, 8)]
Definition at line 14 of file convert.py.
| def convert::read_bb | ( | bb_name | ) |
Definition at line 26 of file convert.py.