pgb_liv\php_ms\Utility\Misc\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
- // 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()
Coverage
Methods | 0% | 0 / 9 |
Lines | 0% | 0 / 184 |
Violations
PHPMessDetector
Line | Rule | Message |
---|---|---|
126 - 185 | CyclomaticComplexity | The method analyseFile() has a Cyclomatic Complexity of 13. The configured cyclomatic complexity threshold is 10. |
258 - 332 | CyclomaticComplexity | The method writeSpectrum() has a Cyclomatic Complexity of 12. The configured cyclomatic complexity threshold is 10. |
Checkstyle
Line | Column | Severity | Message |
---|---|---|---|
167 | 17 | error | Opening parenthesis of a multi-line function call must be the last content on the line |
167 | 115 | error | Only one argument is allowed per line in a multi-line function call |
167 | 121 | warning | Line exceeds 120 characters; contains 121 characters |
167 | 121 | error | Whitespace found at end of line |
168 | 1 | error | Multi-line function call not indented correctly; expected 12 spaces but found 16 |
168 | 25 | error | Closing parenthesis of a multi-line function call must be on a line by itself |
205 | 24 | error | Opening parenthesis of a multi-line function call must be the last content on the line |
205 | 53 | error | Only one argument is allowed per line in a multi-line function call |
205 | 84 | error | Whitespace found at end of line |
206 | 1 | error | Multi-line function call not indented correctly; expected 16 spaces but found 20 |
206 | 59 | error | Closing parenthesis of a multi-line function call must be on a line by itself |
311 | 17 | error | Opening parenthesis of a multi-line function call must be the last content on the line |
311 | 115 | error | Only one argument is allowed per line in a multi-line function call |
311 | 121 | warning | Line exceeds 120 characters; contains 121 characters |
311 | 121 | error | Whitespace found at end of line |
312 | 1 | error | Multi-line function call not indented correctly; expected 12 spaces but found 16 |
312 | 25 | error | Closing parenthesis of a multi-line function call must be on a line by itself |
Tasks
Line | Task |
---|---|
86 | Validate input and output |
192 | verify analysis phase run |
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
-
2017-10-17T12:36:22+00:00 (commit #2610601)
Author: detritus (detritus@blueyonder.co.uk) / Commiter: detritus (detritus@blueyonder.co.uk)
Fixed Sonar issues
-
2017-09-27T10:40:12+00: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-23T16:33:06+00:00 (commit #6cca126)
Author: Andrew Collins (detritus@blueyonder.co.uk) / Commiter: Andrew Collins (detritus@blueyonder.co.uk)
Updated MzMlMerge to support replicates
-
2017-05-31T13:38:50+00: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-08T13:02:21+00:00 (commit #50eed03)
Author: detritus (detritus@blueyonder.co.uk) / Commiter: detritus (detritus@blueyonder.co.uk)
Added utility class to perform MzML file merging