annotate bedpeToBam.xml @ 4:607c0576c6ab draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6692e3a4fa1bf6e9a407735afdbb2454ed32b316
author iuc
date Wed, 27 Jan 2016 15:15:59 -0500
parents 82aac94b06c3
children 44867b59dbf2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4
607c0576c6ab planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6692e3a4fa1bf6e9a407735afdbb2454ed32b316
iuc
parents: 1
diff changeset
1 <tool id="bedtools_bedpetobam" name="BEDPE to BAM" version="@WRAPPER_VERSION@.0">
607c0576c6ab planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6692e3a4fa1bf6e9a407735afdbb2454ed32b316
iuc
parents: 1
diff changeset
2 <description>converter</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 bedtools bedpetobam
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
11 -mapq $mapq
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
12 -i '$input'
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
13 -g $genome
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
14 > '$output'
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
15 ]]>
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
16 </command>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
17 <inputs>
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
18 <param name="input" format="bed,gff,vcf" type="data" label="BED/VCF/GFF file"/>
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
19 <expand macro="genome" />
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
20 <param name="mapq" type="integer" value="255"
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
21 label="Set a mapping quality (SAM MAPQ field) value for all BED entries"
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
22 help="(-mapq)" />
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
23 </inputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
24 <outputs>
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
25 <data format="bam" name="output" metadata_source="input"/>
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
26 </outputs>
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
27 <tests>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
28 <test>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
29 <param name="input" value="bedpeToBamBed1.bed" ftype="bed" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
30 <param name="genome" value="mm9.len"/>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
31 <output name="output" file="bedpeToBam_result1.bam" lines_diff="72" ftype="bam" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
32 </test>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
33 </tests>
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
34 <help>
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
35 <![CDATA[
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
36 **What it does**
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
37
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
38 Converts feature records to BAM format.
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
39
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
40 .. class:: warningmark
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
41
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
42 BED files must be at least BED4 to create BAM (needs name field).
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
43
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
44 @REFERENCES@
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
45 ]]>
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
46 </help>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
47 <expand macro="citations" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
48 </tool>