Mercurial > repos > iuc > bedtools
annotate bedToBam.xml @ 27:a33db97b220c draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 1ec398a9421f016b852fe59d46961c12321ee5c8
author | iuc |
---|---|
date | Tue, 15 May 2018 14:52:10 -0400 |
parents | a8eabd2838f6 |
children | 4f7a5ccd2ae9 |
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_bedtobam" name="BED to BAM" 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>converter</description> |
1 | 3 <macros> |
4 <import>macros.xml</import> | |
5 </macros> | |
6 <expand macro="requirements" /> | |
7 <expand macro="stdio" /> | |
8 <command> | |
9 <![CDATA[ | |
10 bedtools bedtobam | |
11 $bed12 | |
12 -mapq $mapq | |
17
44867b59dbf2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit cf7a3674bc833bbd5fdd2ad02e724935ffc7a174
iuc
parents:
4
diff
changeset
|
13 -g @GENOME_FILE@ |
1 | 14 -i '$input' |
15 > '$output' | |
16 ]]> | |
17 </command> | |
18 <inputs> | |
19 <param format="bed" name="input" type="data" label="Convert the following BED file to BAM"/> | |
20 <param name="bed12" type="boolean" truevalue="-bed12" falsevalue="" checked="false" | |
21 label="Indicate that the input BED file is in BED12 (a.k.a 'blocked' BED) format" | |
22 help="If Selected, bedToBam will convert blocked BED features (e.g., gene annotaions) into 'spliced' BAM alignments by creating an appropriate CIGAR string. (-bed12)"/> | |
17
44867b59dbf2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit cf7a3674bc833bbd5fdd2ad02e724935ffc7a174
iuc
parents:
4
diff
changeset
|
23 <expand macro="input_conditional_genome_file" /> |
1 | 24 <param name="mapq" type="integer" value="255" |
25 label="Set a mapping quality (SAM MAPQ field) value for all BED entries" help="(-mapq)"/> | |
26 </inputs> | |
27 <outputs> | |
28 <data format="bam" name="output" metadata_source="input" label="${input.name} (as BAM)"/> | |
29 </outputs> | |
30 <tests> | |
31 <test> | |
32 <param name="input" value="bedToBam1.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
|
33 <param name="genome_file_opts_selector" value="hist" /> |
1 | 34 <param name="genome" value="mm9_chr1.len" ftype="tabular" /> |
4
607c0576c6ab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6692e3a4fa1bf6e9a407735afdbb2454ed32b316
iuc
parents:
1
diff
changeset
|
35 <output name="output" file="bedToBam_result.bam" lines_diff="4" ftype="bam" /> |
1 | 36 </test> |
37 </tests> | |
38 <help> | |
39 <![CDATA[ | |
40 **What it does** | |
41 | |
42 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. | |
43 | |
44 @REFERENCES@ | |
45 ]]> | |
46 </help> | |
47 <expand macro="citations" /> | |
48 </tool> |