Skip to content

Commit 22cfd67

Browse files
committed
Convert to 2.0.0-dev
1 parent 791bd0e commit 22cfd67

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

MainClass.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ private static void RegularParametersParsing(string[] args)
629629
{
630630
var helpMessage =
631631
$"Usage is {Assembly.GetExecutingAssembly().GetName().Name}.exe [subcommand] [options]\noptional subcommands are xic|query (use [subcommand] -h for more info]):";
632-
ShowHelp(helpMessage, new OptionException(), optionSet);
632+
ShowHelp(helpMessage, null, optionSet);
633633
return;
634634
}
635635

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Supported formats:
77
* mzML and indexed mzML
88
* Apache Parquet
99

10-
Version before 1.5.0 require Mono to run on Linux and Mac.
10+
Version before 2.0.0 require Mono to run on Linux and Mac.
1111

1212
As of version 1.2.0, 2 subcommands are available (shoutout to the [eubic 2020 developers meeting](https://eubic-ms.org/events/2020-developers-meeting/), see [usage](#usage) for examples):
1313
* query: returns one or more spectra in JSON PROXI by scan number(s)
@@ -64,17 +64,17 @@ When running framework-based version use `dotnet ThermoRawFileParser.dll` instea
6464
Usage is ThermoRawFileParser.exe [subcommand] [options]
6565
optional subcommands are xic|query (use [subcommand] -h for more info]):
6666
-h, --help Prints out the options.
67-
--version Prints out the version of the executable.
67+
-v, --version Prints out the version of the executable.
6868
-i, --input=VALUE The raw file input (Required). Specify this or an
6969
input directory -d.
7070
-d, --input_directory=VALUE
7171
The directory containing the raw files (Required).
7272
Specify this or an input raw file -i.
73-
-b, --output=VALUE The output file. Specify this or an output
73+
-b, --output=VALUE The output file. Specify this or an output
7474
directory -o. Specifying neither writes to the
7575
input directory.
7676
-o, --output_directory=VALUE
77-
The output directory. Specify this or an output
77+
The output directory. Specify this or an output
7878
file -b. Specifying neither writes to the input
7979
directory.
8080
-s, --stdout Write to standard output. Cannot be combined with

ThermoRawFileParser.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<StartupObject>ThermoRawFileParser.MainClass</StartupObject>
99
<PlatformTarget>x64</PlatformTarget>
1010
<Platforms>x64</Platforms>
11-
<Version>1.5.0</Version>
11+
<Version>2.0.0-dev</Version>
1212
<Title>$(AssemblyName)</Title>
1313
<Company>Compomics</Company>
1414
<Copyright>2017 - 2025</Copyright>

0 commit comments

Comments
 (0)