Mercurial > repos > nml > pseudogenome
annotate pseudogenome.xml @ 0:47b586ab4729 draft default tip
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
author | nml |
---|---|
date | Fri, 06 Apr 2018 14:29:17 -0400 |
parents | |
children |
rev | line source |
---|---|
0
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
1 <tool id="pseudogenome" name="Create pseudo genome" version="1.0.0"> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
2 <description>from a fasta file in order of appearance</description> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
3 <requirements> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
4 <requirement type="package" version="1.6.924">perl-bioperl</requirement> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
5 <requirement type="package" version="1.04">perl-readonly</requirement> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
6 <requirement type="package" version="2.49">perl-getopt-long</requirement> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
7 <requirement type="package" version="1.25">perl-ipc-system-simple</requirement> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
8 </requirements> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
9 <command detect_errors="exit_code"><![CDATA[ |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
10 perl '$__tool_directory__/pseudogenome.pl' -i '$input' |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
11 |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
12 #if $stitch.howto == "jcvi": |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
13 -s |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
14 #else |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
15 -n '$stitch.number' -c '$stitch.glue' |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
16 #end if |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
17 |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
18 -o '$output' |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
19 ]]></command> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
20 <inputs> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
21 <param name="input" type="data" format="fasta" label="Multi contig fasta file" optional="false"/> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
22 |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
23 <conditional name="stitch"> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
24 <param name="howto" type="select" label="How do you want to merge contigs?"> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
25 <option selected="true" value="jcvi">JCVI Linker</option> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
26 <option value="custom">Custom options</option> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
27 </param> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
28 <when value="jcvi"> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
29 </when> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
30 <when value="custom"> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
31 <param name="number" type="integer" value="10" label="Number of filler base pairs" optional="false"/> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
32 <param name="glue" type="text" value="N" label="Character inserted between contigs" optional="false"/> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
33 </when> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
34 </conditional> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
35 </inputs> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
36 <outputs> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
37 <data format="fasta" name="output"/> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
38 </outputs> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
39 <tests> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
40 <test> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
41 <param name="input" value="input.fasta"/> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
42 <output name="output" value="output.fasta"/> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
43 </test> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
44 <test> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
45 <param name="input" value="input.fasta"/> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
46 <param name="howto" value="custom"/> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
47 <param name="number" value="50"/> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
48 <param name="glue" value="X"/> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
49 <output name="output" value="custom.fasta"/> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
50 </test> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
51 </tests> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
52 <help> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
53 |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
54 What it does |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
55 ============ |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
56 This tool takes in a mult-contig fasta file and converts it into a pseudo genome. |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
57 |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
58 |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
59 |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
60 JCVI Linker |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
61 ============ |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
62 |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
63 Linker is a 36 base pair sequence which places start and |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
64 stop codons in all 6 reading frames to prevent gene for being predicted across contigs. |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
65 |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
66 Sequence below: |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
67 |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
68 "NNNNNCACACACTTAATTAATTAAGTGTGTGNNNNN" |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
69 |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
70 </help> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
71 <citations> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
72 </citations> |
47b586ab4729
planemo upload commit 4fee4519135f7677cf50f721cf1ad7a7335ad66d-dirty
nml
parents:
diff
changeset
|
73 </tool> |