comparison annotatePeaks_wrapper.xml @ 1:f0264df797ed draft

Uploaded
author jbrayet
date Thu, 17 Dec 2015 08:00:57 -0500
parents
children
comparison
equal deleted inserted replaced
0:246cbd0f39d0 1:f0264df797ed
1 <!--annotatePeaks - developed by Jocelyn Brayet <jocelyn.brayet@curie.fr>
2 Copyright (C) 2015 Institut Curie
3
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>.-->
16 <tool id="annotatePeaks" name="AnnotatePeaks" version="1.0">
17 <description>Genomic annotation of Chip-Seq peaks</description>
18 <requirements>
19 <container type="docker">institutcuriengsintegration/annotatepeaks:1.0</container>
20 </requirements>
21 <command interpreter="bash">
22 #if str( $if_PDF ) == '0' and $use_reg.use_reg_selector == "no" and $use_control.use_control_selector == "no" #annotatePeaks_wrapper.sh -f $inputfile -y $log -m $minScore -l $left -o $outputPNG -r $right -d $DownGene -h $EnhLeft -u $stats -v $input_organism.version -p 0 #elif str( $if_PDF ) == '0' and $use_reg.use_reg_selector == "no" and $use_control.use_control_selector == "yes" # annotatePeaks_wrapper.sh -f $inputfile -y $log -c $controlfile -x $statsControl -o $outputPNG -m $minScore -l $left -r $right -d $DownGene -h $EnhLeft -u $stats -v $input_organism.version -p 0 #elif str( $if_PDF ) == '0' and $use_reg.use_reg_selector == "yes" and $use_control.use_control_selector == "no" # annotatePeaks_wrapper.sh -y $log -f $inputfile -e $regfile -m $minScore -l $left -o $outputPNG -r $right -d $DownGene -h $EnhLeft -u $stats -v $input_organism.version -p 0 #elif str( $if_PDF ) == '0' and $use_reg.use_reg_selector == "yes" and $use_control.use_control_selector == "yes" # annotatePeaks_wrapper.sh -f $inputfile -c $controlfile -x $statsControl -l $left -y $log -o $outputPNG -m $minScore -r $right -d $DownGene -h $EnhLeft -u $stats -v $input_organism.version -e $regfile -p 0 #elif str( $if_PDF ) == '1' and $use_reg.use_reg_selector == "no" and $use_control.use_control_selector == "no" #annotatePeaks_wrapper.sh -f $inputfile -y $log -m $minScore -l $left -o $outputPDF -r $right -d $DownGene -h $EnhLeft -u $stats -v $input_organism.version -p 1 #elif str( $if_PDF ) == '1' and $use_reg.use_reg_selector == "no" and $use_control.use_control_selector == "yes" # annotatePeaks_wrapper.sh -f $inputfile -y $log -c $controlfile -x $statsControl -o $outputPDF -m $minScore -l $left -r $right -d $DownGene -h $EnhLeft -u $stats -v $input_organism.version -p 1 #elif str( $if_PDF ) == '1' and $use_reg.use_reg_selector == "yes" and $use_control.use_control_selector == "no" # annotatePeaks_wrapper.sh -y $log -f $inputfile -e $regfile -m $minScore -l $left -o $outputPDF -r $right -d $DownGene -h $EnhLeft -u $stats -v $input_organism.version -p 1 #elif str( $if_PDF ) == '1' and $use_reg.use_reg_selector == "yes" and $use_control.use_control_selector == "yes" # annotatePeaks_wrapper.sh -f $inputfile -c $controlfile -x $statsControl -l $left -y $log -o $outputPDF -m $minScore -r $right -d $DownGene -h $EnhLeft -u $stats -v $input_organism.version -e $regfile -p 1#end if
23 </command>
24 <inputs>
25
26 <param name="inputfile" type="data" label="ChIP peaks" value="ChIP peaks File" format="bed"/>
27 <param name="minScore" type="float" label="MinimalScore" value="0" help="Set to 0 if you don't want to filter your .BED file with peaks"/>
28
29 <conditional name="use_control">
30 <param name="use_control_selector" type="select" label="Use control data">
31 <option value="no" selected="true">No</option>
32 <option value="yes">Yes</option>
33 </param>
34 <when value="yes">
35 <param name="controlfile" type="data" label="Control peaks" value="Control peaks File" format="bed"/>
36 </when>
37 </conditional>
38
39 <param name="left" type="integer" label="Define Promoter is a region up to X bp upstream gene TSS" value="-2000"/>
40 <param name="right" type="integer" label="Define Immediate Downstream is a region up to X bp downstream gene TSS" value="2000"/>
41 <param name="EnhLeft" type="integer" label="Define Enhancer is a region up to X bp upstream gene TSS" value="-30000"/>
42 <param name="DownGene" type="integer" label="Define Gene Downstream is a region up to X bp downstream transcription end" value="5000"/>
43
44
45 <conditional name="input_organism">
46 <param name="input_organism_selector" type="select" label="Select organism">
47 <option value="Human" selected="true">Homo sapiens</option>
48 <option value="Mouse">Mus musculus</option>
49 <option value="Zebrafish">Zebrafish (Danio rerio)</option>
50 <option value="XTropicalis">X.Tropicalis</option>
51 <option value="Bacteria/MycoTube">M. tuberculosis</option>
52 </param>
53 <when value="Human">
54 <param name="version" type="select" label="Select genome vesion">
55 <option value="hg19" selected="true">hg19</option>
56 <option value="hg18">hg18</option>
57 </param>
58 </when>
59 <when value="Mouse">
60 <param name="version" type="select" label="Select genome vesion">
61 <option value="mm8" >mm8</option>
62 <option value="mm9" selected="true">mm9</option>
63 <option value="mm10" >mm10</option>
64 </param>
65 </when>
66 <when value="Zebrafish">
67 <param name="version" type="select" label="Select genome vesion">
68 <option value="zv9" selected="true">zv9</option>
69 </param>
70 </when>
71 <when value="XTropicalis">
72 <param name="version" type="select" label="Select genome vesion">
73 <option value="xenTro2" >xenTro2</option>
74 <option value="xenTro3" selected="true">xenTro3</option>
75 </param>
76 </when>
77 <when value="Bacteria/MycoTube">
78 <param name="version" type="select" label="Select genome vesion">
79 <option value="H37Rv" selected="true">H37Rv</option>
80 </param>
81 </when>
82 </conditional>
83
84 <conditional name="use_reg">
85 <param name="use_reg_selector" type="select" label="Use transcriptomic data (up- and down- regulated genes)">
86 <option value="no" selected="true">No</option>
87 <option value="yes">Yes</option>
88 </param>
89 <when value="yes">
90 <param name="regfile" type="data" label="File with information about gene regulation" value="Regulation data" format="txt"/>
91 </when>
92 </conditional>
93
94 <param name="if_PDF" type="boolean" label="Do you want to have a PDF image (default PNG)?" truevalue="1" falsevalue="0" checked="False"/>
95 </inputs>
96 <outputs>
97 <data name="outputPNG" format="png" label="Peaks Stats (png)">
98 <filter>(if_PDF == 0)</filter>
99 </data>
100 <data name="outputPDF" format="pdf" label="Peaks Stats (pdf)">
101 <filter>(if_PDF == True)</filter>
102 </data>
103
104 <data name="stats" format="tabular" label="Annotated Peaks (ChIP)"/>
105 <data name="log" format="txt" label="LOG for Annotated Peaks"/>
106 <data name="statsControl" format="tabular" label="Annotated Peaks (Control)">
107 <filter>(use_control['use_control_selector'] == 'yes')</filter>
108 </data>
109 </outputs>
110 <tests>
111 <test>
112 <param name="inputfile" value="peaks_test.bed"/>
113 <param name="minScore" value="0.0"/>
114 <param name="use_control_selector" value="yes"/>
115 <param name="controlfile" value="peaks_control.bed"/>
116 <param name="left" value="-2000"/>
117 <param name="right" value="2000"/>
118 <param name="EnhLeft" value="-30000"/>
119 <param name="DownGene" value="5000"/>
120 <param name="input_organism_selector" value="Mouse"/>
121 <param name="version" value="mm9"/>
122 <param name="use_reg_selector" value="yes"/>
123 <param name="regfile" value="Probesets_FC1.5_10022011.txt"/>
124 <param name="if_PDF" value="1"/>
125 <output name="outputPDF" file="test_annotatePeaks_1.dat" ftype="pdf"/>
126 <output name="stats" file="test_annotatePeaks_2.dat" ftype="tabular"/>
127 <output name="log" file="test_annotatePeaks_3.dat" ftype="log"/>
128 <output name="statsControl" file="test_annotatePeaks_4.dat" ftype="tabular"/>
129 </test>
130 </tests>
131 <help>
132 **What it does**
133
134 This tool annotates peaks with genomic feature (promoter, enhancer, exon, intron, etc.) and creates a .png file with distribution
135
136 </help>
137 <citations>
138 <citation type="bibtex">@article{Boeva01102012,
139 author = {Boeva, Valentina and Lermine, Alban and Barette, Camille and Guillouf, Christel and Barillot, Emmanuel},
140 title = {Nebula—a web-server for advanced ChIP-seq data analysis},
141 volume = {28},
142 number = {19},
143 pages = {2517-2519},
144 year = {2012},
145 doi = {10.1093/bioinformatics/bts463},
146 URL = {http://bioinformatics.oxfordjournals.org/content/28/19/2517.abstract},
147 eprint = {http://bioinformatics.oxfordjournals.org/content/28/19/2517.full.pdf+html},
148 journal = {Bioinformatics}
149 }</citation>
150 </citations>
151 </tool>