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