2010/7/16 Peter <biopython at maubp.freeserve.co.uk>: > We'll need to tweak input vs raw_input (Python 3 vs Python 2). Me thinks this is probably enough? if sys.version_info[0] == 3: def raw_input(): return input()