@@ -63,15 +63,15 @@ private static void XicParametersParsing(string[] args)
6363 "h|help" , "Prints out the options." ,
6464 h => parameters . help = h != null
6565 } ,
66- {
67- "i=|input=" , "The raw file input (Required). Specify this or an input directory -d" ,
68- v => singleFile = v
69- } ,
7066 {
7167 "d=|input_directory=" ,
7268 "The directory containing the raw files (Required). Specify this or an input file -i." ,
7369 v => fileDirectory = v
7470 } ,
71+ {
72+ "i=|input=" , "The raw file input (Required). Specify this or an input directory -d" ,
73+ v => singleFile = v
74+ } ,
7575 {
7676 "j=|json=" ,
7777 "The json input file (Required)." ,
@@ -83,12 +83,12 @@ private static void XicParametersParsing(string[] args)
8383 v => parameters . printJsonExample = v != null
8484 } ,
8585 {
86- "o=|output =" ,
86+ "o=|output_directory =" ,
8787 "The output directory. Specify this or an output file. Specifying neither writes to the input directory." ,
8888 v => outputDirectory = v
8989 } ,
9090 {
91- "b=|output_file " ,
91+ "b=|output= " ,
9292 "The output file. Specify this or an output directory. Specifying neither writes to the input directory." ,
9393 v => outputFile = v
9494 } ,
@@ -103,7 +103,7 @@ private static void XicParametersParsing(string[] args)
103103 v => parameters . stdout = v != null
104104 } ,
105105 {
106- "w|warningsAreErrors" , "Return non-zero exit code for warnings; default only for errors" ,
106+ "w|warningsAreErrors" , "Return non-zero exit code for warnings; default only for errors" ,
107107 v => parameters . Vigilant = v != null
108108 } ,
109109 {
0 commit comments