0
|
1 <tool id="remove_tcga_normal_samples" name="Remove TGCA Normal Samples" force_history_refresh="True">
|
|
2 <command interpreter="python">remove.tcga.normals.py
|
|
3 -d $dataset
|
3
|
4 -o ${output_tumor}
|
|
5 -r ${return_normal_matrix}
|
|
6 #if str($return_normal_matrix) == 'yes':
|
|
7 -O ${output_normal}
|
|
8 #end if
|
|
9 </command>
|
0
|
10 <inputs>
|
3
|
11 <param name="dataset" type="data" format='tabular' label="Matrix containing TCGA Normal Samples"/>
|
|
12 <param name="return_normal_matrix" type='select' display="radio" label="Return Normals in Separate File?" help="Specify whether or not to return a file containing the normals">
|
|
13 <option value="yes" selected='true' >Yes</option>
|
|
14 <option value="no">No</option>
|
|
15 </param>
|
0
|
16 </inputs>
|
|
17 <outputs>
|
3
|
18 <data format="tabular" name="output_tumor" label="Tumor Sample Matrix"/>
|
|
19 <data format="tabular" name="output_normal" label="Normal Sample Matrix">
|
|
20 <filter>(return_normal_matrix)=="yes"</filter>
|
|
21 </data>
|
0
|
22 </outputs>
|
|
23 <help>
|
|
24 .. class:: infomark
|
|
25
|
|
26 **Remove Normal Samples** - Tool to remove the normal samples from a matrix **(ASSUMES samples are in the columns of matrix)**
|
|
27
|
|
28 **OUTPUT:** A new matrix without normal samples
|
|
29
|
|
30 ----
|
|
31
|
|
32 **INPUT**
|
|
33
|
|
34 - **Matrix that contains normal samples** Input matrix that potentially contains normal samples
|
|
35
|
|
36
|
|
37 </help>
|
|
38 </tool>
|