32
|
1 <tool id="segToMatrix" name="segToMatrix" version="0.0.1">
|
|
2 <description>
|
|
3 Prep segmented copy number data for Xena
|
|
4 </description>
|
|
5 <command interpreter="python">
|
|
6 seg2matrix/segToMatrixGalaxy.py $input seg2matrix/$refGene.assembly $outputMatrix $outputProbeMap
|
|
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 ***Convert segmented copy number data for input into xena***
|
|
29
|
|
30 Given a segmented copy number data file, convert it into xena ready data files.
|
|
31
|
|
32 File no 1. matrix file
|
|
33
|
|
34 File no 2. probeMap file -- probe to gene mapping file (is in the same genome assembly as the input segmented copy number data)
|
|
35 </help>
|
|
36 </tool>
|
|
37
|