annotate mergeGenomicFiles.xml @ 3:12a1ea920524

Creating a tool to merge genomic datasets
author melissacline
date Wed, 11 Feb 2015 16:44:33 -0800
parents
children 1d150e860c4d 914bc8ee6222
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
12a1ea920524 Creating a tool to merge genomic datasets
melissacline
parents:
diff changeset
1 <tool id="mergeGenomicFiles" description="Merge two genomic datasets into a new dataset" name="mergeGenomicFiles" version="0.0.1">
12a1ea920524 Creating a tool to merge genomic datasets
melissacline
parents:
diff changeset
2 <description>
12a1ea920524 Creating a tool to merge genomic datasets
melissacline
parents:
diff changeset
3 Given two genomic datasets, merge them to create a third dataset with the row and column identifiers from both datasets.
12a1ea920524 Creating a tool to merge genomic datasets
melissacline
parents:
diff changeset
4 </description>
12a1ea920524 Creating a tool to merge genomic datasets
melissacline
parents:
diff changeset
5 <command interpreter="python">
12a1ea920524 Creating a tool to merge genomic datasets
melissacline
parents:
diff changeset
6 mergeGenomicMatrixFiles.py $outputC $inputA $inputB
12a1ea920524 Creating a tool to merge genomic datasets
melissacline
parents:
diff changeset
7 </command>
12a1ea920524 Creating a tool to merge genomic datasets
melissacline
parents:
diff changeset
8 <inputs>
12a1ea920524 Creating a tool to merge genomic datasets
melissacline
parents:
diff changeset
9 <param name="inputA" format="tabular" type="data" label="Genomic Dataset A"/>
12a1ea920524 Creating a tool to merge genomic datasets
melissacline
parents:
diff changeset
10 <param name="inputB" format="tabular" type="data" label="Genomic Dataset B"/>
12a1ea920524 Creating a tool to merge genomic datasets
melissacline
parents:
diff changeset
11 </inputs>
12a1ea920524 Creating a tool to merge genomic datasets
melissacline
parents:
diff changeset
12 <outputs>
12a1ea920524 Creating a tool to merge genomic datasets
melissacline
parents:
diff changeset
13 <data name="outputC" format="tabular"/>
12a1ea920524 Creating a tool to merge genomic datasets
melissacline
parents:
diff changeset
14 </outputs>
12a1ea920524 Creating a tool to merge genomic datasets
melissacline
parents:
diff changeset
15 <help>
12a1ea920524 Creating a tool to merge genomic datasets
melissacline
parents:
diff changeset
16 ***Merge Genomic Datasets***
12a1ea920524 Creating a tool to merge genomic datasets
melissacline
parents:
diff changeset
17
12a1ea920524 Creating a tool to merge genomic datasets
melissacline
parents:
diff changeset
18 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
12a1ea920524 Creating a tool to merge genomic datasets
melissacline
parents:
diff changeset
19 </help>
12a1ea920524 Creating a tool to merge genomic datasets
melissacline
parents:
diff changeset
20 </tool>