10
|
1 <tool id="xenaImport" description="Import into XENA from Galaxy" name="XENA Import" version="0.0.1">
|
|
2 <description>Import from Galaxy into the Xena VM</description>
|
2
|
3 <requirements>
|
4
|
4 <requirement type="package" version="1.0">installXena</requirement>
|
2
|
5 </requirements>
|
|
6 <command interpreter="python">
|
16
|
7 xena_import.py ${xenaInputData} ${cohort} ${metadataType} > ${outfile}
|
2
|
8 </command>
|
|
9 <inputs>
|
|
10 <param format="data" type="data" name="xenaInputData" label="Data to import to Xena" optional="false"/>
|
|
11 <param format="str" type="text" name="cohort" label="Cohort" optional="false"/>
|
16
|
12 <param format="str" type="select" name="metadataType" label="File Format">
|
|
13 <option value="genomicMatrix">Rows(Identifiers) by Columns (Samples)</option>
|
|
14 <option value="clinicalMatrix">Rows(Samples) by Columns (Identifiers)</option>
|
|
15 <option value="mutationVector">Mutation Data</option>
|
|
16 </param>
|
2
|
17 </inputs>
|
16
|
18 <outputs>
|
|
19 <data foramt="txt" name="outfile"/>
|
|
20 </outputs>
|
2
|
21 <help>
|
|
22 To Appear
|
|
23 </help>
|
|
24 </tool>
|