comparison generate_rank_wide.xml @ 1:2e7d47c0b027 draft

"planemo upload for repository https://malex@toolshed.g2.bx.psu.edu/repos/malex/secimtools"
author malex
date Mon, 08 Mar 2021 22:04:06 +0000
parents
children
comparison
equal deleted inserted replaced
0:b54326490b4d 1:2e7d47c0b027
1 <tool id="secimtools_generate_rank_wide" name="Ranked wide file" version="@WRAPPER_VERSION@">
2 <description>Generate a wide format file with ranked columns from an input wide file.</description>
3 <macros>
4 <import>macros.xml</import>
5 </macros>
6 <expand macro="requirements" />
7 <command detect_errors="exit_code"><![CDATA[
8 addGroupRank.py
9 --wide $wide
10 --design $design
11 --out $out
12 #if $ngroup:
13 --ngroup $ngroup
14 #end if
15 --rank $rank
16 --uniqID $uniqID
17 ]]></command>
18 <inputs>
19 <param name="wide" type="data" format="tabular" label="Wide Dataset" help="Input dataset in wide format and tab separated. If file is not tab separated see TIP below."/>
20 <param name="design" type="data" format="tabular" label="Design File" help="Design file tab separated. Note you need a 'sampleID' column. If not tab separated see TIP below."/>
21 <param name="uniqID" type="text" size="30" value="rowID" label="Unique Feature ID" help="Name of the column in your Wide Dataset that has unique Feature IDs."/>
22 <param name="ngroup" type="integer" size="30" value="" optional="true" label="number of groups for each feature being ranked" help="number of bins/groups for each feature being ranked. If there is no input, the default behavir is ranking each column."/>
23 <param name="rank" type="text" size="30" value="Rank" label=" Name of flag column" help="The column name in your design file that contains the flags to specify whether a sampleID will be ranked in the input wide file."/>
24 </inputs>
25 <outputs>
26 <data format="tabular" name="out" label="${tool.name} on ${on_string}: Results Table"/>
27 </outputs>
28
29 <help><![CDATA[
30
31 @TIP_AND_WARNING@
32
33 **Tool Description**
34
35 The tool is used to generate a wide format file with each column being ranked in the input wide format dataset.
36
37 --------------------------------------------------------------------------------
38
39 **Input**
40
41 - Two input datasets are required.
42
43
44 --------------------------------------------------------------------------------
45
46 **Output**
47
48 The user will get a output file from the tool:
49
50 (1) a wide format file with each column being ranked. The columns will be selected using the flag column in the design file.
51
52
53 ]]></help>
54 <expand macro="citations"/>
55 </tool>