()
| 49 | |
| 50 | |
| 51 | def main(): |
| 52 | |
| 53 | parser = argparse.ArgumentParser(description="IDMapper") |
| 54 | |
| 55 | parser.add_argument("-id", |
| 56 | action="store", |
| 57 | type=str, |
| 58 | dest="id_", |
| 59 | metavar="id_file", |
| 60 | ) |
| 61 | |
| 62 | parser.add_argument("-in", |
| 63 | action="store", |
| 64 | type=str, |
| 65 | dest="in_", |
| 66 | metavar="input_file", |
| 67 | ) |
| 68 | |
| 69 | parser.add_argument("-out", |
| 70 | action="store", |
| 71 | type=str, |
| 72 | metavar="output_file", |
| 73 | ) |
| 74 | |
| 75 | parser.add_argument("-ini", |
| 76 | action="store", |
| 77 | type=str, |
| 78 | metavar="ini_file", |
| 79 | ) |
| 80 | |
| 81 | parser.add_argument("-dict_ini", |
| 82 | action="store", |
| 83 | type=str, |
| 84 | metavar="python_dict_ini_file", |
| 85 | ) |
| 86 | |
| 87 | parser.add_argument("-write_ini", |
| 88 | action="store", |
| 89 | type=str, |
| 90 | metavar="ini_file", |
| 91 | ) |
| 92 | |
| 93 | parser.add_argument("-write_dict_ini", |
| 94 | action="store", |
| 95 | type=str, |
| 96 | metavar="python_dict_ini_file", |
| 97 | ) |
| 98 | |
| 99 | parser.add_argument("-mz_tolerance", |
| 100 | action="store", |
| 101 | type=float) |
| 102 | |
| 103 | parser.add_argument("-rt_tolerance", |
| 104 | action="store", |
| 105 | type=float) |
| 106 | |
| 107 | parser.add_argument("-mz_measure", |
| 108 | action="store", |
no test coverage detected