# bg noise SNR only differs from default config for some experiments
@@ -105,7 +113,7 @@ def exp_lab_pair(arg):
"""
Validation function for command line input
"""
exp,lab=arg.split(',')
exp,lab=arg.split(",")
msg="'{}' is not a valid {}. Possible values are: {}"
ifexpnotinEXPERIMENTS_BS1534+EXPERIMENTS_P800:
@@ -122,8 +130,21 @@ def exp_lab_pair(arg):
if__name__=="__main__":
parser=argparse.ArgumentParser()
parser.add_argument("exp_lab_pairs",type=exp_lab_pair,nargs="+",help="The combinations of experiment/lab-id that you want to generate, separated by whitespace. Experiment and lab id need to be separated by a comma.")
parser.add_argument("--no_parallel",action="store_true",help="If given, configs will not be run in parallel")
parser.add_argument("--create_cfg_only",action="store_true",help="If given, only create the configs and folder structure without processing items")
parser.add_argument(
"exp_lab_pairs",
type=exp_lab_pair,
nargs="+",
help="The combinations of experiment/lab-id that you want to generate, separated by whitespace. Experiment and lab id need to be separated by a comma.",
)
parser.add_argument(
"--no_parallel",
action="store_true",
help="If given, configs will not be run in parallel",
)
parser.add_argument(
"--create_cfg_only",
action="store_true",
help="If given, only create the configs and folder structure without processing items",