Mercurial > repos > iuc > bedtools
annotate linksBed.xml @ 16:e0cec48a4695 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit ea1ac33f3337ac44f43150f585c9ccd38e08da0c
author | iuc |
---|---|
date | Fri, 18 Aug 2017 15:33:08 -0400 |
parents | 607c0576c6ab |
children | 95a3b2c25bd1 |
rev | line source |
---|---|
0 | 1 <tool id="bedtools_links" name="LinksBed" version="@WRAPPER_VERSION@.0"> |
4
607c0576c6ab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6692e3a4fa1bf6e9a407735afdbb2454ed32b316
iuc
parents:
1
diff
changeset
|
2 <description>create a HTML page of links to UCSC locations</description> |
0 | 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> |