@@ -45,31 +45,32 @@ def main():
45
45
parser .add_argument ("-sep" ,
46
46
type = str ,
47
47
default = "\s+|\t +" ,
48
- help = "Separator for input file." )
48
+ help = """ Separator for input file. Default="\s+| \\ t+"."" " )
49
49
parser .add_argument ("-clf" ,
50
50
type = str ,
51
51
default = "xgb" ,
52
- help = "Classification algorithm type." )
52
+ help = "Classification algorithm type. Default=xgb. " )
53
53
parser .add_argument ("-sampling" ,
54
54
type = str ,
55
55
default = "classic_ADASYN" ,
56
- help = "Resampling method type." )
56
+ help = "Resampling method type. Default=classic_ADASYN. " )
57
57
parser .add_argument ("-output" ,
58
58
type = str ,
59
59
default = "B3clf_output.xlsx" ,
60
- help = "Name of output file, CSV or XLSX format." )
60
+ help = "Name of output file, CSV or XLSX format. Default=B3clf_output.xlsx. " )
61
61
parser .add_argument ("-verbose" ,
62
62
type = int ,
63
63
default = 1 ,
64
- help = "If verbose is not zero, B3clf will print out the predictions." )
64
+ help = "If verbose is not zero, B3clf will print out the predictions. "
65
+ "Default=1." )
65
66
parser .add_argument ("-keep_features" ,
66
67
type = str ,
67
68
default = "no" ,
68
- help = "To keep computed feature file or not. " )
69
+ help = """ To keep computed feature file ("yes") or not ("no"). Default=no."" " )
69
70
parser .add_argument ("-keep_sdf" ,
70
71
type = str ,
71
72
default = "no" ,
72
- help = "To keep computed molecular geometries or not. " )
73
+ help = """ To keep computed molecular geometries ("yes") or not ("no"). Default=no."" " )
73
74
args = parser .parse_args ()
74
75
75
76
_ = b3clf (mol_in = args .mol ,
0 commit comments