Mercurial > repos > iuc > bedtools
comparison linksBed.xml @ 1:82aac94b06c3 draft
Uploaded
author | iuc |
---|---|
date | Thu, 08 Jan 2015 14:25:51 -0500 |
parents | b8348686a0b9 |
children | 607c0576c6ab |
comparison
equal
deleted
inserted
replaced
0:b8348686a0b9 | 1:82aac94b06c3 |
---|---|
4 <import>macros.xml</import> | 4 <import>macros.xml</import> |
5 </macros> | 5 </macros> |
6 <expand macro="requirements" /> | 6 <expand macro="requirements" /> |
7 <expand macro="stdio" /> | 7 <expand macro="stdio" /> |
8 <command> | 8 <command> |
9 linksBed | 9 <![CDATA[ |
10 -base $basename | 10 bedtools links |
11 -org $org | 11 -base "${basename}" |
12 -db $db | 12 -org "${org}" |
13 -i $inputA | 13 -db "${db}" |
14 > $output | 14 -i "${input}" |
15 > "${output}" | |
16 ]]> | |
15 </command> | 17 </command> |
16 <inputs> | 18 <inputs> |
17 <param format="bed,vcf,gff,gff3" name="inputA" type="data" label="BED/VCF/GFF file"/> | 19 <param format="bed,vcf,gff,gff3" name="input" type="data" label="BED/VCF/GFF file"/> |
18 <param name="basename" type="text" value="http://genome.ucsc.edu" label="The “basename” for the UCSC browser" /> | 20 <param name="basename" type="text" value="http://genome.ucsc.edu" |
19 <param name="org" type="text" value="human" label="The organism (e.g. mouse, human)" /> | 21 label="The 'basename' for the UCSC genome browser" /> |
20 <param name="db" type="text" value="hg18" label="The genome build" /> | 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)"/> | |
21 </inputs> | 24 </inputs> |
22 <outputs> | 25 <outputs> |
23 <data name="output" format="html" /> | 26 <data name="output" format="html" /> |
24 </outputs> | 27 </outputs> |
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> | |
25 <help> | 44 <help> |
26 | 45 <![CDATA[ |
27 **What it does** | 46 **What it does** |
28 | 47 |
29 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. | 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. |
30 | 49 |
31 @REFERENCES@ | 50 @REFERENCES@ |
51 ]]> | |
32 </help> | 52 </help> |
33 <expand macro="citations" /> | 53 <expand macro="citations" /> |
34 </tool> | 54 </tool> |