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