Mercurial > repos > devteam > freebayes
annotate freebayes.xml @ 3:9f3d6c3098ac draft
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
author | devteam |
---|---|
date | Mon, 09 Nov 2015 11:37:39 -0500 |
parents | 14f952d2a9db |
children | c171daf263dd |
rev | line source |
---|---|
0 | 1 <?xml version="1.0"?> |
3
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
2 <tool id="freebayes" name="FreeBayes" version="0.4.1"> |
0 | 3 <requirements> |
3
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
4 <requirement type="package" version="0_9_20_b040236">freebayes</requirement> |
0 | 5 <requirement type="package" version="0.1.18">samtools</requirement> |
6 </requirements> | |
2 | 7 <description> - bayesian genetic variant detector</description> |
0 | 8 <command> |
9 ##set up input files | |
2 | 10 |
0 | 11 #set $reference_fasta_filename = "localref.fa" |
2 | 12 |
0 | 13 #if str( $reference_source.reference_source_selector ) == "history": |
14 ln -s "${reference_source.ref_file}" "${reference_fasta_filename}" && | |
15 samtools faidx "${reference_fasta_filename}" 2>&1 || echo "Error running samtools faidx for FreeBayes" >&2 && | |
16 #else: | |
17 #set $reference_fasta_filename = str( $reference_source.ref_file.fields.path ) | |
18 #end if | |
2 | 19 |
0 | 20 #for $bam_count, $input_bam in enumerate( $reference_source.input_bams ): |
21 ln -s "${input_bam.input_bam}" "localbam_${bam_count}.bam" && | |
22 ln -s "${input_bam.input_bam.metadata.bam_index}" "localbam_${bam_count}.bam.bai" && | |
23 #end for | |
2 | 24 |
25 ## Tabixize optional input_varinat_vcf file (for --variant-input option) | |
26 | |
27 #if ( str( $options_type.options_type_selector ) == 'cline' or str( $options_type.options_type_selector ) == 'full' ) and $options_type.optional_inputs.optional_inputs_selector and str( $options_type.optional_inputs.input_variant_type.input_variant_type_selector ) == "provide_vcf": | |
28 ln -s "${options_type.optional_inputs.input_variant_type.input_variant_vcf}" "input_variant_vcf.vcf.gz" && | |
29 ln -s "${Tabixized_input}" "input_variant_vcf.vcf.gz.tbi" && | |
30 #end if | |
31 | |
0 | 32 ##finished setting up inputs |
33 | |
2 | 34 ##COMMAND LINE STARTS HERE |
35 | |
0 | 36 freebayes |
37 #for $bam_count, $input_bam in enumerate( $reference_source.input_bams ): | |
38 --bam "localbam_${bam_count}.bam" | |
39 #end for | |
2 | 40 --fasta-reference "${reference_fasta_filename}" |
0 | 41 |
42 ##outputs | |
43 --vcf "${output_vcf}" | |
44 | |
2 | 45 #if str( $target_limit_type.target_limit_type_selector ) == "limit_by_target_file": |
46 --targets "${target_limit_type.input_target_bed}" | |
47 #elif str( $target_limit_type.target_limit_type_selector ) == "limit_by_region": | |
48 --region "${target_limit_type.region_chromosome}:${target_limit_type.region_start}..${target_limit_type.region_end}" | |
49 #end if | |
50 | |
0 | 51 ##advanced options |
2 | 52 #if str( $options_type.options_type_selector ) == "simple": |
53 ##do nothing as command like build up to this point is sufficinet for simple diploid calling | |
54 | |
55 #elif str( $options_type.options_type_selector ) == "simple_w_filters": | |
56 | |
57 --standard-filters | |
58 --min-coverage "${options_type.min_coverage}" | |
59 | |
60 #elif str( $options_type.options_type_selector ) == "naive": | |
61 | |
62 --haplotype-length 0 | |
63 --min-alternate-count 1 | |
64 --min-alternate-fraction 0 | |
65 --pooled-continuous | |
66 --report-monomorphic | |
67 | |
68 #elif str( $options_type.options_type_selector ) == "naive_w_filters": | |
69 | |
70 --haplotype-length 0 | |
71 --min-alternate-count 1 | |
72 --min-alternate-fraction 0 | |
73 --pooled-continuous | |
74 --report-monomorphic | |
75 --standard-filters | |
76 --min-coverage "${options_type.min_coverage}" | |
77 | |
78 ## Command line direct text entry is not allowed at this time for security reasons | |
79 | |
80 #elif str( $options_type.options_type_selector ) == "full": | |
3
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
81 |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
82 #if $options_type.optional_inputs.optional_inputs_selector: |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
83 |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
84 ${options_type.optional_inputs.report_monomorphic} |
2 | 85 |
3
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
86 #if $options_type.optional_inputs.output_trace_option: |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
87 --trace "${output_trace}" |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
88 #end if |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
89 |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
90 #if $options_type.optional_inputs.output_failed_alleles_option: |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
91 --failed-alleles "${output_failed_alleles_bed}" |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
92 #end if |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
93 |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
94 #if $options_type.optional_inputs.samples: |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
95 --samples "${options_type.optional_inputs.samples}" |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
96 #end if |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
97 |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
98 #if $options_type.optional_inputs.populations: |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
99 --populations "${options_type.optional_inputs.populations}" |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
100 #end if |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
101 |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
102 #if $options_type.optional_inputs.A: |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
103 --cnv-map "${options_type.optional_inputs.A}" |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
104 #end if |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
105 |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
106 #if str( $options_type.optional_inputs.input_variant_type.input_variant_type_selector ) == "provide_vcf": |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
107 --variant-input "input_variant_vcf.vcf.gz" ## input_variant_vcf.vcf.gz is symlinked to a galaxy-generated dataset in "Tabixize optional input_varinat_vcf file" section of the command line above |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
108 ${options_type.optional_inputs.input_variant_type.only_use_input_alleles} |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
109 #end if |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
110 |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
111 #if $options_type.optional_inputs.haplotype_basis_alleles: |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
112 --haplotype-basis-alleles "${options_type.optional_inputs.haplotype_basis_alleles}" |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
113 #end if |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
114 |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
115 #if $options_type.optional_inputs.observation_bias: |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
116 --observation-bias "${options_type.optional_inputs.observation_bias}" |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
117 #end if |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
118 |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
119 #if $options_type.optional_inputs.contamination_estimates: |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
120 --contamination-estimates "${options_type.optional_inputs.contamination_estimates}" |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
121 #end if |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
122 |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
123 #end if |
2 | 124 |
125 ## REPORTING | |
3
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
126 |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
127 |
2 | 128 #if str( $options_type.reporting.reporting_selector ) == "True": |
129 --pvar ${options_type.reporting.pvar} | |
0 | 130 #end if |
131 | |
2 | 132 ## POPULATION MODEL |
133 | |
134 #if str( $options_type.population_model.population_model_selector ) == "True": | |
135 --theta "${options_type.population_model.T}" | |
136 --ploidy "${options_type.population_model.P}" | |
137 ${options_type.population_model.J} | |
138 ${options_type.population_model.K} | |
139 | |
0 | 140 #end if |
2 | 141 |
142 ## REFERENCE ALLELE | |
143 | |
144 #if str( $options_type.reference_allele.reference_allele_selector ) == "True": | |
145 ${options_type.reference_allele.Z} | |
146 --reference-quality "${options_type.reference_allele.reference_quality}" | |
0 | 147 #end if |
148 | |
2 | 149 ## ALLELE SCOPE |
0 | 150 |
2 | 151 #if str( $options_type.allele_scope.allele_scope_selector ) == "True": |
152 ${options_type.allele_scope.I} | |
153 ${options_type.allele_scope.i} | |
154 ${options_type.allele_scope.X} | |
155 ${options_type.allele_scope.u} | |
156 -n "${options_type.allele_scope.n}" | |
157 --haplotype-length "${options_type.allele_scope.haplotype_length}" | |
158 --min-repeat-size "${options_type.allele_scope.min_repeat_length}" | |
159 --min-repeat-entropy "${options_type.allele_scope.min_repeat_entropy}" | |
160 ${options_type.allele_scope.no_partial_observations} | |
0 | 161 #end if |
162 | |
2 | 163 ## REALIGNMENT |
164 | |
165 ${options_type.O} | |
0 | 166 |
2 | 167 ##INPUT FILTERS |
168 | |
169 #if str( $options_type.input_filters.input_filters_selector ) == "True": | |
170 ${options_type.input_filters.use_duplicate_reads} | |
171 -m "${options_type.input_filters.m}" | |
172 -q "${options_type.input_filters.q}" | |
173 -R "${options_type.input_filters.R}" | |
174 -Y "${options_type.input_filters.Y}" | |
175 | |
176 #if str( $options_type.input_filters.mismatch_filters.mismatch_filters_selector ) == "True": | |
177 -Q "${options_type.input_filters.mismatch_filters.Q}" | |
178 -U "${options_type.input_filters.mismatch_filters.U}" | |
179 -z "${options_type.input_filters.mismatch_filters.z}" | |
180 --read-snp-limit "${options_type.input_filters.mismatch_filters.read_snp_limit}" | |
0 | 181 #end if |
2 | 182 |
183 -e "${options_type.input_filters.e}" | |
184 -F "${options_type.input_filters.F}" | |
185 -C "${options_type.input_filters.C}" | |
186 --min-alternate-qsum "${options_type.input_filters.min_alternate_qsum}" | |
187 -G "${options_type.input_filters.G}" | |
188 --min-coverage "${options_type.input_filters.min_coverage}" | |
0 | 189 #end if |
190 | |
2 | 191 ## POPULATION AND MAPPABILITY PRIORS |
0 | 192 |
2 | 193 #if str( $options_type.population_mappability_priors.population_mappability_priors_selector ) == "True": |
194 ${options_type.population_mappability_priors.k} | |
195 ${options_type.population_mappability_priors.w} | |
196 ${options_type.population_mappability_priors.V} | |
197 ${options_type.population_mappability_priors.a} | |
198 #end if | |
199 | |
200 ## GENOTYPE LIKELIHOODS | |
201 | |
202 #if str( $options_type.genotype_likelihoods.genotype_likelihoods_selector ) == "True": | |
203 --base-quality-cap "${$options_type.genotype_likelihoods.base_quality_cap}" | |
204 ${$options_type.genotype_likelihoods.experimental_gls} | |
205 --prob-contamination "${$options_type.genotype_likelihoods.prob_contamination}" | |
0 | 206 #end if |
207 | |
2 | 208 ## ALGORITHMIC FEATURES |
209 | |
210 #if str( $options_type.algorithmic_features.algorithmic_features_selector ) == "True": | |
211 ${options_type.algorithmic_features.report_genotype_likelihood_max} | |
212 -B "${options_type.algorithmic_features.B}" | |
213 --genotyping-max-banddepth "${options_type.algorithmic_features.genotyping_max_banddepth}" | |
214 -W "${options_type.algorithmic_features.W}" | |
215 ${options_type.algorithmic_features.N} | |
216 | |
217 #if str( $options_type.algorithmic_features.genotype_variant_threshold.genotype_variant_threshold_selector ) == "True": | |
218 -S "${options_type.algorithmic_features.genotype_variant_threshold.S}" | |
219 #end if | |
220 | |
221 ${options_type.algorithmic_features.j} | |
222 ${options_type.algorithmic_features.H} | |
223 -D "${options_type.algorithmic_features.D}" | |
224 ${options_type.algorithmic_features.genotype_qualities} | |
0 | 225 #end if |
2 | 226 #end if |
227 | |
228 </command> | |
229 | |
0 | 230 <inputs> |
231 <conditional name="reference_source"> | |
2 | 232 <param name="reference_source_selector" type="select" label="Load reference genome from"> |
233 <option value="cached">Local cache</option> | |
0 | 234 <option value="history">History</option> |
235 </param> | |
236 <when value="cached"> | |
237 <repeat name="input_bams" title="Sample BAM file" min="1"> | |
238 <param name="input_bam" type="data" format="bam" label="BAM file"> | |
239 <validator type="unspecified_build" /> | |
2 | 240 <validator type="dataset_metadata_in_data_table" table_name="fasta_indexes" metadata_name="dbkey" metadata_column="1" message="Sequences are not currently available for the specified build." /> |
0 | 241 </param> |
242 </repeat> | |
2 | 243 |
0 | 244 <param name="ref_file" type="select" label="Using reference genome"> |
2 | 245 <options from_data_table="fasta_indexes"></options> |
0 | 246 <validator type="no_options" message="A built-in reference genome is not available for the build associated with the selected input file"/> |
247 </param> | |
248 </when> | |
249 <when value="history"> <!-- FIX ME!!!! --> | |
250 <repeat name="input_bams" title="Sample BAM file" min="1"> | |
2 | 251 <param name="input_bam" type="data" format="bam" label="BAM file" /> |
0 | 252 </repeat> |
2 | 253 <param name="ref_file" type="data" format="fasta" label="Use the following dataset as the reference sequence" help="You can upload a FASTA sequence to the history and use it as reference" /> |
254 </when> | |
255 </conditional> | |
256 | |
257 <conditional name="target_limit_type"> | |
258 <param name="target_limit_type_selector" type="select" label="Limit variant calling to a set of regions?" help="Sets --targets or --region options"> | |
259 <option value="do_not_limit" selected="True">Do not limit</option> | |
260 <option value="limit_by_target_file">Limit by target file</option> | |
261 <option value="limit_by_region">Limit to region</option> | |
262 </param> | |
263 <when value="do_not_limit"> | |
264 <!-- Do nothing here --> | |
265 </when> | |
266 <when value="limit_by_target_file"> | |
267 <param name="input_target_bed" type="data" format="bed" label="Limit analysis to targets listed in the BED-format FILE." help="-t --targets"/> | |
268 </when> | |
269 <when value="limit_by_region"> | |
270 <param name="region_chromosome" type="text" label="Region Chromosome" value="" help="-r --region"/> <!--only once? --> | |
271 <param name="region_start" type="integer" label="Region Start" value="" /> | |
272 <param name="region_end" type="integer" label="Region End" value="" /> | |
0 | 273 </when> |
274 </conditional> | |
275 | |
276 <conditional name="options_type"> | |
2 | 277 <param name="options_type_selector" type="select" label="Choose parameter selection level" help="Select how much control over the freebayes run you need" > |
278 <option value="simple" selected="True">1:Simple diploid calling</option> | |
279 <option value="simple_w_filters">2:Simple diploid calling with filtering and coverage</option> | |
280 <option value="naive">3:Frequency-based pooled calling</option> | |
281 <option value="naive_w_filters">4:Frequency-based pooled calling with filtering and coverage</option> | |
282 <option value="full">5:Complete list of all options</option> | |
283 <!-- We will not alloow command line text boxes at this time | |
284 <option value="cline">6:Input parameters on the command line</option> | |
285 --> | |
0 | 286 </param> |
2 | 287 <when value="full"> |
3
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
288 |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
289 <conditional name="optional_inputs"> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
290 <param name="optional_inputs_selector" type="boolean" truevalue="set" falsevalue="do_not_set" label="Do you want to provide additional inputs?" help="Sets --samples, --populations, --cnv-map, --trace, --failed-alleles, --varinat-input, --only-use-input-alleles, --haplotype-basis-alleles, --report-all-haplotype-alleles, --report-monomorphic options, --observation-bias, and --contamination-estimates" /> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
291 <when value="set"> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
292 <param name="output_failed_alleles_option" type="boolean" truevalue="--failed-alleles" falsevalue="" checked="False" label="Write out failed alleles file" help="--failed-alleles" /> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
293 <param name="output_trace_option" type="boolean" truevalue="--trace" falsevalue="" checked="False" label="Write out algorithm trace file" help="--trace"/> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
294 <param name="samples" type="data" format="txt" label="Limit analysis to samples listed (one per line) in the FILE" optional="True" help="-s --samples; default=By default FreeBayes will analyze all samples in its input BAM files"/> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
295 <param name="populations" type="data" format="txt" label="Populations File" optional="True" help="--populations; default=False. Each line of FILE should list a sample and a population which it is part of. The population-based bayesian inference model will then be partitioned on the basis of the populations" /> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
296 <param name="A" type="data" format="bed" label="Read a copy number map from the BED file FILE" optional="True" help="-A --cnv-map; default=copy number is set to as specified by --ploidy. Read a copy number map from the BED file FILE, which has the format: reference sequence, start, end, sample name, copy number ... for each region in each sample which does not have the default copy number as set by --ploidy."/> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
297 <conditional name="input_variant_type"> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
298 <param name="input_variant_type_selector" type="select" label="Provide variants file"> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
299 <option value="do_not_provide" selected="True">Do not provide</option> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
300 <option value="provide_vcf">Provide VCF file</option> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
301 </param> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
302 <when value="do_not_provide"> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
303 <!-- Do nothing here --> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
304 </when> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
305 <when value="provide_vcf"> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
306 <param name="input_variant_vcf" type="data" format="vcf_bgzip" label="Use variants reported in VCF file as input to the algorithm"> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
307 <conversion name="Tabixized_input" type="tabix" /> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
308 </param> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
309 <param name="only_use_input_alleles" type="boolean" truevalue="--only-use-input-alleles" falsevalue="" checked="False" label="Only provide variant calls and genotype likelihoods for sites in VCF" /> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
310 </when> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
311 </conditional> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
312 <param name="haplotype_basis_alleles" type="data" format="vcf" label="Only use variant alleles provided in this input VCF for the construction of complex or haplotype alleles" optional="True" help="--haplotype-basis-alleles" /> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
313 <param name="report_monomorphic" type="boolean" truevalue="--report-monomorphic" falsevalue="" checked="False" label="Report even loci which appear to be monomorphic, and report all considered alleles, even those which are not in called genotypes." help="--report-monomorphic " /> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
314 <param name="observation_bias" optional="True" type="data" format="tabular" label="Load read length-dependent allele observation biases from" help="--observation-bias; The format is [length] [alignment efficiency relative to reference] where the efficiency is 1 if there is no relative observation bias" /> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
315 <param name="contamination_estimates" optional="True" type="data" format="tabular" label="Upload per-sample estimates of contamination from" help="--contamination-estimates; The format should be: sample p(read=R|genotype=AR) p(read=A|genotype=AA) Sample '*' can be used to set default contamination estimates." /> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
316 </when> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
317 <when value="do_not_set"> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
318 <!-- do nothing --> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
319 </when> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
320 </conditional> |
0 | 321 |
322 <!-- reporting --> | |
2 | 323 |
324 <conditional name="reporting"> | |
325 <param name="reporting_selector" type="boolean" truevalue="set" falsevalue="do_not_set" label="Set reporting option?" help="Sets -P --pvar option" /> | |
0 | 326 <when value="set"> |
2 | 327 <param name="pvar" type="float" value="0.0" label="Report sites if the probability that there is a polymorphism at the site is greater than" help="-P --pvar; default=0.0. Note that post-filtering is generally recommended over the use of this parameter. " /> |
0 | 328 </when> |
329 <when value="do_not_set"> | |
2 | 330 <!-- do nothing --> |
0 | 331 </when> |
332 </conditional> | |
333 | |
2 | 334 <!-- population model --> |
0 | 335 |
2 | 336 <conditional name="population_model"> |
337 <param name="population_model_selector" type="boolean" truevalue="set" falsevalue="do_not_set" label="Set population model?" help="Sets --theta, --ploidy, --pooled-discrete, and --pooled-continuous options " /> | |
338 <when value="set"> | |
339 <param name="T" type="float" value="0.001" label="The expected mutation rate or pairwise nucleotide diversity among the population under analysis" help="-T --theta; default = 0.001. This serves as the single parameter to the Ewens Sampling Formula prior model." /> | |
340 <param name="P" type="integer" value="2" label="Set ploidy for the analysis" help="-p --ploidy; default=2" /> | |
341 <param name="J" type="boolean" truevalue="-J" falsevalue="" checked="False" label="Assume that samples result from pooled sequencing" help="-J --pooled-discrete; default=False. Model pooled samples using discrete genotypes across pools. When using this flag, set --ploidy to the number of alleles in each sample or use the --cnv-map to define per-sample ploidy." /> | |
342 <param name="K" type="boolean" truevalue="-K" falsevalue="" checked="False" label="Output all alleles which pass input filters, regardles of genotyping outcome or model" help="-K, --poled-continuous; default=False. " /> | |
343 </when> | |
344 <when value="do_not_set"> | |
345 <!-- do nothing --> | |
346 </when> | |
347 </conditional> | |
348 | |
349 <!-- reference allele --> | |
350 | |
351 <conditional name="reference_allele"> | |
352 <param name="reference_allele_selector" type="boolean" truevalue="set" falsevalue="do_not_set" label="Use reference allele?" help="Sets --use-reference-allele and --reference-quality options " /> | |
353 <when value="set"> | |
354 <param name="Z" type="boolean" truevalue="-Z" falsevalue="" checked="False" label="Include the reference allele in the analysis as if it is another sample from the same population" help="-Z --use-reference-allele; default=False" /> | |
3
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
355 <param name="reference_quality" type="text" value="100,60" label="Assign mapping quality of MQ (100) to the reference allele at each site and base quality of BQ (60)" help="--reference-quality; default=100,60 " /> |
2 | 356 </when> |
357 <when value="do_not_set"> | |
358 <!-- do nothing --> | |
359 </when> | |
360 </conditional> | |
361 | |
362 <!-- allelic scope --> | |
363 | |
364 <conditional name="allele_scope"> | |
365 <param name="allele_scope_selector" type="boolean" truevalue="set" falsevalue="do_not_set" label="Set allelic scope?" help="Sets -I, i, -X, -u, -n, --haplotype-length, --min-repeat-size, --min-repeat-entropy, and --no-partial-observations options " /> | |
366 <when value="set"> | |
367 <param name="I" type="boolean" truevalue="-I" falsevalue="" checked="False" label="Ignore SNP alleles" help="-I --no-snps; default=False" /> | |
368 <param name="i" type="boolean" truevalue="-i" falsevalue="" checked="False" label="Ignore indels alleles" help="-i --no-indels; default=False" /> | |
369 <param name="X" type="boolean" truevalue="-X" falsevalue="" checked="False" label="Ignore multi-nucleotide polymorphisms, MNPs" help="-X --no-mnps; default=False" /> | |
370 <param name="u" type="boolean" truevalue="-u" falsevalue="" checked="False" label="Ignore complex events (composites of other classes)." help="-u --no-complex; default=False" /> | |
371 <param name="n" type="integer" value="0" label="How many best SNP alleles to evaluate" help="-n --use-best-n-alleles; default=0 (all). Alleles are ranked by the sum of supporting quality scores. Set to 0 to evaluate all" /> | |
372 <param name="haplotype_length" type="integer" value="3" label="Allow haplotype calls with contiguous embedded matches of up to (nucleotides)" help="-E --max-complex-gap --haplotype-length; default=3." /> | |
373 <param name="min_repeat_length" type="integer" value="5" label="When assembling observations across repeats, require the total repeat length at least this many bp" help="--min-repeat-size; default=5." /> | |
374 <param name="min_repeat_entropy" type="integer" value="0" label="To detect interrupted repeats, build across sequence until it has entropy > (bits per bp)" help="--min-repeat-entropy; default=0 (off)." /> | |
375 <param name="no_partial_observations" type="boolean" truevalue="--no-partial-observations" falsevalue="" checked="False" label="Exclude observations which do not fully span the dynamically-determined detection window" help="--no-partial-observations; default=use all observations, dividing partial support across matching haplotypes when generating haplotypes. " /> | |
376 </when> | |
377 <when value="do_not_set"> | |
378 <!-- do nothing --> | |
379 </when> | |
380 </conditional> | |
381 | |
382 <!-- indel realignment --> | |
383 | |
384 <param name="O" type="boolean" truevalue="-O" falsevalue="" checked="False" label="Turn off left-alignment of indels?" help="-O --dont-left-align-indels; default=False (do left align). " /> | |
385 | |
386 <!-- input filters --> | |
387 | |
388 <conditional name="input_filters"> | |
389 <param name="input_filters_selector" type="boolean" truevalue="set" falsevalue="do_not_set" label="Set input filters?" help="Sets -4, -m, -q, -R, -Y, -Q, -U, -z, -$, -e, -0, -F, -C, -3, -G, and -! options " /> | |
390 <when value="set"> | |
391 <param name="use_duplicate_reads" type="boolean" truevalue="--use-duplicate-reads" falsevalue="" checked="False" label="Include duplicate-marked alignments in the analysis." help="-4 --use-duplicate-reads; default=False (exclude duplicates marked as such in alignments)." /> | |
392 <param name="m" type="integer" value="1" label="Exclude alignments from analysis if they have a mapping quality less than" help="-m --min-mapping-quality; default=1" /> | |
393 <param name="q" type="integer" value="0" label="Exclude alleles from analysis if their supporting base quality less than" help="-q --min-base-quality; default=0" /> | |
394 <param name="R" type="integer" value="0" label="Consider any allele in which the sum of qualities of supporting observations is at least" help="-R --min-supporting-allele-qsum; default=0" /> | |
395 <param name="Y" type="integer" value="0" label="Consider any allele in which and the sum of mapping qualities of supporting reads is at least" help="-Y --min-supporting-mapping-qsum; default=0" /> | |
396 <conditional name="mismatch_filters"> | |
397 <param name="mismatch_filters_selector" type="boolean" truevalue="set" falsevalue="do_not_set" label="Perform mismatch filtering?" help="Sets -Q, -U, -z, and $ options" /> | |
398 <when value="set"> | |
399 <param name="Q" type="integer" value="10" label="Count mismatches toward -U (option below) if the base quality of the mismatch is >=" help="-Q --mismatch-base-quality-threshold; default=10" /> | |
400 <param name="U" type="integer" value="1000" optional="True" label="Exclude reads with more than N mismatches where each mismatch has base quality >= Q (option above)" help="-U --read-mismatch-limit; default=~unbound" /> | |
401 <param name="z" type="float" value="1.0" min="0.0" max="1.0" label="Exclude reads with more than N [0,1] fraction of mismatches where each mismatch has base quality >= Q (second option above)" help="-z --read-max-mismatch-fraction; default=1.0" /> | |
402 <param name="read_snp_limit" type="integer" value="1000" label="Exclude reads with more than N base mismatches, ignoring gaps with quality >= Q (third option abobe)" help="-$amp; --read-snp-limit N " /> | |
403 </when> | |
404 <when value="do_not_set"> | |
405 <!-- do nothing --> | |
406 </when> | |
407 </conditional> | |
408 <param name="e" type="integer" value="1000" label="Exclude reads with more than this number of separate gaps" help="-e --read-snp-limit; default=~unbounded" /> | |
409 <param name="standard_filters" type="boolean" truevalue="-0" falsevalue="" checked="False" label="Use stringent input base and mapping quality filters" help="-0 --standard-filters; default=False. Equivalent to -m 30 -q 20 -R 0 -S 0" /> | |
410 <param name="F" type="float" value="0.2" label="Require at least this fraction of observations supporting an alternate allele within a single individual in the in order to evaluate the position" help="-F --min-alternate-fraction; default=0.2" /> | |
411 <param name="C" type="integer" value="2" label="Require at least this count of observations supporting an alternate allele within a single individual in order to evaluate the position" help="-C --min-alternate-count; default=2" /> | |
412 <param name="min_alternate_qsum" type="integer" value="0" label="Require at least this sum of quality of observations supporting an alternate allele within a single individual in order to evaluate the position" help="-3 --min-alternate-qsum; default=0" /> | |
413 <param name="G" type="integer" value="1" label="Require at least this count of observations supporting an alternate allele within the total population in order to use the allele in analysis" help="-G --min-alternate-total N; default=1" /> | |
414 <param name="min_coverage" type="integer" value="0" label="Require at least this coverage to process a site" help="-! --min-coverage; default=0 " /> | |
415 </when> | |
416 <when value="do_not_set"> | |
417 <!-- do nothing --> | |
418 </when> | |
419 </conditional> | |
420 | |
421 <!-- population and mappability priors --> | |
422 | |
423 <conditional name="population_mappability_priors"> | |
424 <param name="population_mappability_priors_selector" type="boolean" truevalue="set" falsevalue="do_not_set" label="Set population and mappability priors?" help="Sets -k, -w, -V, and -a options " /> | |
425 <when value="set"> | |
426 <param name="k" type="boolean" truevalue="-k" falsevalue="" checked="False" label="No population priors" help="-k --no-population-priors; default=False. Equivalent to --pooled-discrete --hwe-priors-off and removal of Ewens Sampling Formula component of priors." /> | |
427 <param name="w" type="boolean" truevalue="-w" falsevalue="" checked="False" label="Disable estimation of the probability of the combination arising under HWE given the allele frequency as estimated by observation frequency" help="-w --hwe-priors-off; default=False" /> | |
428 <param name="V" type="boolean" truevalue="-V" falsevalue="" checked="False" label="Disable incorporation of prior expectations about observations" help="-V --binomial-obs-priors-off; default=False. Uses read placement probability, strand balance probability, and read position (5''-3'') probability." /> | |
429 <param name="a" type="boolean" truevalue="-a" falsevalue="" checked="False" label="isable use of aggregate probability of observation balance between alleles as a component of the priors" help="-a --allele-balance-priors-off; default=False " /> | |
430 </when> | |
431 <when value="do_not_set"> | |
432 <!-- do nothing --> | |
433 </when> | |
434 </conditional> | |
435 | |
436 <!-- genotype likelihoods --> | |
437 | |
438 <conditional name="genotype_likelihoods"> | |
439 <param name="genotype_likelihoods_selector" type="boolean" truevalue="set" falsevalue="do_not_set" label="Tweak genotype likelihoods?" help="Sets --base-quality-cap, --experimental-gls, and --prob-contamination options. " /> | |
440 <when value="set"> | |
441 <param name="base_quality_cap" type="integer" value="0" label="Limit estimated observation quality by capping base quality at" help="--base-quality-cap" /> | |
442 <param name="experimental_gls" type="boolean" truevalue="--experimental-gls" falsevalue="" checked="False" label="Generate genotype likelihoods using 'effective base depth' metric qual = 1-BaseQual * 1-MapQual" help="--experimental-gls; Incorporate partial observations. This is the default when contamination estimates are provided. Optimized for diploid samples." /> | |
443 <param name="prob_contamination" type="float" value="10e-9" label="An estimate of contamination to use for all samples. " help="--prob-contamination; default=10e-9." /> | |
444 </when> | |
445 <when value="do_not_set"> | |
446 <!-- do nothing --> | |
447 </when> | |
448 </conditional> | |
449 | |
450 <!-- algorithmic features --> | |
451 | |
452 <conditional name="algorithmic_features"> | |
453 <param name="algorithmic_features_selector" type="boolean" truevalue="set" falsevalue="do_not_set" label="Tweak algorithmic features?" help="Sets --report-genotypes-likelihood-max, -B, --genotyping-max-banddepth, -W, -N, S, -j, -H, -D, -= options " /> | |
454 <when value="set"> | |
455 <param name="report_genotype_likelihood_max" type="boolean" truevalue="--report-genotype-likelihood-max" falsevalue="" checked="False" label="Report genotypes using the maximum-likelihood estimate provided from genotype likelihoods." help="--report-genotype-likelihood-max; default=False" /> | |
456 <param name="B" type="integer" value="1000" label="Iterate no more than N times during genotyping step" help="-B --genotyping-max-iterations; default=1000." /> | |
457 <param name="genotyping_max_banddepth" type="integer" value="6" label="Integrate no deeper than the Nth best genotype by likelihood when genotyping" help="--genotyping-max-banddepth; default=6" /> | |
3
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
458 <param name="W" type="text" value="1,3" label="Integrate all genotype combinations in our posterior space which include no more than N (1) samples with their Mth (3) best data likelihood" help="-W --posterior-integration-limits; default=1,3" /> |
2 | 459 <param name="N" type="boolean" truevalue="--exclude-unobserved-genotypes" falsevalue="" checked="False" label="Skip sample genotypings for which the sample has no supporting reads" help="-N --exclude-unobserved-genotypes; default=False" /> |
460 <conditional name="genotype_variant_threshold"> | |
461 <param name="genotype_variant_threshold_selector" type="boolean" truevalue="set" falsevalue="do_not_set" label="Do you want to to limit posterior integration" help="-S --genotype-variant-threshold" /> | |
0 | 462 <when value="do_not_set"> |
2 | 463 <!-- do nothing --> |
0 | 464 </when> |
465 <when value="set"> | |
2 | 466 <param name="S" value="" type="integer" label="Limit posterior integration to samples where the second-best genotype likelihood is no more than log(N) from the highest genotype likelihood for the sample." help="-S --genotype-variant-threshold; default=~unbounded" /> |
0 | 467 </when> |
468 </conditional> | |
2 | 469 <param name="j" type="boolean" truevalue="-j" falsevalue="" checked="False" label="Use mapping quality of alleles when calculating data likelihoods" help="-j --use-mapping-quality; default=False" /> |
470 <param name="H" type="boolean" truevalue="-H" falsevalue="" checked="False" label="Use a weighted sum of base qualities around an indel, scaled by the distance from the indel" help="-H --harmonic-indel-quality; default=use a minimum Base Quality in flanking sequence." /> | |
471 <param name="D" type="float" value="0.9" label="Incorporate non-independence of reads by scaling successive observations by this factor during data likelihood calculations" help="-D --read-dependence-factor; default=0.9." /> | |
472 <param name="genotype_qualities" type="boolean" truevalue="--genotype-qualities" falsevalue="" checked="False" label="Calculate the marginal probability of genotypes and report as GQ in each sample field in the VCF output" help="-= --genotype-qualities; default=False " /> | |
473 </when> | |
474 <when value="do_not_set"> | |
475 <!-- do nothing --> | |
0 | 476 </when> |
477 </conditional> | |
2 | 478 </when> |
479 <when value="simple"> | |
480 <!-- do nothing --> | |
481 </when> | |
482 <when value="simple_w_filters"> | |
483 <!-- add standard-filters to command line --> | |
484 <param name="min_coverage" type="integer" value="0" label="Require at least this coverage to process a site" help="-! --min-coverage; default=0 " /> | |
485 </when> | |
486 <when value="naive"> | |
487 <!-- do nothing build command line using haplotype-length 0 min-alternate-count 1 min-alternate-fraction 0 pooled-continuous report-monomorphic --> | |
488 </when> | |
489 <when value="naive_w_filters"> | |
490 <!-- do nothing build command line using haplotype-length 0 min-alternate-count 1 min-alternate-fraction 0 pooled-continuous report-monomorphic standard-filters--> | |
491 <param name="min_coverage" type="integer" value="0" label="Require at least this coverage to process a site" help="-! --min-coverage; default=0 " /> | |
492 </when> | |
493 </conditional> | |
494 | |
0 | 495 </inputs> |
3
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
496 |
0 | 497 <outputs> |
498 <data format="vcf" name="output_vcf" label="${tool.name} on ${on_string} (variants)" /> | |
499 <data format="bed" name="output_failed_alleles_bed" label="${tool.name} on ${on_string} (failed alleles)"> | |
2 | 500 <filter>( options_type['options_type_selector'] == 'cline' or options_type['options_type_selector'] == 'full' ) and options_type['optional_inputs']['optional_inputs_selector'] is True and options_type['optional_inputs']['output_failed_alleles_option'] is True</filter> |
0 | 501 </data> |
502 <data format="txt" name="output_trace" label="${tool.name} on ${on_string} (trace)"> | |
2 | 503 <filter>( options_type['options_type_selector'] == 'cline' or options_type['options_type_selector'] == 'full' ) and options_type['optional_inputs']['optional_inputs_selector'] is True and options_type['optional_inputs']['output_trace_option'] is True</filter> |
0 | 504 </data> |
505 </outputs> | |
506 <tests> | |
507 <test> | |
508 <param name="reference_source_selector" value="history" /> | |
2 | 509 <param name="ref_file" ftype="fasta" value="freebayes-phix174.fasta"/> |
510 <param name="input_bam" ftype="bam" value="freebayes-phix174.bam"/> | |
511 <param name="options_type_selector" value="simple"/> | |
512 <output name="output_vcf" file="freebayes-phix174-test1.vcf" compare="contains"/> | |
0 | 513 </test> |
3
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
514 <test> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
515 <param name="reference_source_selector" value="history" /> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
516 <param name="ref_file" ftype="fasta" value="freebayes-phix174.fasta"/> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
517 <param name="input_bam" ftype="bam" value="freebayes-phix174.bam"/> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
518 <param name="options_type_selector" value="naive_w_filters"/> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
519 <param name="min_coverage" value="14"/> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
520 <output name="output_vcf" file="freebayes-phix174-test2.vcf" compare="contains"/> |
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
521 </test> |
0 | 522 </tests> |
2 | 523 <stdio> |
524 <exit_code range="1:" /> | |
525 </stdio> | |
0 | 526 <help> |
527 **What it does** | |
528 | |
2 | 529 FreeBayes is a Bayesian genetic variant detector designed to find small polymorphisms, specifically SNPs (single-nucleotide polymorphisms), indels (insertions and deletions), MNPs (multi-nucleotide polymorphisms), and complex events (composite insertion and substitution events) smaller than the length of a short-read sequencing alignment. |
0 | 530 |
2 | 531 See https://github.com/ekg/freebayes for details on FreeBayes. |
0 | 532 |
3
9f3d6c3098ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
2
diff
changeset
|
533 This Galaxy instance of FreeBayes corresponds to release 0.9.20 |
0 | 534 |
535 ------ | |
536 | |
2 | 537 **Description** |
0 | 538 |
2 | 539 Privided BAM file(s) and a reference. FreeBayes will provide VCF output on standard out describing SNPs, indels, and complex variants in samples in the input alignments. |
540 | |
541 By default, FreeBayes will consider variants supported by at least 2 observations in a single sample (-C) and also by at least 20% of the reads from a single sample (-F). These settings are suitable to low to high depth sequencing in haploid and diploid samples, but users working with polyploid or pooled samples may wish to adjust them depending on the characteristics of their sequencing data. | |
0 | 542 |
2 | 543 FreeBayes is capable of calling variant haplotypes shorter than a read length where multiple polymorphisms segregate on the same read. The maximum distance between polymorphisms phased in this way is determined by the --max-complex-gap, which defaults to 3bp. In practice, this can comfortably be set to half the read length. |
0 | 544 |
2 | 545 Ploidy may be set to any level (-p), but by default all samples are assumed to be diploid. FreeBayes can model per-sample and per-region variation in copy-number (-A) using a copy-number variation map. |
0 | 546 |
2 | 547 FreeBayes can act as a frequency-based pooled caller and describe variants and haplotypes in terms of observation frequency rather than called genotypes. To do so, use --pooled-continuous and set input filters to a suitable level. Allele observation counts will be described by AO and RO fields in the VCF output. |
0 | 548 |
549 ------- | |
550 | |
2 | 551 **Galaxy-specific options** |
552 | |
553 Galaxy allows six levels of control over FreeBayes options provided by **Choose parameter selection level** menu option. These are: | |
0 | 554 |
2 | 555 1. *Simple diploid calling*: The simples possible FreeBayes application. Equvalent of using FreeBayes with only a BAM input and no other parameter options. |
556 2. *Simple diploid calling with filtering and coverage*: Same as #1 plus two additional options: -0 (standard filters: --min-mapping-quality 30 --min-base-quality 20 --min-supporting-allele-qsum 0 --genotype-varinat-threshold 0) and --min-coverage. | |
557 3. *Frequency-based pooled calling*: This is equivalent to using FreeBayes with the following options: --haplotype-length 0 --min-alternate-count 1 --min-alternate-fraction 0 --pooled-continuous --report-monomorphic. This is the best choice for calling varinats in mixtures such as viral, bacterial, or organellar genomes. | |
558 4. *Frequency-based pooled calling with filtering and coverage*: Same as #3 but adds -0 and --min-coverage like in #2. | |
559 5. *Complete list of all options*: Gives you full control by exposing all FreeBayes options as Galaxy widgets. | |
0 | 560 |
2 | 561 ----- |
562 | |
563 **FreeBayes options** | |
564 | |
565 .. class:: infomark | |
566 | |
567 Note that each Galaxy parameter widget corresponding to command line flags listed below: | |
568 | |
569 Input and output:: | |
570 | |
0 | 571 -t --targets FILE |
572 Limit analysis to targets listed in the BED-format FILE. | |
2 | 573 -r --region chrom:start_position-end_position |
0 | 574 Limit analysis to the specified region, 0-base coordinates, |
2 | 575 end_position included. Either '-' or '..' maybe used as a separator. |
0 | 576 -s --samples FILE |
577 Limit analysis to samples listed (one per line) in the FILE. | |
578 By default FreeBayes will analyze all samples in its input | |
579 BAM files. | |
580 --populations FILE | |
581 Each line of FILE should list a sample and a population which | |
582 it is part of. The population-based bayesian inference model | |
583 will then be partitioned on the basis of the populations. | |
584 -A --cnv-map FILE | |
585 Read a copy number map from the BED file FILE, which has | |
586 the format: | |
587 reference sequence, start, end, sample name, copy number | |
588 ... for each region in each sample which does not have the | |
589 default copy number as set by --ploidy. | |
2 | 590 --trace FILE Output an algorithmic trace to FILE. |
0 | 591 --failed-alleles FILE |
592 Write a BED file of the analyzed positions which do not | |
593 pass --pvar to FILE. | |
594 -@ --variant-input VCF | |
595 Use variants reported in VCF file as input to the algorithm. | |
2 | 596 Variants in this file will be treated as putative variants |
597 even if there is not enough support in the data to pass | |
598 input filters. | |
0 | 599 -l --only-use-input-alleles |
600 Only provide variant calls and genotype likelihoods for sites | |
601 and alleles which are provided in the VCF input, and provide | |
602 output in the VCF for all input alleles, not just those which | |
603 have support in the data. | |
604 --haplotype-basis-alleles VCF | |
605 When specified, only variant alleles provided in this input | |
606 VCF will be used for the construction of complex or haplotype | |
607 alleles. | |
2 | 608 --report-all-haplotype-alleles |
609 At sites where genotypes are made over haplotype alleles, | |
610 provide information about all alleles in output, not only | |
611 those which are called. | |
612 --report-monomorphic | |
613 Report even loci which appear to be monomorphic, and report all | |
614 considered alleles, even those which are not in called genotypes. | |
615 Loci which do not have any potential alternates have '.' for ALT. | |
0 | 616 |
2 | 617 Reporting:: |
0 | 618 |
619 -P --pvar N Report sites if the probability that there is a polymorphism | |
2 | 620 at the site is greater than N. default: 0.0. Note that post- |
621 filtering is generally recommended over the use of this parameter. | |
0 | 622 |
2 | 623 Population model:: |
0 | 624 |
625 -T --theta N The expected mutation rate or pairwise nucleotide diversity | |
626 among the population under analysis. This serves as the | |
627 single parameter to the Ewens Sampling Formula prior model | |
628 default: 0.001 | |
629 -p --ploidy N Sets the default ploidy for the analysis to N. default: 2 | |
2 | 630 -J --pooled-discrete |
631 Assume that samples result from pooled sequencing. | |
632 Model pooled samples using discrete genotypes across pools. | |
0 | 633 When using this flag, set --ploidy to the number of |
2 | 634 alleles in each sample or use the --cnv-map to define |
635 per-sample ploidy. | |
636 -K --pooled-continuous | |
637 Output all alleles which pass input filters, regardles of | |
638 genotyping outcome or model. | |
0 | 639 |
2 | 640 Reference allele:: |
0 | 641 |
642 -Z --use-reference-allele | |
643 This flag includes the reference allele in the analysis as | |
644 if it is another sample from the same population. | |
645 --reference-quality MQ,BQ | |
646 Assign mapping quality of MQ to the reference allele at each | |
647 site and base quality of BQ. default: 100,60 | |
648 | |
2 | 649 Allele scope:: |
0 | 650 |
651 -I --no-snps Ignore SNP alleles. | |
652 -i --no-indels Ignore insertion and deletion alleles. | |
653 -X --no-mnps Ignore multi-nuceotide polymorphisms, MNPs. | |
654 -u --no-complex Ignore complex events (composites of other classes). | |
655 -n --use-best-n-alleles N | |
656 Evaluate only the best N SNP alleles, ranked by sum of | |
657 supporting quality scores. (Set to 0 to use all; default: all) | |
658 -E --max-complex-gap N | |
2 | 659 --haplotype-length N |
660 Allow haplotype calls with contiguous embedded matches of up | |
661 to this length. (default: 3) | |
662 --min-repeat-size N | |
663 When assembling observations across repeats, require the total repeat | |
664 length at least this many bp. (default: 5) | |
665 --min-repeat-entropy N | |
666 To detect interrupted repeats, build across sequence until it has | |
667 entropy > N bits per bp. (default: 0, off) | |
668 --no-partial-observations | |
669 Exclude observations which do not fully span the dynamically-determined | |
670 detection window. (default, use all observations, dividing partial | |
671 support across matching haplotypes when generating haplotypes.) | |
0 | 672 |
2 | 673 Indel realignment:: |
0 | 674 |
2 | 675 -O --dont-left-align-indels |
676 Turn off left-alignment of indels, which is enabled by default. | |
677 | |
678 Input filters:: | |
0 | 679 |
680 -4 --use-duplicate-reads | |
681 Include duplicate-marked alignments in the analysis. | |
2 | 682 default: exclude duplicates marked as such in alignments |
0 | 683 -m --min-mapping-quality Q |
684 Exclude alignments from analysis if they have a mapping | |
2 | 685 quality less than Q. default: 1 |
0 | 686 -q --min-base-quality Q |
687 Exclude alleles from analysis if their supporting base | |
2 | 688 quality is less than Q. default: 0 |
689 -R --min-supporting-allele-qsum Q | |
690 Consider any allele in which the sum of qualities of supporting | |
691 observations is at least Q. default: 0 | |
692 -Y --min-supporting-mapping-qsum Q | |
693 Consider any allele in which and the sum of mapping qualities of | |
694 supporting reads is at least Q. default: 0 | |
0 | 695 -Q --mismatch-base-quality-threshold Q |
696 Count mismatches toward --read-mismatch-limit if the base | |
2 | 697 quality of the mismatch is >= Q. default: 10 |
0 | 698 -U --read-mismatch-limit N |
699 Exclude reads with more than N mismatches where each mismatch | |
2 | 700 has base quality >= mismatch-base-quality-threshold. |
0 | 701 default: ~unbounded |
702 -z --read-max-mismatch-fraction N | |
703 Exclude reads with more than N [0,1] fraction of mismatches where | |
2 | 704 each mismatch has base quality >= mismatch-base-quality-threshold |
0 | 705 default: 1.0 |
706 -$ --read-snp-limit N | |
707 Exclude reads with more than N base mismatches, ignoring gaps | |
2 | 708 with quality >= mismatch-base-quality-threshold. |
0 | 709 default: ~unbounded |
710 -e --read-indel-limit N | |
711 Exclude reads with more than N separate gaps. | |
712 default: ~unbounded | |
713 -0 --standard-filters Use stringent input base and mapping quality filters | |
714 Equivalent to -m 30 -q 20 -R 0 -S 0 | |
715 -F --min-alternate-fraction N | |
716 Require at least this fraction of observations supporting | |
717 an alternate allele within a single individual in the | |
2 | 718 in order to evaluate the position. default: 0.2 |
0 | 719 -C --min-alternate-count N |
720 Require at least this count of observations supporting | |
721 an alternate allele within a single individual in order | |
2 | 722 to evaluate the position. default: 2 |
0 | 723 -3 --min-alternate-qsum N |
724 Require at least this sum of quality of observations supporting | |
725 an alternate allele within a single individual in order | |
726 to evaluate the position. default: 0 | |
727 -G --min-alternate-total N | |
728 Require at least this count of observations supporting | |
729 an alternate allele within the total population in order | |
730 to use the allele in analysis. default: 1 | |
731 -! --min-coverage N | |
732 Require at least this coverage to process a site. default: 0 | |
733 | |
2 | 734 Population priors:: |
0 | 735 |
736 -k --no-population-priors | |
2 | 737 Equivalent to --pooled-discrete --hwe-priors-off and removal of |
738 Ewens Sampling Formula component of priors. | |
739 | |
740 Mappability priors:: | |
0 | 741 |
2 | 742 -w --hwe-priors-off |
743 Disable estimation of the probability of the combination | |
744 arising under HWE given the allele frequency as estimated | |
745 by observation frequency. | |
746 -V --binomial-obs-priors-off | |
747 Disable incorporation of prior expectations about observations. | |
0 | 748 Uses read placement probability, strand balance probability, |
749 and read position (5'-3') probability. | |
2 | 750 -a --allele-balance-priors-off |
751 Disable use of aggregate probability of observation balance between alleles | |
752 as a component of the priors. | |
0 | 753 |
2 | 754 Genotype likelihoods:: |
0 | 755 |
2 | 756 --observation-bias FILE |
757 Read length-dependent allele observation biases from FILE. | |
758 The format is [length] [alignment efficiency relative to reference] | |
759 where the efficiency is 1 if there is no relative observation bias. | |
760 --base-quality-cap Q | |
761 Limit estimated observation quality by capping base quality at Q. | |
762 --experimental-gls | |
763 Generate genotype likelihoods using 'effective base depth' metric | |
764 qual = 1-BaseQual * 1-MapQual. Incorporate partial observations. | |
765 This is the default when contamination estimates are provided. | |
766 Optimized for diploid samples. | |
767 --prob-contamination F | |
768 An estimate of contamination to use for all samples. default: 10e-9 | |
769 --contamination-estimates FILE | |
770 A file containing per-sample estimates of contamination, such as | |
771 those generated by VerifyBamID. The format should be: | |
772 sample p(read=R|genotype=AR) p(read=A|genotype=AA) | |
773 Sample '*' can be used to set default contamination estimates. | |
774 | |
775 Algorithmic features:: | |
776 | |
777 --report-genotype-likelihood-max | |
778 Report genotypes using the maximum-likelihood estimate provided | |
779 from genotype likelihoods. | |
0 | 780 -B --genotyping-max-iterations N |
2 | 781 Iterate no more than N times during genotyping step. default: 1000. |
0 | 782 --genotyping-max-banddepth N |
783 Integrate no deeper than the Nth best genotype by likelihood when | |
784 genotyping. default: 6. | |
785 -W --posterior-integration-limits N,M | |
786 Integrate all genotype combinations in our posterior space | |
787 which include no more than N samples with their Mth best | |
788 data likelihood. default: 1,3. | |
789 -N --exclude-unobserved-genotypes | |
790 Skip sample genotypings for which the sample has no supporting reads. | |
791 -S --genotype-variant-threshold N | |
792 Limit posterior integration to samples where the second-best | |
793 genotype likelihood is no more than log(N) from the highest | |
794 genotype likelihood for the sample. default: ~unbounded | |
795 -j --use-mapping-quality | |
796 Use mapping quality of alleles when calculating data likelihoods. | |
2 | 797 -H --harmonic-indel-quality |
798 Use a weighted sum of base qualities around an indel, scaled by the | |
799 distance from the indel. By default use a minimum BQ in flanking sequence. | |
0 | 800 -D --read-dependence-factor N |
801 Incorporate non-independence of reads by scaling successive | |
802 observations by this factor during data likelihood | |
803 calculations. default: 0.9 | |
2 | 804 -= --genotype-qualities |
805 Calculate the marginal probability of genotypes and report as GQ in | |
806 each sample field in the VCF output. | |
0 | 807 |
808 | |
809 ------ | |
810 | |
811 **Citation** | |
812 | |
813 For the underlying tool, please cite `Erik Garrison and Gabor Marth. Haplotype-based variant detection from short-read sequencing <http://arxiv.org/abs/1207.3907>`_. | |
814 | |
2 | 815 The initial version of the wrapper was produced by Dan Blankenberg and upgraded by Anton Nekrutenko. |
0 | 816 |
817 </help> | |
2 | 818 |
819 <citations> | |
820 <citation type="bibtex">@misc{1207.3907, | |
821 Author = {Erik Garrison}, | |
822 Title = {Haplotype-based variant detection from short-read sequencing}, | |
823 Year = {2012}, | |
824 Eprint = {arXiv:1207.3907}, | |
825 url = {http://arxiv.org/abs/1207.3907}, | |
826 }</citation> | |
827 </citations> | |
0 | 828 </tool> |