3
|
1 <macros>
|
|
2 <xml name="AnalyzeCovariatesParameters" tokens="tag">
|
|
3
|
|
4 <!-- BQSR in main config -->
|
|
5
|
|
6 <param name="afterReportFile" type="data" format="tabular" optional="true" label="file containing the BQSR second-pass report file" help="-after,‑‑afterReportFile &lt;afterReportFile&gt;" />
|
|
7
|
|
8 <param name="beforeReportFile" type="data" format="tabular" optional="true" label="file containing the BQSR first-pass report file" help="-before,‑‑beforeReportFile &lt;beforeReportFile&gt;" />
|
|
9
|
|
10 </xml>
|
|
11
|
|
12 <xml name="AnalyzeCovariatesOutput">
|
|
13 <data format="pdf" name="ac_plotsReportFile" label="${tool.name} - ${analysis_type.analysis_type_selector} on ${on_string} (PDF Recalibration Report)">
|
|
14 <yield />
|
|
15 </data>
|
|
16 </xml>
|
|
17
|
|
18 <template name="AnalyzeCovariatesPreprocessing">
|
|
19 <![CDATA[
|
|
20 ]]>
|
|
21 </template>
|
|
22
|
|
23 <template name="AnalyzeCovariatesOptions">
|
|
24 <![CDATA[
|
|
25 --plotsReportFile ${ac_plotsReportFile}
|
|
26
|
|
27 #if str($analysis_type.afterReportFile)
|
|
28 --afterReportFile $analysis_type.afterReportFile
|
|
29 #end if
|
|
30 #if str($analysis_type.beforeReportFile)
|
|
31 --beforeReportFile $analysis_type.beforeReportFile
|
|
32 #end if
|
|
33 ]]>
|
|
34 </template>
|
|
35 </macros>
|
|
36
|
|
37
|