view SMART/galaxy/getWigDistance.xml @ 11:2da30502c2f1

Updated CompareOverlappingSmallQuery.xml
author m-zytnicki
date Thu, 14 Mar 2013 05:37:08 -0400
parents 769e306b7933
children 440ceca58672
line wrap: on
line source

<tool id="getWigDistance" name="get wig distance">
    <description>Compute the average data around some genomic coordinates using WIG files (thus covering a large proportion of the genome).</description>
    <command interpreter="python">
		../Java/Python/getWigDistance.py -i $inputGff3File -f gff3 -w $inputWigFile -a 0.0 -d $distance $strand -o $outputFile
	</command>
	
    <inputs>
    	<param name="inputGff3File" type="data" label="Input Gff3 File (compulsory option)" format="gff3"/>
   		<param name="inputWigFile" type="data" label="Input Wig File (compulsory option)" format="wig"/>
		<param name="distance" type="integer" value="1000" label="distance option (compulsory option)" help="Distance around position.Be Careful! The value must be upper than 0"/>
		<param name="strand" type="boolean" truevalue="-s" falsevalue="" checked="false" label="consider both strands separately."/>    
    </inputs>
        
    <outputs>
       	<data name="outputFile" format="png" label="[getWigDistance] PNG output File"/>    
    </outputs> 
</tool>