Mercurial > repos > iuc > bedtools
view tagBed.xml @ 2:effb7b4e45ed draft
Uploaded
| author | iuc |
|---|---|
| date | Fri, 05 Dec 2014 13:31:24 -0500 |
| parents | 7511823bdea1 |
| children | 315929597efb |
line wrap: on
line source
<tool id="bedtools_tagbed" name="TagBed" version="@WRAPPER_VERSION@.0"> <description></description> <macros> <import>macros.xml</import> </macros> <expand macro="requirements" /> <expand macro="stdio" /> <command> bedtools tag -i $inputA -files #for $bed in beds: $bed.input #end for -f $overlap $strand -tag $tag $field > $output </command> <inputs> <param format="bam" name="inputA" type="data" label="BAM file"/> <repeat name="beds" title="Add files" > <param name="input" format="bed,gff,vcf" type="data" label="BED/VCF/GFF file" /> </repeat> <expand macro="strand2" /> <expand macro="overlap" /> <param name="tag" type="text" value="YB" label="Dictate what the tag should be." /> <param name="field" type="select" label="Use which field from the annotation files to populate tags?"> <option value="-labels" selected="True">labels</option> <option value="-scores">Scores</option> <option value="-names">Names</option> <option value="-labels -intervals">Intervals</option> </param> </inputs> <outputs> <data format="bed" name="output" label="" /> </outputs> <help> **What it does** Annotates a BAM file based on overlaps with multiple BED/GFF/VCF files on the intervals in an input bam file @REFERENCES@ </help> <expand macro="citations" /> </tool>
