Skip to content

Commit c077f2d

Browse files
committed
Prepare for release
1 parent 70c3e97 commit c077f2d

2 files changed

Lines changed: 14 additions & 3 deletions

File tree

MainClass.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public static class MainClass
2020
private static readonly ILog Log =
2121
LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
2222

23-
public const string Version = "1.4.2";
23+
public const string Version = "1.4.3";
2424
public static void Main(string[] args)
2525
{
2626
// Set Invariant culture as default for all further processing

README.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,8 @@ Provide one of the following filters:
192192
* M/Z start and end
193193
* sequence and tolerance (tolerance unit optional, defaults to `ppm`)
194194

195-
optionally one can define starting and ending retention times and thermo filter string (defaults to `ms`)
195+
optionally one can define starting and ending retention times, provide filter string (defaults to `ms`, i.e. only MS1 scans), and a comment (free text) field; any valid filter string is supported,
196+
however only basic validation is performed, see #158 for details. Comment can contain any text and will be preserved in the output.
196197

197198
An example input JSON file:
198199

@@ -219,7 +220,17 @@ An example input JSON file:
219220
{
220221
"sequence":"TRANNEL",
221222
"tolerance":10
222-
}
223+
},
224+
{
225+
"mz":1014.5099732499732,
226+
"rt_start":14.0600881872,
227+
"rt_end":14.4167198290667,
228+
"tolerance":5,
229+
"tolerance_unit":"ppm",
230+
"comment":"Only ion trap scans"
231+
"scan_filter":"ITMS"
232+
}
233+
}
223234
]
224235
225236
```

0 commit comments

Comments
 (0)