Mercurial > repos > iuc > bedtools
annotate linksBed.xml @ 48:2f457890d8c8 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit fc3616bd1463afef9681cd7c431ac29f79e37e74
| author | iuc |
|---|---|
| date | Tue, 11 Dec 2018 13:59:34 -0500 |
| parents | d279800f4ff9 |
| children | df28283b3778 |
| rev | line source |
|---|---|
|
48
2f457890d8c8
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit fc3616bd1463afef9681cd7c431ac29f79e37e74
iuc
parents:
42
diff
changeset
|
1 <tool id="bedtools_links" name="bedtools LinksBed" version="@WRAPPER_VERSION@"> |
|
17
a2d4c30ba2f9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
iuc
parents:
8
diff
changeset
|
2 <description>create a HTML page of links to UCSC locations</description> |
| 8 | 3 <macros> |
| 4 <import>macros.xml</import> | |
| 5 </macros> | |
| 6 <expand macro="requirements" /> | |
| 7 <expand macro="stdio" /> | |
| 8 <command> | |
| 9 <![CDATA[ | |
| 10 bedtools links | |
| 11 -base "${basename}" | |
| 12 -org "${org}" | |
| 13 -db "${db}" | |
| 14 -i "${input}" | |
| 15 > "${output}" | |
| 16 ]]> | |
| 17 </command> | |
| 18 <inputs> | |
|
42
d279800f4ff9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b75b9e79cf3186a22dc2e1e9d27c1a080b891b59
iuc
parents:
17
diff
changeset
|
19 <param format="@STD_BEDTOOLS_INPUTS@" name="input" type="data" label="@STD_BEDTOOLS_INPUT_LABEL@ file"/> |
| 8 | 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)"/> | |
| 24 </inputs> | |
| 25 <outputs> | |
| 26 <data name="output" format="html" /> | |
| 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> | |
| 44 <help> | |
| 45 <![CDATA[ | |
| 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@ | |
| 51 ]]> | |
| 52 </help> | |
| 53 <expand macro="citations" /> | |
| 54 </tool> |
