annotate linksBed.xml @ 32:4f7a5ccd2ae9 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit fc3616bd1463afef9681cd7c431ac29f79e37e74
author iuc
date Tue, 11 Dec 2018 14:01:26 -0500
parents 95a3b2c25bd1
children dde39ba9c031
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
32
4f7a5ccd2ae9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit fc3616bd1463afef9681cd7c431ac29f79e37e74
iuc
parents: 26
diff changeset
1 <tool id="bedtools_links" name="bedtools LinksBed" version="@WRAPPER_VERSION@">
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
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
3 <macros>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
4 <import>macros.xml</import>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
5 </macros>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
6 <expand macro="requirements" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
7 <expand macro="stdio" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
8 <command>
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
9 <![CDATA[
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
10 bedtools links
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
11 -base "${basename}"
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
12 -org "${org}"
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
13 -db "${db}"
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
14 -i "${input}"
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
15 > "${output}"
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
16 ]]>
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
17 </command>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
18 <inputs>
26
95a3b2c25bd1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b75b9e79cf3186a22dc2e1e9d27c1a080b891b59
iuc
parents: 4
diff changeset
19 <param format="@STD_BEDTOOLS_INPUTS@" name="input" type="data" label="@STD_BEDTOOLS_INPUT_LABEL@ file"/>
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
20 <param name="basename" type="text" value="http://genome.ucsc.edu"
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
21 label="The 'basename' for the UCSC genome browser" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
22 <param name="org" type="text" value="human" label="Organism name" help="e.g. mouse, human (-org)" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
23 <param name="db" type="text" value="hg19" label="The genome build" help="(-db)"/>
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
24 </inputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
25 <outputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
26 <data name="output" format="html" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
27 </outputs>
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
28 <tests>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
29 <test>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
30 <param name="input" value="linksBed1.bed" ftype="bed" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
31 <param name="basename" value="http://genome.ucsc.edu" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
32 <param name="org" value="" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
33 <param name="db" value="" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
34 <output name="output" file="linksBed_result1.html" lines_diff="2" ftype="html" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
35 </test>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
36 <test>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
37 <param name="input" value="linksBed1.bed" ftype="bed" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
38 <param name="basename" value="http://genome.ucsc.edu" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
39 <param name="org" value="mouse" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
40 <param name="db" value="mm9" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
41 <output name="output" file="linksBed_result2.html" lines_diff="2" ftype="html" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
42 </test>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
43 </tests>
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
44 <help>
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
45 <![CDATA[
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
46 **What it does**
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
47
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
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.
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
49
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
50 @REFERENCES@
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
51 ]]>
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
52 </help>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
53 <expand macro="citations" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
54 </tool>