1
|
1 <tool id="format_raw_TCGA_RNASeq_data" name="Format Raw TCGA RNASeq Data" force_history_refresh="True">
|
|
2 <command interpreter="python">format.raw.TCGA.RNASeq.data.py
|
|
3 -d $dataset
|
|
4 -l {$log_transform}
|
|
5 -f ${filter_low_variant}
|
|
6 -o ${output}
|
|
7
|
|
8 </command>
|
|
9 <inputs>
|
|
10 <param name="dataset" type="data" format='tabular' label="Raw TCGA RNASeq Data"/>
|
|
11 <param name="log_transform" type='select' display="radio" label="Log-transform data?" help="Specify whether or not to log-transform the data matrix (log(x+1))">
|
3
|
12 <option value="yes" selected='true' >Yes</option>
|
1
|
13 <option value="no">No</option>
|
|
14 </param>
|
|
15 <param name="filter_low_variant" type='integer' label="Filter Threshold for Low-variant genes?" value="10" help="Specify threshold for minimum median value for all genes (-1 to use no filter)">
|
|
16 <option value="yes" selected='true' >Yes</option>
|
|
17 <option value="no">No</option>
|
|
18 </param>
|
|
19
|
|
20 </inputs>
|
|
21 <outputs>
|
|
22 <data format="tabular" name="output" label="Formatted RNASeq Data"/>
|
|
23 </outputs>
|
|
24 <help>
|
|
25 .. class:: infomark
|
|
26
|
|
27 **Format Raw TCGA RNASeq Data** - Tool to convert a raw RNASeq TCGA data file (a file from either Synapse or Firehose) into a the format expected by the Survival Analysis tools
|
|
28
|
8
|
29 **Log-transform data?** - Specify whether or not to log-transform the data matrix. To avoid numeric underflow, this will use log(x+1), where x is the value of the RNASeq data
|
1
|
30
|
|
31 **OUTPUT:** A new tab-delimited file containing the log-transformed RNASeq data
|
|
32
|
|
33 </help>
|
|
34 </tool>
|