32
|
1 <tool id="segToMatrix" name="segToMatrix" version="0.0.1">
|
|
2 <description>
|
40
|
3 Prepare segmented copy number data for Xena
|
32
|
4 </description>
|
|
5 <command interpreter="python">
|
39
|
6 seg2matrix/segToMatrixGalaxy.py $input $__tool_directory__/seg2matrix/$refGene.assembly $outputMatrix $outputProbeMap
|
32
|
7 </command>
|
|
8 <inputs>
|
|
9 <param name="input" format="tabular" type="data" multiple="false" label="Input segmented copy number data" />
|
|
10 <conditional name="refGene">
|
|
11 <param name="assembly_select" type="select" label="Which human genome assembly is your input segmented copy number data?">
|
|
12 <option value="hg19">hg19</option>
|
|
13 <option value="hg18">hg18</option>
|
|
14 </param>
|
|
15 <when value="hg19">
|
|
16 <param name="assembly" type="hidden" value="refGene_hg19" />
|
|
17 </when>
|
|
18 <when value="hg18">
|
|
19 <param name="assembly" type="hidden" value="refGene_hg18" />
|
|
20 </when>
|
|
21 </conditional>
|
|
22 </inputs>
|
|
23 <outputs>
|
|
24 <data name="outputMatrix" format="tabular" label="xena copy number matrix" />
|
|
25 <data name="outputProbeMap" format="tabular" label="associated probemap"/>
|
|
26 </outputs>
|
|
27 <help>
|
|
28
|
40
|
29 **Given a segmented copy number data file, convert it into xena ready matrix file.**
|
32
|
30
|
38
|
31 Output File no 1. matrix file
|
32
|
32
|
38
|
33 Output File no 2. probeMap file -- probe to gene mapping file (is in the same genome assembly as the input segmented copy number data)
|
32
|
34 </help>
|
|
35 </tool>
|
|
36
|