0
|
1 <tool id="bedtools_links" name="LinksBed" version="@WRAPPER_VERSION@.0">
|
|
2 <description></description>
|
|
3 <macros>
|
|
4 <import>macros.xml</import>
|
|
5 </macros>
|
|
6 <expand macro="requirements" />
|
|
7 <expand macro="stdio" />
|
|
8 <command>
|
1
|
9 <![CDATA[
|
|
10 bedtools links
|
|
11 -base "${basename}"
|
|
12 -org "${org}"
|
|
13 -db "${db}"
|
|
14 -i "${input}"
|
|
15 > "${output}"
|
|
16 ]]>
|
0
|
17 </command>
|
|
18 <inputs>
|
1
|
19 <param format="bed,vcf,gff,gff3" name="input" type="data" label="BED/VCF/GFF file"/>
|
|
20 <param name="basename" type="text" value="http://genome.ucsc.edu"
|
|
21 label="The 'basename' for the UCSC genome browser" />
|
|
22 <param name="org" type="text" value="human" label="Organism name" help="e.g. mouse, human (-org)" />
|
|
23 <param name="db" type="text" value="hg19" label="The genome build" help="(-db)"/>
|
0
|
24 </inputs>
|
|
25 <outputs>
|
|
26 <data name="output" format="html" />
|
|
27 </outputs>
|
1
|
28 <tests>
|
|
29 <test>
|
|
30 <param name="input" value="linksBed1.bed" ftype="bed" />
|
|
31 <param name="basename" value="http://genome.ucsc.edu" />
|
|
32 <param name="org" value="" />
|
|
33 <param name="db" value="" />
|
|
34 <output name="output" file="linksBed_result1.html" lines_diff="2" ftype="html" />
|
|
35 </test>
|
|
36 <test>
|
|
37 <param name="input" value="linksBed1.bed" ftype="bed" />
|
|
38 <param name="basename" value="http://genome.ucsc.edu" />
|
|
39 <param name="org" value="mouse" />
|
|
40 <param name="db" value="mm9" />
|
|
41 <output name="output" file="linksBed_result2.html" lines_diff="2" ftype="html" />
|
|
42 </test>
|
|
43 </tests>
|
0
|
44 <help>
|
1
|
45 <![CDATA[
|
0
|
46 **What it does**
|
|
47
|
|
48 Creates an HTML file with links to an instance of the UCSC Genome Browser for all features / intervals in a file. This is useful for cases when one wants to manually inspect through a large set of annotations or features.
|
|
49
|
|
50 @REFERENCES@
|
1
|
51 ]]>
|
0
|
52 </help>
|
|
53 <expand macro="citations" />
|
|
54 </tool>
|