comparison macros.xml @ 1:079ae9aa6ed5 draft

planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/mfassignr commit 87bb82e07c57753a71d9ce4efc757c4367200d15
author recetox
date Thu, 15 Aug 2024 12:01:23 +0000
parents c12a49b04ca0
children e4ddc3bc7e15
comparison
equal deleted inserted replaced
0:c12a49b04ca0 1:079ae9aa6ed5
13 </xml> 13 </xml>
14 14
15 <xml name="creator"> 15 <xml name="creator">
16 <creator> 16 <creator>
17 <person 17 <person
18 givenName="Kristina"
19 familyName="Gomoryova"
20 url="https://github.com/KristinaGomoryova"
21 identifier="0000-0003-4407-3917" />
22 <person
23 givenName="Helge"
24 familyName="Hecht"
25 url="https://github.com/hechth"
26 identifier="0000-0001-6744-996X" />
27 <person
18 givenName="Zargham" 28 givenName="Zargham"
19 familyName="Ahmad" 29 familyName="Ahmad"
20 url="https://github.com/zargham-ahmad" 30 url="https://github.com/zargham-ahmad"
21 identifier="0000-0002-6096-224X" /> 31 identifier="0000-0002-6096-224X" />
22 <organization 32 <organization
23 url="https://www.recetox.muni.cz/" 33 url="https://www.recetox.muni.cz/"
24 email="GalaxyToolsDevelopmentandDeployment@space.muni.cz" 34 email="GalaxyToolsDevelopmentandDeployment@space.muni.cz"
25 name="RECETOX MUNI" /> 35 name="RECETOX MUNI" />
26 </creator> 36 </creator>
37 </xml>
38
39 <xml name="kmdnoise_param">
40 <param name="input_file" type="data" format="tabular" label="Input data"
41 help= "Input data frame, first column is mass, second column is intensity"/>
42 <param name="upper_y" type="float" label="upper limit for the y intercept" value="0.2"
43 help= "The upper y-intercept value to isolate noise peaks in the equation for the KMD plot: y = 0.001123*x + b. Default value is set to 0.2, so that it does not interact with any potentially double-charged peaks."/>
44 <param name="lower_y" type="float" label="lower limit for the y intercept" value="0.05"
45 help="The lower y-intercept value to isolate noise peaks in the equation for the KMD plot: y = 0.001123*x + b. Default value is set to 0.05 to ensure no analyte peaks are incorporated into the noise estimation."/>
46 <param name="upper_x" optional="true" type="float" label="upper limit for the x intercept"
47 help="If not set, it defaults to maximum mass in the mass spectrum."/>
48 <param name="lower_x" optional="true" type="float" label="lower limit for the x intercept"
49 help="If not set, it defaults to minimum mass in the mass spectrum."/>
50 </xml>
51
52 <xml name="histnoise_param">
53 <param name="input_file" type="data" format="tabular" label="Input data"
54 help= "Input data frame, first column is mass, second column is intensity"/>
55 <param name="SN" type="float" label="signal-to-noise threshold" value="0"
56 help= "A numeric value for situations where a predefined noise value is desired, default is 0"/>
57 <param name="bin" type="float" label="bindwidth of the histogram" value="0.01"
58 help= "A numeric value determining the binwidth of the histogram, default is 0.01"/>
59 </xml>
60
61 <xml name="noise_threshold_params">
62 <param name="sn_ratio" type="float" label="SN ratio" value="6"
63 help= "Noise multiplier. Recommended value is 6."/>
64 <param name="kmdn" type="float" label="Estimated noise" value="0"
65 help= "Estimated noise, either from the KMDNoise or HistNoise function."/>
66 </xml>
67
68 <xml name="snplot_param">
69 <param name="input_file" type="data" format="tabular" label="Input data"
70 help= "Input data frame, first column is mass, second column is intensity"/>
71 <param name="cut" type="float" label="cut"
72 help= "A numeric value of the intensity cut value being investigated"/>
73 <param name="mass" type="float" label="mass"
74 help= "A numeric value setting a centerpoint to look at the mass spectrum"/>
75 <param name="window_x" type="float" label="window.x" value="0.5"
76 help= "A numeric value setting the +/- range around the mass centerpoint, default is 0.5"/>
77 <param name="window_y" type="float" label="window.y" value="10"
78 help= "A numeric value setting the y axis value for the plot, determined by multiplying the cut by this value"/>
79 </xml>
80
81 <xml name="ionmode_param">
82 <param name="ionmode" type="select" display="radio" label="Ion mode" help= "The ionization mode.">
83 <option value="neg" >negative</option>
84 <option value="pos" selected="true">positive</option>
85 </param>
86 </xml>
87
88 <xml name="mfassign_param">
89 <param name="ppm_err" type="integer" label="ppm_err"
90 help= "Error tolerance (ppm) for formula assignment" value="3"/>
91 <expand macro="ionmode_param" />
92 <expand macro="noise_threshold_params" />
93 <param name="lowMW" type="float" label="Lower limit of molecular mass to be assigned" value="100"
94 help= "Lower limit of molecular mass to be assigned."/>
95 <param name="highMW" type="float" label="Upper limit of molecular mass to be assigned" value="1000"
96 help= "Upper limit of molecular mass to be assigned."/>
97 </xml>
98
99 <xml name="recal_param">
100 <param name="input_file" type="data" format="tabular" label="Input data (Output from MFAssign)"
101 help= "Input data frame, the output from MFAssign or MFAssignCHO"/>
102 <param name="series" type="data" format="tabular" label="Calibration series (Output from RecalList)"
103 help= "Calibration series (Output from RecalList). At maximum the first 10 rows are used."/>
104 <param name="peaks" type="data" format="tabular" label="Peaks dataframe (Mono from IsoFiltR)"
105 help= "Peaks data frame, the Mono output from IsoFiltR"/>
106 <param name="isopeaks" type="data" format="tabular" label="Isopeaks dataframe (Iso from IsoFiltR)"
107 optional="true" help= "Isopeaks data frame, the Mono output from IsoFiltR"/>
108 <expand macro="ionmode_param" />
109 <expand macro="noise_threshold_params" />
110 <param name="mzRange" type="float" label="Mass windows used for the segmented recalibration" value="30"
111 help= "Mass windows used for the segmented recalibration"/>
112 <param name="step_O" type="float" label="Number of oxygen steps for formula extension" value="3"
113 help= "Number of oxygen steps for formula extension"/>
114 <param name="step_H2" type="float" label="Number of H2 steps for formula extension" value="5"
115 help= "Number of H2 steps for formula extension"/>
116 <param name="CalPeak" type="float" label="Maximum allowed recalibrant peaks per mzRange defined segment" value="150" help= "Maximum allowed recalibrant peaks per mzRange defined segment"/>
117
27 </xml> 118 </xml>
28 119
29 <xml name="isofiltr_param"> 120 <xml name="isofiltr_param">
30 <param name="peaks" type="data" format="tabular" label="Input Peak Data" 121 <param name="peaks" type="data" format="tabular" label="Input Peak Data"
31 help="The input data frame containing abundance and peak mass."/> 122 help="The input data frame containing abundance and peak mass."/>