You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+29-2Lines changed: 29 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# ThermoRawFileParser
2
2
3
3
Wrapper around the .net (C#) ThermoFisher ThermoRawFileReader library for running on Linux with mono (works on Windows too). It takes a thermo RAW file as input and outputs a metadata file and the spectra in 3 possible formats
4
-
* MGF: only MS2 spectra
4
+
* MGF: only MS2 and MS3 spectra
5
5
* mzML and indexed mzML: both MS1 and MS2 spectra
6
6
* Apache Parquet: under development
7
7
@@ -20,6 +20,7 @@ For running on Windows, omit `mono`. The optional parameters only work in the -o
20
20
ThermoRawFileParser.exe --help
21
21
usage is (use -option=value for the optional arguments):
22
22
-h, --help Prints out the options.
23
+
--version Prints out the library version.
23
24
-i, --input=VALUE The raw file input.
24
25
-o, --output=VALUE The output directory. Specify this or an output
25
26
file.
@@ -62,7 +63,33 @@ If you want to build the project using nuget, put the ThermoFisher.CommonCore.Ra
62
63
63
64
## Logging
64
65
65
-
The default log file is `ThermoRawFileParser.log`. The log settings can be changed in `log4net.config`.
66
+
By default the parser only logs to console. To enable logging to file, uncomment the file appender in the `log4net.config` file.
0 commit comments