Files
galaxy/tools/new_operations/complement.xml
T
Ian Schenck feda672ffa - Performance of indexers much improved.
- Indexing for tracks done in background with a visual treatment done to Trackster

- DB builds can be uploaded by a user (chromInfo/len extension).

- TODO: Add ability to change the dbkey of a dataset to any arbitrary string value.
2009-04-23 13:46:52 -04:00

62 lines
2.0 KiB
XML

<tool id="gops_complement_1" name="Complement">
<description>intervals of a query</description>
<command interpreter="python">gops_complement.py $input1 $output -1 ${input1.metadata.chromCol},${input1.metadata.startCol},${input1.metadata.endCol},${input1.metadata.strandCol} -l ${chromInfo} $allchroms</command>
<inputs>
<param format="interval" name="input1" type="data">
<label>Complement regions of</label>
</param>
<param name="allchroms" type="boolean" truevalue="--all" falsevalue="" label="Genome-wide complement">
</param>
</inputs>
<outputs>
<data format="input" name="output" metadata_source="input1" />
</outputs>
<code file="operation_filter.py"/>
<tests>
<test>
<param name="input1" value="1.bed" />
<param name="allchroms" value="true" />
<output name="output" file="gops_complement_out.bed" />
</test>
<test>
<param name="input1" value="2_mod.bed" ftype="interval"/>
<param name="allchroms" value="true" />
<output name="output" file="gops_complement_out_diffCols.dat" />
</test>
<test>
<param name="input1" value="gops_bigint.interval" />
<param name="allchroms" value="true" />
<output name="output" file="gops_complement_out2.bed" />
</test>
</tests>
<help>
.. class:: infomark
**TIP:** If your query does not appear in the pulldown menu -> it is not in interval format. Use "edit attributes" to set chromosome, start, end, and strand columns
This operation complements the regions of a set of intervals. Regions are returned that represent the empty space in the input interval.
-----
**Screencasts!**
See Galaxy Interval Operation Screencasts_ (right click to open this link in another window).
.. _Screencasts: http://www.bx.psu.edu/cgi-bin/trac.cgi/wiki/GopsDesc
-----
**Syntax**
- **Genome-wide complement** will complement all chromosomes of the genome. Leaving this option unchecked will only complement chromosomes present in the query.
-----
**Example**
.. image:: ../static/operation_icons/gops_complement.gif
</help>
</tool>