annotate complementBed.xml @ 26:95a3b2c25bd1 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b75b9e79cf3186a22dc2e1e9d27c1a080b891b59
author iuc
date Thu, 26 Apr 2018 17:02:46 -0400
parents e36671a0f646
children 4f7a5ccd2ae9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
19
a8eabd2838f6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 542ddc9e98cee5cc2a9e4caae945dee4b2c747b8
iuc
parents: 17
diff changeset
1 <tool id="bedtools_complementbed" name="ComplementBed" 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>Extract intervals not represented by an interval file</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[
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
10 complementBed
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
11 -i "$input"
17
44867b59dbf2 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit cf7a3674bc833bbd5fdd2ad02e724935ffc7a174
iuc
parents: 4
diff changeset
12 -g @GENOME_FILE@
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
13 > "$output"
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
14 ]]>
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
15 </command>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
16 <inputs>
26
95a3b2c25bd1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b75b9e79cf3186a22dc2e1e9d27c1a080b891b59
iuc
parents: 25
diff changeset
17 <param format="@STD_BEDTOOLS_INPUTS@" name="input" type="data" label="@STD_BEDTOOLS_INPUT_LABEL@ file"/>
17
44867b59dbf2 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit cf7a3674bc833bbd5fdd2ad02e724935ffc7a174
iuc
parents: 4
diff changeset
18 <expand macro="input_conditional_genome_file" />
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
19 </inputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
20 <outputs>
25
e36671a0f646 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit ee522a02a3fab980a5b32a1387182c951ab04968
iuc
parents: 19
diff changeset
21 <data format_source="input" name="output" metadata_source="input" label="Complement of ${input.name}"/>
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
22 </outputs>
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
23 <tests>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
24 <test>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
25 <param name="input" value="a.bed" ftype="bed" />
17
44867b59dbf2 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit cf7a3674bc833bbd5fdd2ad02e724935ffc7a174
iuc
parents: 4
diff changeset
26 <param name="genome_file_opts_selector" value="hist" />
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
27 <param name="genome" value="mm9_chr1.len" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
28 <output name="output" file="complementBed_result1.bed" ftype="bed" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
29 </test>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
30 </tests>
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
31 <help>
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
32 <![CDATA[
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
33 **What it does**
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
34
26
95a3b2c25bd1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b75b9e79cf3186a22dc2e1e9d27c1a080b891b59
iuc
parents: 25
diff changeset
35 bedtools complement returns all intervals in a genome that are not covered by at least one interval in the input @STD_BEDTOOLS_INPUT_LABEL@ file.
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
36
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
37 .. image:: $PATH_TO_IMAGES/complement-glyph.png
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
38
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
39 @REFERENCES@
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
40 ]]>
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
41 </help>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
42 <expand macro="citations" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
43 </tool>