pgb_liv\php_ms\experimental\MzMlMerge
Performs the merging of two or more MzML files into a single MzML file.
Note this class is built for speed and does not correctly validate all fields.
- Author: Andrew Collins
Synopsis
- // constants
- const CV_MINUTE = 'UO:0000031';
- // members
- private $timeOffset;
- private $indexOffset;
- private $idOffset;
- private array $spectrumIdRef = ;
- private array $dataFiles = ;
- private array $outputFiles = ;
- private array $fractionOffsets = ;
- private array $spectrumCount = ;
- private integer $paddingBetweenScans = 600;
- // methods
- public void setOutputPath()
- public void addDataFile()
- public void analyseData()
- public void getFractionOffsets()
- private void analyseFile()
- public void merge()
- private void writeHeader()
- private void writeFooter()
- private void writeSpectrum()
Violations
PHPMessDetector
Line | Rule | Message |
---|---|---|
128 - 188 | CyclomaticComplexity | The method analyseFile() has a Cyclomatic Complexity of 13. The configured cyclomatic complexity threshold is 10. |
128 - 188 | NPathComplexity | The method analyseFile() has an NPath complexity of 541. The configured NPath complexity threshold is 200. |
262 - 337 | CyclomaticComplexity | The method writeSpectrum() has a Cyclomatic Complexity of 12. The configured cyclomatic complexity threshold is 10. |
262 - 337 | NPathComplexity | The method writeSpectrum() has an NPath complexity of 401. The configured NPath complexity threshold is 200. |
Checkstyle
Line | Column | Severity | Message |
---|---|---|---|
170 | 17 | error | Opening parenthesis of a multi-line function call must be the last content on the line |
170 | 115 | error | Only one argument is allowed per line in a multi-line function call |
171 | 1 | error | Multi-line function call not indented correctly; expected 12 spaces but found 16 |
171 | 25 | error | Closing parenthesis of a multi-line function call must be on a line by itself |
208 | 24 | error | Opening parenthesis of a multi-line function call must be the last content on the line |
208 | 53 | error | Only one argument is allowed per line in a multi-line function call |
209 | 1 | error | Multi-line function call not indented correctly; expected 16 spaces but found 20 |
209 | 59 | error | Closing parenthesis of a multi-line function call must be on a line by itself |
316 | 17 | error | Opening parenthesis of a multi-line function call must be the last content on the line |
316 | 115 | error | Only one argument is allowed per line in a multi-line function call |
317 | 1 | error | Multi-line function call not indented correctly; expected 12 spaces but found 16 |
317 | 25 | error | Closing parenthesis of a multi-line function call must be on a line by itself |
Tasks
Line | Task |
---|---|
88 | Validate input and output |
195 | verify analysis phase run |
Constants
Name | Value |
---|---|
CV_MINUTE | 'UO:0000031' |
Members
private
- $dataFiles
- $fractionOffsets
- $idOffset
- $indexOffset
- $outputFiles
- $paddingBetweenScans
—
integer
The number of seconds that should be used as padding between scans. - $spectrumCount
- $spectrumIdRef
- $timeOffset
Methods
private
public
- addDataFile() — Adds a data file for processing.
- analyseData()
- getFractionOffsets()
- merge() — Merges the MzML files specified in the constructor into a single MzML file and writes the data to the output file specified in the constructor
- setOutputPath() — Sets the output path for a specified replicate
History
-
2019-04-02T11:54:45+01:00 (commit #c7d351b)
Author: detritus (detritus@blueyonder.co.uk) / Commiter: detritus (detritus@blueyonder.co.uk)
Code tidy
-
2017-10-25T14:16:01+01:00 (commit #d497193)
Author: detritus (detritus@blueyonder.co.uk) / Commiter: detritus (detritus@blueyonder.co.uk)
Minor code tidy
-
2017-10-24T16:05:10+01:00 (commit #b2240f0)
Author: detritus (detritus@blueyonder.co.uk) / Commiter: detritus (detritus@blueyonder.co.uk)
Tweaked PHPMD rules
-
2017-10-17T13:36:22+01:00 (commit #2610601)
Author: detritus (detritus@blueyonder.co.uk) / Commiter: detritus (detritus@blueyonder.co.uk)
Fixed Sonar issues
-
2017-09-27T11:40:12+01:00 (commit #a2a20e4)
Author: detritus (detritus@blueyonder.co.uk) / Commiter: detritus (detritus@blueyonder.co.uk)
Fixed Sonar issues Added support for replicates to merge MzML
-
2017-08-23T17:33:06+01:00 (commit #6cca126)
Author: Andrew Collins (detritus@blueyonder.co.uk) / Commiter: Andrew Collins (detritus@blueyonder.co.uk)
Updated MzMlMerge to support replicates
-
2017-05-31T14:38:50+01:00 (commit #68bb326)
Author: detritus (detritus@blueyonder.co.uk) / Commiter: detritus (detritus@blueyonder.co.uk)
Fixed MzML merge not updating precursor references Fixed FastaReader failing if protein did not have a description text after the identifier
-
2017-05-08T14:02:21+01:00 (commit #50eed03)
Author: detritus (detritus@blueyonder.co.uk) / Commiter: detritus (detritus@blueyonder.co.uk)
Added utility class to perform MzML file merging