We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29370bd commit 8eb3b34Copy full SHA for 8eb3b34
RawFileParser.cs
@@ -119,9 +119,9 @@ private static void ProcessFile(ParseInput parseInput)
119
var lastScanNumber = rawFile.RunHeaderEx.LastSpectrum;
120
121
// Check for empty file
122
- if (lastScanNumber == 0)
+ if (lastScanNumber < 1)
123
{
124
- throw new RawFileParserException("Empty RAW file, no output is produced");
+ throw new RawFileParserException("Empty RAW file, no output will be produced");
125
}
126
127
if (parseInput.MetadataFormat != MetadataFormat.NONE)
0 commit comments