Mercurial > repos > mvdbeek > damidseq_consecutive_peaks
annotate consecutive_peaks.xml @ 1:f3ca59e53b73 draft default tip
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
author | mvdbeek |
---|---|
date | Mon, 29 Oct 2018 06:49:17 -0400 |
parents | 7f827a8e4ec5 |
children |
rev | line source |
---|---|
0
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
1 <tool id="consecutive_peaks" name="Consecutive peaks" version="0.1.0"> |
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
2 <requirements> |
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
3 <requirement type="package" version="7.0">click</requirement> |
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
4 <requirement type="package" version="0.23.4">pandas</requirement> |
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
5 </requirements> |
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
6 <command detect_errors="exit_code"><![CDATA[ |
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
7 python '$__tool_directory__/consecutive_peaks.py' '$input_file' '$output_file' |
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
8 ]]></command> |
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
9 <inputs> |
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
10 <param name="input_file" type="data" format="tabular" label="Input file" help="file containing peaks and genes"/> |
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
11 <param name="padj_column" type="data_column" data_ref="input_file" value="c8" label="Column containing padj value"/> |
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
12 <param name="groupby" type="data_column" data_ref="input_file" value="c9" label="Group values by this column" help="Usually gene id."/> |
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
13 </inputs> |
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
14 <outputs> |
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
15 <data name="output_file" format_source="input_file"/> |
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
16 </outputs> |
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
17 <tests> |
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
18 <test> |
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
19 <param name="input_file" value="deseq2_peaks.bed"/> |
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
20 <output name="output_file" value="grouped.bed"/> |
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
21 </test> |
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
22 </tests> |
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
23 <help><![CDATA[ |
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
24 Can be used to get the lowest p.adj for 2 consecutive peaks in a gene. |
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
25 The reported p.adj is the higher p.adj of the 2 consecutive peaks. |
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
26 ]]></help> |
7f827a8e4ec5
planemo upload for repository https://github.com/bardin-lab/damid_galaxy_tools commit c753dd4f3e1863aae7ba45dcc7efdf6937b03542-dirty
mvdbeek
parents:
diff
changeset
|
27 </tool> |