Mercurial > repos > iuc > bedtools
annotate maskFastaBed.xml @ 33:87ee588b3d45 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0a8cabcc8f00014789b6d30e90be1b949d4e94d2
author | iuc |
---|---|
date | Mon, 17 Dec 2018 14:23:31 -0500 |
parents | 4f7a5ccd2ae9 |
children | dde39ba9c031 |
rev | line source |
---|---|
32
4f7a5ccd2ae9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit fc3616bd1463afef9681cd7c431ac29f79e37e74
iuc
parents:
26
diff
changeset
|
1 <tool id="bedtools_maskfastabed" name="bedtools MaskFastaBed" version="@WRAPPER_VERSION@"> |
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 |
19
a8eabd2838f6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 542ddc9e98cee5cc2a9e4caae945dee4b2c747b8
iuc
parents:
10
diff
changeset
|
12 -mc '${mc}' |
a8eabd2838f6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 542ddc9e98cee5cc2a9e4caae945dee4b2c747b8
iuc
parents:
10
diff
changeset
|
13 -fi '${fasta}' |
a8eabd2838f6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 542ddc9e98cee5cc2a9e4caae945dee4b2c747b8
iuc
parents:
10
diff
changeset
|
14 -bed '${input}' |
a8eabd2838f6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 542ddc9e98cee5cc2a9e4caae945dee4b2c747b8
iuc
parents:
10
diff
changeset
|
15 -fo '${output}' |
a8eabd2838f6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 542ddc9e98cee5cc2a9e4caae945dee4b2c747b8
iuc
parents:
10
diff
changeset
|
16 $fullheader |
1 | 17 ]]> |
0 | 18 </command> |
19 <inputs> | |
26
95a3b2c25bd1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b75b9e79cf3186a22dc2e1e9d27c1a080b891b59
iuc
parents:
19
diff
changeset
|
20 <param format="@STD_BEDTOOLS_INPUTS@" name="input" type="data" label="@STD_BEDTOOLS_INPUT_LABEL@ file"/> |
0 | 21 <param format="fasta" name="fasta" type="data" label="Fasta file"/> |
1 | 22 <param name="soft" type="boolean" checked="false" truevalue="-soft" falsevalue="" |
23 label="Soft-mask (that is, convert to lower-case bases) the FASTA sequence" | |
24 help="By default, hard-masking (that is, conversion to Ns) is performed. (-soft)" /> | |
10
c78cf6fe3018
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 44bebb8a97d64015cbba59f0663e2541035112b6
iuc
parents:
4
diff
changeset
|
25 <param name="mc" type="text" value="N" |
1 | 26 label="Replace masking character" |
27 help="That is, instead of masking with Ns, use another character. (-mc)" /> | |
33
87ee588b3d45
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0a8cabcc8f00014789b6d30e90be1b949d4e94d2
iuc
parents:
32
diff
changeset
|
28 <param argument="-fullHeader" name="fullheader" type="boolean" truevalue="-fullHeader" falsevalue="" |
19
a8eabd2838f6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 542ddc9e98cee5cc2a9e4caae945dee4b2c747b8
iuc
parents:
10
diff
changeset
|
29 label="Use full fasta header." |
a8eabd2838f6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 542ddc9e98cee5cc2a9e4caae945dee4b2c747b8
iuc
parents:
10
diff
changeset
|
30 help="By default, only the word before the first space or tab is used"/> |
0 | 31 </inputs> |
32 <outputs> | |
33 <data format="fasta" name="output" /> | |
34 </outputs> | |
1 | 35 <tests> |
36 <test> | |
37 <param name="input" value="nucBed1.bed" ftype="bed" /> | |
38 <param name="fasta" value="nucBed1.fasta" ftype="fasta" /> | |
39 <param name="soft" value="False" /> | |
33
87ee588b3d45
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0a8cabcc8f00014789b6d30e90be1b949d4e94d2
iuc
parents:
32
diff
changeset
|
40 <output name="output" file="maskFastaBed_result1.fasta" ftype="fasta" /> |
1 | 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="soft" value="True" /> | |
33
87ee588b3d45
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0a8cabcc8f00014789b6d30e90be1b949d4e94d2
iuc
parents:
32
diff
changeset
|
46 <output name="output" file="maskFastaBed_result2.fasta" ftype="fasta" /> |
87ee588b3d45
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0a8cabcc8f00014789b6d30e90be1b949d4e94d2
iuc
parents:
32
diff
changeset
|
47 </test> |
87ee588b3d45
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0a8cabcc8f00014789b6d30e90be1b949d4e94d2
iuc
parents:
32
diff
changeset
|
48 <test> |
87ee588b3d45
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0a8cabcc8f00014789b6d30e90be1b949d4e94d2
iuc
parents:
32
diff
changeset
|
49 <param name="input" value="nucBed1.bed" ftype="bed" /> |
87ee588b3d45
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0a8cabcc8f00014789b6d30e90be1b949d4e94d2
iuc
parents:
32
diff
changeset
|
50 <param name="fasta" value="nucBed1.fasta" ftype="fasta" /> |
87ee588b3d45
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0a8cabcc8f00014789b6d30e90be1b949d4e94d2
iuc
parents:
32
diff
changeset
|
51 <param name="soft" value="True" /> |
87ee588b3d45
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0a8cabcc8f00014789b6d30e90be1b949d4e94d2
iuc
parents:
32
diff
changeset
|
52 <param name="fullheader" value="True" /> |
87ee588b3d45
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0a8cabcc8f00014789b6d30e90be1b949d4e94d2
iuc
parents:
32
diff
changeset
|
53 <output name="output" file="maskFastaBed_result3.fasta" ftype="fasta" /> |
1 | 54 </test> |
55 </tests> | |
0 | 56 <help> |
1 | 57 <![CDATA[ |
0 | 58 **What it does** |
59 | |
60 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. | |
61 | |
62 .. image:: $PATH_TO_IMAGES/maskfasta-glyph.png | |
63 | |
64 @REFERENCES@ | |
1 | 65 ]]> |
0 | 66 </help> |
67 <expand macro="citations" /> | |
68 </tool> |