-
Notifications
You must be signed in to change notification settings - Fork 0
/
falco-filter-report.xml
118 lines (85 loc) · 4.39 KB
/
falco-filter-report.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<tool id="falco-report" name="falco-report" version="0.0.1">
<requirements>
<requirement type="package" version="0.1.19">samtools</requirement>
<requirement type="package" version="3.0.1">R</requirement>
<requirement type="set_environment">FALCO_PATH</requirement>
</requirements>
<description>FALCO Amplicon Analysis Pipeline Reporting</description>
<command interpreter="bash">
falco-filter-report.sh $falco_cfg \$FALCO_PATH;
</command>
<stdio>
<!-- Anything higher than 0 means the bash script didnt finish -->
<exit_code range="1:" level="fatal" description="Bash script didnt finish correctly, check log" />
</stdio>
<inputs>
<param name="jobName" type="text" optional="false" label="Analysis/ouput name" help="Supply a name for the outputs to remind you what they contain" value="TEST">
<validator type="empty_field" />
<validator type="regex" message="This field may contain only non-whitespace characters">\S+</validator>
</param>
<param name="vcf" type="data" multiple="false" optional="false" format="vcf" label="Input VCF" help="NOTE VCF must be annotated with SNPEFF (should contain EFF FIELD)" />
<param name="vcf2" type="data" multiple="false" optional="true" format="vcf" label="Input VCF (optional second VCF)" help="NOTE VCF must be annotated with SNPEFF (should contain EFF FIELD)" />
<param format="tabular" name="qc_ann_qual" optional="false" type="data" label="qc_ann_qual file" help="This file is output of the FALCO variant caller falco-call"/>
<param format="tabular" name="qc2_ann_txt" optional="false" type="data" label="qc2_ann_txt file" help="This file is output of the FALCO variant caller fal-call"/>
<param format="tabular" name="qc_targets_txt" optional="false" type="data" label="qc_targets_txt file" help="Tabular text file with information about the amplicon regions. This file is output of the FALCO variant caller falco-call"/>
<!-- ==================== -->
<!-- Optional hisotry output: ZIP file with all files -->
<!-- ==================== -->
<param name="zip2history" type="select" label="Also output a ZIP file" help="The zip will contain all output files for easy download">
<option value="false">no</option>
<option value="true">yes</option>
</param>
</inputs>
<!-- ==================== -->
<!-- This config is sourced by tool -->
<!-- ==================== -->
<configfiles>
<configfile name="falco_cfg">
vcf_file=$vcf
vcf2_file=$vcf2
qc_ann_qual_file=$qc_ann_qual
qc2_ann_txt_file=$qc2_ann_txt
qc_targets_txt_file=$qc_targets_txt
vcf_name="${vcf.name}"
html_out=${html_output}
out_path=${html_output.files_path}
job_name=$jobName
zip_out=${zip_output}
zip_to_history=$zip2history
</configfile>
</configfiles>
<!-- ==================== -->
<!-- Main output is an html based report, additional on request -->
<!-- ==================== -->
<outputs>
<data format="html" name="html_output" label="FALCO-reporting (${jobName})" />
<data format="zip" name="zip_output" label="FALCO-reporting (${jobName}) zip">
<filter>(zip2history == 'true')</filter>
</data>
<!-- <data format="vcf" name="vcf_output" label="FALCO-calling (${jobName}): VCF" /> -->
</outputs>
<!-- ==================== -->
<!-- Tests still to be done -->
<!-- ==================== -->
<!--
<tests>
<test>
<param name="input1" value="input1" />
<param name="input2" value="input2" />
</test>
</tests>
-->
<help>
.. class:: infomark
**Introduction**
This tool is a wrapper for the variant caller FALCO_ which is part of the Amplicon Analysis Pipeline (AAP)
.. _FALCO: https://github.com/tgac-vumc/falco/
Calls and annotates genomic variants for each amplicon in a design.
**Notes**
Because each amplicon is analysed separately, when two amplicons overlap this can cause the same variant position to be present twice in the output VCF. This is intentional, you can use this to evaluate the quality of the variant call beyond the amplicon reads.
-----
**Citation**
For the underlying tool please cite: Daoud Sie et al. Performance of amplicon-based next generation DNA sequencing for diagnostic gene mutation profiling in oncopathology (Cell Oncol 2014 Oct;37(5):353-61). [Pubmed]
.. _Pubmed: http://www.ncbi.nlm.nih.gov/pubmed/25209392
</help>
</tool>