annotate segToMatrix.xml @ 46:ebf3bc09c383

add snpEff code
author jingchunzhu
date Thu, 13 Aug 2015 21:49:03 -0700
parents 72dc9215623d
children 3a036a34c362
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>
40
72dc9215623d modify help
jingchunzhu
parents: 39
diff changeset
3 Prepare segmented copy number data for Xena
32
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
4 </description>
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
5 <command interpreter="python">
39
61f03b481b0d new tool
jingchunzhu
parents: 38
diff changeset
6 seg2matrix/segToMatrixGalaxy.py $input $__tool_directory__/seg2matrix/$refGene.assembly $outputMatrix $outputProbeMap
32
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
40
72dc9215623d modify help
jingchunzhu
parents: 39
diff changeset
29 **Given a segmented copy number data file, convert it into xena ready matrix file.**
32
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
30
38
jingchunzhu
parents: 32
diff changeset
31 Output File no 1. matrix file
32
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
32
38
jingchunzhu
parents: 32
diff changeset
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
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
34 </help>
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
35 </tool>
8e888e966c47 change segToMatrix.xml location
jingchunzhu
parents:
diff changeset
36