Package obitools :: Package tagmatcher :: Module options
[hide private]
[frames] | no frames]

Source Code for Module obitools.tagmatcher.options

1 -def addTagMatcherErrorOptions(optionManager):
2 optionManager.add_option('-E','--emax', 3 action='store', 4 metavar="<##>", 5 type="int",dest="emax", 6 default=None, 7 help="keep match with no more than emax errors") 8 9 optionManager.add_option('-e','--emin', 10 action='store', 11 metavar="<##>", 12 type="int",dest="emin", 13 default=0, 14 help="keep match with at least emin errors")
15