annotate maskFastaBed.xml @ 2:effb7b4e45ed draft

Uploaded
author iuc
date Fri, 05 Dec 2014 13:31:24 -0500
parents 7511823bdea1
children 315929597efb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
1 <tool id="bedtools_maskfastabed" name="MaskFastaBed" version="@WRAPPER_VERSION@.0">
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
2 <description></description>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
3 <macros>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
4 <import>macros.xml</import>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
5 </macros>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
6 <expand macro="requirements" />
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
7 <expand macro="stdio" />
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
8 <command>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
9 bedtools maskfasta
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
10 $soft
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
11 -mc $mc
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
12 -fi $fasta
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
13 -bed $inputA
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
14 -fo $output
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
15 </command>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
16 <inputs>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
17 <param format="bed,vcf,gff,gff3" name="inputA" type="data" label="BED/VCF/GFF file"/>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
18 <param format="fasta" name="fasta" type="data" label="Fasta file"/>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
19
4fb5ea02b441 Uploaded
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" />
4fb5ea02b441 Uploaded
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." />
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
22 </inputs>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
23 <outputs>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
24 <data format="fasta" name="output" />
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
25 </outputs>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
26 <help>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
27
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
28 **What it does**
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
29
4fb5ea02b441 Uploaded
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.
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
31
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
32 .. image:: $PATH_TO_IMAGES/maskfasta-glyph.png
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
33
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
34 @REFERENCES@
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
35 </help>
1
7511823bdea1 Uploaded
iuc
parents: 0
diff changeset
36 <expand macro="citations" />
0
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
37 </tool>