annotate calibrator.xml @ 3:c5cd3420fed6 draft default tip

planemo upload for repository https://github.com/brsynth/icfree-ml commit 8dde46bddbe8df819c48e7e392893c34b22aa6dd
author tduigou
date Fri, 20 Dec 2024 09:32:09 +0000
parents ac296a9146df
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
1 <tool id="icfree_calibrator" name="iCFree calibrator" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" license="MIT">
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
2 <description>Calculate yield based on fluorescence data and optionally apply calibration</description>
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
3 <macros>
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
4 <import>macros.xml</import>
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
5 </macros>
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
6 <expand macro="requirements"/>
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
7 <command detect_errors="exit_code"><![CDATA[
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
8 cp '$initial_data_file' 'initial_data.csv' &&
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
9 cp '$sampling_file' 'sampling.csv' &&
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
10 cp '$ref_file' 'reference.csv' &&
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
11 python -m icfree.learner.extractor
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
12 --initial_data_file 'initial_data.csv'
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
13 --sampling_file 'sampling.csv'
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
14 --output_file 'extractor.csv'
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
15 #if str($adv.num_samples) != ''
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
16 --num_samples '$adv.num_samples'
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
17 #end if
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
18 #if str($adv.num_replicates) != ''
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
19 --num_replicates '$adv.num_replicates'
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
20 #end if
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
21 &&
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
22 python -m icfree.learner.calibrator
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
23 --output 'calibrated.csv'
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
24 --plot '$output_graph'
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
25 --jove_plus '$jove_plus'
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
26 --jove_minus '$jove_minus'
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
27 --r2_limit '$adv.r2_limit'
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
28 #if str($adv.num_control_points) != ''
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
29 --num_control_points '$adv.num_control_points'
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
30 #end if
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
31 #if str($adv.num_samples) != ''
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
32 --num '$adv.num_samples'
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
33 #end if
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
34 'extractor.csv' 'reference.csv' &&
3
c5cd3420fed6 planemo upload for repository https://github.com/brsynth/icfree-ml commit 8dde46bddbe8df819c48e7e392893c34b22aa6dd
tduigou
parents: 2
diff changeset
35 mv 'calibrated.csv' '$output_calibrated' &&
c5cd3420fed6 planemo upload for repository https://github.com/brsynth/icfree-ml commit 8dde46bddbe8df819c48e7e392893c34b22aa6dd
tduigou
parents: 2
diff changeset
36 mv 'calibrated_control_points.csv' '$output_control_points'
0
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
37 ]]></command>
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
38 <inputs>
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
39 <param name="initial_data_file" type="data" format="csv" label="Initial file" help="Initial file"/>
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
40 <param name="sampling_file" type="data" format="csv" label="Sampling file" help="Sampling file"/>
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
41 <param name="ref_file" type="data" format="csv" label="Reference input file" help="Reference input file"/>
1
64294f757d70 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents: 0
diff changeset
42 <param argument="jove_plus" type="integer" value="3" label="Line number for Jove+ (1-based index)" help="Line number for Jove+ (1-based index)" />
64294f757d70 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents: 0
diff changeset
43 <param argument="jove_minus" type="integer" value="2" label="Line number for Jove- (1-based index)" help="Line number for Jove- (1-based index)" />
0
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
44 <section name="adv" title="Advanced Options" expanded="false">
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
45 <param argument="num_samples" type="integer" optional="true" label="Number of samples" help="Number of samples" />
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
46 <!-- Extractor -->
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
47 <param argument="num_replicates" type="integer" optional="true" label="Number of replicates" help="Number of replicates." />
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
48 <!-- Calibrator -->
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
49 <param argument="r2_limit" type="float" value="0.8" label="R-squared limit for the regression" help="R-squared limit for the regression" />
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
50 <param argument="num_control_points" type="integer" optional="true" label="Number of control points to select" help="Number of control points to select" />
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
51 </section>
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
52 </inputs>
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
53 <outputs>
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
54 <data name="output_calibrated" format="csv" label="${tool.name} - Calibrated yields" />
3
c5cd3420fed6 planemo upload for repository https://github.com/brsynth/icfree-ml commit 8dde46bddbe8df819c48e7e392893c34b22aa6dd
tduigou
parents: 2
diff changeset
55 <data name="output_control_points" format="csv" label="${tool.name} - Control points" />
0
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
56 <data name="output_graph" format="png" label="${tool.name} - Graph" />
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
57 </outputs>
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
58 <tests>
3
c5cd3420fed6 planemo upload for repository https://github.com/brsynth/icfree-ml commit 8dde46bddbe8df819c48e7e392893c34b22aa6dd
tduigou
parents: 2
diff changeset
59 <test expect_num_outputs="3">
0
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
60 <!-- python -m icfree.learner.extractor -initial_data_file calibrator.input.initial_data.csv -sampling_file calibrator.input.sampling.csv -output_file calibrator.extractor_output.1.csv -->
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
61 <!-- python -m icfree.learner.calibrator -output calibrator.output.calibrated.1.csv -jove_plus 3 -jove_minus 2 -plot calibrator.output.1.png calibrator.output.extractor.1.csv calibrator.input.ref.csv -->
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
62 <param name="initial_data_file" value="calibrator.input.initial_data.csv" />
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
63 <param name="sampling_file" value="calibrator.input.sampling.csv" />
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
64 <param name="ref_file" value="calibrator.input.ref.csv" />
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
65 <param name="jove_plus" value="3" />
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
66 <param name="jove_minus" value="2" />
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
67 <output name="output_calibrated" ftype="csv">
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
68 <assert_contents>
2
ac296a9146df planemo upload for repository https://github.com/brsynth/icfree-ml commit 9ac6ff08b3b98534f42ecfcecefa438ead21168c
tduigou
parents: 1
diff changeset
69 <has_n_lines n="58" />
0
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
70 </assert_contents>
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
71 </output>
3
c5cd3420fed6 planemo upload for repository https://github.com/brsynth/icfree-ml commit 8dde46bddbe8df819c48e7e392893c34b22aa6dd
tduigou
parents: 2
diff changeset
72 <output name="output_control_points" ftype="csv">
c5cd3420fed6 planemo upload for repository https://github.com/brsynth/icfree-ml commit 8dde46bddbe8df819c48e7e392893c34b22aa6dd
tduigou
parents: 2
diff changeset
73 <assert_contents>
c5cd3420fed6 planemo upload for repository https://github.com/brsynth/icfree-ml commit 8dde46bddbe8df819c48e7e392893c34b22aa6dd
tduigou
parents: 2
diff changeset
74 <has_n_lines n="6" />
c5cd3420fed6 planemo upload for repository https://github.com/brsynth/icfree-ml commit 8dde46bddbe8df819c48e7e392893c34b22aa6dd
tduigou
parents: 2
diff changeset
75 </assert_contents>
c5cd3420fed6 planemo upload for repository https://github.com/brsynth/icfree-ml commit 8dde46bddbe8df819c48e7e392893c34b22aa6dd
tduigou
parents: 2
diff changeset
76 </output>
2
ac296a9146df planemo upload for repository https://github.com/brsynth/icfree-ml commit 9ac6ff08b3b98534f42ecfcecefa438ead21168c
tduigou
parents: 1
diff changeset
77 <output name="output_graph" ftype="png" >
0
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
78 <assert_contents>
2
ac296a9146df planemo upload for repository https://github.com/brsynth/icfree-ml commit 9ac6ff08b3b98534f42ecfcecefa438ead21168c
tduigou
parents: 1
diff changeset
79 <has_size value="45000" delta="2000" />
0
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
80 </assert_contents>
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
81 </output>
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
82 </test>
3
c5cd3420fed6 planemo upload for repository https://github.com/brsynth/icfree-ml commit 8dde46bddbe8df819c48e7e392893c34b22aa6dd
tduigou
parents: 2
diff changeset
83 <test expect_num_outputs="3">
0
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
84 <!-- python -m icfree.learner.extractor -initial_data_file calibrator.input.initial_data.csv -sampling_file calibrator.input.sampling.tsv -output_file calibrator.output.extractor.2.csv -num_samples 20 -num_replicates 3 -->
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
85 <!-- python -m icfree.learner.calibrator -plot calibrator.output.2.png -output calibrator.output.2.csv -jove_plus 4 -jove_minus 3 -r2_limit 0.9 -num 20 -num_control_points 4 calibrator.output.extractor.2.csv calibrator.input.ref.csv -->
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
86 <param name="initial_data_file" value="calibrator.input.initial_data.csv" />
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
87 <param name="sampling_file" value="calibrator.input.sampling.csv" />
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
88 <param name="ref_file" value="calibrator.input.ref.csv" />
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
89 <param name="num_samples" value="20" />
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
90 <param name="num_replicates" value="3" />
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
91 <param name="r2_limit" value="0.9" />
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
92 <param name="num_control_points" value="4" />
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
93 <param name="jove_plus" value="4" />
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
94 <param name="jove_minus" value="3" />
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
95 <output name="output_calibrated" ftype="csv">
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
96 <assert_contents>
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
97 <has_n_lines n="21" />
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
98 </assert_contents>
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
99 </output>
3
c5cd3420fed6 planemo upload for repository https://github.com/brsynth/icfree-ml commit 8dde46bddbe8df819c48e7e392893c34b22aa6dd
tduigou
parents: 2
diff changeset
100 <output name="output_control_points" ftype="csv">
c5cd3420fed6 planemo upload for repository https://github.com/brsynth/icfree-ml commit 8dde46bddbe8df819c48e7e392893c34b22aa6dd
tduigou
parents: 2
diff changeset
101 <assert_contents>
c5cd3420fed6 planemo upload for repository https://github.com/brsynth/icfree-ml commit 8dde46bddbe8df819c48e7e392893c34b22aa6dd
tduigou
parents: 2
diff changeset
102 <has_n_lines n="21" />
c5cd3420fed6 planemo upload for repository https://github.com/brsynth/icfree-ml commit 8dde46bddbe8df819c48e7e392893c34b22aa6dd
tduigou
parents: 2
diff changeset
103 </assert_contents>
c5cd3420fed6 planemo upload for repository https://github.com/brsynth/icfree-ml commit 8dde46bddbe8df819c48e7e392893c34b22aa6dd
tduigou
parents: 2
diff changeset
104 </output>
2
ac296a9146df planemo upload for repository https://github.com/brsynth/icfree-ml commit 9ac6ff08b3b98534f42ecfcecefa438ead21168c
tduigou
parents: 1
diff changeset
105 <output name="output_graph" ftype="png" >
0
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
106 <assert_contents>
2
ac296a9146df planemo upload for repository https://github.com/brsynth/icfree-ml commit 9ac6ff08b3b98534f42ecfcecefa438ead21168c
tduigou
parents: 1
diff changeset
107 <has_size value="38000" delta="1000" />
0
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
108 </assert_contents>
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
109 </output>
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
110 </test>
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
111 </tests>
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
112 <help><![CDATA[
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
113 Calibrator
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
114 ==========
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
115 Calculate yield based on fluorescence data and apply calibration.
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
116
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
117 ]]></help>
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
118 <expand macro="creator"/>
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
119 <expand macro="citation"/>
d386c9d1fae5 planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff changeset
120 </tool>