Mercurial > repos > melissacline > ucsc_cancer_utilities
comparison mergeMutationDatasets.xml @ 20:914bc8ee6222
Debugged the merge mutation data tool
author | melissacline |
---|---|
date | Fri, 20 Mar 2015 15:50:22 -0700 |
parents | 371579dd9bc6 |
children | 3a259686f0fc |
comparison
equal
deleted
inserted
replaced
19:371579dd9bc6 | 20:914bc8ee6222 |
---|---|
1 <tool id="mergeMutationDatasets" description="Merge two mutation datasets into a new dataset" name="mergeMutationData" version="0.0.1"> | 1 <tool id="mergeMutationDatasets" description="Merge two mutation datasets into a new dataset" name="Merge Mutation Data" version="0.0.1"> |
2 <description> | 2 <description> |
3 Given two mutation datasets, merge them to create a larger dataset with the mutations from both datasets. Output this larger dataset, along with a 2-column matrix indicating the source of each mutation | 3 Given two mutation datasets, merge them to create a larger dataset with the mutations from both datasets. Output this larger dataset, along with a 2-column matrix indicating the source of each mutation |
4 </description> | 4 </description> |
5 <command interpreter="python"> | 5 <command interpreter="python"> |
6 mergeXenaMutation.py $outputC $outputSourceMatrix $errorLog $inputA $inputB | 6 mergeXenaMutation.py $outputC $outputSourceMatrix $errorLog $inputA $inputB |
16 <param type="text" name="labelForDatasetA" label="Dataset A Label (optional)" optional="true"/> | 16 <param type="text" name="labelForDatasetA" label="Dataset A Label (optional)" optional="true"/> |
17 <param name="inputB" format="tabular" type="data" label="Mutation Dataset B"/> | 17 <param name="inputB" format="tabular" type="data" label="Mutation Dataset B"/> |
18 <param type="text" name="labelForDatasetB" label="Dataset B Label (optional)" optional="true"/> | 18 <param type="text" name="labelForDatasetB" label="Dataset B Label (optional)" optional="true"/> |
19 </inputs> | 19 </inputs> |
20 <outputs> | 20 <outputs> |
21 <data name="errorLog" format="data" label="Execution Log"/> | |
22 <data name="outputSourceMatrix" format="tabular" label="Mutation Data Sources"/> | |
21 <data name="outputC" format="tabular" label="Merged Mutation Data"/> | 23 <data name="outputC" format="tabular" label="Merged Mutation Data"/> |
22 <data name="outputSourceMatrix" format="tabular" label="Mutation Data Sources"/> | |
23 <data name="errorLog" format="data" label="Execution Log"/> | |
24 </outputs> | 24 </outputs> |
25 <help> | 25 <help> |
26 ***Merge Xena Mutation Datasets*** | 26 ***Merge Xena Mutation Datasets*** |
27 | 27 |
28 Given two datasets of mutation data as formatted for the UCSC Xena Browser, merge them to produce a third dataset that is the union of the first two. The new dataset will contain all mutations from either dataset. | 28 Given two datasets of mutation data as formatted for the UCSC Xena Browser, merge them to produce a third dataset that is the union of the first two. The new dataset will contain all mutations from either dataset. |