Skip to content

Commit

Permalink
v4.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
shengqh committed Oct 19, 2017
1 parent d2796da commit 954cbc7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
11 changes: 7 additions & 4 deletions Program.cs
Expand Up @@ -39,7 +39,8 @@ private static void Main(string[] args)
new MascotGenericFormatShiftPrecursorProcessorCommand(),
new BuildSummaryResultParserCommand(),
new DeuteriumCalculatorUI.Command(),
new ChromatographProfileBuilderUI.Command()
new ChromatographProfileBuilderUI.Command(),
new MultipleRaw2MgfCommand()
}.ToDictionary(m => m.Name.ToLower());

SoftwareInfo.SoftwareName = RcpaToolsAssembly.Name;
Expand All @@ -63,13 +64,12 @@ private static void Main(string[] args)
}
else
{
Console.WriteLine("Current system = " + SystemUtils.CurrentSystem.ToString());

if (!SystemUtils.IsLinux)
{
AttachConsole(AttachParentProcess);
}

Console.WriteLine("Current system = " + SystemUtils.CurrentSystem.ToString());
ICommandLineCommand command;
if (args.Length == 0)
{
Expand All @@ -84,7 +84,10 @@ private static void Main(string[] args)
}
else
{
Console.WriteLine("Error command " + args[0] + ".");
if (!args[0].Equals("-h") && !args[0].Equals("--help"))
{
Console.WriteLine("Error command " + args[0] + ".");
}
ShowUsage(commands);
}
}
Expand Down
2 changes: 1 addition & 1 deletion Properties/RcpaToolsAssembly.cs
Expand Up @@ -16,6 +16,6 @@ static class RcpaToolsAssembly
internal const string Author = "Quanhu SHENG";
internal const string Company = "RCPA/CQS";
internal const string Copyright = "Copyright (C) 2006-2017 " + Company;
internal const string Version = "4.1.7";
internal const string Version = "4.1.9";
internal const string InformationalVersion = Version;
}
4 changes: 4 additions & 0 deletions README.md
Expand Up @@ -68,6 +68,10 @@ The c# source code is also provided at following repositories. Visual Studio 201

<a name="Changes"/>
#Changes
- 2017/10/19 Version 4.1.9
1. Enhanced: Support command line for TurboRaw2MGF.
- 2017/09/28 Version 4.1.8
1. Bugfix: SILAC quantification throw exception.
- 2017/09/28 Version 4.1.7
1. Enhanced: Output 4 digits for ms1 retention time.
- 2017/08/08 Version 4.1.6
Expand Down

0 comments on commit 954cbc7

Please sign in to comment.