Skip to content

Commit 89136bd

Browse files
increased version
1 parent d76fc1f commit 89136bd

4 files changed

Lines changed: 7 additions & 13 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM mono:latest
55
LABEL base_image="mono:latest"
66
LABEL version="1"
77
LABEL software="ThermoRawFileParser"
8-
LABEL software.version="1.1.11"
8+
LABEL software.version="1.2.0"
99
LABEL about.summary="A software to convert Thermo RAW files to mgf and mzML"
1010
LABEL about.home="https://github.com/compomics/ThermoRawFileParser"
1111
LABEL about.documentation="https://github.com/compomics/ThermoRawFileParser"

Dockerfile_basic

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM mono:latest
55
LABEL base_image="mono:latest"
66
LABEL version="1"
77
LABEL software="ThermoRawFileParser"
8-
LABEL software.version="1.1.11"
8+
LABEL software.version="1.2.0"
99
LABEL about.summary="A software to convert Thermo RAW files to mgf and mzML"
1010
LABEL about.home="https://github.com/compomics/ThermoRawFileParser"
1111
LABEL about.documentation="https://github.com/compomics/ThermoRawFileParser"

MainClass.cs

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,26 +21,20 @@ public static class MainClass
2121

2222
public static void Main(string[] args)
2323
{
24-
//Set Invariant culture as default for all further processing
24+
// Set Invariant culture as default for all further processing
2525
CultureInfo.DefaultThreadCurrentCulture = CultureInfo.InvariantCulture;
2626

27-
// introduce subcommand for xics and spectra query
27+
// Introduce subcommand for xics and spectra query
2828
if (args.Length > 0)
2929
{
3030
switch (args[0])
3131
{
3232
case "xic":
3333
XicParametersParsing(args.Skip(1).ToArray()); // skip first command
3434
break;
35-
36-
// if we want more subcommands, we can introduce here different cases
37-
// case "subdomain whatever": break;
38-
3935
case "query":
4036
SpectrumQueryParametersParsing(args.Skip(1).ToArray());
4137
break;
42-
43-
4438
default:
4539
RegularParametersParsing(args);
4640
break;
@@ -460,7 +454,7 @@ private static void RegularParametersParsing(string[] args)
460454
string helpmessage = String.Format("usage is {0} [subcommand] [options]\nsubcommand is xic|query\n",
461455
Assembly.GetExecutingAssembly().GetName().Name);
462456
ShowHelp(helpmessage +
463-
"(use -option=value for the optional arguments):", null,
457+
"(use -option=value for the optional arguments):", null,
464458
optionSet);
465459
return;
466460
}

Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("1.1.11.0")]
35-
[assembly: AssemblyFileVersion("1.1.11.0")]
34+
[assembly: AssemblyVersion("1.2.0.0")]
35+
[assembly: AssemblyFileVersion("1.2.0.0")]
3636

3737
[assembly: log4net.Config.XmlConfigurator(ConfigFile = "log4net.config")]

0 commit comments

Comments
 (0)