annotate BedToBam.xml @ 2:effb7b4e45ed draft

Uploaded
author iuc
date Fri, 05 Dec 2014 13:31:24 -0500
parents 7511823bdea1
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
1 <tool id="bedtools_bedtobam" name="Convert from BED to BAM" version="@WRAPPER_VERSION@.0">
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
2 <description></description>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
3 <macros>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
4 <import>macros.xml</import>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
5 </macros>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
6 <expand macro="requirements" />
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
7 <expand macro="stdio" />
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
8 <command>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
9 bedtools bedtobam
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
10 $ubam
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
11 $bed12
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
12 -mapq $mapq
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
13 -i '$input'
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
14 &gt; '$output'
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
15 </command>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
16 <inputs>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
17 <param format="bed" name="input" type="data" label="Convert the following BED file to BAM"/>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
18 <param name="bed12" type="boolean" label="Indicate that the input BED file is in BED12 (a.k.a “blocked” BED) format" truevalue="-bed12" falsevalue="" checked="false" help="If Selected, bedToBam will convert blocked BED features (e.g., gene annotaions) into “spliced” BAM alignments by creating an appropriate CIGAR string.."/>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
19 <param name="mapq" type="integer" label="Set a mapping quality (SAM MAPQ field) value for all BED entries" value="255" />
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
20 <param name="ubam" type="boolean" label="Write uncompressed BAM output." truevalue="-ubam" falsevalue="" checked="false"/>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
21 </inputs>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
22 <outputs>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
23 <data format="bam" name="output" metadata_source="input" label="${input.name} (as BAM)"/>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
24 </outputs>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
25 <help>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
26
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
27 **What it does**
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
28
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
29 bedToBam converts features in a feature file to BAM format. This is useful as an efficient means of storing large genome annotations in a compact, indexed format for visualization purposes.
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
30
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
31 @REFERENCES@
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
32 </help>
1
7511823bdea1 Uploaded
iuc
parents: 0
diff changeset
33 <expand macro="citations" />
0
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
34 </tool>