annotate samtools_mpileup.xml @ 10:8da515fbc1bf draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
author iuc
date Tue, 21 Sep 2021 09:33:51 +0000
parents fa7ad9b89f4a
children 111f83918fe6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
1 <tool id="samtools_mpileup" name="samtools mpileup" version="2.1.4">
8
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
2 <description>multi-way pileup of variants</description>
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
3 <macros>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
4 <import>macros.xml</import>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
5 </macros>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
6 <expand macro="requirements" />
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
7 <expand macro="stdio" />
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
8 <expand macro="version_command" />
8
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
9 <command><![CDATA[
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
10
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
11 #set $input_bams = $reference_source.input_bam
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
12 @PREPARE_IDX_MULTIPLE@
8
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
13
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
14 #if $reference_source.reference_source_selector == "history":
10
8da515fbc1bf "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents: 9
diff changeset
15 #set ref_fa = 'ref.fa'
8da515fbc1bf "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents: 9
diff changeset
16 ln -s '${reference_source.ref_file}' 'ref.fa' &&
8da515fbc1bf "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents: 9
diff changeset
17 samtools faidx ref.fa &&
8da515fbc1bf "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents: 9
diff changeset
18 #else:
8da515fbc1bf "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents: 9
diff changeset
19 #set ref_fa = str( $reference_source.ref_file.fields.path )
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
20 #end if
8
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
21
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
22 samtools mpileup
10
8da515fbc1bf "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents: 9
diff changeset
23 -f '$ref_fa'
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
24 #for $i in range(len( $input_bams )):
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
25 '${i}'
0
44a18a94d7a9 Uploaded tool tarball.
devteam
parents:
diff changeset
26 #end for
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
27
0
44a18a94d7a9 Uploaded tool tarball.
devteam
parents:
diff changeset
28 #if str( $advanced_options.advanced_options_selector ) == "advanced":
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
29 #if str( $advanced_options.filter_by_flags.filter_flags ) == "filter":
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
30 #if $advanced_options.filter_by_flags.require_flags:
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
31 #set $filter = $advanced_options.filter_by_flags.require_flags
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
32 @FLAGS@
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
33 --rf $flags
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
34 #end if
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
35 #if $advanced_options.filter_by_flags.exclude_flags:
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
36 #set $filter = $advanced_options.filter_by_flags.exclude_flags
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
37 @FLAGS@
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
38 --ff $flags
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
39 #end if
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
40 #end if
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
41 #if str($advanced_options.limit_by_region.limit_by_regions) == "limit":
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
42 #if str( $advanced_options.limit_by_region.region_paste ) != "None":
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
43 -r '$advanced_options.limit_by_region.region_paste'
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
44 #end if
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
45 #if str( $advanced_options.limit_by_region.bed_regions ) != "None"
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
46 -l '$advanced_options.limit_by_region.bed_regions'
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
47 #end if
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
48 #end if
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
49
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
50 #if str( $advanced_options.exclude_read_group.exclude_read_groups ) == "paste":
8
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
51 -G '$excluded_read_groups'
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
52 #elif str( $advanced_options.exclude_read_group.exclude_read_groups ) == "history"
8
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
53 -G '$advanced_options.exclude_read_group.read_groups'
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
54 #end if
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
55 ${advanced_options.ignore_overlaps}
5
aa0ef6f0ee89 planemo upload commit 7d9b478cd03f31705266596fe4c168e719c672b6
devteam
parents: 4
diff changeset
56 ${advanced_options.skip_anomalous_read_pairs}
0
44a18a94d7a9 Uploaded tool tarball.
devteam
parents:
diff changeset
57 ${advanced_options.disable_probabilistic_realignment}
8
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
58 -C ${advanced_options.coefficient_for_downgrading}
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
59 -d ${advanced_options.max_reads_per_bam}
0
44a18a94d7a9 Uploaded tool tarball.
devteam
parents:
diff changeset
60 ${advanced_options.extended_BAQ_computation}
8
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
61 -q ${advanced_options.minimum_mapping_quality}
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
62 -Q ${advanced_options.minimum_base_quality}
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
63 $advanced_options.qualities_illumina_onethree
0
44a18a94d7a9 Uploaded tool tarball.
devteam
parents:
diff changeset
64 #end if
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
65 #if str( $output_options_cond.output_options_selector ) == 'advanced':
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
66 ${output_options_cond.base_position_on_reads}
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
67 ${output_options_cond.output_mapping_quality}
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
68 ${output_options_cond.output_read_names}
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
69 ${output_options_cond.output_all_pos}
0
44a18a94d7a9 Uploaded tool tarball.
devteam
parents:
diff changeset
70 #end if
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
71 --output '$output_file_pu'
8
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
72 ]]></command>
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
73 <inputs>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
74 <conditional name="reference_source">
8
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
75 <param name="reference_source_selector" type="select" label="Choose the source for the reference genome">
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
76 <option value="cached">Use a built-in genome</option>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
77 <option value="history">Use a genome from the history</option>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
78 </param>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
79 <when value="cached">
8
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
80 <param name="input_bam" type="data" format="bam" multiple="True" min="1" label="BAM file(s)">
7
bfc4517aa037 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/samtools/samtools_mpileup commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 6
diff changeset
81 <validator type="unspecified_build" />
bfc4517aa037 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/samtools/samtools_mpileup commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 6
diff changeset
82 <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" />
bfc4517aa037 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/samtools/samtools_mpileup commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 6
diff changeset
83 </param>
8
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
84 <param name="ref_file" type="select" label="Using reference genome">
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
85 <options from_data_table="fasta_indexes" />
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
86 </param>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
87 </when>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
88 <when value="history">
8
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
89 <param name="input_bam" type="data" format="bam" multiple="True" min="1" label="BAM file(s)">
7
bfc4517aa037 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/samtools/samtools_mpileup commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 6
diff changeset
90 <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" />
bfc4517aa037 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/samtools/samtools_mpileup commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 6
diff changeset
91 </param>
8
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
92 <param name="ref_file" type="data" format="fasta" label="Using reference genome" />
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
93 </when>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
94 </conditional>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
95 <conditional name="advanced_options">
8
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
96 <param name="advanced_options_selector" type="select" label="Set advanced options">
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
97 <option selected="True" value="default">Basic</option>
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
98 <option value="advanced">Advanced</option>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
99 </param>
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
100 <when value="default" />
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
101 <when value="advanced">
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
102 <conditional name="filter_by_flags">
8
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
103 <param name="filter_flags" type="select" label="Set filter by flags">
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
104 <option selected="True" value="nofilter">Do not filter</option>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
105 <option value="filter">Filter by flags to exclude or require</option>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
106 </param>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
107 <when value="filter">
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
108 <param name="require_flags" argument="--rf/--incl-flags" type="select" multiple="True" display="checkboxes" label="Require">
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
109 <expand macro="flag_options" />
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
110 </param>
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
111 <param name="exclude_flags" argument="--ff/--excl-flags" type="select" multiple="True" display="checkboxes" label="Exclude">
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
112 <expand macro="flag_options" />
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
113 </param>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
114 </when>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
115 <when value="nofilter" />
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
116 </conditional>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
117 <conditional name="limit_by_region">
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
118 <param name="limit_by_regions" type="select" label="Select regions to call">
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
119 <option selected="True" value="no_limit">Do not limit</option>
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
120 <option value="limit">Specify regions</option>
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
121 </param>
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
122 <when value="limit">
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
123 <param name="bed_regions" argument="-l/--positions" type="data" format="bed" optional="true" label="skip unlisted positions (chr pos) or regions">
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
124 <validator type="dataset_ok_validator" />
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
125 </param>
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
126 <param name="region_paste" argument="-r/--region" type="text" optional="true" label="region in which pileup is generated" help="Format CHR:FROM-TO, e.g. 17:100-150. If used in conjunction with -l then considers the intersection of the two requests." />
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
127 </when>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
128 <when value="no_limit" />
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
129 </conditional>
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
130
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
131
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
132 <conditional name="exclude_read_group">
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
133 <param name="exclude_read_groups" argument="-R/--exclude-RG" type="select" label="Select read groups to exclude">
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
134 <option selected="True" value="no_limit">Do not exclude</option>
8
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
135 <option value="history">From a text file</option>
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
136 <option value="paste">Paste a list of read groups</option>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
137 </param>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
138 <when value="history">
8
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
139 <param name="read_groups" type="data" format="txt" label="Text file">
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
140 <validator type="dataset_ok_validator" />
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
141 </param>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
142 </when>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
143 <when value="paste">
8
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
144 <param name="group_paste" type="text" area="true" size="10x35" label="Read groups" help="Paste a list of read groups" />
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
145 </when>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
146 <when value="no_limit" />
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
147 </conditional>
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
148 <param name="ignore_overlaps" argument="-x/--ignore-overlaps" type="boolean" truevalue="-x" falsevalue="" checked="False" label="Disable read-pair overlap detection" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
149 <param name="skip_anomalous_read_pairs" argument="-A/--count-orphans" type="boolean" truevalue="-A" falsevalue="" checked="False" label="Do not discard anomalous read pairs" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
150 <param name="disable_probabilistic_realignment" argument="-B/--no-BAQ" type="boolean" truevalue="-B" falsevalue="" checked="False" label="Disable BAQ (per-Base Alignment Quality), see below" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
151 <param name="coefficient_for_downgrading" argument="-C/--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" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
152 <param name="max_reads_per_bam" argument="-d/--max-depth" type="integer" min="0" value="8000" label="max per-file depth; avoids excessive memory usage" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
153 <param name="extended_BAQ_computation" argument="-E/--redo-BAQ" type="boolean" truevalue="-E" falsevalue="" checked="False" label="Recalculate BAQ on the fly" help="Ignore existing BQ tags" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
154 <param name="minimum_mapping_quality" argument="-q/--min-MQ" type="integer" value="0" label="Minimum mapping quality for an alignment to be used" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
155 <param name="minimum_base_quality" argument="-Q/--min-BQ" type="integer" value="13" label="Minimum base quality for a base to be considered" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
156 <param name="qualities_illumina_onethree" argument="-6/--illumina1.3+" type="boolean" truevalue="-6" falsevalue="" checked="False" label="quality is in the Illumina-1.3+ encoding"/>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
157 </when>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
158 </conditional>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
159 <conditional name="output_options_cond">
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
160 <param name="output_options_selector" type="select" label="Output options">
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
161 <option selected="True" value="default">Default</option>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
162 <option value="advanced">Advanced</option>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
163 </param>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
164 <when value="default"/>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
165 <when value="advanced">
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
166 <param name="base_position_on_reads" argument="-O/--output-BP" type="boolean" truevalue="-O" falsevalue="" checked="False" label="Output base positions on reads" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
167 <param name="output_mapping_quality" argument="-s/--output-MQ" type="boolean" truevalue="-s" falsevalue="" checked="False" label="Output mapping quality" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
168 <param name="output_read_names" argument="--output-QNAME" type="boolean" truevalue="--output-QNAME" falsevalue="" checked="False" label="Output an extra column containing comma-separated read names. (--output-QNAME)" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
169 <param name="output_all_pos" argument="-a" type="select" label="Output absolutely all positions" help="Output all positions, including those with zero depth. (-a) Output absolutely all positions, including unused reference sequences (-aa). Note that when used in conjunction with a BED file the -a option may sometimes operate as if -aa was specified if the reference sequence has coverage outside of the region specified in the BED file.">
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
170 <option selected="True" value="">No</option>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
171 <option value="-a">all (including those with zero depth)</option>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
172 <option value="-aa">absolutely all (including unused reference sequences)</option>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
173 </param>
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
174 </when>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
175 </conditional>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
176 </inputs>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
177 <outputs>
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
178 <data name="output_file_pu" format="pileup" label="${tool.name} on ${on_string} pileup"/>
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
179 </outputs>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
180 <tests>
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
181 <!-- samtools test https://github.com/samtools/samtools/blob/4651d25f2b14cd68ffb0915a74b0c1b529b8cfa1/test/test.pl#L757 -->
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
182 <test>
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
183 <conditional name="reference_source">
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
184 <param name="reference_source_selector" value="history" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
185 <param name="ref_file" ftype="fasta" value="mpileup.ref.fa" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
186 <param name="input_bam" ftype="bam" value="mpileup.1.bam,mpileup.2.bam,mpileup.3.bam" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
187 </conditional>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
188 <conditional name="advanced_options">
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
189 <param name="advanced_options_selector" value="advanced" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
190 <conditional name="limit_by_region">
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
191 <param name="limit_by_regions" value="limit"/>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
192 <param name="region_paste" value="17:100-150" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
193 </conditional>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
194 </conditional>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
195 <output name="output_file_pu" file="mpileup.out.1" ftype="pileup" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
196 </test>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
197 <!-- test_cmd($opts,out=>'dat/mpileup.out.1',err=>'dat/mpileup.err.1',cmd=>"$$opts{bin}/samtools mpileup -b $$opts{tmp}/mpileup.bam.list -f $$opts{tmp}/mpileup.ref.fa.gz -r17:100-150");-->
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
198 <test>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
199 <conditional name="reference_source">
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
200 <param name="reference_source_selector" value="history" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
201 <param name="ref_file" ftype="fasta" value="mpileup.ref.fa" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
202 <param name="input_bam" ftype="bam" value="mpileup.1.bam" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
203 </conditional>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
204 <conditional name="advanced_options">
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
205 <param name="advanced_options_selector" value="advanced" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
206 <conditional name="filter_by_flags">
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
207 <param name="filter_flags" value="filter"/>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
208 <param name="exclude_flags" value="4,16"/>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
209 </conditional>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
210 <conditional name="limit_by_region">
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
211 <param name="limit_by_regions" value="limit"/>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
212 <param name="region_paste" value="17:1050-1060" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
213 </conditional>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
214 <param name="disable_probabilistic_realignment" value="-B" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
215 </conditional>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
216 <output name="output_file_pu" file="mpileup.out.3" ftype="pileup" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
217 </test>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
218 <!-- test_cmd($opts,out=>'dat/mpileup.out.3',cmd=>"$$opts{bin}/samtools mpileup -B \-\-ff 0x14 -f $$opts{tmp}/mpileup.ref.fa.gz -r17:1050-1060 $$opts{tmp}/mpileup.1.bam | grep -v mpileup");
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
219 -->
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
220 <!-- original test from galaxy tool-->
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
221 <test>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
222 <conditional name="reference_source">
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
223 <param name="reference_source_selector" value="history" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
224 <param name="ref_file" ftype="fasta" value="phiX.fasta" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
225 <param name="input_bam" ftype="bam" value="samtools_mpileup_in_1.bam" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
226 </conditional>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
227 <conditional name="output_options_cond">
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
228 <param name="output_options_selector" value="advanced" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
229 <param name="base_position_on_reads" value="true" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
230 <param name="output_mapping_quality" value="true" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
231 </conditional>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
232 <conditional name="advanced_options">
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
233 <param name="advanced_options_selector" value="default" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
234 </conditional>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
235 <output name="output_file_pu" file="samtools_mpileup_out_1.pileup" ftype="pileup" />
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
236 </test>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
237 <test>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
238 <param name="reference_source_selector" value="history" />
8
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
239 <param name="ref_file" ftype="fasta" value="phiX.fasta" />
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
240 <param name="input_bam" ftype="bam" value="phiX.bam" />
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
241 <conditional name="output_options_cond">
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
242 <param name="output_options_selector" value="default" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
243 </conditional>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
244 <conditional name="advanced_options">
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
245 <param name="advanced_options_selector" value="advanced" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
246 <param name="skip_anomalous_read_pairs" value="-A" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
247 </conditional>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
248 <output name="output_file_pu" file="samtools_mpileup_out_2.pileup" ftype="pileup" />
8
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
249 </test>
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
250 <test>
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
251 <param name="reference_source_selector" value="history" />
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
252 <param name="ref_file" ftype="fasta" value="phiX.fasta" />
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
253 <param name="input_bam" ftype="bam" value="samtools_mpileup_in_1.bam" />
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
254 <conditional name="output_options_cond">
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
255 <param name="output_options_cond" value="advanced" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
256 <param name="base_position_on_reads" value="true" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
257 <param name="output_mapping_quality" value="true" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
258 </conditional>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
259 <conditional name="advanced_options">
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
260 <param name="advanced_options_selector" value="advanced" />
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
261 <param name="minimum_base_quality" value="0" /><!-- most reads have ultra low quality resuling in empty columns -->
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
262 </conditional>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
263 <output name="output_file_pu" file="samtools_mpileup_out_3.pileup" ftype="pileup" />
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
264 </test>
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
265 </tests>
8
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
266 <help><![CDATA[
0
44a18a94d7a9 Uploaded tool tarball.
devteam
parents:
diff changeset
267 **What it does**
44a18a94d7a9 Uploaded tool tarball.
devteam
parents:
diff changeset
268
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
269 Generate pileup for one or multiple BAM files. Alignment records are grouped by sample (SM) identifiers in @RG header lines. If sample identifiers are absent, each input file is regarded as one sample.
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
270
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
271 Generation of VCF and BCF output, is deprecated and not available in the Galaxy tool. Please use bcftools mpileup for this instead.
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
272
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
273 In the pileup format (without -u or -g), each line represents a genomic position, consisting of chromosome name, 1-based coordinate, reference base, the number of reads covering the site, read bases, base qualities and alignment mapping qualities. Information on match, mismatch, indel, strand, mapping quality and start and end of a read are all encoded at the read base column. At this column, a dot stands for a match to the reference base on the forward strand, a comma for a match on the reverse strand, a '>' or '<' for a reference skip, 'ACGTN' for a mismatch on the forward strand and 'acgtn' for a mismatch on the reverse strand. A pattern '\\+[0-9]+[ACGTNacgtn]+' indicates there is an insertion between this reference position and the next reference position. The length of the insertion is given by the integer in the pattern, followed by the inserted sequence. Similarly, a pattern '-[0-9]+[ACGTNacgtn]+' represents a deletion from the reference. The deleted bases will be presented as '*' in the following lines. Also at the read base column, a symbol '^' marks the start of a read. The ASCII of the character following '^' minus 33 gives the mapping quality. A symbol '$' marks the end of a read segment.
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
274
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
275 Note that there are two orthogonal ways to specify locations in the input file; via -r region and -l file. The former uses (and requires) an index to do random access while the latter streams through the file contents filtering out the specified regions, requiring no index. The two may be used in conjunction. For example a BED file containing locations of genes in chromosome 20 could be specified using -r 20 -l chr20.bed, meaning that the index is used to find chromosome 20 and then it is filtered for the regions listed in the bed file.
0
44a18a94d7a9 Uploaded tool tarball.
devteam
parents:
diff changeset
276
9
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
277 **BAQ (Base Alignment Quality)**
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
278
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
279 BAQ is the Phred-scaled probability of a read base being misaligned. It greatly helps to reduce false SNPs caused by misalignments. BAQ is calculated using the probabilistic realignment method described in the paper “Improving SNP discovery by base alignment quality”, Heng Li, Bioinformatics, Volume 27, Issue 8 <https://doi.org/10.1093/bioinformatics/btr076>
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
280
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
281 BAQ is turned on when a reference file is supplied using the -f option. To disable it, use the -B option.
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
282
fa7ad9b89f4a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 8
diff changeset
283 It is possible to store pre-calculated BAQ values in a SAM BQ:Z tag. Samtools mpileup will use the precalculated values if it finds them. The -E option can be used to make it ignore the contents of the BQ:Z tag and force it to recalculate the BAQ scores by making a new alignment.
8
583abf29fc8e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 7
diff changeset
284 ]]></help>
4
c6fdfe3331d6 Uploaded
devteam
parents: 3
diff changeset
285 <expand macro="citations" />
0
44a18a94d7a9 Uploaded tool tarball.
devteam
parents:
diff changeset
286 </tool>