Mercurial > repos > iuc > bedtools
annotate nucBed.xml @ 38:3f852f713d24 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0346e504b5f0aa94215279203beb09b767ada32c
| author | iuc |
|---|---|
| date | Sun, 21 Jan 2018 07:16:59 -0500 |
| parents | 7f4f9bb165c9 |
| children | d279800f4ff9 |
| rev | line source |
|---|---|
|
38
3f852f713d24
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0346e504b5f0aa94215279203beb09b767ada32c
iuc
parents:
37
diff
changeset
|
1 <tool id="bedtools_nucbed" name="NucBed" version="@WRAPPER_VERSION@.1"> |
|
17
a2d4c30ba2f9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
iuc
parents:
8
diff
changeset
|
2 <description>profile the nucleotide content of intervals in a FASTA file</description> |
| 8 | 3 <macros> |
| 4 <import>macros.xml</import> | |
| 5 </macros> | |
| 6 <expand macro="requirements" /> | |
| 7 <expand macro="stdio" /> | |
| 8 <command> | |
| 9 <![CDATA[ | |
| 10 bedtools nuc | |
|
38
3f852f713d24
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0346e504b5f0aa94215279203beb09b767ada32c
iuc
parents:
37
diff
changeset
|
11 $s |
| 8 | 12 $seq |
|
38
3f852f713d24
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0346e504b5f0aa94215279203beb09b767ada32c
iuc
parents:
37
diff
changeset
|
13 #if str($pattern): |
|
3f852f713d24
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0346e504b5f0aa94215279203beb09b767ada32c
iuc
parents:
37
diff
changeset
|
14 -pattern '$pattern' |
|
3f852f713d24
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0346e504b5f0aa94215279203beb09b767ada32c
iuc
parents:
37
diff
changeset
|
15 $C |
|
3f852f713d24
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0346e504b5f0aa94215279203beb09b767ada32c
iuc
parents:
37
diff
changeset
|
16 #end if |
|
26
c0fbce5dc84a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 19967671ddd4e750f53d71274e5c12325a402811
iuc
parents:
17
diff
changeset
|
17 -fi '$fasta' |
|
c0fbce5dc84a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 19967671ddd4e750f53d71274e5c12325a402811
iuc
parents:
17
diff
changeset
|
18 -bed '$input' |
|
c0fbce5dc84a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 19967671ddd4e750f53d71274e5c12325a402811
iuc
parents:
17
diff
changeset
|
19 > '$output' |
| 8 | 20 ]]> |
| 21 </command> | |
| 22 <inputs> | |
| 23 <param format="bed,vcf,gff,gff3" name="input" type="data" label="BED/VCF/GFF file"/> | |
| 24 <param format="fasta" name="fasta" type="data" label="FASTA file"/> | |
| 25 | |
|
38
3f852f713d24
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0346e504b5f0aa94215279203beb09b767ada32c
iuc
parents:
37
diff
changeset
|
26 <param argument="-s" type="boolean" checked="false" truevalue="-s" falsevalue="" |
|
3f852f713d24
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0346e504b5f0aa94215279203beb09b767ada32c
iuc
parents:
37
diff
changeset
|
27 label="Profile the sequence according to strand" /> |
|
3f852f713d24
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0346e504b5f0aa94215279203beb09b767ada32c
iuc
parents:
37
diff
changeset
|
28 <param argument="-seq" type="boolean" checked="false" truevalue="-seq" falsevalue="" |
|
3f852f713d24
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0346e504b5f0aa94215279203beb09b767ada32c
iuc
parents:
37
diff
changeset
|
29 label="Print the extracted sequence" /> |
|
3f852f713d24
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0346e504b5f0aa94215279203beb09b767ada32c
iuc
parents:
37
diff
changeset
|
30 <param argument="-pattern" type="text" label="Report the number of times a user-defined sequence is observed" help="Case-sensitive by default"> |
|
3f852f713d24
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0346e504b5f0aa94215279203beb09b767ada32c
iuc
parents:
37
diff
changeset
|
31 <validator type="regex" message="Sequence should only contain letters.">^[A-Za-z]*$</validator> |
|
3f852f713d24
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0346e504b5f0aa94215279203beb09b767ada32c
iuc
parents:
37
diff
changeset
|
32 </param> |
|
3f852f713d24
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0346e504b5f0aa94215279203beb09b767ada32c
iuc
parents:
37
diff
changeset
|
33 <param argument="-C" type="boolean" checked="false" truevalue="-C" falsevalue="" |
|
3f852f713d24
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0346e504b5f0aa94215279203beb09b767ada32c
iuc
parents:
37
diff
changeset
|
34 label="Ignore case when matching -pattern"/> |
| 8 | 35 </inputs> |
| 36 <outputs> | |
| 37 <data format="tabular" name="output" /> | |
| 38 </outputs> | |
| 39 <tests> | |
| 40 <test> | |
| 41 <param name="input" value="nucBed1.bed" ftype="bed" /> | |
| 42 <param name="fasta" value="nucBed1.fasta" ftype="fasta" /> | |
| 43 <output name="output" file="nucBed_result1.bed" ftype="tabular" /> | |
| 44 </test> | |
| 45 <test> | |
| 46 <param name="input" value="nucBed1.bed" ftype="bed" /> | |
| 47 <param name="fasta" value="nucBed1.fasta" ftype="fasta" /> | |
| 48 <param name="seq" value="True" /> | |
| 49 <output name="output" file="nucBed_result2.bed" ftype="tabular" /> | |
| 50 </test> | |
|
38
3f852f713d24
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0346e504b5f0aa94215279203beb09b767ada32c
iuc
parents:
37
diff
changeset
|
51 <test> |
|
3f852f713d24
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0346e504b5f0aa94215279203beb09b767ada32c
iuc
parents:
37
diff
changeset
|
52 <param name="input" value="nucBed1.bed" ftype="bed" /> |
|
3f852f713d24
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0346e504b5f0aa94215279203beb09b767ada32c
iuc
parents:
37
diff
changeset
|
53 <param name="fasta" value="nucBed1.fasta" ftype="fasta" /> |
|
3f852f713d24
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0346e504b5f0aa94215279203beb09b767ada32c
iuc
parents:
37
diff
changeset
|
54 <param name="seq" value="True" /> |
|
3f852f713d24
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0346e504b5f0aa94215279203beb09b767ada32c
iuc
parents:
37
diff
changeset
|
55 <param name="pattern" value="TAC" /> |
|
3f852f713d24
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0346e504b5f0aa94215279203beb09b767ada32c
iuc
parents:
37
diff
changeset
|
56 <output name="output" file="nucBed_result3.bed" ftype="tabular" /> |
|
3f852f713d24
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0346e504b5f0aa94215279203beb09b767ada32c
iuc
parents:
37
diff
changeset
|
57 </test> |
| 8 | 58 </tests> |
| 59 <help> | |
| 60 <![CDATA[ | |
| 61 **What it does** | |
| 62 | |
| 63 Profiles the nucleotide content of intervals in a fasta file. | |
| 64 | |
| 65 @REFERENCES@ | |
| 66 ]]> | |
| 67 </help> | |
| 68 <expand macro="citations" /> | |
| 69 </tool> |
