annotate segToMatrix.xml @ 36:ab161b5ac9cc

Removing the dependency on synapseclient version, testing that...
author melissacline
date Mon, 27 Jul 2015 15:55:22 -0700
parents 8e888e966c47
children 84eb11adc22f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
32
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
1 <tool id="segToMatrix" name="segToMatrix" version="0.0.1">
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
2 <description>
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
3 Prep segmented copy number data for Xena
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
4 </description>
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
5 <command interpreter="python">
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
6 seg2matrix/segToMatrixGalaxy.py $input seg2matrix/$refGene.assembly $outputMatrix $outputProbeMap
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
7 </command>
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
8 <inputs>
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
9 <param name="input" format="tabular" type="data" multiple="false" label="Input segmented copy number data" />
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
10 <conditional name="refGene">
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
11 <param name="assembly_select" type="select" label="Which human genome assembly is your input segmented copy number data?">
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
12 <option value="hg19">hg19</option>
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
13 <option value="hg18">hg18</option>
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
14 </param>
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
15 <when value="hg19">
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
16 <param name="assembly" type="hidden" value="refGene_hg19" />
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
17 </when>
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
18 <when value="hg18">
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
19 <param name="assembly" type="hidden" value="refGene_hg18" />
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
20 </when>
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
21 </conditional>
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
22 </inputs>
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
23 <outputs>
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
24 <data name="outputMatrix" format="tabular" label="xena copy number matrix" />
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
25 <data name="outputProbeMap" format="tabular" label="associated probemap"/>
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
26 </outputs>
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
27 <help>
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
28 ***Convert segmented copy number data for input into xena***
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
29
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
30 Given a segmented copy number data file, convert it into xena ready data files.
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
31
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
32 File no 1. matrix file
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
33
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
34 File no 2. probeMap file -- probe to gene mapping file (is in the same genome assembly as the input segmented copy number data)
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
35 </help>
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
36 </tool>
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
37