File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ FROM mono:latest
55LABEL base_image="mono:latest"
66LABEL version="1"
77LABEL software="ThermoRawFileParser"
8- LABEL software.version="1.1.11 "
8+ LABEL software.version="1.2.0 "
99LABEL about.summary="A software to convert Thermo RAW files to mgf and mzML"
1010LABEL about.home="https://github.com/compomics/ThermoRawFileParser"
1111LABEL about.documentation="https://github.com/compomics/ThermoRawFileParser"
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ FROM mono:latest
55LABEL base_image="mono:latest"
66LABEL version="1"
77LABEL software="ThermoRawFileParser"
8- LABEL software.version="1.1.11 "
8+ LABEL software.version="1.2.0 "
99LABEL about.summary="A software to convert Thermo RAW files to mgf and mzML"
1010LABEL about.home="https://github.com/compomics/ThermoRawFileParser"
1111LABEL about.documentation="https://github.com/compomics/ThermoRawFileParser"
Original file line number Diff line number Diff 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]\n subcommand 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 }
Original file line number Diff line number Diff line change 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" ) ]
You can’t perform that action at this time.
0 commit comments