|
0
|
1 <tool id="wigmaker" name="WigMaker" version="3">
|
|
|
2 <description>for BED files</description>
|
|
|
3
|
|
|
4 <requirements>
|
|
|
5 <requirement type="package" version="3">wigmaker</requirement>
|
|
|
6 </requirements>
|
|
|
7
|
|
|
8 <command interpreter="bash">wigmaker.sh $input $output \$JAVA_JAR_PATH/WigMaker3.jar</command>
|
|
|
9 <inputs>
|
|
|
10 <param format="interval" name="input" type="data" label="Source file"/>
|
|
|
11 </inputs>
|
|
|
12 <outputs>
|
|
|
13 <data format="wig" name="output" label="${tool.name} on ${on_string} (wig)" />
|
|
|
14 </outputs>
|
|
|
15
|
|
|
16 <tests>
|
|
|
17 <test>
|
|
|
18 <param name="input" value="fa_gc_content_input.fa"/>
|
|
|
19 <output name="out_file" file="fa_gc_content_output.txt"/>
|
|
|
20 </test>
|
|
|
21 </tests>
|
|
|
22
|
|
|
23 <help>
|
|
|
24 This tool generates WIG files from BED files. (Developped by Tao Ye).
|
|
|
25 </help>
|
|
|
26 </tool>
|
|
|
27
|
|
|
28
|