annotate HR2.xml @ 3:78afd7f439f3 draft default tip

master branch Updating with tag :CI_COMMIT_TAG - - Fxx
author fgiacomoni
date Wed, 15 Feb 2023 15:57:49 +0000
parents 23970530a518
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
1 <tool id="hr2" name="HR2 formula" version="1.2.0">
0
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
2 <description>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
3 find a chemical formula from a accurate mass
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
4 </description>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
5 <requirements>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
6 <requirement type="package" version="2.161">perl-data-dumper</requirement>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
7 <requirement type="package" version="1.97">perl-text-csv</requirement>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
8 <requirement type="package" version="2.97">perl-html-template</requirement>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
9 <requirement type="package" version="1.04">hr2</requirement>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
10 </requirements>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
11 <stdio>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
12 <exit_code range="1" level="fatal" />
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
13 </stdio>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
14
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
15
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
16 <command><![CDATA[
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
17 perl $__tool_directory__/hr2_manager.pl
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
18 #if str($input_type.choice) == "YES":
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
19 -input "${input_type.input}"
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
20 #if str($input_type.header.header_choice) == "yes":
2
23970530a518 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 1
diff changeset
21 -nbHeader "${$input_type.header.nbHeader}"
0
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
22 #end if
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
23 -colId "${input_type.colId}" -colmass "${input_type.colmass}"
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
24 #else:
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
25 -masse "${input_type.masse}"
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
26 #end if
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
27
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
28 -tolerance "$tol"
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
29 -mode "${mode_condition.mode}"
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
30 #if str($mode_condition.mode) == "neutral":
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
31 -charge "0"
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
32 #else:
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
33 -charge "${mode_condition.qtCharge}"
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
34 #end if
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
35
1
e2cbcf6fa22e master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 0
diff changeset
36 -regleOr "$regleOr" -atomes_basic "$atomes_basic" -atomes_sup "$atomes_sup"
3
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
37
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
38 #if str($max_custom_atom_condition.max_custom_atom_choice) == "YES":
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
39 -C12_max_value "${max_custom_atom_condition.C12_max_value}"
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
40 -C13_max_value "${max_custom_atom_condition.C13_max_value}"
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
41 -H_max_value "${max_custom_atom_condition.H_max_value}"
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
42 -N_max_value "${max_custom_atom_condition.N_max_value}"
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
43 -O_max_value "${max_custom_atom_condition.O_max_value}"
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
44 -P_max_value "${max_custom_atom_condition.P_max_value}"
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
45 -S_max_value "${max_custom_atom_condition.S_max_value}"
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
46 -F_max_value "${max_custom_atom_condition.F_max_value}"
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
47 -Cl_max_value "${max_custom_atom_condition.Cl_max_value}"
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
48 -K_max_value "${max_custom_atom_condition.K_max_value}"
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
49 -Br_max_value "${max_custom_atom_condition.Br_max_value}"
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
50 -Na_max_value "${max_custom_atom_condition.Na_max_value}"
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
51
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
52 #end if
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
53
0
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
54 -output1 "$variableMetadata" -outputView "$hr2ResView"
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
55 -verbose "$verbose"
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
56 ]]></command>
3
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
57 <!-- -customAtomValues "-C 0-${max_custom_atom_condition.C12_max_value} -1 0-${max_custom_atom_condition.C13_max_value} -H 0-${max_custom_atom_condition.H_max_value} -N 0-${max_custom_atom_condition.N_max_value} -O 0-${max_custom_atom_condition.O_max_value} -P 0-${max_custom_atom_condition.P_max_value} -S 0-${max_custom_atom_condition.S_max_value} -F 0-${max_custom_atom_condition.F_max_value} -L 0-${max_custom_atom_condition.Cl_max_value} -K 0-${max_custom_atom_condition.K_max_value} -B 0-${max_custom_atom_condition.Br_max_value} -A 0-${max_custom_atom_condition.Na_max_value}" -->
0
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
58
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
59 <inputs>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
60 <conditional name="input_type">
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
61 <param name="choice" type="select" display="radio" label="Would you use a file " help="if 'NO' is selected then one or more mass(es) must be entered manually">
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
62 <option value="YES">YES</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
63 <option value="NO">NO</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
64 </param>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
65 <when value="YES">
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
66 <param name="input" label="File of masses" format="tabular" type="data" />
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
67 <conditional name="header">
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
68 <param name="header_choice" type="boolean" checked="true" truevalue="yes" falsevalue="no" label="Do you have a header?" help="if 'YES' is selected then enter your number of header lines" />
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
69 <when value="yes">
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
70 <param name="nbHeader" label="Number of header lines" type="integer" value="1" min="1" size="10" help="number of lines not containing masses"/>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
71 </when>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
72 <when value="no"/>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
73 </conditional>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
74 <param name="colId" label="Column of Id" type="data_column" data_ref="input" accept_default="true" />
2
23970530a518 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 1
diff changeset
75 <param name="colmass" label="Column of masses (mz)" type="data_column" data_ref="input" accept_default="true" />
0
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
76 </when>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
77 <when value="NO">
2
23970530a518 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 1
diff changeset
78 <param name="masse" size="20" type="text" label="Mass (mz) to submit" help="For a masses list, writes : m1 m2 m3. Your values ​​must be separated by spaces. You should use dot (.) like decimal separator"/>
0
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
79 </when>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
80 </conditional>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
81
2
23970530a518 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 1
diff changeset
82 <param name="tol" label="Delta of mass " type="float" value="1.0" min="0" max="9.0" help="Tolerance should be between 0 and 9.0 Da. Default value is 1.0 mmu"/>
0
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
83 <conditional name="mode_condition">
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
84 <param name="mode" label="Molecular Species Searched" type="select" display="radio" help="Or ionization type of the molecule list. Use neutral only if only if the masses correspond to molecules and not to ions : query doesn't be a [M+H] or [M-H] ion">
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
85 <option value="positive">positive</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
86 <option value="negative">negative</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
87 <option value="neutral" selected="true">neutral</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
88 </param>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
89 <when value="neutral"/>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
90 <when value="positive">
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
91 <param name="qtCharge" label="Molecule initial charge" type="select" help="Use 'neutral' if the molecule is not charged">
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
92 <option value="1">1</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
93 <option value="2">2</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
94 <option value="3">3</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
95 </param>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
96 </when>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
97 <when value="negative">
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
98 <param name="qtCharge" label="Molecule initial charge" type="select" help="Use 'neutral' if the molecule is not charged">
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
99 <option value="1">1</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
100 <option value="2">2</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
101 <option value="3">3</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
102 </param>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
103 </when>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
104 </conditional>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
105 <param name="atomes_basic" label="Please unselect basic atom(s) from following list you want to exclude" type="select" display="checkboxes" multiple="True" help="Unselect one or more basic atoms to exclude them from the generated formula proposition">
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
106 <option value="C" selected="true">C</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
107 <option value="N" selected="true">N</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
108 <option value="O" selected="true">O</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
109 <option value="H" selected="true">H</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
110 <option value="P" selected="true">P</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
111 </param>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
112 <param name="regleOr" label="Use all 7 golden rules OR only the first 3 golden rules?" type="select" display="radio" help="Use 'only first 3 rules' if you want more empirical formulas">
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
113 <option value="YES">only first 3 rules</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
114 <option value="NO" selected="true">all 7 rules</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
115 </param>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
116 <param name="atomes_sup" label="Add some atom(s) from following list if needed" type="select" display="checkboxes" multiple="True" help="C, H, N, O and P are available in basic atom section">
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
117 <option value="S">S</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
118 <option value="F">F</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
119 <option value="L">Cl</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
120 <option value="K">K</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
121 <option value="B">Br</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
122 <option value="A">Na</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
123 <option value="1">13C</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
124 </param>
3
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
125 <conditional name="max_custom_atom_condition">
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
126 <param name="max_custom_atom_choice" label="Do you want to manage custom maximum number atoms?" type="select" display="radio" help="To work only with [13]C isotopes for example, use YES - ()Don't forget to select wanted atoms below)">
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
127 <option value="NO" selected="true">NO</option>
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
128 <option value="YES">YES</option>
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
129 </param>
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
130 <when value="YES">
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
131 <param name="C12_max_value" label="[12]C atom max number " type="integer" value="0" min="0" max="100" help="The maximum of [12]C you need to (should be between 0 and 100 atoms per structure). Default value is 0"/>
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
132 <param name="C13_max_value" label="[13]C atom max number " type="integer" value="40" min="0" max="100" help="The maximum of [13]C you need to (should be between 0 and 100 atoms per structure). Default value is 40"/>
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
133 <param name="H_max_value" label="[1]H atom max number " type="integer" value="200" min="0" max="200" help="The maximum of H you need to (should be between 0 and 200 atoms per structure). Default value is 200"/>
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
134 <param name="N_max_value" label="[15]N atom max number " type="integer" value="40" min="0" max="100" help="The maximum of N you need to (should be between 0 and 100 atoms per structure). Default value is 40"/>
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
135 <param name="O_max_value" label="[16]O atom max number " type="integer" value="70" min="0" max="100" help="The maximum of O you need to (should be between 0 and 100 atoms per structure). Default value is 70"/>
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
136 <param name="P_max_value" label="[31]P atom max number " type="integer" value="10" min="0" max="100" help="The maximum of P you need to (should be between 0 and 100 atoms per structure). Default value is 10"/>
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
137 <param name="S_max_value" label="[32]S atom max number " type="integer" value="10" min="0" max="100" help="The maximum of S you need to (should be between 0 and 100 atoms per structure). Default value is 10"/>
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
138 <param name="F_max_value" label="[19]F atom max number " type="integer" value="10" min="0" max="100" help="The maximum of F you need to (should be between 0 and 100 atoms per structure). Default value is 10"/>
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
139 <param name="Cl_max_value" label="[35]Cl atom max number " type="integer" value="10" min="0" max="100" help="The maximum of Cl you need to (should be between 0 and 100 atoms per structure). Default value is 10"/>
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
140 <param name="K_max_value" label="[13]K atom max number " type="integer" value="10" min="0" max="100" help="The maximum of K you need to (should be between 0 and 100 atoms per structure). Default value is 10"/>
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
141 <param name="Br_max_value" label="[80]Br atom max number " type="integer" value="10" min="0" max="100" help="The maximum of Br you need to (should be between 0 and 100 atoms per structure). Default value is 10"/>
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
142 <param name="Na_max_value" label="[23]Na atom max number " type="integer" value="10" min="0" max="100" help="The maximum of Na you need to (should be between 0 and 40 atoms per structure). Default value is 10"/>
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
143 </when>
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
144 <when value="NO">
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
145 </when>
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
146 </conditional>
0
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
147 <param name="verbose" type="select" label="Verbose level" display="radio" help="">
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
148 <option value="1" selected="true">Low</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
149 <option value="3" >High</option>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
150 </param>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
151 </inputs>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
152 <outputs>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
153 <data name="variableMetadata" format="tabular" label="${tool.name}_TSV"/>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
154 <data name="hr2ResView" format="html" label="${tool.name}_VIEW"/>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
155 </outputs>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
156
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
157 <tests>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
158 <test>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
159 <param name="choice" value="NO"/>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
160 <param name="masse" value="175.125"/>
3
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
161 <param name="tol" value="1.0"/>
0
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
162 <param name="mode" value="negative"/>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
163 <param name="qtCharge" value="1"/>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
164 <param name="atomes_basic" value="C,O,N,H"/>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
165 <param name="regleOr" value="NO"/>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
166 <param name="verbose" value="3"/>
1
e2cbcf6fa22e master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 0
diff changeset
167 <output name="variableMetadata" file="out1.tabular"/>
0
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
168 </test>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
169 <test>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
170 <param name="choice" value="NO"/>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
171 <param name="masse" value="88.052"/>
3
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
172 <param name="tol" value="1.0"/>
0
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
173 <param name="mode" value="neutral"/>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
174 <param name="qtCharge" value="1"/>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
175 <param name="atomes_basic" value="C,O,H"/>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
176 <param name="regleOr" value="NO"/>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
177 <param name="verbose" value="3"/>
1
e2cbcf6fa22e master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 0
diff changeset
178 <output name="variableMetadata" file="out2.tabular"/>
e2cbcf6fa22e master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 0
diff changeset
179 </test>
e2cbcf6fa22e master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 0
diff changeset
180 <test>
e2cbcf6fa22e master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 0
diff changeset
181 <param name="choice" value="NO"/>
e2cbcf6fa22e master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 0
diff changeset
182 <param name="masse" value="427.019898895"/>
3
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
183 <param name="tol" value="1.0"/>
1
e2cbcf6fa22e master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 0
diff changeset
184 <param name="mode" value="neutral"/>
e2cbcf6fa22e master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 0
diff changeset
185 <param name="qtCharge" value="1"/>
e2cbcf6fa22e master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 0
diff changeset
186 <param name="atomes_basic" value="C,O,N,H,P"/>
e2cbcf6fa22e master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 0
diff changeset
187 <param name="atomes_sup" value="S"/>
3
78afd7f439f3 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 2
diff changeset
188 <param name="S_max_value" value="40"/>
1
e2cbcf6fa22e master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 0
diff changeset
189 <param name="regleOr" value="NO"/>
e2cbcf6fa22e master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 0
diff changeset
190 <param name="verbose" value="3"/>
e2cbcf6fa22e master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 0
diff changeset
191 <output name="variableMetadata" file="out3.tabular"/>
0
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
192 </test>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
193 </tests>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
194
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
195 <help><![CDATA[
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
196
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
197 .. class:: infomark
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
198
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
199 **Authors**
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
200 | HR2 original program and its documentation are Copyright (c) 1992-2005 by Joerg Hau under GNU General Public License ("GPL")
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
201
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
202 .. class:: infomark
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
203
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
204 **Wrapping**
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
205 | Marion Landi - FLAME ; PFEM ; INRA ; MetaboHUB (for xml interface and Perl wrapper)
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
206 | Franck Giacomoni - PFEM ; INRA ; MetaboHUB (for xml interface, conda dependancies and Perl wrapper)
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
207
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
208 ---------------------------------------------------
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
209
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
210 .. class:: infomark
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
211
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
212 **Please cite** If you use this tool, please cite
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
213 | Tobias Kind and Oliver Fiehn. (2007). "Seven Golden Rules for heuristic filtering of molecular formulas obtained by accurate mass spectrometry." BMC Bioinformatics p8:105 http://www.ncbi.nlm.nih.gov/pubmed/17389044
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
214 | HR2 original program and its documentation are under GNU General Public License ("GPL") : GPL is a"contaminating" license. http://fiehnlab.ucdavis.edu/projects/Seven_Golden_Rules/Software
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
215
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
216
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
217 ---------------------------------------------------
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
218
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
219 ==============
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
220 HR2 formula
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
221 ==============
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
222
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
223 -----------
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
224 Description
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
225 -----------
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
226
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
227 | Find a formula for the masses
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
228 | only molecules with carbon (C) will be search
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
229
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
230
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
231 -----------------
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
232 Workflow position
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
233 -----------------
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
234
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
235
2
23970530a518 master branch Updating with tag :CI_COMMIT_TAG - - Fxx
fgiacomoni
parents: 1
diff changeset
236 .. image:: hr2.png
0
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
237 :width: 800
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
238
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
239
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
240
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
241
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
242 -----------
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
243 Input files
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
244 -----------
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
245
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
246 +-------------------------+-----------+
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
247 | Parameter : num + label | Format |
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
248 +=========================+===========+
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
249 | 1 : variableMetadata | tabular |
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
250 +-------------------------+-----------+
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
251
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
252 File variableMetadata must have at least the 2 following columns :
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
253 * Id : column to identify masses in the csv/tsv input file
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
254 * Masses : column with all the masses in the csv/tsv input file
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
255
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
256
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
257 ----------
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
258 Parameters
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
259 ----------
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
260
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
261 Would you use a file
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
262 | Choose whether the masses are in a file or entered manually
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
263 | YES (default) : parameters **File of masses ; Column of Id ; Number of header ; Column of masses** are visible
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
264 | NO : parameter **Mass of the molecule** is visible
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
265 |
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
266
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
267
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
268 If 'use file'='YES'
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
269
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
270 Column of Id
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
271 | Specify the column number for the id in the csv/tsv input file
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
272 |
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
273
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
274 Number of header lines
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
275 | Number of lines not containing values
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
276 |
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
277
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
278 Column of masses
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
279 | Specify the column number for the mass in the csv/tsv input file
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
280 |
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
281
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
282 If 'use file'='NO'
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
283
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
284 Mass (MZ) to submit
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
285 | Specify a list of mass to request
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
286 | one or more mass(es) entered manually
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
287 | For a masses list, writes : m1 m2 m3
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
288 | You must separate yours values with space
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
289 | dot (.) is for float number
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
290 |
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
291
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
292 In all cases :
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
293
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
294 Delta
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
295 | Tolerance of the gap in the mass
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
296 | It should be between 0 and 9.0 mmu
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
297
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
298 Ionization
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
299 | Type of ionization of the molecule : *positif, negatif, neutral*
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
300 | Use neutral if query doesn't be a [M+H] or [M-H] ion
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
301 | HR2 knows only the weight of uncharged molecules
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
302 | so we made ​​a correction to the masses of the value of a proton before the search
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
303 | if the masses are those from a spectrometry in positive or negatif mode.
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
304 | **neutral** : will do a search on the mass unchanged.
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
305
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
306 Initial charge
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
307 | Use 0 if the molecule is not basically charged
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
308
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
309 Exclude some basic atom(s)
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
310 List of atoms that can be exclude to the molecule : *C, N, O, H, P*
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
311
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
312 Golden rules
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
313 | There are 7 golden rules
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
314 | Some are too stringent, especially for small molecules
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
315 | Use 'yes' if you want more empirical formulas
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
316
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
317 Add some optionnal atom(s)
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
318 List of atoms that can be searched in addition to the molecule : *S, F, Cl, K, Br, Na, 13C*
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
319
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
320 ------------
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
321 Output files
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
322 ------------
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
323
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
324 Two types of files
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
325 | hr2_VIEW.HTML : for viewing result via HTML.
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
326 | hr2_TSV.tabular : for linking with others modules.
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
327 | an excel-like output will be available.
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
328
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
329 ---------------------------------------------------
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
330
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
331
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
332 ---------------
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
333 Working example
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
334 ---------------
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
335
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
336
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
337 .. class:: warningmark
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
338
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
339 Refer to the corresponding "W4M HowTo" in http://workflow4metabolomics.org/howto section
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
340 | Format Data For Postprocessing
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
341 | Perform LCMS Annotations
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
342
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
343 .. class:: warningmark
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
344
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
345 And their "W4M courses 2018":
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
346 | Using Galaxy4Metabolomics - W4M table format for Galaxy
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
347 | Les banques d'annotation - Annotation
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
348
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
349 ]]></help>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
350 <citations>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
351 <citation type="doi">10.1186/1471-2105-8-105</citation>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
352 </citations>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
353 </tool>
86296c048e46 Init repository for [hr2]
fgiacomoni
parents:
diff changeset
354