Mercurial > repos > iuc > bedtools
annotate maskFastaBed.xml @ 42:841fb4dc3ab3 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 4046c1da68a09c7a3c275f6fe890ec71470fd74d"
author | iuc |
---|---|
date | Wed, 12 Jan 2022 19:22:14 +0000 |
parents | 7ab85ac5f64b |
children |
rev | line source |
---|---|
39
3e38c9b3214f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 1e25e8d0bd1ebeb2b94c4bbdff222e56defc1fc2"
iuc
parents:
34
diff
changeset
|
1 <tool id="bedtools_maskfastabed" name="bedtools MaskFastaBed" version="@TOOL_VERSION@" profile="@PROFILE@"> |
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> | |
41
7ab85ac5f64b
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 500a03281ea704abc7a16d9af63d67dbdcc5cd0b"
iuc
parents:
39
diff
changeset
|
6 <expand macro="bio_tools" /> |
0 | 7 <expand macro="requirements" /> |
8 <expand macro="stdio" /> | |
34
dde39ba9c031
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
33
diff
changeset
|
9 <command><![CDATA[ |
dde39ba9c031
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
33
diff
changeset
|
10 bedtools maskfasta |
dde39ba9c031
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
33
diff
changeset
|
11 $soft |
dde39ba9c031
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
33
diff
changeset
|
12 -mc '${mc}' |
dde39ba9c031
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
33
diff
changeset
|
13 -fi '${fasta}' |
dde39ba9c031
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
33
diff
changeset
|
14 -bed '${input}' |
dde39ba9c031
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
33
diff
changeset
|
15 -fo '${output}' |
dde39ba9c031
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
33
diff
changeset
|
16 $fullheader |
dde39ba9c031
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
33
diff
changeset
|
17 ]]></command> |
0 | 18 <inputs> |
34
dde39ba9c031
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
33
diff
changeset
|
19 <param name="input" argument="-bed" type="data" format="@STD_BEDTOOLS_INPUTS@" label="@STD_BEDTOOLS_INPUT_LABEL@ file"/> |
dde39ba9c031
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
33
diff
changeset
|
20 <param name="fasta" argument="-fi" type="data" format="fasta" label="FASTA file"/> |
dde39ba9c031
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
33
diff
changeset
|
21 <param argument="-soft" type="boolean" truevalue="-soft" falsevalue="" checked="false" |
1 | 22 label="Soft-mask (that is, convert to lower-case bases) the FASTA sequence" |
34
dde39ba9c031
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
33
diff
changeset
|
23 help="By default, hard-masking (that is, conversion to Ns) is performed" /> |
dde39ba9c031
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
33
diff
changeset
|
24 <param argument="-mc" type="text" value="N" |
1 | 25 label="Replace masking character" |
34
dde39ba9c031
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
33
diff
changeset
|
26 help="That is, instead of masking with Ns, use another character" /> |
33
87ee588b3d45
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0a8cabcc8f00014789b6d30e90be1b949d4e94d2
iuc
parents:
32
diff
changeset
|
27 <param argument="-fullHeader" name="fullheader" type="boolean" truevalue="-fullHeader" falsevalue="" |
34
dde39ba9c031
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
33
diff
changeset
|
28 label="Use full fasta header." |
19
a8eabd2838f6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 542ddc9e98cee5cc2a9e4caae945dee4b2c747b8
iuc
parents:
10
diff
changeset
|
29 help="By default, only the word before the first space or tab is used"/> |
0 | 30 </inputs> |
31 <outputs> | |
34
dde39ba9c031
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
33
diff
changeset
|
32 <data name="output" format="fasta" /> |
0 | 33 </outputs> |
1 | 34 <tests> |
35 <test> | |
36 <param name="input" value="nucBed1.bed" ftype="bed" /> | |
37 <param name="fasta" value="nucBed1.fasta" ftype="fasta" /> | |
38 <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
|
39 <output name="output" file="maskFastaBed_result1.fasta" ftype="fasta" /> |
1 | 40 </test> |
41 <test> | |
42 <param name="input" value="nucBed1.bed" ftype="bed" /> | |
43 <param name="fasta" value="nucBed1.fasta" ftype="fasta" /> | |
44 <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
|
45 <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
|
46 </test> |
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 <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
|
49 <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
|
50 <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
|
51 <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
|
52 <output name="output" file="maskFastaBed_result3.fasta" ftype="fasta" /> |
1 | 53 </test> |
54 </tests> | |
34
dde39ba9c031
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
33
diff
changeset
|
55 <help><![CDATA[ |
0 | 56 **What it does** |
57 | |
58 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. | |
59 | |
60 .. image:: $PATH_TO_IMAGES/maskfasta-glyph.png | |
61 | |
62 @REFERENCES@ | |
34
dde39ba9c031
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
33
diff
changeset
|
63 ]]></help> |
0 | 64 <expand macro="citations" /> |
65 </tool> |