Mercurial > repos > bgruening > deeptools_bam_coverage
comparison bamCoverage.xml @ 3:10e697ec9bfb draft
planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 2e8510e4f4015f51f7726de5697ba2de9b4e2f4c
author | bgruening |
---|---|
date | Wed, 09 Mar 2016 18:06:40 -0500 |
parents | 36f655a04a57 |
children | 115aa2cbf152 |
comparison
equal
deleted
inserted
replaced
2:8145727ba0f0 | 3:10e697ec9bfb |
---|---|
44 $advancedOpt.skipNAs | 44 $advancedOpt.skipNAs |
45 | 45 |
46 #if str($advancedOpt.ignoreForNormalization).strip() != '': | 46 #if str($advancedOpt.ignoreForNormalization).strip() != '': |
47 --ignoreForNormalization $advancedOpt.ignoreForNormalization | 47 --ignoreForNormalization $advancedOpt.ignoreForNormalization |
48 #end if | 48 #end if |
49 | |
50 #if str($advancedOpt.filterRNAstrand) != 'no': | |
51 --filterRNAstrand '$advancedOpt.filterRNAstrand' | |
52 #end if | |
49 #end if | 53 #end if |
50 ]]> | 54 ]]> |
51 </command> | 55 </command> |
52 | 56 |
53 <inputs> | 57 <inputs> |
54 <param name="bamInput" format="bam" type="data" label="BAM file" | 58 <param name="bamInput" format="bam" type="data" label="BAM file" |
55 help="The BAM file must be sorted."/> | 59 help=""/> |
56 | 60 |
57 <param name="binSize" type="integer" value="50" min="1" | 61 <param name="binSize" type="integer" value="50" min="1" |
58 label="Bin size in bases" | 62 label="Bin size in bases" |
59 help="The genome will be divided into bins of the specified size. For each bin, the overlaping number of fragments (or reads) will be reported. If only half a fragment overlaps, this fraction will be reported. "/> | 63 help="The genome will be divided into bins of the specified size. For each bin, the overlaping number of fragments (or reads) will be reported. If only half a fragment overlaps, this fraction will be reported. "/> |
60 | 64 |
103 | 107 |
104 <param argument="--MNase" type="boolean" truevalue="--MNase" falsevalue="" | 108 <param argument="--MNase" type="boolean" truevalue="--MNase" falsevalue="" |
105 label="Determine nucleosome positions from MNase-seq data" | 109 label="Determine nucleosome positions from MNase-seq data" |
106 help="Only the 3 nucleotides at the center of each fragment are counted. The fragment ends are defined by the two mate reads. *NOTE*: Requires paired-end data." /> | 110 help="Only the 3 nucleotides at the center of each fragment are counted. The fragment ends are defined by the two mate reads. *NOTE*: Requires paired-end data." /> |
107 | 111 |
112 <param argument="filterRNAstrand" type="select" label="Only include reads originating from fragments from the forward or reverse strand." | |
113 help="By default (the no option), all reads are processed, regardless of the strand they originated from. For RNAseq, it can be useful to separately create bigWig files for the forward or reverse strands. | |
114 Note that this tools assumes that a dUTP-based method was used, so fragments will be assigned to the reverse strand if the second read in a pair is reverse complemented."> | |
115 <option value="no" selected="true">no</option> | |
116 <option value="forward">forward</option> | |
117 <option value="reverse">reverse</option> | |
118 </param> | |
119 | |
108 </when> | 120 </when> |
109 </conditional> | 121 </conditional> |
110 </inputs> | 122 </inputs> |
111 <outputs> | 123 <outputs> |
112 <data format="bigwig" name="outFileName"> | 124 <data format="bigwig" name="outFileName"> |
151 <param name="outFileFormat" value="bedgraph" /> | 163 <param name="outFileFormat" value="bedgraph" /> |
152 <param name="showAdvancedOpt" value="yes" /> | 164 <param name="showAdvancedOpt" value="yes" /> |
153 <param name="binSize" value="10" /> | 165 <param name="binSize" value="10" /> |
154 <output name="outFileName" file="bamCoverage_result4.bg" ftype="bedgraph" /> | 166 <output name="outFileName" file="bamCoverage_result4.bg" ftype="bedgraph" /> |
155 </test> | 167 </test> |
168 <test> | |
169 <param name="bamInput" value="phiX.bam" ftype="bam" /> | |
170 <param name="outFileFormat" value="bigwig" /> | |
171 <param name="showAdvancedOpt" value="yes" /> | |
172 <param name="filterRNAstrand" value="reverse" /> | |
173 <param name="binSize" value="10" /> | |
174 <output name="outFileName" file="bamCoverage_result5.bw" ftype="bigwig" /> | |
175 </test> | |
156 </tests> | 176 </tests> |
157 <help> | 177 <help> |
158 <![CDATA[ | 178 <![CDATA[ |
159 | 179 |
160 What it does | 180 What it does |