Skip to content

Commit 45ed3df

Browse files
committed
Docs and reporting
1 parent d2551b2 commit 45ed3df

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

MainClass.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,12 @@ private static void XicParametersParsing(string[] args)
8484
},
8585
{
8686
"o=|output=",
87-
"The output directory. If not specified, the output is written to the input directory",
87+
"The output directory. Specify this or an output file. Specifying neither writes to the input directory.",
8888
v => outputDirectory = v
8989
},
9090
{
9191
"b=|output_file",
92-
"The output file. Specify this or an output directory -o. Specifying neither writes to the input directory.",
92+
"The output file. Specify this or an output directory. Specifying neither writes to the input directory.",
9393
v => outputFile = v
9494
},
9595
{
@@ -353,7 +353,7 @@ private static void SpectrumQueryParametersParsing(string[] args)
353353
v => parameters.stdout = v != null
354354
},
355355
{
356-
"w|warningsAreErrors", "Return non-zero exit code for warnings; default only for errors",
356+
"w|warningsAreErrors", "Return non-zero exit code for warnings; default only for errors",
357357
v => parameters.Vigilant = v != null
358358
},
359359
{

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,8 @@ optional subcommands are xic|query (use [subcommand] -h for more info]):
120120
S3 bucket name
121121
```
122122

123+
Output file extension is determined by the used output format and (optional) gzip compression, for example, if format is MGF without gzip compression, the output file will receive `.mgf` extension, if format is mzML with gzip compression the output file will have `.mzML.gz` extension. All user input will be standardized to fulfill abovementioned requrements.
124+
123125
A (java) graphical user interface is also available [here](https://github.com/compomics/ThermoRawFileParserGUI) that enables the selection of an input RAW directory or one ore more RAW files.
124126

125127
### query subcommand
@@ -159,7 +161,6 @@ mono ThermoRawFileParser.exe xic -i=/home/user/data_input/raw_file.raw -j=/home/
159161

160162
```
161163
ThermoRawFileParser.exe xic --help
162-
usage is:
163164
-h, --help Prints out the options.
164165
-i, --input=VALUE The raw file input (Required). Specify this or an
165166
input directory -d
@@ -168,9 +169,13 @@ usage is:
168169
Specify this or an input file -i.
169170
-j, --json=VALUE The json input file (Required).
170171
-p, --print_example Show a json input file example.
171-
-o, --output=VALUE The output directory. If not specified, the output
172-
is written to the input directory
173-
-b, --base64 Encodes the content of the xic vectors as base 64
172+
-o, --output=VALUE The output directory. Specify this or an output
173+
file. Specifying neither writes to the input
174+
directory.
175+
-b, --output_file=VALUE The output file. Specify this or an output
176+
directory. Specifying neither writes to the
177+
input directory.
178+
-6, --base64 Encodes the content of the xic vectors as base 64
174179
encoded string.
175180
-s, --stdout Pipes the output into standard output. Logging is
176181
being turned off.

0 commit comments

Comments
 (0)