2fe63b1cbab83c2b00555564ec3050033230b624,lib/prody/apps/apptools.py,DevelApp,addApplication,#DevelApp#Any#,198
Before Change
sub.add_argument("--quiet", help="suppress info messages to stderr",
action=Quiet, nargs=0)
sub.add_argument("--debug", help="print error traceback to screen",
action="store_true", dest="debug")
if self._example:
sub.add_argument("--examples", action=UsageExample, nargs=0,
help="show usage examples and exit")
After Change
for name, mutexc, required in self._groups:
if mutexc:
group = sub.add_argument_group(self._group_desc[name])
group = group.add_mutually_exclusive_group(required=required)
else:
group = sub.add_argument_group(self._group_desc[name])
for arg in self._group_args[name]:
group.add_argument(*arg, **self._getKwargs(arg))
In pattern: SUPERPATTERN
Frequency: 4
Non-data size: 3
Instances Project Name: prody/ProDy
Commit Name: 2fe63b1cbab83c2b00555564ec3050033230b624
Time: 2012-11-19
Author: lordnapi@gmail.com
File Name: lib/prody/apps/apptools.py
Class Name: DevelApp
Method Name: addApplication
Project Name: elbayadm/attn2d
Commit Name: a3e4c4c32a4ac3a15b1686163ce0fcf19dfea347
Time: 2018-06-15
Author: alexei.b@gmail.com
File Name: scripts/average_checkpoints.py
Class Name:
Method Name: main
Project Name: deeptools/HiCExplorer
Commit Name: 822ceb61b345b04d67495909ff5f4402f9bf19f4
Time: 2019-07-09
Author: wolffj@informatik.uni-freiburg.de
File Name: hicexplorer/chicAggregateStatistic.py
Class Name:
Method Name: parse_arguments