0
|
1 <tool id="bedtools_nucbed" name="NucBed" version="@WRAPPER_VERSION@.0">
|
|
2 <description></description>
|
|
3 <macros>
|
|
4 <import>macros.xml</import>
|
|
5 </macros>
|
|
6 <expand macro="requirements" />
|
|
7 <expand macro="stdio" />
|
|
8 <command>
|
1
|
9 <![CDATA[
|
0
|
10 bedtools nuc
|
|
11 $strand
|
|
12 $seq
|
|
13 $pattern
|
|
14 $case
|
1
|
15 -fi $fasta
|
|
16 -bed $input
|
|
17 > $output
|
|
18 ]]>
|
0
|
19 </command>
|
|
20 <inputs>
|
1
|
21 <param format="bed,vcf,gff,gff3" name="input" type="data" label="BED/VCF/GFF file"/>
|
|
22 <param format="fasta" name="fasta" type="data" label="FASTA file"/>
|
0
|
23
|
1
|
24 <param name="strand" type="boolean" checked="false" truevalue="-s" falsevalue=""
|
|
25 label="Profile the sequence according to strand" help="(-s)"/>
|
|
26 <param name="seq" type="boolean" checked="false" truevalue="-seq" falsevalue=""
|
|
27 label="Print the extracted sequence" help="(-seq)"/>
|
|
28 <param name="pattern" type="boolean" checked="false" truevalue="-pattern" falsevalue=""
|
|
29 label="Report the number of times a user-defined sequence is observed" help="case-sensitive (-pattern)" />
|
|
30 <param name="case" type="boolean" checked="false" truevalue="-C" falsevalue=""
|
|
31 label="Igore case when matching -pattern" help="(-C)"/>
|
0
|
32 </inputs>
|
|
33 <outputs>
|
1
|
34 <data format="tabular" name="output" />
|
0
|
35 </outputs>
|
1
|
36 <tests>
|
|
37 <test>
|
|
38 <param name="input" value="nucBed1.bed" ftype="bed" />
|
|
39 <param name="fasta" value="nucBed1.fasta" ftype="fasta" />
|
|
40 <output name="output" file="nucBed_result1.bed" ftype="tabular" />
|
|
41 </test>
|
|
42 <test>
|
|
43 <param name="input" value="nucBed1.bed" ftype="bed" />
|
|
44 <param name="fasta" value="nucBed1.fasta" ftype="fasta" />
|
|
45 <param name="seq" value="True" />
|
|
46 <output name="output" file="nucBed_result2.bed" ftype="tabular" />
|
|
47 </test>
|
|
48 </tests>
|
0
|
49 <help>
|
1
|
50 <![CDATA[
|
0
|
51 **What it does**
|
|
52
|
|
53 Profiles the nucleotide content of intervals in a fasta file.
|
|
54
|
|
55 @REFERENCES@
|
1
|
56 ]]>
|
0
|
57 </help>
|
|
58 <expand macro="citations" />
|
|
59 </tool>
|