Mercurial > repos > rnateam > chipseeker
comparison chipseeker.xml @ 7:1b9a9409831d draft
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/chipseeker commit e07ee851144e07fde91877727d6a39a1906f7639
author | rnateam |
---|---|
date | Sat, 27 Apr 2019 11:04:35 -0400 |
parents | b418a1d3585d |
children | 8bd92f2404dd |
comparison
equal
deleted
inserted
replaced
6:b418a1d3585d | 7:1b9a9409831d |
---|---|
1 <tool id="chipseeker" name="ChIPseeker" version="1.18.0"> | 1 <tool id="chipseeker" name="ChIPseeker" version="1.18.0+galaxy1"> |
2 <description>for ChIP peak annotation and visualization</description> | 2 <description>for ChIP peak annotation and visualization</description> |
3 <requirements> | 3 <requirements> |
4 <requirement type="package" version="1.18.0">bioconductor-chipseeker</requirement> | 4 <requirement type="package" version="1.18.0">bioconductor-chipseeker</requirement> |
5 <requirement type="package" version="1.6.1">r-optparse</requirement> | 5 <requirement type="package" version="1.6.1">r-optparse</requirement> |
6 </requirements> | 6 </requirements> |
20 #end if | 20 #end if |
21 | 21 |
22 Rscript '$__tool_directory__/chipseeker.R' | 22 Rscript '$__tool_directory__/chipseeker.R' |
23 | 23 |
24 -i '$peaks' | 24 -i '$peaks' |
25 -H $header | |
25 -G '$gtf' | 26 -G '$gtf' |
26 -u $adv.upstream | 27 -u $adv.upstream |
27 -d $adv.downstream | 28 -d $adv.downstream |
28 | 29 |
29 #if $adv.flankgeneinfo: | 30 #if $adv.flankgeneinfo: |
49 -r $rdata | 50 -r $rdata |
50 ]]> | 51 ]]> |
51 </command> | 52 </command> |
52 <inputs> | 53 <inputs> |
53 <param name="peaks" type="data" format="bed,interval,tabular" label="Peaks file" help="A peaks file in BED format." /> | 54 <param name="peaks" type="data" format="bed,interval,tabular" label="Peaks file" help="A peaks file in BED format." /> |
55 <param name="header" type="boolean" truevalue="True" falsevalue="False" checked="False" label="Peaks file has header?" help="If this option is set to Yes, the tool will assume that the peak file has column headers in the first row. Default: No" /> | |
54 <conditional name="gtf_source"> | 56 <conditional name="gtf_source"> |
55 <param name="gtf_source_select" type="select" label="Annotation source" help="Select a GTF to use for annotation source."> | 57 <param name="gtf_source_select" type="select" label="Annotation source" help="Select a GTF to use for annotation source."> |
56 <option value="cached" selected="true">Use a built-in GTF</option> | 58 <option value="cached" selected="true">Use a built-in GTF</option> |
57 <option value="history">Use a GTF from history</option> | 59 <option value="history">Use a GTF from history</option> |
58 </param> | 60 </param> |
187 | 189 |
188 ----- | 190 ----- |
189 | 191 |
190 **Inputs** | 192 **Inputs** |
191 | 193 |
192 A peaks file in BED, Interval or Tabular format e.g from MACS2 or DiffBind. | 194 A peaks file in BED, Interval or Tabular format e.g from MACS2 or DiffBind. Note that there is an option to specify if the input peaks file has a header row. No header row is assumed by default, which is usually the case for BED format e.g. MACS narrowpeak, however other formats e.g. MACS tabular format, may contain a header row. |
193 | 195 |
194 Example: | 196 Example: |
195 | 197 |
196 ===== ====== ====== ======== ===== ====== | 198 ===== ====== ====== ======== ===== ====== |
197 Chrom Start End Name Score Strand | 199 Chrom Start End Name Score Strand |
210 **Outputs** | 212 **Outputs** |
211 | 213 |
212 This tool outputs | 214 This tool outputs |
213 | 215 |
214 * a file of annotated peaks in Interval or Tabular format | 216 * a file of annotated peaks in Interval or Tabular format |
215 * a PDF of plots (plotAnnoPie, vennpie, upsetplot) | 217 * a PDF of plots (plotAnnoPie, plotAnnoBar, vennpie, upsetplot, plotDistToTSS) |
216 | 218 |
217 Optionally, you can choose to output | 219 Optionally, you can choose to output |
218 | 220 |
219 * the R script used by this tool | 221 * the R script used by this tool |
220 * an RData file | 222 * an RData file |