Mercurial > repos > tduigou > icfree_calibrator
annotate calibrator.xml @ 1:64294f757d70 draft
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
author | tduigou |
---|---|
date | Fri, 22 Nov 2024 11:39:27 +0000 |
parents | d386c9d1fae5 |
children | ac296a9146df |
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' && |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
35 mv 'calibrated.csv' '$output_calibrated' |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
36 ]]></command> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
37 <inputs> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
38 <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
|
39 <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
|
40 <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
|
41 <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
|
42 <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
|
43 <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
|
44 <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
|
45 <!-- Extractor --> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
46 <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
|
47 <!-- Calibrator --> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
48 <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
|
49 <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
|
50 </section> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
51 </inputs> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
52 <outputs> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
53 <data name="output_calibrated" format="csv" label="${tool.name} - Calibrated yields" /> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
54 <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
|
55 </outputs> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
56 <tests> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
57 <test expect_num_outputs="2"> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
58 <!-- 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
|
59 <!-- 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
|
60 <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
|
61 <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
|
62 <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
|
63 <param name="jove_plus" value="3" /> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
64 <param name="jove_minus" value="2" /> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
65 <output name="output_calibrated" ftype="csv"> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
66 <assert_contents> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
67 <has_n_lines n="343" /> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
68 </assert_contents> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
69 </output> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
70 <output name="calibrator_graph" ftype="png" > |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
71 <assert_contents> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
72 <has_size value="62000" delta="2000" /> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
73 </assert_contents> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
74 </output> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
75 </test> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
76 <test expect_num_outputs="2"> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
77 <!-- 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
|
78 <!-- 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
|
79 <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
|
80 <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
|
81 <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
|
82 <param name="num_samples" value="20" /> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
83 <param name="num_replicates" value="3" /> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
84 <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
|
85 <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
|
86 <param name="jove_plus" value="4" /> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
87 <param name="jove_minus" value="3" /> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
88 <output name="output_calibrated" ftype="csv"> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
89 <assert_contents> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
90 <has_n_lines n="21" /> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
91 </assert_contents> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
92 </output> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
93 <output name="calibrator_graph" ftype="png" > |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
94 <assert_contents> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
95 <has_size value="45000" delta="1000" /> |
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 </output> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
98 |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
99 </test> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
100 |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
101 </tests> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
102 <help><![CDATA[ |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
103 Calibrator |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
104 ========== |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
105 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
|
106 |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
107 ]]></help> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
108 <expand macro="creator"/> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
109 <expand macro="citation"/> |
d386c9d1fae5
planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
tduigou
parents:
diff
changeset
|
110 </tool> |