1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
<?xml version="1.0" encoding="ISO-8859-1"?>
<PARAMETERS version="1.3" xsi:noNamespaceSchemaLocation="http://open-ms.sourceforge.net/schemas/Param_1_3.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<NODE name="MapAlignerSpectrum" description="Corrects retention time distortions between maps by spectrum alignment.">
<ITEM name="version" value="1.9.0" type="string" description="Version of the tool that generated this parameters file." tags="advanced" />
<NODE name="1" description="Instance '1' section for 'MapAlignerSpectrum'">
<ITEMLIST name="in" type="string" description="Input files separated by blanks (all must have the same file type)" tags="input file,required" restrictions="*.mzML">
</ITEMLIST>
<ITEMLIST name="out" type="string" description="Output files separated by blanks" tags="output file" restrictions="*.mzML">
</ITEMLIST>
<ITEMLIST name="trafo_out" type="string" description="Transformation output files separated by blanks" tags="output file" restrictions="*.trafoXML">
</ITEMLIST>
<ITEM name="log" value="TOPP.log" type="string" description="Name of log file (created only when specified)" tags="advanced" />
<ITEM name="debug" value="0" type="int" description="Sets the debug level" tags="advanced" />
<ITEM name="threads" value="1" type="int" description="Sets the number of threads allowed to be used by the TOPP tool" />
<ITEM name="no_progress" value="false" type="string" description="Disables progress logging to command line" tags="advanced" restrictions="true,false" />
<ITEM name="test" value="false" type="string" description="Enables the test mode (needed for internal use only)" tags="advanced" restrictions="true,false" />
<NODE name="algorithm" description="Algorithm parameters section">
<ITEM name="gapcost" value="1" type="float" description=" This Parameter stands for the cost of opining a gap in the Alignment. A Gap means that one Spectrum can not be aligned directly to another Spectrum in the Map. This happens, when the similarity of both spectra a too low or even not present. Imagen as a insert or delete of the spectrum in the map. The gap is necessary for aligning, if we open a gap there is a possibility that an another spectrum can be correct aligned with a higher score as before without gap. But to open a gap is a negative event and has to be punished a bit, so such only in case it 's a good choice to open a gap, if the score is bad enough. The Parameter is to giving as a positive number, the implementation convert it to a negative number." restrictions="0:" />
<ITEM name="affinegapcost" value="0.5" type="float" description=" This Parameter controls the cost of extension a already open gap. The idea behind the affine gapcost lies under the assumption, that it is better to get a long distance of connected gaps than to have a structure gap match gap match. There for the punishment for the extension of a gap has to be lower than the normal gapcost. If the the result of the aligmnet show high compression, it is a good idea to lower the affine gapcost or the normal gapcost." restrictions="0:" />
<ITEM name="cutoff_score" value="0.7" type="float" description="The Parameter defines the threshold which filtered Spectra, these Spectra are high potential candidate for deciding the interval of a sub-alignment. Only those pair of Spectra are selected, which has a score higher or same of the threshold." tags="advanced" restrictions="0:1" />
<ITEM name="bucketsize" value="100" type="int" description="Defines the numbers of buckets. It is a quantize of the interval of those points, which defines the main alignment(match points). These points have to filtered, to reduce the amount of points for the calculating a smoother spline curve." tags="advanced" restrictions="1:" />
<ITEM name="anchorpoints" value="100" type="int" description="Defines the percent of numbers of match points which a selected from one bucket. The high score pairs are previously selected. The reduction of match points helps to get a smoother spline curve." tags="advanced" restrictions="1:100" />
<ITEM name="debug" value="false" type="string" description="active the debug mode, there a files written starting with debug prefix." tags="advanced" restrictions="true,false" />
<ITEM name="mismatchscore" value="-5" type="float" description="Defines the score of two Spectra if they have no similarity to each other. " tags="advanced" restrictions=":0" />
<ITEM name="scorefunction" value="SteinScottImproveScore" type="string" description=" The score function is the core of an alignment. The success of an alignment depends mostly of the elected score function. The score function return the similarity of two Spectrum back. The score influence defines later the way of possible traceback. There exist many way of algorithm to calculate the score." restrictions="SteinScottImproveScore,ZhangSimilarityScore" />
</NODE>
<NODE name="model" description="Options to control the modeling of retention time transformations from data">
<ITEM name="type" value="interpolated" type="string" description="Type of model" restrictions="linear,b_spline,interpolated" />
<NODE name="linear" description="Parameters for 'linear' model">
<ITEM name="symmetric_regression" value="false" type="string" description="Perform linear regression on 'y - x' vs. 'y + x', instead of on 'y' vs. 'x'." restrictions="true,false" />
</NODE>
<NODE name="b_spline" description="Parameters for 'b_spline' model">
<ITEM name="num_breakpoints" value="5" type="int" description="Number of breakpoints of the cubic spline in the smoothing step. More breakpoints mean less smoothing. Reduce this number if the transformation has an unexpected shape." restrictions="2:" />
<ITEM name="break_positions" value="uniform" type="string" description="How to distribute the breakpoints on the retention time scale. 'uniform': intervals of equal size; 'quantiles': equal number of data points per interval." restrictions="uniform,quantiles" />
</NODE>
<NODE name="interpolated" description="Parameters for 'interpolated' model">
<ITEM name="interpolation_type" value="cspline" type="string" description="Type of interpolation to apply." restrictions="linear,cspline,akima" />
</NODE>
</NODE>
</NODE>
</NODE>
</PARAMETERS>
|