Mercurial > repos > devteam > samtools_phase
annotate samtools_phase.xml @ 1:8bfe0d1616d2 draft
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/samtools/samtools_phase commit a1517c9d22029095120643bbe2c8fa53754dd2b7
author | devteam |
---|---|
date | Wed, 11 Nov 2015 12:53:49 -0500 |
parents | cba1944e3ed0 |
children | 6166013090c0 |
rev | line source |
---|---|
1
8bfe0d1616d2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/samtools/samtools_phase commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
1 <tool id="samtools_phase" name="Call and phase" version="2.0"> |
0 | 2 <description>heterozygous SNPs</description> |
1
8bfe0d1616d2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/samtools/samtools_phase commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
3 <macros> |
8bfe0d1616d2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/samtools/samtools_phase commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
4 <import>macros.xml</import> |
8bfe0d1616d2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/samtools/samtools_phase commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
5 </macros> |
8bfe0d1616d2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/samtools/samtools_phase commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
6 <expand macro="requirements"></expand> |
8bfe0d1616d2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/samtools/samtools_phase commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
7 <expand macro="stdio"></expand> |
8bfe0d1616d2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/samtools/samtools_phase commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
8 <expand macro="version_command"></expand> |
0 | 9 <command>samtools phase -b "phase_wrapper" |
10 #if str($option_set.option_sets) == 'advanced': | |
11 ${option_set.ignore_chimeras} | |
12 -k $option_set.block_length | |
13 -q $option_set.min_het | |
14 -Q $option_set.min_bq | |
15 -D $option_set.read_depth | |
16 ${option_set.drop_ambiguous} | |
17 #else | |
18 -k 13 -q 37 -Q 13 -D 256 | |
19 #end if | |
20 "$input_bam" > "$phase_sets" | |
21 </command> | |
22 <inputs> | |
23 <param format="bam" name="input_bam" type="data" label="Select dataset to phase"/> | |
24 <conditional name="option_set"> | |
25 <param name="option_sets" type="select" label="Phase parameters"> | |
26 <option value="default">Use defaults</option> | |
27 <option value="advanced">Advanced options</option> | |
28 </param> | |
29 <when value="default" /> | |
30 <when value="advanced"> | |
31 <param name="block_length" type="integer" value="13" label="Maximum length for local phasing" /> | |
32 <param name="min_het" type="integer" value="37" label="Minimum Phred-scaled level of detail to call a heterozygote" /> | |
33 <param name="min_bq" type="integer" value="13" label="Minimum base quality to be used in het calling" /> | |
34 <param name="read_depth" type="integer" value="256" label="Read depth" /> | |
35 <param name="ignore_chimeras" type="boolean" truevalue="-F" falsevalue="" checked="False" label="Do not attempt to fix chimeric reads" /> | |
36 <param name="drop_ambiguous" type="boolean" truevalue="-A 1" falsevalue="" checked="False" label="Drop reads with ambiguous phase" /> | |
37 </when> | |
38 </conditional> | |
39 </inputs> | |
40 <outputs> | |
41 <data format="txt" name="phase_sets" /> | |
42 <data format="bam" from_work_dir="phase_wrapper.0.bam" name="phase0" label="${tool.name} on ${on_string}: Phase-0 reads" /> | |
43 <data format="bam" from_work_dir="phase_wrapper.1.bam" name="phase1" label="${tool.name} on ${on_string}: Phase-1 reads" /> | |
44 <data format="bam" from_work_dir="phase_wrapper.chimeras.bam" name="chimera" label="${tool.name} on ${on_string}: Chimeric reads" /> | |
45 </outputs> | |
46 <tests> | |
47 <test> | |
48 <param name="option_sets" value="default" /> | |
49 <param name="input_bam" value="samtools_phase_in_1.bam" /> | |
50 <output name="phase_sets" file="samtools_phase_out_1_log.txt" ftype="txt" /> | |
51 <output name="phase0" file="samtools_phase_out_1_phase0.bam" ftype="bam" /> | |
52 <output name="phase1" file="samtools_phase_out_1_phase1.bam" ftype="bam" /> | |
53 <output name="chimera" file="empty_file.bam" compare="contains" /> | |
54 </test> | |
55 <test> | |
56 <param name="input_bam" value="samtools_phase_in_2.bam" /> | |
57 <param name="option_sets" value="advanced" /> | |
58 <param name="option_set|block_length" value="13" /> | |
59 <param name="option_set|min_het" value="37" /> | |
60 <param name="option_set|min_bq" value="13" /> | |
61 <param name="option_set|read_depth" value="256" /> | |
62 <param name="option_set|ignore_chimeras" value="false" /> | |
63 <param name="option_set|drop_ambiguous" value="true" /> | |
64 <output name="phase_sets" file="samtools_phase_out_2_log.txt" ftype="txt" /> | |
65 <output name="phase0" file="samtools_phase_out_2_phase0.bam" ftype="bam" /> | |
66 <output name="phase1" file="samtools_phase_out_2_phase1.bam" ftype="bam" /> | |
67 <output name="chimera" file="empty_file.bam" compare="contains" /> | |
68 </test> | |
69 <test> | |
70 <param name="input_bam" value="samtools_phase_in_2.bam" /> | |
71 <param name="option_sets" value="advanced" /> | |
72 <param name="option_set|block_length" value="13" /> | |
73 <param name="option_set|min_het" value="37" /> | |
74 <param name="option_set|min_bq" value="13" /> | |
75 <param name="option_set|read_depth" value="256" /> | |
76 <param name="option_set|ignore_chimeras" value="true" /> | |
77 <param name="option_set|drop_ambiguous" value="false" /> | |
78 <output name="phase_sets" file="samtools_phase_out_3_log.txt" ftype="txt" /> | |
79 <output name="phase0" file="samtools_phase_out_3_phase0.bam" ftype="bam" /> | |
80 <output name="phase1" file="samtools_phase_out_3_phase1.bam" ftype="bam" /> | |
81 <output name="chimera" file="empty_file.bam" compare="contains" /> | |
82 </test> | |
83 </tests> | |
84 <help> | |
85 **What it does** | |
86 | |
87 Call and phase heterozygous SNPs | |
88 | |
89 ------ | |
90 | |
91 .. list-table:: **Options** | |
92 :widths: 5 5 40 10 | |
93 :header-rows: 1 | |
94 | |
95 * - Flag | |
96 - Type | |
97 - Description | |
98 - Default | |
99 * - -k | |
100 - INT | |
101 - Block length | |
102 - 13 | |
103 * - -b | |
104 - STR | |
105 - Prefix of BAM file output | |
106 - *null* | |
107 * - -q | |
108 - INT | |
109 - Minimum het phred-LOD | |
110 - 37 | |
111 * - -Q | |
112 - INT | |
113 - Min base quality in het calling | |
114 - 13 | |
115 * - -D | |
116 - INT | |
117 - Max read depth | |
118 - 256 | |
119 * - -D | |
120 - BOOLEAN | |
121 - Do not attempt to fix chimeras | |
122 - *off* | |
123 * - -A | |
124 - BOOLEAN | |
125 - Drop reads with ambiguous phase | |
126 - *off* | |
127 | |
1
8bfe0d1616d2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/samtools/samtools_phase commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
128 </help> |
8bfe0d1616d2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/samtools/samtools_phase commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
129 <expand macro="citations"></expand> |
0 | 130 </tool> |