Mercurial > repos > iuc > bedtools
view nucBed.xml @ 11:7308cc546a36 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 19967671ddd4e750f53d71274e5c12325a402811
author | iuc |
---|---|
date | Mon, 17 Oct 2016 10:13:35 -0400 |
parents | 607c0576c6ab |
children | b3c147390100 |
line wrap: on
line source
<tool id="bedtools_nucbed" name="NucBed" version="@WRAPPER_VERSION@.0"> <description>profile the nucleotide content of intervals in a FASTA file</description> <macros> <import>macros.xml</import> </macros> <expand macro="requirements" /> <expand macro="stdio" /> <command> <![CDATA[ bedtools nuc $strand $seq $pattern $case -fi '$fasta' -bed '$input' > '$output' ]]> </command> <inputs> <param format="bed,vcf,gff,gff3" name="input" type="data" label="BED/VCF/GFF file"/> <param format="fasta" name="fasta" type="data" label="FASTA file"/> <param name="strand" type="boolean" checked="false" truevalue="-s" falsevalue="" label="Profile the sequence according to strand" help="(-s)"/> <param name="seq" type="boolean" checked="false" truevalue="-seq" falsevalue="" label="Print the extracted sequence" help="(-seq)"/> <param name="pattern" type="boolean" checked="false" truevalue="-pattern" falsevalue="" label="Report the number of times a user-defined sequence is observed" help="case-sensitive (-pattern)" /> <param name="case" type="boolean" checked="false" truevalue="-C" falsevalue="" label="Igore case when matching -pattern" help="(-C)"/> </inputs> <outputs> <data format="tabular" name="output" /> </outputs> <tests> <test> <param name="input" value="nucBed1.bed" ftype="bed" /> <param name="fasta" value="nucBed1.fasta" ftype="fasta" /> <output name="output" file="nucBed_result1.bed" ftype="tabular" /> </test> <test> <param name="input" value="nucBed1.bed" ftype="bed" /> <param name="fasta" value="nucBed1.fasta" ftype="fasta" /> <param name="seq" value="True" /> <output name="output" file="nucBed_result2.bed" ftype="tabular" /> </test> </tests> <help> <![CDATA[ **What it does** Profiles the nucleotide content of intervals in a fasta file. @REFERENCES@ ]]> </help> <expand macro="citations" /> </tool>