Mercurial > repos > iuc > bedtools
annotate maskFastaBed.xml @ 9:2ab422b551df draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit bad476ff5076338f3eebdf0c25bb5a6c745e5592
author | iuc |
---|---|
date | Wed, 14 Sep 2016 17:30:10 -0400 |
parents | 607c0576c6ab |
children | c78cf6fe3018 |
rev | line source |
---|---|
0 | 1 <tool id="bedtools_maskfastabed" name="MaskFastaBed" 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>use intervals to mask sequences from a FASTA file</description> |
0 | 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 maskfasta |
1 | 11 $soft |
12 -mc "${mc}" | |
13 -fi "${fasta}" | |
14 -bed "${input}" | |
15 -fo "${output}" | |
16 ]]> | |
0 | 17 </command> |
18 <inputs> | |
1 | 19 <param format="bed,vcf,gff,gff3" name="input" type="data" label="BED/VCF/GFF file"/> |
0 | 20 <param format="fasta" name="fasta" type="data" label="Fasta file"/> |
1 | 21 <param name="soft" type="boolean" checked="false" truevalue="-soft" falsevalue="" |
22 label="Soft-mask (that is, convert to lower-case bases) the FASTA sequence" | |
23 help="By default, hard-masking (that is, conversion to Ns) is performed. (-soft)" /> | |
24 <param name="mc" type="text" value="N" length="1" | |
25 label="Replace masking character" | |
26 help="That is, instead of masking with Ns, use another character. (-mc)" /> | |
0 | 27 </inputs> |
28 <outputs> | |
29 <data format="fasta" name="output" /> | |
30 </outputs> | |
1 | 31 <tests> |
32 <test> | |
33 <param name="input" value="nucBed1.bed" ftype="bed" /> | |
34 <param name="fasta" value="nucBed1.fasta" ftype="fasta" /> | |
35 <param name="soft" value="False" /> | |
36 <output name="output" file="maskFastaBed_result1.bed" ftype="fasta" /> | |
37 </test> | |
38 <test> | |
39 <param name="input" value="nucBed1.bed" ftype="bed" /> | |
40 <param name="fasta" value="nucBed1.fasta" ftype="fasta" /> | |
41 <param name="soft" value="True" /> | |
42 <output name="output" file="maskFastaBed_result2.bed" ftype="fasta" /> | |
43 </test> | |
44 </tests> | |
0 | 45 <help> |
1 | 46 <![CDATA[ |
0 | 47 **What it does** |
48 | |
49 bedtools maskfasta masks sequences in a FASTA file based on intervals defined in a feature file. The headers in the input FASTA file must exactly match the chromosome column in the feature file. This may be useful fro creating your own masked genome file based on custom annotations or for masking all but your target regions when aligning sequence data from a targeted capture experiment. | |
50 | |
51 .. image:: $PATH_TO_IMAGES/maskfasta-glyph.png | |
52 | |
53 @REFERENCES@ | |
1 | 54 ]]> |
0 | 55 </help> |
56 <expand macro="citations" /> | |
57 </tool> |