Skip to content

Commit 228224b

Browse files
rollback of software CV term because of downstream issues
1 parent 0ecc093 commit 228224b

File tree

4 files changed

+126
-100
lines changed

4 files changed

+126
-100
lines changed

MainClass.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public static class MainClass
1919
private static readonly ILog Log =
2020
LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
2121

22-
public const string Version = "1.4.0";
22+
public const string Version = "1.3.4";
2323

2424
public static void Main(string[] args)
2525
{
@@ -409,7 +409,7 @@ private static void RegularParametersParsing(string[] args)
409409
{
410410
"p:|noPeakPicking:",
411411
"Don't use the peak picking provided by the native Thermo library. By default peak picking is enabled. Optional argument allows disabling peak peaking only for selected MS levels and should be a comma-separated list of integers (1,2,3) and/or intervals (1-3), open-end intervals (1-) are allowed",
412-
v => parseInput.NoPeakPicking = v is null? ParseInput.AllLevels: ParseMsLevel(v)
412+
v => parseInput.NoPeakPicking = v is null ? ParseInput.AllLevels : ParseMsLevel(v)
413413
},
414414
{
415415
"z|noZlibCompression",

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.3.3.0")]
35-
[assembly: AssemblyFileVersion("1.3.3.0")]
34+
[assembly: AssemblyVersion("1.3.4.0")]
35+
[assembly: AssemblyFileVersion("1.3.4.0")]
3636

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

Writer/MgfSpectrumWriter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ public override void Write(IRawDataPlus rawFile, int firstScanNumber, int lastSc
139139
// Write the filter string
140140
//Writer.WriteLine($"SCANEVENT={scanEvent.ToString()}");
141141

142-
if (!ParseInput.NoPeakPicking.Contains((int)scanFilter.MSOrder))
142+
if (!ParseInput.NoPeakPicking.Contains((int) scanFilter.MSOrder))
143143
{
144144
// Check if the scan has a centroid stream
145145
if (scan.HasCentroidStream)

0 commit comments

Comments
 (0)