view xenaFindDatasets/xenaFindDatasets.xml @ 1:a1979987ecf2 default tip

Added a sanitizer object to the input field for the cohort name, so that users can include wildcards in their input
author melissacline
date Wed, 10 Sep 2014 15:19:30 -0700
parents a4253c71f31d
children
line wrap: on
line source

<tool id="xenaFindDatasets" description="Find datasets in the Xena database" name="Find Datasets in Xena" version="0.0.1">
  <description>
    Retrieve the cohorts and datasets that match the specified pattern.
  </description>
  <requirements>
    <requirement type="package" version="1.0">installXena</requirement>
  </requirements>
  <command interpreter="python">
    xenaFindDatasets.py ${datasetType} ${cohortName} $outFile
  </command>
  <inputs>
    <param name="datasetType" type="select" label="Dataset Type">
      <option value="genomicMatrix">Genomic Data</option>
      <option value="clinicalMatrix">Clinical Data</option>
      <option value="mutationVector">Mutation Data</option>
    </param>
    <param type="text" name="cohortName" label="Cohort (wildcard is %)" optional="true">
      <sanitizer>
        <valid>
          <add value="%"/>
        </valid>
      </sanitizer>
    </param>
  </inputs>
  <outputs>
    <data format="tabular" name="outFile" />
  </outputs>
  <help>
    Later...
  </help>
</tool>