annotate maskFastaBed.xml @ 0:b8348686a0b9 draft

Imported from capsule None
author iuc
date Tue, 04 Nov 2014 01:45:04 -0500
parents
children 82aac94b06c3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
1 <tool id="bedtools_maskfastabed" name="MaskFastaBed" version="@WRAPPER_VERSION@.0">
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
2 <description></description>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
3 <macros>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
4 <import>macros.xml</import>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
5 </macros>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
6 <expand macro="requirements" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
7 <expand macro="stdio" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
8 <command>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
9 bedtools maskfasta
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
10 $soft
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
11 -mc $mc
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
12 -fi $fasta
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
13 -bed $inputA
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
14 -fo $output
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
15 </command>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
16 <inputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
17 <param format="bed,vcf,gff,gff3" name="inputA" type="data" label="BED/VCF/GFF file"/>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
18 <param format="fasta" name="fasta" type="data" label="Fasta file"/>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
19
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
20 <param name="soft" type="boolean" checked="false" truevalue="-name" falsevalue="" label="Soft-mask (that is, convert to lower-case bases) the FASTA sequence. By default, hard-masking (that is, conversion to Ns) is performed" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
21 <param name="mc" type="text" value="N" length="1" falsevalue="" label="Replace masking character. That is, instead of masking with Ns, use another character." />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
22 </inputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
23 <outputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
24 <data format="fasta" name="output" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
25 </outputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
26 <help>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
27
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
28 **What it does**
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
29
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
30 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.
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
31
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
32 .. image:: $PATH_TO_IMAGES/maskfasta-glyph.png
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
33
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
34 @REFERENCES@
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
35 </help>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
36 <expand macro="citations" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
37 </tool>