comparison SNPReports.xml @ 0:14e1cf728269 default tip

init commit
author Yusuf Ali <ali@yusuf.email>
date Wed, 25 Mar 2015 13:42:26 -0600
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:14e1cf728269
1 <?xml version="1.0"?>
2
3 <tool id="snp_reports_1" name="Compute protein coding SNP rates">
4 <description>over targeted regions in a genome</description>
5 <version_string>snp_reports -v</version_string>
6 <command interpreter="perl">snp_reports -q $snp_table $target_bed $coding_gtf $depth_summary $out_snp_summary_table</command>
7 <inputs>
8 <param format="achri_snp_table" name="snp_table" type="data" label="SNP table" help="The output from running the tool 'Convert VCF file to table with HGVS cDNA and protein syntax'. If you have no selection available, please run that tool first in the current session, or import it from a previous analysis history."/>
9 <param format="bed" name="target_bed" type="data" label="Target sequencing regions" help="e.g. a BED file from the Shared Data 'Exome target regions' folder, corresponding the to the capture kit used for sequencing the sample"/>
10 <param format="gtf" name="coding_gtf" type="data" label="Coding sequences" help="e.g. a GTF file from the Shared Data 'Genomic coding sequence regions' folder, corresponding to the types of IDs desired (e.g. NCBI RefGene for NM_######)"/>
11 <param format="achri_depth_summary_table" name="depth_summary" type="data" label="Depth report summary" help="The output from the tool 'Compute depth of sequencing coverage'. If you have no selection available, please run that tool first in the current session, or import it from a previous analysis history."/>
12 </inputs>
13 <outputs>
14 <data name="out_snp_summary_table" format="achri_snp_summary_table" label="Summary of expected vs actual protein-coding SNP calls"/>
15 </outputs>
16
17 <tests>
18 <test>
19 <param name="snp_table" value="brca_depth_summary.txt" ftype="achri_annotated_snp_table"/>
20 <param name="target_bed" value="brcas.bed" ftype="bed"/>
21 <param name="depth_summary" value="brca_depth_summary.txt" ftype="achri_depth_summary_table"/>
22 <param name="coding_gtf" value="brcas.gtf" ftype="gtf"/>
23 <output name="out_snp_summary_table">
24 <assert_contents>
25 <has_text text="targeted nucleotide bases: 155091"/>
26 <has_text text="bases mapped to targeted regions: 11473773"/>
27 <has_text text="bases with less than 20-fold coverage: 19046"/>
28 </assert_contents>
29 </output>
30 </test>
31 </tests>
32
33 <help>
34 This tool reports several statistics describing the rate of protein coding SNP calls from a next-gen sequencing analysis such as an exome capture.
35 These results can be used to assess the quality of the SNP caller used, filtering thresholds, etc. Location with less than 10 fold coverage, and
36 variants with caveat are ignored.
37 </help>
38
39 </tool>