Mercurial > repos > bgruening > crispr_recognition_tool
annotate crt.xml @ 2:13999e95b2d3 draft default tip
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/crt commit 4241c1d4b05a177bd2c74f5a139f51d4f65e0b55
| author | bgruening |
|---|---|
| date | Tue, 13 Jun 2017 10:42:52 -0400 |
| parents | 222b7f7b8432 |
| children |
| rev | line source |
|---|---|
| 0 | 1 <tool id="crispr_recognition_tool" name="CRISPR Recognition Tool" version="1.2.0"> |
| 2 <description>(CRT)</description> | |
|
1
222b7f7b8432
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/crt commit 4241c1d4b05a177bd2c74f5a139f51d4f65e0b55
bgruening
parents:
0
diff
changeset
|
3 <!-- split_size needs to be 1, because CRT does not support multi fasta file --> |
| 0 | 4 <parallelism method="multi" split_inputs="input" split_mode="to_size" split_size="1" merge_outputs="output,output_region" /> |
| 5 <requirements> | |
| 6 <requirement type="package" version="1.2">crisper_recognition_tool</requirement> | |
| 7 </requirements> | |
| 8 <stdio> | |
| 9 <exit_code range=":-1" level="fatal" /> | |
| 10 <exit_code range="1:" level="fatal" /> | |
| 11 </stdio> | |
| 12 <command> | |
|
1
222b7f7b8432
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/crt commit 4241c1d4b05a177bd2c74f5a139f51d4f65e0b55
bgruening
parents:
0
diff
changeset
|
13 <![CDATA[ |
| 0 | 14 temp_output=\$(mktemp); |
|
1
222b7f7b8432
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/crt commit 4241c1d4b05a177bd2c74f5a139f51d4f65e0b55
bgruening
parents:
0
diff
changeset
|
15 crt crt |
| 0 | 16 -minNR $minNR |
| 17 -minRL $minRL | |
| 18 -maxRL $maxRL | |
| 19 -minSL $minSL | |
| 20 -maxSL $maxSL | |
| 21 #if str($searchWL) != 'none': | |
| 22 -searchWL $searchWL | |
| 23 #end if | |
| 24 $input | |
| 25 \$temp_output | |
| 26 ; | |
| 27 | |
|
1
222b7f7b8432
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/crt commit 4241c1d4b05a177bd2c74f5a139f51d4f65e0b55
bgruening
parents:
0
diff
changeset
|
28 python $__tool_directory__/reformat.py \$temp_output $output_region $output |
|
222b7f7b8432
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/crt commit 4241c1d4b05a177bd2c74f5a139f51d4f65e0b55
bgruening
parents:
0
diff
changeset
|
29 ]]> |
| 0 | 30 </command> |
| 31 <inputs> | |
| 32 <param format="fasta" name="input" type="data" label="Input sequence as FASTA"/> | |
| 33 | |
|
1
222b7f7b8432
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/crt commit 4241c1d4b05a177bd2c74f5a139f51d4f65e0b55
bgruening
parents:
0
diff
changeset
|
34 <param name="minNR" type="integer" value="3" label="Minimum number of repeats a CRISPER must have" help="-minNR, default 3"/> |
|
222b7f7b8432
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/crt commit 4241c1d4b05a177bd2c74f5a139f51d4f65e0b55
bgruening
parents:
0
diff
changeset
|
35 <param name="minRL" type="integer" value="19" label="Minimum length of a CRISPER repeated region" help="-minRL, default 19"/> |
|
222b7f7b8432
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/crt commit 4241c1d4b05a177bd2c74f5a139f51d4f65e0b55
bgruening
parents:
0
diff
changeset
|
36 <param name="maxRL" type="integer" value="38" label="Maximum length of a CRISPER repeated region" help="-maxRL, default 38"/> |
|
222b7f7b8432
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/crt commit 4241c1d4b05a177bd2c74f5a139f51d4f65e0b55
bgruening
parents:
0
diff
changeset
|
37 <param name="minSL" type="integer" value="19" label="Minimum length of CRISPER non repeated region" help="or spacer region, -minSL, default 19"/> |
|
222b7f7b8432
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/crt commit 4241c1d4b05a177bd2c74f5a139f51d4f65e0b55
bgruening
parents:
0
diff
changeset
|
38 <param name="maxSL" type="integer" value="48" label="Maximum length of CRISPER non repeated region" help="or spacer region, -maxSL, default 48"/> |
|
222b7f7b8432
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/crt commit 4241c1d4b05a177bd2c74f5a139f51d4f65e0b55
bgruening
parents:
0
diff
changeset
|
39 <param name="searchWL" type="select" label="Length of search window to used to discover CRISPERs" help="-searchWL"> |
| 0 | 40 <option value="none" selected="true">default</option> |
| 41 <option value="6">6</option> | |
| 42 <option value="7">7</option> | |
| 43 <option value="8">8</option> | |
| 44 <option value="9">9</option> | |
| 45 </param> | |
| 46 </inputs> | |
| 47 <outputs> | |
| 48 <data format="tabular" name="output" label="${tool.name} on ${on_string}" /> | |
| 49 <data format="bed" name="output_region" label="${tool.name} on ${on_string} - BED file" /> | |
| 50 </outputs> | |
| 51 <tests> | |
| 52 <test> | |
| 53 <param name="input" value="sequence.fasta" ftype="fasta" /> | |
| 54 <param name="minNR" value="3" /> | |
| 55 <param name="minRL" value="29" /> | |
| 56 <param name="maxRL" value="38" /> | |
| 57 <param name="minSL" value="19" /> | |
| 58 <param name="maxSL" value="48" /> | |
| 59 <param name="searchWL" value="none" /> | |
| 60 <output name="output" file="crt.tabular" ftype="tabular" /> | |
| 61 <output name="output_region" file="crt.bed" ftype="bed" /> | |
| 62 </test> | |
| 63 </tests> | |
| 64 <help> | |
|
1
222b7f7b8432
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/crt commit 4241c1d4b05a177bd2c74f5a139f51d4f65e0b55
bgruening
parents:
0
diff
changeset
|
65 <![CDATA[ |
|
222b7f7b8432
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/crt commit 4241c1d4b05a177bd2c74f5a139f51d4f65e0b55
bgruening
parents:
0
diff
changeset
|
66 |
|
222b7f7b8432
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/crt commit 4241c1d4b05a177bd2c74f5a139f51d4f65e0b55
bgruening
parents:
0
diff
changeset
|
67 **What it does** |
| 0 | 68 |
|
1
222b7f7b8432
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/crt commit 4241c1d4b05a177bd2c74f5a139f51d4f65e0b55
bgruening
parents:
0
diff
changeset
|
69 `CRISPR Recognition Tool <http://www.room220.com/crt/>`_ is a tool for automatic detection of clustered regularly interspaced palindromic repeats (CRISPR). It rapidly and accurately identifies CRISPRs in large DNA strings, such as genomes and metagenomes. |
|
222b7f7b8432
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/crt commit 4241c1d4b05a177bd2c74f5a139f51d4f65e0b55
bgruening
parents:
0
diff
changeset
|
70 |
|
222b7f7b8432
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/crt commit 4241c1d4b05a177bd2c74f5a139f51d4f65e0b55
bgruening
parents:
0
diff
changeset
|
71 **Input** |
| 0 | 72 |
|
1
222b7f7b8432
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/crt commit 4241c1d4b05a177bd2c74f5a139f51d4f65e0b55
bgruening
parents:
0
diff
changeset
|
73 DNA sequence in FASTA format |
| 0 | 74 |
|
1
222b7f7b8432
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/crt commit 4241c1d4b05a177bd2c74f5a139f51d4f65e0b55
bgruening
parents:
0
diff
changeset
|
75 ]]> |
| 0 | 76 </help> |
|
1
222b7f7b8432
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/crt commit 4241c1d4b05a177bd2c74f5a139f51d4f65e0b55
bgruening
parents:
0
diff
changeset
|
77 <citations> |
|
222b7f7b8432
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/crt commit 4241c1d4b05a177bd2c74f5a139f51d4f65e0b55
bgruening
parents:
0
diff
changeset
|
78 <citation type="doi">10.1186/1471-2105-8-209</citation> |
|
222b7f7b8432
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/crt commit 4241c1d4b05a177bd2c74f5a139f51d4f65e0b55
bgruening
parents:
0
diff
changeset
|
79 </citations> |
| 0 | 80 </tool> |
| 81 |
