Mercurial > repos > scisjnu123 > ngsap_vc
diff GATK/gatk/analyze_covariates.xml @ 2:2c7824a8d764 draft
Uploaded
author | scisjnu123 |
---|---|
date | Thu, 12 Sep 2019 06:50:21 -0400 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/GATK/gatk/analyze_covariates.xml Thu Sep 12 06:50:21 2019 -0400 @@ -0,0 +1,37 @@ +<macros> + <xml name="AnalyzeCovariatesParameters" tokens="tag"> + + <!-- BQSR in main config --> + + <param name="afterReportFile" type="data" format="tabular" optional="true" label="file containing the BQSR second-pass report file" help="-after,‑‑afterReportFile &lt;afterReportFile&gt;" /> + + <param name="beforeReportFile" type="data" format="tabular" optional="true" label="file containing the BQSR first-pass report file" help="-before,‑‑beforeReportFile &lt;beforeReportFile&gt;" /> + + </xml> + + <xml name="AnalyzeCovariatesOutput"> + <data format="pdf" name="ac_plotsReportFile" label="${tool.name} - ${analysis_type.analysis_type_selector} on ${on_string} (PDF Recalibration Report)"> + <yield /> + </data> + </xml> + + <template name="AnalyzeCovariatesPreprocessing"> +<![CDATA[ +]]> + </template> + + <template name="AnalyzeCovariatesOptions"> +<![CDATA[ + --plotsReportFile ${ac_plotsReportFile} + + #if str($analysis_type.afterReportFile) + --afterReportFile $analysis_type.afterReportFile + #end if + #if str($analysis_type.beforeReportFile) + --beforeReportFile $analysis_type.beforeReportFile + #end if +]]> + </template> +</macros> + +