comparison remove_user_specified_row_col.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 caba07f41453
comparison
equal deleted inserted replaced
0:b54326490b4d 1:2e7d47c0b027
1 <tool id="secimtools_remove_user_specified_features" name="Remove User-Specified Features or Samples" version="@WRAPPER_VERSION@">
2 <description>from the data.</description>
3 <macros>
4 <import>macros.xml</import>
5 </macros>
6 <expand macro="requirements" />
7 <command><![CDATA[
8 remove_user_specified_row_col.py
9 --input $input
10 --design $design
11 --ID $uniqID
12 --outWide $outWide
13 --row $rowID
14 --col $colID
15 ]]></command>
16 <inputs>
17 <param name="input" type="data" format="tabular" label="Wide Dataset"
18 help="Input your tab-separated wide format dataset. If file is not tab separated see TIP below."/>
19 <param name="design" type="data" format="tabular" label="Design File"
20 help="Input your 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="" label="Unique Feature ID"
22 help="Name of the column in your wide dataset that has unique identifiers."/>
23 <param name="rowID" type="text" size="30" value="" label="Features to drop [Optional]."
24 help="Space-separated list of unique identifiers (rows) in your wide dataset to delete."/>
25 <param name="colID" type="text" size="30" value="" label="Samples to drop [Optional]."
26 help="Space-separated list of unique sampleIDs (columns) to be removed from the wide dataset."/>
27 </inputs>
28 <outputs>
29 <data format="tabular" name="outWide" label="${tool.name} on ${on_string}: Dropped wide"/>
30 </outputs>
31 <tests>
32 <test>
33 <param name="input" value="fly_test_sbys.tsv"/>
34 <param name="design" value="fly_test_design.tsv"/>
35 <param name="uniqID" value="rowID" />
36 <param name="rowID" value="_15" />
37 <param name="colID" value="r101_V_3" />
38 <output name="outWide" file="fly_remove_specified_features_samples_wide.tsv" />
39 </test>
40 </tests>
41 <help><![CDATA[
42
43 @TIP_AND_WARNING@
44
45 **Tool Description**
46
47 The tool removes user-specified features (rows) or samples (columns) from a wide format dataset.
48 The user manually enters space delimited rows (features) and / or columns (samples).
49
50 --------------------------------------------------------------------------------
51
52 **Input**
53
54 - Two input datasets are required.
55
56 @WIDE@
57
58 **NOTE:** The sample IDs must match the sample IDs in the Design File
59 (below). Extra columns will automatically be ignored.
60
61 @METADATA@
62
63 @UNIQID@
64
65 **Unique ID for Flag file (feature ID or sample ID).**
66
67 - Name of the column in your Wide dataset that contains unique Feature IDs.
68
69 **rowID.**
70
71 - Name of the row(s) in your Wide dataset to drop.
72
73 **colID.**
74
75 - Name of the column(s) in your Wide dataset to drop.
76
77 --------------------------------------------------------------------------------
78
79 **Output**
80
81 This tool outputs one TSV file:
82
83 (1) A wide format dataset generated from the input wide format dataset where features and/or samples specified by the user have been removed.
84
85 ]]></help>
86 <expand macro="citations"/>
87 </tool>