view mergeGenomicFiles.xml @ 20:914bc8ee6222

Debugged the merge mutation data tool
author melissacline
date Fri, 20 Mar 2015 15:50:22 -0700
parents 6c23a3b58eb8
children 3a259686f0fc
line wrap: on
line source

<tool id="mergeGenomicFiles" description="Merge two genomic datasets into a new dataset" name="Merge Genomic Datasets" version="0.0.1">
  <description>
    Given two genomic datasets, merge them to create a third dataset with the row and column identifiers from both datasets.
  </description>
  <command interpreter="python">
      mergeGenomicMatrixFiles.py $outputC $inputA $inputB
  </command>
  <inputs>
    <param name="inputA" format="tabular" type="data" label="Genomic Dataset A"/>
    <param name="inputB" format="tabular" type="data" label="Genomic Dataset B"/>
  </inputs>
  <outputs>
    <data name="outputC" format="tabular"/>
  </outputs>
  <help>
    ***Merge Genomic Datasets***

    Given two genomic datasets, merge them to produce a third dataset that is the union of the first two.  The new dataset will contain all column labels from either dataset, and all row labels from either dataset.  If a row label appears in both datasets, the output dataset will contain, for that row, all values for the first set of columns, plus all values for the second set of columns.  If a row label appears in the first dataset only, the output dataset will contain the values for the columns of the first dataset, and blanks (indicating missing values) for the columns of the second da
  </help>
</tool>