annotate segToGeneMatrix.xml @ 50:b6f5d2d1b047

fix
author jingchunzhu
date Tue, 25 Aug 2015 23:42:17 -0700
parents 72dc9215623d
children 728eda331f07
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
39
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
1 <tool id="segToGeneMatrix" name="segToGeneMatrix" version="0.0.1">
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
2 <description>
40
72dc9215623d modify help
jingchunzhu
parents: 39
diff changeset
3 Convert segmented copy number data to gene-level matrix data
39
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
4 </description>
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
5 <command interpreter="python">
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
6 seg2matrix/mapSegToGeneMatrix.py $input $__tool_directory__/seg2matrix/$refGene.assembly $outputMatrix
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
7 </command>
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
8 <inputs>
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
9 <param name="input" format="tabular" type="data" multiple="false" label="Input segmented copy number data" />
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
10 <conditional name="refGene">
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
11 <param name="assembly_select" type="select" label="Which human genome assembly is your input segmented copy number data?">
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
12 <option value="hg19">hg19</option>
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
13 <option value="hg18">hg18</option>
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
14 </param>
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
15 <when value="hg19">
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
16 <param name="assembly" type="hidden" value="refGene_hg19" />
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
17 </when>
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
18 <when value="hg18">
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
19 <param name="assembly" type="hidden" value="refGene_hg18" />
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
20 </when>
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
21 </conditional>
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
22 </inputs>
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
23 <outputs>
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
24 <data name="outputMatrix" format="tabular" label="gene-level copy number matrix" />
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
25 </outputs>
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
26 <help>
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
27
40
72dc9215623d modify help
jingchunzhu
parents: 39
diff changeset
28 **Given a segmented copy number data file, convert it into gene-level matrix data, also xena ready**
39
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
29
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
30 Output File no 1. matrix file
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
31
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
32 </help>
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
33 </tool>
61f03b481b0d new tool
jingchunzhu
parents:
diff changeset
34