Mercurial > repos > melissacline > ucsc_cancer_utilities
comparison segToGeneMatrix.xml @ 39:61f03b481b0d
new tool
author | jingchunzhu |
---|---|
date | Fri, 31 Jul 2015 20:38:27 -0700 |
parents | |
children | 72dc9215623d |
comparison
equal
deleted
inserted
replaced
38:84eb11adc22f | 39:61f03b481b0d |
---|---|
1 <tool id="segToGeneMatrix" name="segToGeneMatrix" version="0.0.1"> | |
2 <description> | |
3 Convert segmented copy number data to gene based matrix data | |
4 </description> | |
5 <command interpreter="python"> | |
6 seg2matrix/mapSegToGeneMatrix.py $input $__tool_directory__/seg2matrix/$refGene.assembly $outputMatrix | |
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="gene-level copy number matrix" /> | |
25 </outputs> | |
26 <help> | |
27 ***Convert segmented copy number data for input into xena*** | |
28 | |
29 Given a segmented copy number data file, convert it into gene based matrix data | |
30 | |
31 Output File no 1. matrix file | |
32 | |
33 </help> | |
34 </tool> | |
35 |