Mercurial > repos > iuc > gatk2
diff depth_of_coverage.xml @ 11:0d369d08ad6e draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gatk2 commit 344140b8df53b8b7024618bb04594607a045c03a
author | iuc |
---|---|
date | Mon, 04 May 2015 22:47:06 -0400 |
parents | b80301676614 |
children | 669a23f1f4b5 |
line wrap: on
line diff
--- a/depth_of_coverage.xml Tue Apr 28 22:56:25 2015 -0400 +++ b/depth_of_coverage.xml Mon May 04 22:47:06 2015 -0400 @@ -1,10 +1,10 @@ <tool id="gatk2_depth_of_coverage" name="Depth of Coverage" version="@VERSION@.0"> <description>on BAM files</description> - <expand macro="requirements" /> - <expand macro="version_command" /> <macros> <import>gatk2_macros.xml</import> </macros> + <expand macro="requirements" /> + <expand macro="version_command" /> <command interpreter="python">gatk2_wrapper.py ##--max_jvm_heap_fraction "1" --stdout "${output_log}" @@ -33,13 +33,13 @@ #end for #end if --out "${output_per_locus_coverage}" - + #for $ct_group in $summary_coverage_threshold_group: --summaryCoverageThreshold "${ct_group.summary_coverage_threshold}" #end for --outputFormat "${output_format}" ' - + #include source=$standard_gatk_options# ##start analysis specific options #if $analysis_param_type.analysis_param_type_selector == "advanced": @@ -85,7 +85,7 @@ && mv ${output_per_locus_coverage}.sample_cumulative_coverage_proportions ${output_cumulative_coverage_proportions_sample} #end if #end if - + #if 'readgroup' in $partition_types and ( str( $analysis_param_type.analysis_param_type_selector ) == "basic" or str( $analysis_param_type.print_bin_endpoints_and_exit ) == "" ): #if str( $analysis_param_type.analysis_param_type_selector ) == "basic" or str( $analysis_param_type.omit_per_sample_stats ) == "": && mv ${output_per_locus_coverage}.read_group_summary ${output_summary_readgroup} @@ -104,7 +104,7 @@ && mv ${output_per_locus_coverage}.read_group_cumulative_coverage_proportions ${output_cumulative_coverage_proportions_readgroup} #end if #end if - + #if 'library' in $partition_types and ( str( $analysis_param_type.analysis_param_type_selector ) == "basic" or str( $analysis_param_type.print_bin_endpoints_and_exit ) == "" ): #if str( $analysis_param_type.analysis_param_type_selector ) == "basic" or str( $analysis_param_type.omit_per_sample_stats ) == "": && mv ${output_per_locus_coverage}.library_summary ${output_summary_library} @@ -123,7 +123,6 @@ && mv ${output_per_locus_coverage}.library_cumulative_coverage_proportions ${output_cumulative_coverage_proportions_library} #end if #end if - </command> <inputs> @@ -138,7 +137,7 @@ </repeat> <param name="ref_file" type="select" label="Using reference genome" help="-R,--reference_sequence &lt;reference_sequence&gt;"> <options from_data_table="gatk2_picard_indexes"> - <!-- <filter type="data_meta" key="dbkey" ref="input_bam" column="dbkey"/> does not yet work in a repeat...--> + <!-- <filter type="data_meta" key="dbkey" ref="input_bam" column="dbkey"/> does not yet work in a repeat...--> </options> <validator type="no_options" message="A built-in reference genome is not available for the build associated with the selected input file"/> </param> @@ -150,27 +149,27 @@ <param name="ref_file" type="data" format="fasta" label="Using reference file" help="-R,--reference_sequence &lt;reference_sequence&gt;" /> </when> </conditional> - + <param name="input_calculate_coverage_over_genes" type="data" format="data" label="RefSeq Rod" optional="True" help="-geneList,--calculateCoverageOverGenes &lt;calculateCoverageOverGenes&gt;" /> - + <param name="partition_type" type="select" label="Partition type for depth of coverage" multiple="True" display="checkboxes" help="-pt,--partitionType &lt;partitionType&gt;"> <option value="sample" selected="True">sample</option> <option value="readgroup">readgroup</option> <option value="library">library</option> </param> - + <repeat name="summary_coverage_threshold_group" title="Summary coverage threshold" help="-ct,--summaryCoverageThreshold &lt;summaryCoverageThreshold&gt;"> <param name="summary_coverage_threshold" type="integer" value="15" label="for summary file outputs, report the % of bases covered to >= this number" /> </repeat> - + <param name="output_format" type="select" label="Output format" help="--outputFormat &lt;outputFormat&gt;" > <option value="csv">csv</option> <option value="table">table</option> <option value="rtable" selected="True">rtable</option> </param> - + <expand macro="gatk_param_type_conditional" /> - + <expand macro="analysis_type_conditional"> <param name="ignore_deletion_sites" type="boolean" truevalue="--ignoreDeletionSites" falsevalue="" checked="False" label="Ignore sites consisting only of deletions" help="--ignoreDeletionSites" /> <param name="include_deletions" type="boolean" truevalue="--includeDeletions" falsevalue="" checked="False" label="Include information on deletions" help="-dels,--includeDeletions" /> @@ -359,7 +358,7 @@ </conditional> </actions> </data> - + <data format="tabular" name="output_summary_readgroup" label="${tool.name} on ${on_string} (output summary readgroup)" > <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['omit_per_sample_stats'] == False</filter> <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter> @@ -512,7 +511,7 @@ </conditional> </actions> </data> - + <data format="tabular" name="output_summary_library" label="${tool.name} on ${on_string} (output summary library)" > <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['omit_per_sample_stats'] == False</filter> <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter> @@ -665,7 +664,7 @@ </conditional> </actions> </data> - + <data format="tabular" name="output_log" label="${tool.name} on ${on_string} (log)" /> </outputs> <trackster_conf/> @@ -691,7 +690,7 @@ <help> **What it does** -DepthOfCoverage processes a set of bam files to determine coverage at different levels of partitioning and aggregation. Coverage can be analyzed per locus, per interval, per gene, or in total; can be partitioned by sample, by read group, by technology, by center, or by library; and can be summarized by mean, median, quartiles, and/or percentage of bases covered to or beyond a threshold. Additionally, reads and bases can be filtered by mapping or base quality score. +DepthOfCoverage processes a set of bam files to determine coverage at different levels of partitioning and aggregation. Coverage can be analyzed per locus, per interval, per gene, or in total; can be partitioned by sample, by read group, by technology, by center, or by library; and can be summarized by mean, median, quartiles, and/or percentage of bases covered to or beyond a threshold. Additionally, reads and bases can be filtered by mapping or base quality score. For more information on the GATK Depth of Coverage, see this `tool specific page <http://www.broadinstitute.org/gatk/gatkdocs/org_broadinstitute_sting_gatk_walkers_coverage_DepthOfCoverage.html>`_.