annotate samtools_mpileup.xml @ 7:edbe9587b15d draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
author iuc
date Mon, 03 Sep 2018 13:09:45 -0400
parents 483949f5c3b0
children 0a86e1e47784
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
1 <tool id="samtools_mpileup" name="samtools mpileup" version="2.1.4">
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
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[
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
10
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
11 #set $input_bams = $reference_source.input_bam
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
12 @PREPARE_IDX_MULTIPLE@
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
13
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
14 #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
15 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
16 samtools faidx `basename '${reference_source.ref_file}'` &&
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
17 #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
18
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 samtools mpileup
0
f8ea7725e333 Uploaded tool tarball.
devteam
parents:
diff changeset
20 #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
21 -f '${reference_source.ref_file.fields.path}'
0
f8ea7725e333 Uploaded tool tarball.
devteam
parents:
diff changeset
22 #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
23 -f '${reference_source.ref_file}'
0
f8ea7725e333 Uploaded tool tarball.
devteam
parents:
diff changeset
24 #end if
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
25 #for $i in range(len( $input_bams )):
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
26 '${i}'
0
f8ea7725e333 Uploaded tool tarball.
devteam
parents:
diff changeset
27 #end for
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
28
0
f8ea7725e333 Uploaded tool tarball.
devteam
parents:
diff changeset
29 #if str( $advanced_options.advanced_options_selector ) == "advanced":
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
30 #if str( $advanced_options.filter_by_flags.filter_flags ) == "filter":
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
31 #if $advanced_options.filter_by_flags.require_flags:
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
32 #set $filter = $advanced_options.filter_by_flags.require_flags
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
33 @FLAGS@
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
34 --rf $flags
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
35 #end if
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
36 #if $advanced_options.filter_by_flags.exclude_flags:
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
37 #set $filter = $advanced_options.filter_by_flags.exclude_flags
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
38 @FLAGS@
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
39 --ff $flags
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
40 #end if
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
41 #end if
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
42 #if str($advanced_options.limit_by_region.limit_by_regions) == "limit":
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
43 #if str( $advanced_options.limit_by_region.region_paste ) != "None":
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
44 -r '$advanced_options.limit_by_region.region_paste'
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
45 #end if
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
46 #if str( $advanced_options.limit_by_region.bed_regions ) != "None"
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
47 -l '$advanced_options.limit_by_region.bed_regions'
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
48 #end if
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
49 #end if
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
50
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
51 #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
52 -G '$excluded_read_groups'
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
53 #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
54 -G '$advanced_options.exclude_read_group.read_groups'
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
55 #end if
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
56 ${advanced_options.ignore_overlaps}
3
da0203c3461a planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents: 2
diff changeset
57 ${advanced_options.skip_anomalous_read_pairs}
0
f8ea7725e333 Uploaded tool tarball.
devteam
parents:
diff changeset
58 ${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
59 -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
60 -d ${advanced_options.max_reads_per_bam}
0
f8ea7725e333 Uploaded tool tarball.
devteam
parents:
diff changeset
61 ${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
62 -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
63 -Q ${advanced_options.minimum_base_quality}
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
64 $advanced_options.qualities_illumina_onethree
0
f8ea7725e333 Uploaded tool tarball.
devteam
parents:
diff changeset
65 #end if
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
66 #if str( $output_options_cond.output_options_selector ) == 'advanced':
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
67 ${output_options_cond.base_position_on_reads}
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
68 ${output_options_cond.output_mapping_quality}
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
69 ${output_options_cond.output_read_names}
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
70 ${output_options_cond.output_all_pos}
0
f8ea7725e333 Uploaded tool tarball.
devteam
parents:
diff changeset
71 #end if
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
72 --output '$output_file_pu'
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
73 ]]></command>
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
74 <inputs>
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
75 <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
76 <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
77 <option value="cached">Use a built-in genome</option>
da0203c3461a planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents: 2
diff changeset
78 <option value="history">Use a genome from the history</option>
0
f8ea7725e333 Uploaded tool tarball.
devteam
parents:
diff changeset
79 </param>
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
80 <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
81 <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
82 <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
83 <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
84 </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
85 <param name="ref_file" type="select" label="Using reference genome">
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
86 <options from_data_table="fasta_indexes" />
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
87 </param>
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
88 </when>
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
89 <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
90 <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
91 <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
92 </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
93 <param name="ref_file" type="data" format="fasta" label="Using reference genome" />
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
94 </when>
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
95 </conditional>
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
96 <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
97 <param name="advanced_options_selector" type="select" label="Set advanced options">
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
98 <option selected="True" value="default">Basic</option>
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
99 <option value="advanced">Advanced</option>
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
100 </param>
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
101 <when value="default" />
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
102 <when value="advanced">
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
103 <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
104 <param name="filter_flags" type="select" label="Set filter by flags">
3
da0203c3461a planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents: 2
diff changeset
105 <option selected="True" value="nofilter">Do not filter</option>
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
106 <option value="filter">Filter by flags to exclude or require</option>
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
107 </param>
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
108 <when value="filter">
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
109 <param name="require_flags" argument="--rf/--incl-flags" type="select" multiple="True" display="checkboxes" label="Require">
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
110 <expand macro="flag_options" />
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
111 </param>
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
112 <param name="exclude_flags" argument="--ff/--excl-flags" type="select" multiple="True" display="checkboxes" label="Exclude">
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
113 <expand macro="flag_options" />
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
114 </param>
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
115 </when>
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
116 <when value="nofilter" />
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
117 </conditional>
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
118 <conditional name="limit_by_region">
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
119 <param name="limit_by_regions" type="select" label="Select regions to call">
3
da0203c3461a planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents: 2
diff changeset
120 <option selected="True" value="no_limit">Do not limit</option>
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
121 <option value="limit">Specify regions</option>
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
122 </param>
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
123 <when value="limit">
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
124 <param name="bed_regions" argument="-l/--positions" type="data" format="bed" optional="true" label="skip unlisted positions (chr pos) or regions">
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
125 <validator type="dataset_ok_validator" />
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
126 </param>
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
127 <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." />
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
128 </when>
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
129 <when value="no_limit" />
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
130 </conditional>
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
131
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
132
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
133 <conditional name="exclude_read_group">
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
134 <param name="exclude_read_groups" argument="-R/--exclude-RG" type="select" label="Select read groups to exclude">
3
da0203c3461a planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents: 2
diff changeset
135 <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
136 <option value="history">From a text file</option>
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
137 <option value="paste">Paste a list of read groups</option>
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
138 </param>
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
139 <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
140 <param name="read_groups" type="data" format="txt" label="Text file">
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
141 <validator type="dataset_ok_validator" />
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
142 </param>
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
143 </when>
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
144 <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
145 <param name="group_paste" type="text" area="true" size="10x35" label="Read groups" help="Paste a list of read groups" />
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
146 </when>
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
147 <when value="no_limit" />
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
148 </conditional>
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
149 <param name="ignore_overlaps" argument="-x/--ignore-overlaps" type="boolean" truevalue="-x" falsevalue="" checked="False" label="Disable read-pair overlap detection" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
150 <param name="skip_anomalous_read_pairs" argument="-A/--count-orphans" type="boolean" truevalue="-A" falsevalue="" checked="False" label="Do not discard anomalous read pairs" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
151 <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" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
152 <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" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
153 <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" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
154 <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" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
155 <param name="minimum_mapping_quality" argument="-q/--min-MQ" type="integer" value="0" label="Minimum mapping quality for an alignment to be used" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
156 <param name="minimum_base_quality" argument="-Q/--min-BQ" type="integer" value="13" label="Minimum base quality for a base to be considered" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
157 <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"/>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
158 </when>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
159 </conditional>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
160 <conditional name="output_options_cond">
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
161 <param name="output_options_selector" type="select" label="Output options">
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
162 <option selected="True" value="default">Default</option>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
163 <option value="advanced">Advanced</option>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
164 </param>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
165 <when value="default"/>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
166 <when value="advanced">
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
167 <param name="base_position_on_reads" argument="-O/--output-BP" type="boolean" truevalue="-O" falsevalue="" checked="False" label="Output base positions on reads" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
168 <param name="output_mapping_quality" argument="-s/--output-MQ" type="boolean" truevalue="-s" falsevalue="" checked="False" label="Output mapping quality" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
169 <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)" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
170 <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.">
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
171 <option selected="True" value="">No</option>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
172 <option value="-a">all (including those with zero depth)</option>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
173 <option value="-aa">absolutely all (including unused reference sequences)</option>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
174 </param>
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
175 </when>
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
176 </conditional>
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
177 </inputs>
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
178 <outputs>
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
179 <data name="output_file_pu" format="pileup" label="${tool.name} on ${on_string} pileup"/>
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
180 </outputs>
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
181 <tests>
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
182 <!-- samtools test https://github.com/samtools/samtools/blob/4651d25f2b14cd68ffb0915a74b0c1b529b8cfa1/test/test.pl#L757 -->
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
183 <test>
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
184 <conditional name="reference_source">
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
185 <param name="reference_source_selector" value="history" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
186 <param name="ref_file" ftype="fasta" value="mpileup.ref.fa" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
187 <param name="input_bam" ftype="bam" value="mpileup.1.bam,mpileup.2.bam,mpileup.3.bam" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
188 </conditional>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
189 <conditional name="advanced_options">
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
190 <param name="advanced_options_selector" value="advanced" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
191 <conditional name="limit_by_region">
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
192 <param name="limit_by_regions" value="limit"/>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
193 <param name="region_paste" value="17:100-150" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
194 </conditional>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
195 </conditional>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
196 <output name="output_file_pu" file="mpileup.out.1" ftype="pileup" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
197 </test>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
198 <!-- 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");-->
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
199 <test>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
200 <conditional name="reference_source">
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
201 <param name="reference_source_selector" value="history" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
202 <param name="ref_file" ftype="fasta" value="mpileup.ref.fa" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
203 <param name="input_bam" ftype="bam" value="mpileup.1.bam" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
204 </conditional>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
205 <conditional name="advanced_options">
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
206 <param name="advanced_options_selector" value="advanced" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
207 <conditional name="filter_by_flags">
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
208 <param name="filter_flags" value="filter"/>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
209 <param name="exclude_flags" value="4,16"/>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
210 </conditional>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
211 <conditional name="limit_by_region">
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
212 <param name="limit_by_regions" value="limit"/>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
213 <param name="region_paste" value="17:1050-1060" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
214 </conditional>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
215 <param name="disable_probabilistic_realignment" value="-B" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
216 </conditional>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
217 <output name="output_file_pu" file="mpileup.out.3" ftype="pileup" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
218 </test>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
219 <!-- 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");
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
220 -->
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
221 <!-- original test from galaxy tool-->
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
222 <test>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
223 <conditional name="reference_source">
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
224 <param name="reference_source_selector" value="history" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
225 <param name="ref_file" ftype="fasta" value="phiX.fasta" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
226 <param name="input_bam" ftype="bam" value="samtools_mpileup_in_1.bam" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
227 </conditional>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
228 <conditional name="output_options_cond">
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
229 <param name="output_options_selector" value="advanced" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
230 <param name="base_position_on_reads" value="true" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
231 <param name="output_mapping_quality" value="true" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
232 </conditional>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
233 <conditional name="advanced_options">
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
234 <param name="advanced_options_selector" value="default" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
235 </conditional>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
236 <output name="output_file_pu" file="samtools_mpileup_out_1.pileup" ftype="pileup" />
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
237 </test>
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
238 <test>
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
239 <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
240 <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
241 <param name="input_bam" ftype="bam" value="phiX.bam" />
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
242 <conditional name="output_options_cond">
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
243 <param name="output_options_selector" value="default" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
244 </conditional>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
245 <conditional name="advanced_options">
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
246 <param name="advanced_options_selector" value="advanced" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
247 <param name="skip_anomalous_read_pairs" value="-A" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
248 </conditional>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
249 <output name="output_file_pu" file="samtools_mpileup_out_2.pileup" ftype="pileup" />
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
250 </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
251 <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
252 <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
253 <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
254 <param name="input_bam" ftype="bam" value="samtools_mpileup_in_1.bam" />
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
255 <conditional name="output_options_cond">
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
256 <param name="output_options_cond" value="advanced" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
257 <param name="base_position_on_reads" value="true" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
258 <param name="output_mapping_quality" value="true" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
259 </conditional>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
260 <conditional name="advanced_options">
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
261 <param name="advanced_options_selector" value="advanced" />
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
262 <param name="minimum_base_quality" value="0" /><!-- most reads have ultra low quality resuling in empty columns -->
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
263 </conditional>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
264 <output name="output_file_pu" file="samtools_mpileup_out_3.pileup" ftype="pileup" />
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
265 </test>
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
266 </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
267 <help><![CDATA[
0
f8ea7725e333 Uploaded tool tarball.
devteam
parents:
diff changeset
268 **What it does**
f8ea7725e333 Uploaded tool tarball.
devteam
parents:
diff changeset
269
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
270 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.
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
271
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
272 Generation of VCF and BCF output, is deprecated and not available in the Galaxy tool. Please use bcftools mpileup for this instead.
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
273
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
274 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.
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
275
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
276 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.
2
3aa48bcbc599 Uploaded tarball for 0.0.3 version.
devteam
parents: 1
diff changeset
277
7
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
278 **BAQ (Base Alignment Quality)**
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
279
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
280 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>
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
281
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
282 BAQ is turned on when a reference file is supplied using the -f option. To disable it, use the -B option.
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
283
edbe9587b15d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents: 6
diff changeset
284 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.
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 ]]></help>
3
da0203c3461a planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents: 2
diff changeset
286 <expand macro="citations" />
da0203c3461a planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents: 2
diff changeset
287 </tool>