0
|
1 <!--annotateGenes - 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="extractCentralRegions" name="Extract regions around peak maxima for a .bed file with peak coordinates" version="1.0">
|
|
17 <description> </description>
|
|
18 <requirements>
|
|
19 <container type="docker">institutcuriengsintegration/extractcentralregions:1.0</container>
|
|
20 </requirements>
|
|
21 <command interpreter="perl">extractCentralRegions.pl -f $inputfile -l $left -o $output -head $has_header
|
|
22 </command>
|
|
23 <inputs>
|
|
24
|
|
25 <param name="inputfile" type="data" label="ChIP peaks" value="ChIP peaks File" format="bed,txt"/>
|
|
26 <param name="has_header" type="select" label="Your data file has a header?">
|
|
27 <option value="0" selected="true">No</option>
|
|
28 <option value="1">Yes</option>
|
|
29 </param>
|
|
30 <param name="left" type="integer" label="Legth of the central region" value="300"/>
|
|
31 </inputs>
|
|
32 <outputs>
|
|
33 <data name="output" format="bed" label="central regions for ${inputfile.name}"/>
|
|
34 </outputs>
|
|
35 <help>
|
|
36 **What it does**
|
|
37
|
|
38 This tool extract central regions of ChIP-seq peaks
|
|
39
|
|
40 </help>
|
|
41 </tool>
|