comparison computeGCBias.xml @ 65:9bee2c86eeb1 draft

planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit ab1ab06323702186cf0c883d5774720cbb822cb5-dirty
author iuc
date Mon, 25 May 2015 05:16:10 -0400
parents f3140d17939e
children 1dbd76a58d8b
comparison
equal deleted inserted replaced
64:627004611e98 65:9bee2c86eeb1
1 <tool id="deeptools_computeGCBias" name="computeGCBias" version="@WRAPPER_VERSION@.0"> 1 <tool id="deeptools_computeGCBias" name="computeGCBias" version="@WRAPPER_VERSION@.0">
2 <description>to see whether your samples should be normalized for GC bias</description> 2 <description>to see whether your samples should be normalized for GC bias</description>
3 <expand macro="requirements" />
4 <expand macro="stdio" />
5 <macros> 3 <macros>
6 <token name="@BINARY@">computeGCBias</token> 4 <token name="@BINARY@">computeGCBias</token>
7 <import>deepTools_macros.xml</import> 5 <import>deepTools_macros.xml</import>
8 </macros> 6 </macros>
7 <expand macro="requirements" />
9 <command> 8 <command>
10 <![CDATA[ 9 <![CDATA[
11 ln -s $bamInput local_bamInput.bam; 10 ln -s $bamInput local_bamInput.bam;
12 ln -s $bamInput.metadata.bam_index local_bamInput.bam.bai; 11 ln -s $bamInput.metadata.bam_index local_bamInput.bam.bai;
13 12
29 #if str($region).strip() != '': 28 #if str($region).strip() != '':
30 --region '$region' 29 --region '$region'
31 #end if 30 #end if
32 31
33 #if $advancedOpt.showAdvancedOpt == "yes": 32 #if $advancedOpt.showAdvancedOpt == "yes":
34
35 --sampleSize '$advancedOpt.sampleSize' 33 --sampleSize '$advancedOpt.sampleSize'
36 --regionSize '$advancedOpt.regionSize' 34 --regionSize '$advancedOpt.regionSize'
37 35
38 #if $advancedOpt.filterOut: 36 #if $advancedOpt.filterOut:
39 --filterOut $advancedOpt.filterOut 37 --filterOut $advancedOpt.filterOut
68 <when value="yes"> 66 <when value="yes">
69 <param name="sampleSize" type="integer" value="50000000" min="1" 67 <param name="sampleSize" type="integer" value="50000000" min="1"
70 label="Number of sampling points to be considered" help="(--sampleSize)" /> 68 label="Number of sampling points to be considered" help="(--sampleSize)" />
71 <param name="regionSize" type="integer" value="300" min="1" 69 <param name="regionSize" type="integer" value="300" min="1"
72 label="Region size" 70 label="Region size"
73 help ="To plot the reads per GC over a region, the size of the region is required (see below for more details of the mthod). By default, the bin size is set to 300 bp, which is close to the standard fragment size many sequencing applications. However, if the depth of sequencing is low, a larger bin size will be required, otherwise many bins will not overlap with any read. (--regionSize)"/> 71 help ="To plot the reads per GC over a region, the size of the region is
72 required (see below for more details of the mthod). By default, the bin size
73 is set to 300 bp, which is close to the standard fragment size many sequencing
74 applications. However, if the depth of sequencing is low, a larger bin size will
75 be required, otherwise many bins will not overlap with any read. (--regionSize)"/>
74 <param name="filterOut" type="data" format="bed" optional="true" 76 <param name="filterOut" type="data" format="bed" optional="true"
75 label="BED file containing genomic regions to be excluded from the estimation of the correction" 77 label="BED file containing genomic regions to be excluded from the estimation of the correction"
76 help="Such regions usually contain repetitive regions and peaks that if included will bias the correction. It is recommended to filter out known repetitive regions if multi-reads (reads that map to more than one genomic position) were excluded. In the case of ChIP-seq data, it is recommended to first use a peak caller to identify and filter out the identified peaks. (--filterOut)" /> 78 help="Such regions usually contain repetitive regions and peaks that if included will
79 bias the correction. It is recommended to filter out known repetitive regions if multi-reads
80 (reads that map to more than one genomic position) were excluded. In the case of ChIP-seq data,
81 it is recommended to first use a peak caller to identify and filter out the identified peaks. (--filterOut)" />
77 <param name="extraSampling" type="data" format="bed" optional="true" 82 <param name="extraSampling" type="data" format="bed" optional="true"
78 label="BED file containing genomic regions for which extra sampling is required because they are underrepresented in the genome" 83 label="BED file containing genomic regions for which extra sampling is required because they are underrepresented in the genome"
79 help="(--extraSampling)" /> 84 help="(--extraSampling)" />
80 </when> 85 </when>
81 </conditional> 86 </conditional>