Mercurial > repos > iuc > unicycler
annotate unicycler.xml @ 1:f13d0498a199 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 1f08410ac745c478d6948079f571a5f306d27854
author | iuc |
---|---|
date | Fri, 29 Sep 2017 11:03:48 -0400 |
parents | e9c1cdb9f9dc |
children | e92675014ac9 |
rev | line source |
---|---|
1
f13d0498a199
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 1f08410ac745c478d6948079f571a5f306d27854
iuc
parents:
0
diff
changeset
|
1 <tool id="unicycler" name="Create assemblies with Unicycler" version="0.4.1"> |
0
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
2 <requirements> |
1
f13d0498a199
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 1f08410ac745c478d6948079f571a5f306d27854
iuc
parents:
0
diff
changeset
|
3 <requirement type="package" version="0.4.1">unicycler</requirement> |
0
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
4 </requirements> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
5 <command detect_errors="exit_code"><![CDATA[ |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
6 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
7 ## Preparing files |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
8 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
9 #if str( $paired_unpaired.fastq_input_selector ) == "paired": |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
10 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
11 #if $paired_unpaired.fastq_input1.is_of_type('fastqsanger'): |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
12 ln -s '${paired_unpaired.fastq_input1}' fq1.fastq && |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
13 #elif $paired_unpaired.fastq_input1.is_of_type('fastqsanger.gz'): |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
14 ln -s '${paired_unpaired.fastq_input1}' fq1.fastq.gz && |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
15 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
16 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
17 #if $paired_unpaired.fastq_input2.is_of_type('fastqsanger'): |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
18 ln -s '${paired_unpaired.fastq_input2}' fq2.fastq && |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
19 #elif $paired_unpaired.fastq_input2.is_of_type('fastqsanger.gz'): |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
20 ln -s '${paired_unpaired.fastq_input1}' fq2.fastq.gz && |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
21 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
22 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
23 #elif str( $paired_unpaired.fastq_input_selector ) == "paired_collection": |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
24 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
25 #if $paired_unpaired.fastq_input1.forward.is_of_type('fastqsanger'): |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
26 ln -s '${paired_unpaired.fastq_input1.forward}' fq1.fastq && |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
27 #elif $paired_unpaired.fastq_input1.forward.is_of_type('fastqsanger.gz'): |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
28 ln -s '${paired_unpaired.fastq_input1.forward}' fq1.fastq.gz && |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
29 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
30 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
31 #if $paired_unpaired.fastq_input1.reverse.is_of_type('fastqsanger'): |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
32 ln -s '${paired_unpaired.fastq_input1.reverse}' fq2.fastq && |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
33 #elif $paired_unpaired.fastq_input1.reverse.is_of_type('fastqsanger.gz'): |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
34 ln -s '${paired_unpaired.fastq_input2.reverse}' fq2.fastq.gz && |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
35 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
36 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
37 #elif str( $paired_unpaired.fastq_input_selector ) == "single": |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
38 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
39 #if $paired_unpaired.fastq_input1.is_of_type('fastqsanger'): |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
40 ln -s '${paired_unpaired.fastq_input1}' fq.fastq && |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
41 #elif $paired_unpaired.fastq_input1.is_of_type('fastqsanger.gz'): |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
42 ln -s '${paired_unpaired.fastq_input1}' fq.fastq.gz && |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
43 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
44 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
45 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
46 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
47 ## Get location for pilon installation |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
48 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
49 pilon=`pilon --jar_dir` && |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
50 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
51 #if $long_reads: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
52 #if $long_reads.is_of_type('fastqsanger'): |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
53 #set lr = "lr.fastq" |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
54 ln -s '${long_reads}' lr.fastq && |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
55 #elif $long_reads.is_of_type('fastqsanger.gz'): |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
56 #set lr = "lr.fastq.gz" |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
57 ln -s '${long_reads}' lr.fastq.gz && |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
58 #elif $long_reads.is_of_type('fasta'): |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
59 #set lr = "lr.fasta" |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
60 ln -s '${long_reads}' lr.fasta && |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
61 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
62 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
63 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
64 ## Running Unicycler |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
65 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
66 unicycler -t "\${GALAXY_SLOTS:-4}" |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
67 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
68 -o ./ |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
69 --verbosity 3 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
70 --pilon_path \$pilon |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
71 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
72 #if str( $paired_unpaired.fastq_input_selector ) != "single": |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
73 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
74 #if $paired_unpaired.fastq_input1.is_of_type('fastqsanger'): |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
75 -1 fq1.fastq |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
76 #elif $paired_unpaired.fastq_input1.is_of_type('fastqsanger.gz'): |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
77 -1 fq1.fastq.gz |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
78 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
79 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
80 #if $paired_unpaired.fastq_input2.is_of_type('fastqsanger'): |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
81 -2 fq2.fastq |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
82 #elif $paired_unpaired.fastq_input2.is_of_type('fastqsanger.gz'): |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
83 -2 fq2.fastq.gz |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
84 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
85 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
86 #else: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
87 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
88 #if $paired_unpaired.fastq_input1.is_of_type('fastqsanger'): |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
89 -s fq.fastq |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
90 #elif $paired_unpaired.fastq_input1.is_of_type('fastqsanger.gz'): |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
91 -s fq.fastq.gz |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
92 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
93 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
94 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
95 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
96 #if $long_reads: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
97 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
98 -l $lr |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
99 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
100 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
101 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
102 ## General Unicycler Options section |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
103 ## ---------------------------------------------------------- |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
104 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
105 --mode '${uc_opt.mode}' |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
106 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
107 #if $uc_opt.min_fasta_length: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
108 --min_fasta_length $uc_opt.min_fasta_length |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
109 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
110 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
111 #if $uc_opt.lin_seq: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
112 --expected_linear $uc_opt.lin_seq |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
113 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
114 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
115 $uc_opt.no_correct |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
116 $uc_opt.no_rotate |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
117 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
118 ## Rotation Options section |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
119 ## ---------------------------------------------------------- |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
120 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
121 #if $spades.min_kmer_frac: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
122 --min_kmer_frac $spades.min_kmer_frac |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
123 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
124 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
125 #if $spades.max_kmer_frac: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
126 --max_kmer_frac $spades.max_kmer_frac |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
127 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
128 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
129 #if $spades.kmer_count: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
130 --kmer_count $spades.kmer_count |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
131 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
132 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
133 ## Rotation Options section |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
134 ## ---------------------------------------------------------- |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
135 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
136 #if $rotation.start_genes: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
137 --start_genes '${rotation.rotation_fasta.start_genes}' |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
138 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
139 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
140 #if $rotation.start_gene_id: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
141 --start_gene_id $rotation.start_gene_id |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
142 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
143 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
144 #if $rotation.start_gene_cov: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
145 --start_gene_cov $rotation.start_gene_cov |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
146 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
147 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
148 ## Pilon Options section |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
149 ## ---------------------------------------------------------- |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
150 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
151 #if $pilon.min_polish_size: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
152 --min_polish_size $pilon.min_polish_size |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
153 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
154 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
155 ## Graph Cleaning Options sdection |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
156 ## ---------------------------------------------------------- |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
157 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
158 #if $graph_clean.min_component_size: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
159 --min_component_size $graph_clean.min_component_size |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
160 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
161 #if $graph_clean.min_dead_end_size: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
162 --min_dead_end_size $graph_clean.min_dead_end_size |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
163 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
164 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
165 ## Long Read Alignment Options |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
166 ## ---------------------------------------------------------- |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
167 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
168 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
169 #if $lr_align.contamination_fasta: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
170 --contamination '${lr_align.contamination_fasta}' |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
171 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
172 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
173 #if $lr_align.scores: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
174 --scores '${lr_align.scores}' |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
175 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
176 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
177 #if $lr_align.low_score: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
178 --low_score $lr_align.low_score |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
179 #end if |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
180 |
1
f13d0498a199
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 1f08410ac745c478d6948079f571a5f306d27854
iuc
parents:
0
diff
changeset
|
181 ## Miniasm requires racon, which is not available for python 3.x |
f13d0498a199
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 1f08410ac745c478d6948079f571a5f306d27854
iuc
parents:
0
diff
changeset
|
182 --no_miniasm |
0
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
183 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
184 ]]></command> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
185 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
186 <inputs> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
187 <conditional name="paired_unpaired"> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
188 <param name="fastq_input_selector" type="select" label="Paired or Single end data?" help="Select between paired and single end data"> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
189 <option selected="True" value="paired">Paired</option> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
190 <option value="paired_collection">Paired Collection</option> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
191 <option value="single">Single</option> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
192 </param> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
193 <when value="paired"> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
194 <param name="fastq_input1" argument="-1" type="data" format="fastqsanger,fastqsanger.gz" label="Select first set of reads" help="Specify dataset with forward reads"/> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
195 <param name="fastq_input2" argument="-2" type="data" format="fastqsanger,fastqsanger.gz" label="Select second set of reads" help="Specify dataset with reverse reads"/> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
196 </when> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
197 <when value="paired_collection"> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
198 <param name="fastq_input1" format="fastqsanger,fastqsanger.gz" type="data_collection" collection_type="paired" label="Select a paired collection" /> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
199 </when> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
200 <when value="single"> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
201 <param name="fastq_input1" argument="-s" type="data" format="fastqsanger,fastqsanger.gz" label="Select unpaired reads" help="Specify dataset with unpaired reads"/> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
202 </when> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
203 </conditional> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
204 <param name="long_reads" argument="--long" optional="True" type="data" format="fastqsanger,fastqsanger.gz,fasta" label="Select long reads. If there are no long reads, leave this empty"/> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
205 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
206 <section name="uc_opt" expanded="True" title="Unicycler options"> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
207 <param argument="--mode" type="select" label="Select Bridging mode"> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
208 <option value="conservative">Conservative (smaller contigs, lower misassembly)</option> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
209 <option value="normal" selected="True">Normal (moderate contig size and misassembly rate)</option> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
210 <option value="bold">Bold (longest contigs, higher misassembly rate)</option> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
211 </param> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
212 <param argument="--min_fasta_length" optional="True" type="integer" value="" label="Exclude contigs from the FASTA file which are shorter than this length (bp)" help="default = 1"/> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
213 <param argument="--no_correct" optional="True" type="boolean" checked="False" truevalue="--no_correct" falsevalue="" label="Skip SPAdes error correction step" help="This option turns off SPAdes error correction. Generally it is highly recommended to use correction."/> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
214 <param argument="--no_rotate" optional="True" type="boolean" checked="False" truevalue="--no_rotate" falsevalue="" label="Do not rotate completed replicons to start at a standard gene." help="Unicycler uses TBLASTN to search for dnaA or repA alleles in each completed replicon. If one is found, the sequence is rotated and/or flipped so that it begins with that gene encoded on the forward strand. This provides consistently oriented assemblies and reduces the risk that a gene will be split across the start and end of the sequence."/> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
215 <param argument="--no_pilon" optional="True" type="boolean" checked="False" truevalue="--no_pilon" falsevalue="" label="Do not use Pilon to polish the final assembly." help="Unicycler uses Pilon tool for polishing final assembly."/> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
216 <param name="lin_seq" argument="--expected_linear_seqs" optional="True" type="integer" value="" label="The expected number of linear (i.e. non-circular) sequences in the assembly" help="default = 0"/> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
217 </section> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
218 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
219 <section name="spades" expanded="False" title="SPAdes options" help="Unicycler uses SPAdes to construct assembly graphs. You can modify some of the SPAdes settings here. Use this ONLY if you know what you are doing!"> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
220 <param argument="--min_kmer_frac" optional="True" type="float" min="0" max="1" value="" label="Lowest k-mer size for SPAdes assembly, expressed as a fraction of the read length" help="default = 0.2"/> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
221 <param argument="--max_kmer_frac" optional="True" type="float" min="0" max="1" value="" label="Highest k-mer size for SPAdes assembly, expressed as a fraction of the read length" help="default = 0.95"/> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
222 <param argument="--kmer_count" optional="True" type="integer" value="" label="Number of k-mer steps to use in SPAdes assembly" help="default = 10"/> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
223 </section> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
224 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
225 <section name="rotation" expanded="False" title="Rotation options" help="These options control the rotation of completed circular sequence near the end of the Unicycler pipeline. Use this ONLY if you know what you are doing!"> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
226 <param argument="--start_genes" optional="True" type="data" format="fasta" label="FASTA file of genes for start point of rotated replicons" /> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
227 <param argument="--start_gene_id" optional="True" type="integer" min="0" max="100" value="" label="The minimum required BLAST percent identity for a start gene search" help="default = 90"/> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
228 <param argument="--start_gene_cov" optional="True" type="integer" min="0" max="100" value="" label="The minimum required BLAST percent coverage for a start gene search" help="default = 95"/> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
229 </section> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
230 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
231 <section name="pilon" title="Pilon options" expanded="False"> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
232 <param argument="--min_polish_size" optional="True" type="integer" min="0" label="Contigs shorter than this value (bp) will not be polished using Pilon" help="default = 1000"/> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
233 </section> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
234 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
235 <section name="graph_clean" expanded="False" title="Graph cleaning options" help="These options control the removal of small leftover sequences after bridging is complete."> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
236 <param argument="--min_component_size" optional="True" type="integer" value="" label="Unbridged graph components smaller than this size will be removed from the final graph" help="default = 1000"/> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
237 <param argument="--min_dead_end_size" optional="True" type="integer" value="" label="Graph dead ends smaller than this size will be removed from the final graph" help="default = 1000"/> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
238 </section> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
239 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
240 <section name="lr_align" expanded="False" title="Long read alignment parameters" help="These options control the alignment of long reads to the assembly graph."> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
241 <param name="contamination_fasta" argument="--contamination" optional="True" type="data" format="fasta" label="FASTA file of known contamination in long reads, e.g. lambda, phiXm or puc18 spike-ins." /> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
242 <param argument="--scores" optional="True" type="text" value="" label="Comma-delimited string of alignment scores: match, mismatch, gap open, gap extend" help="default = 3,-6,-5,-2"/> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
243 <param argument="--low_score" optional="True" type="integer" value="" label="Score threshold - alignments below this are considered poor" help="default = set automatically"/> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
244 </section> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
245 </inputs> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
246 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
247 <outputs> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
248 <data format="txt" name="assembly_grapth" from_work_dir="assembly.gfa" label="${tool.name} on ${on_string}: Final Assembly Graph" /> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
249 <data format="fasta" name="assembly" from_work_dir="assembly.fasta" label="${tool.name} on ${on_string}: Final Assembly"/> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
250 </outputs> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
251 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
252 <tests> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
253 <test> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
254 <param name="fastq_input_selector" value="paired" /> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
255 <param name="fastq_input1" value="phix_f.fq.gz" ftype="fastqsanger" /> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
256 <param name="fastq_input2" value="phix_r.fq.gz" ftype="fastqsanger" /> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
257 <param name="mode" value="normal" /> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
258 <param name="no_correct" value="true" /> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
259 <param name="no_rotate" value="false" /> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
260 <param name="no_pilon" value="false" /> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
261 <output ftype="fasta" name="assembly"> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
262 <assert_contents> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
263 <has_text text="length=5386" /> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
264 </assert_contents> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
265 </output> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
266 </test> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
267 <!-- |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
268 Following test corresponds to the command: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
269 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
270 unicycler -t "${GALAXY_SLOTS:-8}" -o ./ - -verbose 3 - -pilon_path `pilon - -jar_dir` \ |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
271 -1 test-data/phix_f.fq.gz -2 test-data/phix_r.fq.gz -l test-data/onp.fa \ |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
272 - -mode 'normal' - -no_correct |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
273 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
274 This command causes a segfault with the current version of unicycler on bioconda for Linux |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
275 during the minimap step (which seems to be compiled C code). A gist of the log can be found |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
276 at: https://gist.github.com/jmchilton/b411b695170c1daea6589f5d76e326cb. |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
277 --> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
278 <test> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
279 <param name="fastq_input_selector" value="paired" /> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
280 <param name="fastq_input1" value="phix_f.fq.gz" ftype="fastqsanger" /> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
281 <param name="fastq_input2" value="phix_r.fq.gz" ftype="fastqsanger" /> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
282 <param name="long_reads" value="onp.fa" ftype="fasta" /> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
283 <param name="mode" value="normal" /> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
284 <param name="no_correct" value="true" /> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
285 <param name="no_rotate" value="false" /> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
286 <param name="no_pilon" value="false" /> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
287 <output ftype="fasta" name="assembly"> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
288 <assert_contents> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
289 <has_text text="length=5386" /> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
290 </assert_contents> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
291 </output> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
292 </test> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
293 </tests> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
294 <help><![CDATA[ |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
295 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
296 **Unicycler** |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
297 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
298 Unicycler is a hybrid assembly pipeline for bacterial genomes. It uses both Illumina reads and long reads (PacBio or Nanopore) to produce complete and accurate assemblies. It is written by `Ryan Wick`_ at the University of Melbourne's Centre for Systems Genomics. Much of the description below is lifted from Unicycler's `github page`_. |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
299 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
300 .. _`Ryan Wick`: https://github.com/rrwick |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
301 .. _`github page`: https://github.com/rrwick/Unicycler |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
302 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
303 ----- |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
304 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
305 **Input data** |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
306 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
307 Unicycler accepts inputs short (Illumina) reads in FASTQ format. Galaxy places additional requirement of having these in FASTQ format with `Sanger encoding`_ of quality scores. Long reads (from Oxford Nanopore or PacBio) can be either in FASTQ of FASTA form. |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
308 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
309 .. _`Sanger encoding`: https://en.wikipedia.org/wiki/FASTQ_format#Quality |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
310 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
311 The input options are:: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
312 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
313 -1 SHORT1, --short1 SHORT1 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
314 FASTQ file of short reads (first reads in each pair) |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
315 -2 SHORT2, --short2 SHORT2 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
316 FASTQ file of short reads (second reads in each pair) |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
317 -s SHORT_UNPAIRED, --short_unpaired SHORT_UNPAIRED |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
318 FASTQ file of unpaired short reads |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
319 -l LONG, --long LONG |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
320 FASTQ or FASTA file of long reads, if all reads are available at start. |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
321 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
322 ----- |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
323 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
324 **Bridging mode** |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
325 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
326 Unicycler can be run in three modes: conservative, normal (the default) and bold, set with the --mode option. Conservative mode is least likely to produce a complete assembly but has a very low risk of misassembly. Bold mode is most likely to produce a complete assembly but carries greater risk of misassembly. Normal mode is intermediate regarding both completeness and misassembly risk. See `description of modes`_ for more information. |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
327 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
328 .. _`description of modes`: https://github.com/rrwick/Unicycler#conservative-normal-and-bold |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
329 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
330 The available modes are:: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
331 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
332 --mode {conservative,normal,bold} |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
333 Bridging mode (default: normal) |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
334 conservative = smaller contigs, lowest misassembly rate |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
335 normal = moderate contig size and misassembly rate |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
336 bold = longest contigs, higher misassembly rate |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
337 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
338 ---- |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
339 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
340 **Skip SPAdes error correction step** |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
341 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
342 Sequencing data contains a substantial number of sequencing errors that manifest themselves as deviations (bulges and non-connected components) within the assembly graph. One of the ways to improve the graph even constructing it is to minimize the amount sequencing errors by performing error correction. SPAdes, which is used by Unicycler for error correction and assembly, uses `BayesHammer`_ to correct the reads. Here is a brief summary of what it does: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
343 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
344 1. SPAdes (or rather BayesHammer) counts *k*-mers in reads and computed *k*-mer statistics that takes into account base quality values. |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
345 2. `Hamming graph`_ is constructed for *k*-mers is which *k*-mers are nodes. In this graph edges connect nodes (*k*-mers) is they differ from each other by a number of nucleotides up to a certain threshold (the `Hamming distance`_). The graph is central to the error correction algorithm. |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
346 3. At this step Bayesian subclustering of the graph produced in the previous step. For each *k*-mer we now know the center of its subcluster. |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
347 4. Solid *k*-mers are derived from cluster centers and are assumed to be *error free*. |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
348 5. Solid *k*-mers are mapped back to the reads and used to correct them. |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
349 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
350 This step takes considerable time, so if one need to quickly evaluate assemblies this step can be skipped. However, this is not recommended if one if trying to produce a final high quality assembly. |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
351 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
352 .. _`BayesHammer`: https://goo.gl/1iGkMe |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
353 .. _`Hamming graph`: https://en.wikipedia.org/wiki/Hamming_graph |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
354 .. _`Hamming distance`: https://en.wikipedia.org/wiki/Hamming_distance |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
355 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
356 This following option turns error correction on and off:: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
357 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
358 --no_correct |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
359 Skip SPAdes error correction step |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
360 (default: conduct SPAdes error correction) |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
361 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
362 ----- |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
363 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
364 **Do not rotate completed replicons to start at a standard gene** |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
365 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
366 Unicycler uses TBLASTN to search for dnaA or repA alleles in each completed replicon. If one is found, the sequence is rotated and/or flipped so that it begins with that gene encoded on the forward strand. This provides consistently oriented assemblies and reduces the risk that a gene will be split across the start and end of the sequence. |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
367 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
368 The following option turns rotation on and off:: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
369 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
370 --no_rotate |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
371 Do not rotate completed replicons |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
372 to start at a standard gene |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
373 (default: completed replicons are rotated) |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
374 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
375 **Do not use Pilon to polish the final assembly** |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
376 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
377 `Pilon`_ is a tool for improving overall quality of draft assemblies and finding variation among strains. Unicycler uses it for assembly *polishing*. |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
378 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
379 The following option turns pilon part of Unicycler pipeline on and off:: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
380 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
381 --no_pilon |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
382 Do not use Pilon to polish the |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
383 final assembly (default: Pilon is used) |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
384 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
385 .. _`Pilon`: https://github.com/broadinstitute/pilon/wiki |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
386 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
387 ------ |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
388 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
389 **Expected number of linear sequences** |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
390 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
391 If you expect your sample to contain linear (non circular) sequences, set this option:: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
392 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
393 --expected_linear_seqs EXPECTED_LINEAR_SEQS |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
394 The expected number of linear (i.e. non-circular) |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
395 sequences in the underlying sequence |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
396 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
397 ---- |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
398 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
399 **SPAdes options** |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
400 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
401 This section provides control of SPAdes options:: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
402 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
403 --min_kmer_frac MIN_KMER_FRAC |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
404 Lowest k-mer size for SPAdes assembly, |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
405 expressed as a fraction of the read length |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
406 (default: 0.2) |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
407 --max_kmer_frac MAX_KMER_FRAC |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
408 Highest k-mer size for SPAdes assembly, |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
409 expressed as a fraction of the read length |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
410 (default: 0.95) |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
411 --kmer_count KMER_COUNT |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
412 Number of k-mer steps to use in |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
413 SPAdes assembly (default: 10) |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
414 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
415 ---- |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
416 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
417 **Rotation options** |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
418 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
419 Unicycler attempts to rotate circular assemblies to make sure that they begin at a consistent starting gene. The following parameters control assembly rotation:: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
420 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
421 --start_genes START_GENES |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
422 FASTA file of genes for start point |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
423 of rotated replicons |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
424 (default: start_genes.fasta) |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
425 --start_gene_id START_GENE_ID |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
426 The minimum required BLAST percent identity |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
427 for a start gene search |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
428 (default: 90.0) |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
429 --start_gene_cov START_GENE_COV |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
430 The minimum required BLAST percent coverage |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
431 for a start gene search |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
432 (default: 95.0) |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
433 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
434 ----- |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
435 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
436 **Graph cleaning options** |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
437 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
438 These options control the removal of small leftover sequences after bridging is complete:: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
439 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
440 --min_component_size MIN_COMPONENT_SIZE |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
441 Unbridged graph components smaller |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
442 than this size (bp) will be removed |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
443 from the final graph (default: 1000) |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
444 --min_dead_end_size MIN_DEAD_END_SIZE |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
445 Graph dead ends smaller than this size (bp) |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
446 will be removed from the final graph |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
447 (default: 1000) |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
448 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
449 ----- |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
450 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
451 **Long read alignment options** |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
452 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
453 These options control the alignment of long reads to the assembly graph:: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
454 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
455 --contamination CONTAMINATION |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
456 FASTA file of known contamination in long reads |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
457 --scores SCORES |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
458 Comma-delimited string of alignment scores: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
459 match, mismatch, gap open, gap extend |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
460 (default: 3,-6,-5,-2) |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
461 --low_score LOW_SCORE |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
462 Score threshold - alignments below this |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
463 are considered poor |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
464 (default: set threshold automatically) |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
465 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
466 ----- |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
467 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
468 **Outputs** |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
469 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
470 Galaxy's wrapped for Unicycler produces two outputs: |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
471 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
472 * final assembly in FASTA format |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
473 * final assembly grapth in graph format |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
474 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
475 While most will likely be interested in the FASTA dataset, the graph dataset is also quite useful and can be visualized using tools such as `Bandage`_. |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
476 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
477 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
478 .. _`Bandage`: https://github.com/rrwick/Bandage |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
479 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
480 |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
481 ]]></help> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
482 <citations> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
483 <citation type="doi">10.1101/096412</citation> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
484 </citations> |
e9c1cdb9f9dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
485 </tool> |