Mercurial > repos > devteam > samtools_mpileup
annotate samtools_mpileup.xml @ 6:483949f5c3b0 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
author | iuc |
---|---|
date | Tue, 09 May 2017 11:15:58 -0400 |
parents | 5872c9894a37 |
children | edbe9587b15d |
rev | line source |
---|---|
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
1 <tool id="samtools_mpileup" name="MPileup" version="2.1.3"> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
2 <description>multi-way pileup of variants</description> |
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
3 <macros> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
4 <import>macros.xml</import> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
5 </macros> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
6 <expand macro="requirements" /> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
7 <expand macro="stdio" /> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
8 <expand macro="version_command" /> |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
9 <command><![CDATA[ |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
10 #for $bam_count, $input_bam in enumerate( $reference_source.input_bam ): |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
11 ln -s '${input_bam}' 'localbam_${bam_count}.bam' && |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
12 ln -s '${input_bam.metadata.bam_index}' 'localbam_${bam_count}.bam.bai' && |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
13 #end for |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
14 |
2 | 15 #if $reference_source.reference_source_selector == "history": |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
16 ln -s '${reference_source.ref_file}' && |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
17 samtools faidx `basename '${reference_source.ref_file}'` && |
2 | 18 #end if |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
19 |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
20 samtools mpileup |
0 | 21 #if $reference_source.reference_source_selector != "history": |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
22 -f '${reference_source.ref_file.fields.path}' |
0 | 23 #else: |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
24 -f '${reference_source.ref_file}' |
0 | 25 #end if |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
26 #for $bam_count, $input_bam in enumerate( $reference_source.input_bam ): |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
27 localbam_${bam_count}.bam |
0 | 28 #end for |
29 #if str( $advanced_options.advanced_options_selector ) == "advanced": | |
2 | 30 #if str( $advanced_options.filter_by_flags.filter_flags ) == "filter": |
31 #if $advanced_options.filter_by_flags.require_flags: | |
32 --rf ${sum([int(flag) for flag in str($advanced_options.filter_by_flags.require_flags).split(',')])} | |
33 #end if | |
34 #if $advanced_options.filter_by_flags.exclude_flags: | |
35 --ff ${sum([int(flag) for flag in str($advanced_options.filter_by_flags.exclude_flags).split(',')])} | |
36 #end if | |
37 #end if | |
38 #if str( $advanced_options.limit_by_region.limit_by_regions ) == "paste": | |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
39 -l '$pasted_regions' |
2 | 40 #elif str( $advanced_options.limit_by_region.limit_by_regions ) == "history" |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
41 -l '$advanced_options.limit_by_region.bed_regions' |
2 | 42 #end if |
43 #if str( $advanced_options.exclude_read_group.exclude_read_groups ) == "paste": | |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
44 -G '$excluded_read_groups' |
2 | 45 #elif str( $advanced_options.exclude_read_group.exclude_read_groups ) == "history" |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
46 -G '$advanced_options.exclude_read_group.read_groups' |
2 | 47 #end if |
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
48 ${advanced_options.skip_anomalous_read_pairs} |
0 | 49 ${advanced_options.disable_probabilistic_realignment} |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
50 -C ${advanced_options.coefficient_for_downgrading} |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
51 -d ${advanced_options.max_reads_per_bam} |
0 | 52 ${advanced_options.extended_BAQ_computation} |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
53 -q ${advanced_options.minimum_mapping_quality} |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
54 -Q ${advanced_options.minimum_base_quality} |
0 | 55 #if str( $advanced_options.region_string ): |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
56 -r '${advanced_options.region_string}' |
0 | 57 #end if |
58 #end if | |
59 #if str( $genotype_likelihood_computation_type.genotype_likelihood_computation_type_selector ) == 'perform_genotype_likelihood_computation': | |
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
60 ${genotype_likelihood_computation_type.output_format} |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
61 ${genotype_likelihood_computation_type.compressed} |
4
5872c9894a37
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/samtools/samtools_mpileup commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
3
diff
changeset
|
62 |
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
63 #if str( $genotype_likelihood_computation_type.output_tags ) != "None": |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
64 --output-tags '${genotype_likelihood_computation_type.output_tags}' |
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
65 #end if |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
66 |
0 | 67 #if str( $genotype_likelihood_computation_type.perform_indel_calling.perform_indel_calling_selector ) == 'perform_indel_calling': |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
68 --open-prob ${genotype_likelihood_computation_type.perform_indel_calling.gap_open_sequencing_error_probability} |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
69 -e ${genotype_likelihood_computation_type.perform_indel_calling.gap_extension_sequencing_error_probability} |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
70 -h ${genotype_likelihood_computation_type.perform_indel_calling.coefficient_for_modeling_homopolymer_errors} |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
71 -L ${genotype_likelihood_computation_type.perform_indel_calling.skip_indel_calling_above_sample_depth} |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
72 -m ${genotype_likelihood_computation_type.perform_indel_calling.minimum_gapped_reads_for_indel_candidates} |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
73 -F ${genotype_likelihood_computation_type.perform_indel_calling.minimum_gapped_read_fraction} |
2 | 74 ${genotype_likelihood_computation_type.perform_indel_calling.gapped_read_per_sample} |
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
75 #if len( $genotype_likelihood_computation_type.perform_indel_calling.platform_list_repeat ): |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
76 -P '${ ",".join( str( platform.platform_entry ) for platform in $genotype_likelihood_computation_type.perform_indel_calling.platform_list_repeat ) }' |
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
77 #end if |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
78 #elif str( $genotype_likelihood_computation_type.perform_indel_calling.perform_indel_calling_selector ) == 'do_not_perform_indel_calling': |
0 | 79 -I |
80 #end if | |
2 | 81 #else: |
82 ${genotype_likelihood_computation_type.base_position_on_reads} | |
83 ${genotype_likelihood_computation_type.output_mapping_quality} | |
0 | 84 #end if |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
85 --output '$output_mpileup' |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
86 ]]></command> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
87 |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
88 <configfiles> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
89 <configfile name="excluded_read_groups"><![CDATA[ |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
90 #set pasted_data = '' |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
91 #if str( $advanced_options.advanced_options_selector ) == "advanced": |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
92 #if str( $advanced_options.exclude_read_group.exclude_read_groups ) == "paste": |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
93 #set pasted_data = '\t'.join( str( $advanced_options.exclude_read_group['read_groups'] ).split() ) |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
94 #end if |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
95 #end if |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
96 ${pasted_data} |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
97 ]]></configfile> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
98 <configfile name="pasted_regions"><![CDATA[ |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
99 #set pasted_data = '' |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
100 #if str( $advanced_options.advanced_options_selector ) == "advanced": |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
101 #if str( $advanced_options.limit_by_region.limit_by_regions ) == "paste": |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
102 #set pasted_data = '\t'.join( str( $advanced_options.limit_by_region['region_paste'] ).split() ) |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
103 #end if |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
104 #end if |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
105 ${pasted_data} |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
106 ]]></configfile> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
107 </configfiles> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
108 |
2 | 109 <inputs> |
110 <conditional name="reference_source"> | |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
111 <param name="reference_source_selector" type="select" label="Choose the source for the reference genome"> |
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
112 <option value="cached">Use a built-in genome</option> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
113 <option value="history">Use a genome from the history</option> |
0 | 114 </param> |
2 | 115 <when value="cached"> |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
116 <param name="input_bam" type="data" format="bam" multiple="True" min="1" label="BAM file(s)"> |
4
5872c9894a37
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/samtools/samtools_mpileup commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
3
diff
changeset
|
117 <validator type="unspecified_build" /> |
5872c9894a37
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/samtools/samtools_mpileup commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
3
diff
changeset
|
118 <validator message="Sequences are not currently available for the specified build." metadata_column="1" metadata_name="dbkey" table_name="fasta_indexes" type="dataset_metadata_in_data_table" /> |
5872c9894a37
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/samtools/samtools_mpileup commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
3
diff
changeset
|
119 </param> |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
120 <param name="ref_file" type="select" label="Using reference genome"> |
2 | 121 <options from_data_table="fasta_indexes" /> |
122 </param> | |
123 </when> | |
124 <when value="history"> | |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
125 <param name="input_bam" type="data" format="bam" multiple="True" min="1" label="BAM file(s)"> |
4
5872c9894a37
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/samtools/samtools_mpileup commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
3
diff
changeset
|
126 <validator check="bam_index" message="Metadata missing, click the pencil icon in the history item and use the auto-detect feature to correct this issue." type="metadata" /> |
5872c9894a37
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/samtools/samtools_mpileup commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
3
diff
changeset
|
127 </param> |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
128 <param name="ref_file" type="data" format="fasta" label="Using reference genome" /> |
2 | 129 </when> |
130 </conditional> | |
131 <conditional name="genotype_likelihood_computation_type"> | |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
132 <param name="genotype_likelihood_computation_type_selector" type="select" label="Genotype Likelihood Computation"> |
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
133 <option selected="True" value="perform_genotype_likelihood_computation">Perform genotype likelihood computation (--VCF, --BCF options)</option> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
134 <option value="do_not_perform_genotype_likelihood_computation">Do not perform genotype likelihood computation (output pileup)</option> |
2 | 135 </param> |
136 <when value="perform_genotype_likelihood_computation"> | |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
137 <param name="output_format" type="select" label="Choose the output format"> |
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
138 <option value="--VCF">VCF</option> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
139 <option value="--BCF">BCF</option> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
140 </param> |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
141 <param name="compressed" argument="--uncompressed" type="boolean" truevalue="" falsevalue="--uncompressed" checked="False" label="Compress output" /> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
142 <param name="output_tags" argument="--output-tags" type="select" optional="True" multiple="True" display="checkboxes" label="Optional tags to output"> |
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
143 <option value="DP">DP (Number of high-quality bases)</option> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
144 <option value="DPR">DRP (Number of high-quality bases for each observed allele)</option> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
145 <option value="DV">DV (Number of high-quality non-reference bases)</option> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
146 <option value="DP4">DP4 (Number of high-quality ref-forward, ref-reverse, alt-forward and alt-reverse bases)</option> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
147 <option value="INFO/DPR">INFO/DPR (Number of high-quality bases for each observed allele)</option> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
148 <option value="SP">SP (Phred-scaled strand bias P-value)</option> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
149 </param> |
2 | 150 <conditional name="perform_indel_calling"> |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
151 <param name="perform_indel_calling_selector" type="select" label="Perform INDEL calling"> |
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
152 <option selected="True" value="perform_indel_calling_def">Perform INDEL calling using default options</option> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
153 <option value="perform_indel_calling">Perform INDEL calling and set advanced options</option> |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
154 <option value="do_not_perform_indel_calling">Do not perform INDEL calling (-I)</option> |
2 | 155 </param> |
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
156 <when value="perform_indel_calling_def" /> |
2 | 157 <when value="perform_indel_calling"> |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
158 <param name="gap_open_sequencing_error_probability" argument="--open-prob" type="integer" value="40" label="Phred-scaled gap open sequencing error probability" help="Reducing this value leads to more indel calls" /> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
159 <param name="gap_extension_sequencing_error_probability" argument="--ext-prob" type="integer" value="20" label="Phred-scaled gap extension sequencing error probability" help="Reducing this value leads to longer indels" /> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
160 <param name="coefficient_for_modeling_homopolymer_errors" argument="--tandem-qual" type="integer" value="100" label="Coefficient for modeling homopolymer errors" /> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
161 <param name="skip_indel_calling_above_sample_depth" argument="--max-idepth" type="integer" value="250" label="Skip INDEL calling if the average per-sample depth is above" /> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
162 <param name="minimum_gapped_reads_for_indel_candidates" argument="--min-ireads" type="integer" value="1" label="Minimum gapped reads for indel candidates" /> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
163 <param name="minimum_gapped_read_fraction" argument="--gap-frac" type="float" value="0.002" label="Minimum fraction of gapped reads" /> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
164 <param name="gapped_read_per_sample" argument="--per-sample-mF" type="boolean" truevalue="-p" falsevalue="" checked="False" label="Apply --min-ireads and --gap-frac values on a per-sample basis" help="By default both options are applied to reads pooled from all samples"/> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
165 <repeat name="platform_list_repeat" title="Platform for INDEL candidates" help="--platforms"> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
166 <param name="platform_entry" type="text" value="" label="Platform to use for INDEL candidates" help="It is recommended to collect indel candidates from sequencing technologies that have low indel error rate such as ILLUMINA"/> |
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
167 </repeat> |
2 | 168 </when> |
169 <when value="do_not_perform_indel_calling" /> | |
170 </conditional> | |
4
5872c9894a37
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/samtools/samtools_mpileup commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
devteam
parents:
3
diff
changeset
|
171 |
2 | 172 </when> |
173 <when value="do_not_perform_genotype_likelihood_computation"> | |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
174 <param name="base_position_on_reads" argument="--output-BP" type="boolean" truevalue="-O" falsevalue="" checked="False" label="Output base positions on reads" /> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
175 <param name="output_mapping_quality" argument="--output-MQ" type="boolean" truevalue="-s" falsevalue="" checked="False" label="Output mapping quality" /> |
0 | 176 </when> |
2 | 177 </conditional> |
178 <conditional name="advanced_options"> | |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
179 <param name="advanced_options_selector" type="select" label="Set advanced options"> |
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
180 <option selected="True" value="basic">Basic</option> |
2 | 181 <option value="advanced">Advanced</option> |
182 </param> | |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
183 <when value="basic" /> |
2 | 184 <when value="advanced"> |
185 <conditional name="filter_by_flags"> | |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
186 <param name="filter_flags" type="select" label="Set filter by flags"> |
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
187 <option selected="True" value="nofilter">Do not filter</option> |
2 | 188 <option value="filter">Filter by flags to exclude or require</option> |
189 </param> | |
190 <when value="filter"> | |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
191 <param name="require_flags" argument="--incl-flags" type="select" multiple="True" display="checkboxes" label="Require"> |
2 | 192 <option value="1">Read is paired</option> |
193 <option value="2">Read is mapped in a proper pair</option> | |
194 <option value="4">The read is unmapped</option> | |
195 <option value="8">The mate is unmapped</option> | |
196 <option value="16">Read strand</option> | |
197 <option value="32">Mate strand</option> | |
198 <option value="64">Read is the first in a pair</option> | |
199 <option value="128">Read is the second in a pair</option> | |
200 <option value="256">The alignment or this read is not primary</option> | |
201 <option value="512">The read fails platform/vendor quality checks</option> | |
202 <option value="1024">The read is a PCR or optical duplicate</option> | |
203 </param> | |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
204 <param name="exclude_flags" argument="--excl-flags" type="select" multiple="True" display="checkboxes" label="Exclude"> |
2 | 205 <option value="1">Read is paired</option> |
206 <option value="2">Read is mapped in a proper pair</option> | |
207 <option value="4">The read is unmapped</option> | |
208 <option value="8">The mate is unmapped</option> | |
209 <option value="16">Read strand</option> | |
210 <option value="32">Mate strand</option> | |
211 <option value="64">Read is the first in a pair</option> | |
212 <option value="128">Read is the second in a pair</option> | |
213 <option value="256">The alignment or this read is not primary</option> | |
214 <option value="512">The read fails platform/vendor quality checks</option> | |
215 <option value="1024">The read is a PCR or optical duplicate</option> | |
216 </param> | |
217 </when> | |
218 <when value="nofilter" /> | |
219 </conditional> | |
220 <conditional name="limit_by_region"> | |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
221 <param name="limit_by_regions" argument="--positions" type="select" label="Select regions to call"> |
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
222 <option selected="True" value="no_limit">Do not limit</option> |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
223 <option value="history">From a BED file</option> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
224 <option value="paste">Paste a list of regions or BED</option> |
2 | 225 </param> |
226 <when value="history"> | |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
227 <param name="bed_regions" type="data" format="bed" label="BED file"> |
2 | 228 <validator type="dataset_ok_validator" /> |
229 </param> | |
230 </when> | |
231 <when value="paste"> | |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
232 <param name="region_paste" type="text" area="true" size="10x35" label="Regions" help="Paste a list of regions in BED format or as a list of chromosomes and positions" /> |
2 | 233 </when> |
234 <when value="no_limit" /> | |
235 </conditional> | |
236 <conditional name="exclude_read_group"> | |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
237 <param name="exclude_read_groups" argument="--exclude-RG" type="select" label="Select read groups to exclude"> |
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
238 <option selected="True" value="no_limit">Do not exclude</option> |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
239 <option value="history">From a text file</option> |
2 | 240 <option value="paste">Paste a list of read groups</option> |
241 </param> | |
242 <when value="history"> | |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
243 <param name="read_groups" type="data" format="txt" label="Text file"> |
2 | 244 <validator type="dataset_ok_validator" /> |
245 </param> | |
246 </when> | |
247 <when value="paste"> | |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
248 <param name="group_paste" type="text" area="true" size="10x35" label="Read groups" help="Paste a list of read groups" /> |
2 | 249 </when> |
250 <when value="no_limit" /> | |
251 </conditional> | |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
252 <param name="ignore_overlaps" argument="--ignore-overlaps" type="boolean" truevalue="-x" falsevalue="" checked="False" label="Disable read-pair overlap detection" /> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
253 <param name="skip_anomalous_read_pairs" argument="--count-orphans" type="boolean" truevalue="-A" falsevalue="" checked="False" label="Do not skip anomalous read pairs in variant calling" /> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
254 <param name="disable_probabilistic_realignment" argument="--no-BAQ" type="boolean" truevalue="-B" falsevalue="" checked="False" label="Disable probabilistic realignment for the computation of base alignment quality (BAQ)" help="BAQ is the Phred-scaled probability of a read base being misaligned. Applying this option greatly helps to reduce false SNPs caused by misalignments" /> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
255 <param name="coefficient_for_downgrading" argument="--adjust-MQ" type="integer" value="0" label="Coefficient for downgrading mapping quality for reads containing excessive mismatches" help="Given a read with a phred-scaled probability q of being generated from the mapped position, the new mapping quality is about sqrt((INT-q)/INT)*INT. A zero value disables this functionality; if enabled, the recommended value for BWA is 50" /> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
256 <param name="max_reads_per_bam" argument="--max-depth" type="integer" max="1024" min="1" value="250" label="Max reads per BAM" /> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
257 <param name="extended_BAQ_computation" argument="--redo-BAQ" type="boolean" truevalue="-E" falsevalue="" checked="False" label="Redo BAQ computation" help="Ignore existing BQ tags" /> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
258 <param name="minimum_mapping_quality" argument="--min-MQ" type="integer" value="0" label="Minimum mapping quality for an alignment to be used" /> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
259 <param name="minimum_base_quality" argument="--min-BQ" type="integer" value="13" label="Minimum base quality for a base to be considered" /> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
260 <param name="region_string" argument="--region" type="text" value="" label="Only generate pileup in region" help="If used in conjunction with --positions, then considers the intersection of the two requests. Defaults to all sites" /> |
2 | 261 </when> |
262 </conditional> | |
263 </inputs> | |
264 <outputs> | |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
265 <data name="output_mpileup" format="pileup" label="${tool.name} on ${on_string}"> |
2 | 266 <change_format> |
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
267 <when format="bcf" input="genotype_likelihood_computation_type.output_format" value="--BCF" /> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
268 <when format="vcf" input="genotype_likelihood_computation_type.output_format" value="--VCF" /> |
2 | 269 </change_format> |
270 </data> | |
271 </outputs> | |
272 <tests> | |
273 <test> | |
274 <param name="reference_source_selector" value="history" /> | |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
275 <param name="ref_file" ftype="fasta" value="phiX.fasta" /> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
276 <param name="input_bam" ftype="bam" value="samtools_mpileup_in_1.bam" /> |
2 | 277 <param name="genotype_likelihood_computation_type_selector" value="do_not_perform_genotype_likelihood_computation" /> |
278 <param name="advanced_options_selector" value="basic" /> | |
279 <param name="base_position_on_reads" value="true" /> | |
280 <param name="output_mapping_quality" value="true" /> | |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
281 <output name="output_mpileup" file="samtools_mpileup_out_1.pileup" /> |
2 | 282 </test> |
283 <test> | |
284 <param name="reference_source_selector" value="history" /> | |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
285 <param name="ref_file" ftype="fasta" value="phiX.fasta" /> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
286 <param name="input_bam" ftype="bam" value="phiX.bam" /> |
2 | 287 <param name="genotype_likelihood_computation_type_selector" value="perform_genotype_likelihood_computation" /> |
288 <param name="gap_extension_sequencing_error_probability" value="20" /> | |
289 <param name="coefficient_for_modeling_homopolymer_errors" value="100" /> | |
290 <param name="perform_indel_calling_selector" value="perform_indel_calling" /> | |
291 <param name="skip_indel_calling_above_sample_depth" value="250" /> | |
292 <param name="gap_open_sequencing_error_probability" value="40" /> | |
293 <param name="platform_list_repeat" value="0" /> | |
294 <param name="advanced_options_selector" value="basic" /> | |
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
295 <param name="genotype_likelihood_computation_type|output_format" value="VCF" /> |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
296 <output name="output_mpileup" file="samtools_mpileup_out_2.vcf" ftype="vcf" lines_diff="8" /> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
297 </test> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
298 <test> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
299 <param name="reference_source_selector" value="history" /> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
300 <param name="ref_file" ftype="fasta" value="phiX.fasta" /> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
301 <param name="input_bam" ftype="bam" value="samtools_mpileup_in_1.bam" /> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
302 <param name="genotype_likelihood_computation_type_selector" value="do_not_perform_genotype_likelihood_computation" /> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
303 <param name="advanced_options_selector" value="advanced" /> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
304 <param name="minimum_base_quality" value="0" /><!-- most reads have ultra low quality resuling in empty columns --> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
305 <param name="base_position_on_reads" value="true" /> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
306 <param name="output_mapping_quality" value="true" /> |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
307 <output name="output_mpileup" file="samtools_mpileup_out_3.pileup" /> |
2 | 308 </test> |
309 </tests> | |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
310 <help><![CDATA[ |
0 | 311 **What it does** |
312 | |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
313 Report variants for one or multiple BAM files. Alignment records are grouped by sample identifiers in @RG header lines. |
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
314 If sample identifiers are absent, each input file is regarded as one sample. |
2 | 315 |
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
316 **Notes**: Assuming diploid individuals. |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
317 ]]></help> |
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
318 <expand macro="citations" /> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
2
diff
changeset
|
319 </tool> |