Mercurial > repos > xuebing > sharplab_interval_analysis
view bedclean.xml @ 22:869c7664e584
Uploaded
author | xuebing |
---|---|
date | Sat, 31 Mar 2012 11:52:14 -0400 |
parents | 783157ce2817 |
children |
line wrap: on
line source
<tool id="bedclean" name="clean interval"> <description>remove off-chromosome lines</description> <command interpreter="python">bedclean.py $input $genome $output > $log </command> <inputs> <param name="input" type="data" format="interval" label="Original interval file"/> <param name="genome" type="select" label="Select chromsome size file" > <options from_file="chrsize.loc"> <column name="name" index="0"/> <column name="value" index="1"/> </options> </param> </inputs> <outputs> <data format="input" name="output" label="${tool.name} on ${on_string} (interval)"/> <data format="txt" name="log" label="${tool.name} on ${on_string} (log)"/> </outputs> <help> **Description** remove lines that are 1. comment or track name lines 2. on chr*_random 3. or have negative coordinates 4. or the end is larger than chromosome size </help> </tool>