Mercurial > repos > iuc > unicycler
annotate unicycler.xml @ 0:15a21071f0a2 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
author | iuc |
---|---|
date | Thu, 06 Jul 2017 17:07:27 -0400 |
parents | |
children | 3c7b8504e32a |
rev | line source |
---|---|
0
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
1 <tool id="unicycler" name="Create assemblies with Unicycler" version="0.2.0"> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
2 <requirements> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
3 <requirement type="package" version="0.3.0b">unicycler</requirement> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
4 </requirements> |
15a21071f0a2
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[ |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
6 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
7 ## Preparing files |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
8 |
15a21071f0a2
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": |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
10 |
15a21071f0a2
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'): |
15a21071f0a2
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 && |
15a21071f0a2
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'): |
15a21071f0a2
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 && |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
15 #end if |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
16 |
15a21071f0a2
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'): |
15a21071f0a2
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 && |
15a21071f0a2
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'): |
15a21071f0a2
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 && |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
21 #end if |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
22 |
15a21071f0a2
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": |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
24 |
15a21071f0a2
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'): |
15a21071f0a2
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 && |
15a21071f0a2
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'): |
15a21071f0a2
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 && |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
29 #end if |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
30 |
15a21071f0a2
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'): |
15a21071f0a2
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 && |
15a21071f0a2
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'): |
15a21071f0a2
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 && |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
35 #end if |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
36 |
15a21071f0a2
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": |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
38 |
15a21071f0a2
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'): |
15a21071f0a2
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 && |
15a21071f0a2
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'): |
15a21071f0a2
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 && |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
43 #end if |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
44 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
45 #end if |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
46 |
15a21071f0a2
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 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
48 |
15a21071f0a2
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` && |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
50 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
51 #if $long_reads: |
15a21071f0a2
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'): |
15a21071f0a2
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" |
15a21071f0a2
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 && |
15a21071f0a2
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'): |
15a21071f0a2
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" |
15a21071f0a2
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 && |
15a21071f0a2
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'): |
15a21071f0a2
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" |
15a21071f0a2
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 && |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
61 #end if |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
62 #end if |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
63 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
64 ## Running Unicycler |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
65 |
15a21071f0a2
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}" |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
67 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
68 -o ./ |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
69 --verbosity 3 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
70 --pilon_path \$pilon |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
71 |
15a21071f0a2
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": |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
73 |
15a21071f0a2
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'): |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
75 -1 fq1.fastq |
15a21071f0a2
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'): |
15a21071f0a2
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 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
78 #end if |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
79 |
15a21071f0a2
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'): |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
81 -2 fq2.fastq |
15a21071f0a2
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'): |
15a21071f0a2
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 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
84 #end if |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
85 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
86 #else: |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
87 |
15a21071f0a2
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'): |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
89 -s fq.fastq |
15a21071f0a2
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'): |
15a21071f0a2
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 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
92 #end if |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
93 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
94 #end if |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
95 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
96 #if $long_reads: |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
97 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
98 -l $lr |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
99 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
100 #end if |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
101 |
15a21071f0a2
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 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
103 ## ---------------------------------------------------------- |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
104 |
15a21071f0a2
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}' |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
106 |
15a21071f0a2
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: |
15a21071f0a2
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 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
109 #end if |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
110 |
15a21071f0a2
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: |
15a21071f0a2
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 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
113 #end if |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
114 |
15a21071f0a2
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 |
15a21071f0a2
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 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
117 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
118 ## Rotation Options section |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
119 ## ---------------------------------------------------------- |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
120 |
15a21071f0a2
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: |
15a21071f0a2
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 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
123 #end if |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
124 |
15a21071f0a2
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: |
15a21071f0a2
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 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
127 #end if |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
128 |
15a21071f0a2
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: |
15a21071f0a2
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 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
131 #end if |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
132 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
133 ## Rotation Options section |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
134 ## ---------------------------------------------------------- |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
135 |
15a21071f0a2
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: |
15a21071f0a2
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}' |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
138 #end if |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
139 |
15a21071f0a2
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: |
15a21071f0a2
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 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
142 #end if |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
143 |
15a21071f0a2
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: |
15a21071f0a2
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 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
146 #end if |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
147 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
148 ## Pilon Options section |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
149 ## ---------------------------------------------------------- |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
150 |
15a21071f0a2
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: |
15a21071f0a2
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 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
153 #end if |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
154 |
15a21071f0a2
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 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
156 ## ---------------------------------------------------------- |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
157 |
15a21071f0a2
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: |
15a21071f0a2
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 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
160 #end if |
15a21071f0a2
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: |
15a21071f0a2
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 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
163 #end if |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
164 |
15a21071f0a2
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 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
166 ## ---------------------------------------------------------- |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
167 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
168 |
15a21071f0a2
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: |
15a21071f0a2
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}' |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
171 #end if |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
172 |
15a21071f0a2
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: |
15a21071f0a2
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}' |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
175 #end if |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
176 |
15a21071f0a2
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: |
15a21071f0a2
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 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
179 #end if |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
180 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
181 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
182 ]]></command> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
183 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
184 <inputs> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
185 <conditional name="paired_unpaired"> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
186 <param name="fastq_input_selector" type="select" label="Paired or Single end data?" help="Select between paired and single end data"> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
187 <option selected="True" value="paired">Paired</option> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
188 <option value="paired_collection">Paired Collection</option> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
189 <option value="single">Single</option> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
190 </param> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
191 <when value="paired"> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
192 <param name="fastq_input1" argument="-1" type="data" format="fastqsanger,fastqsanger.gz" label="Select first set of reads" help="Specify dataset with forward reads"/> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
193 <param name="fastq_input2" argument="-2" type="data" format="fastqsanger,fastqsanger.gz" label="Select second set of reads" help="Specify dataset with reverse reads"/> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
194 </when> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
195 <when value="paired_collection"> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
196 <param name="fastq_input1" format="fastqsanger,fastqsanger.gz" type="data_collection" collection_type="paired" label="Select a paired collection" /> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
197 </when> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
198 <when value="single"> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
199 <param name="fastq_input1" argument="-s" type="data" format="fastqsanger,fastqsanger.gz" label="Select unpaired reads" help="Specify dataset with unpaired reads"/> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
200 </when> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
201 </conditional> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
202 <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"/> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
203 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
204 <section name="uc_opt" expanded="True" title="Unicycler options"> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
205 <param argument="--mode" type="select" label="Select Bridging mode"> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
206 <option value="conservative">Conservative (smaller contigs, lower misassembly)</option> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
207 <option value="normal" selected="True">Normal (moderate contig size and misassembly rate)</option> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
208 <option value="bold">Bold (longest contigs, higher misassembly rate)</option> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
209 </param> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
210 <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"/> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
211 <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."/> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
212 <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."/> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
213 <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."/> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
214 <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"/> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
215 </section> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
216 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
217 <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!"> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
218 <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"/> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
219 <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"/> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
220 <param argument="--kmer_count" optional="True" type="integer" value="" label="Number of k-mer steps to use in SPAdes assembly" help="default = 10"/> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
221 </section> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
222 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
223 <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!"> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
224 <param argument="--start_genes" optional="True" type="data" format="fasta" label="FASTA file of genes for start point of rotated replicons" /> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
225 <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"/> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
226 <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"/> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
227 </section> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
228 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
229 <section name="pilon" title="Pilon options" expanded="False"> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
230 <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"/> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
231 </section> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
232 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
233 <section name="graph_clean" expanded="False" title="Graph cleaning options" help="These options control the removal of small leftover sequences after bridging is complete."> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
234 <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"/> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
235 <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"/> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
236 </section> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
237 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
238 <section name="lr_align" expanded="False" title="Long read alignment parameters" help="These options control the alignment of long reads to the assembly graph."> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
239 <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." /> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
240 <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"/> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
241 <param argument="--low_score" optional="True" type="integer" value="" label="Score threshold - alignments below this are considered poor" help="default = set automatically"/> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
242 </section> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
243 </inputs> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
244 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
245 <outputs> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
246 <data format="txt" name="assembly_grapth" from_work_dir="assembly.gfa" label="${tool.name} on ${on_string}: Final Assembly Graph" /> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
247 <data format="fasta" name="assembly" from_work_dir="assembly.fasta" label="${tool.name} on ${on_string}: Final Assembly"/> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
248 </outputs> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
249 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
250 <tests> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
251 <test> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
252 <param name="fastq_input_selector" value="paired" /> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
253 <param name="fastq_input1" value="phix_f.fq.gz" ftype="fastqsanger" /> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
254 <param name="fastq_input2" value="phix_r.fq.gz" ftype="fastqsanger" /> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
255 <param name="mode" value="normal" /> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
256 <param name="no_correct" value="true" /> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
257 <param name="no_rotate" value="false" /> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
258 <param name="no_pilon" value="false" /> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
259 <output ftype="fasta" name="assembly"> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
260 <assert_contents> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
261 <has_text text="length=5386" /> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
262 </assert_contents> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
263 </output> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
264 </test> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
265 <!-- |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
266 Following test corresponds to the command: |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
267 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
268 unicycler -t "${GALAXY_SLOTS:-8}" -o ./ - -verbose 3 - -pilon_path `pilon - -jar_dir` \ |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
269 -1 test-data/phix_f.fq.gz -2 test-data/phix_r.fq.gz -l test-data/onp.fa \ |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
270 - -mode 'normal' - -no_correct |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
271 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
272 This command causes a segfault with the current version of unicycler on bioconda for Linux |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
273 during the minimap step (which seems to be compiled C code). A gist of the log can be found |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
274 at: https://gist.github.com/jmchilton/b411b695170c1daea6589f5d76e326cb. |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
275 --> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
276 <test> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
277 <param name="fastq_input_selector" value="paired" /> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
278 <param name="fastq_input1" value="phix_f.fq.gz" ftype="fastqsanger" /> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
279 <param name="fastq_input2" value="phix_r.fq.gz" ftype="fastqsanger" /> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
280 <param name="long_reads" value="onp.fa" ftype="fasta" /> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
281 <param name="mode" value="normal" /> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
282 <param name="no_correct" value="true" /> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
283 <param name="no_rotate" value="false" /> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
284 <param name="no_pilon" value="false" /> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
285 <output ftype="fasta" name="assembly"> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
286 <assert_contents> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
287 <has_text text="length=5386" /> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
288 </assert_contents> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
289 </output> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
290 </test> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
291 </tests> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
292 <help><![CDATA[ |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
293 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
294 **Unicycler** |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
295 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
296 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`_. |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
297 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
298 .. _`Ryan Wick`: https://github.com/rrwick |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
299 .. _`github page`: https://github.com/rrwick/Unicycler |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
300 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
301 ----- |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
302 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
303 **Input data** |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
304 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
305 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. |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
306 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
307 .. _`Sanger encoding`: https://en.wikipedia.org/wiki/FASTQ_format#Quality |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
308 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
309 The input options are:: |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
310 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
311 -1 SHORT1, --short1 SHORT1 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
312 FASTQ file of short reads (first reads in each pair) |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
313 -2 SHORT2, --short2 SHORT2 |
15a21071f0a2
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 (second reads in each pair) |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
315 -s SHORT_UNPAIRED, --short_unpaired SHORT_UNPAIRED |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
316 FASTQ file of unpaired short reads |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
317 -l LONG, --long LONG |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
318 FASTQ or FASTA file of long reads, if all reads are available at start. |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
319 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
320 ----- |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
321 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
322 **Bridging mode** |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
323 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
324 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. |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
325 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
326 .. _`description of modes`: https://github.com/rrwick/Unicycler#conservative-normal-and-bold |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
327 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
328 The available modes are:: |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
329 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
330 --mode {conservative,normal,bold} |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
331 Bridging mode (default: normal) |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
332 conservative = smaller contigs, lowest misassembly rate |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
333 normal = moderate contig size and misassembly rate |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
334 bold = longest contigs, higher misassembly rate |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
335 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
336 ---- |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
337 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
338 **Skip SPAdes error correction step** |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
339 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
340 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: |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
341 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
342 1. SPAdes (or rather BayesHammer) counts *k*-mers in reads and computed *k*-mer statistics that takes into account base quality values. |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
343 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. |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
344 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. |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
345 4. Solid *k*-mers are derived from cluster centers and are assumed to be *error free*. |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
346 5. Solid *k*-mers are mapped back to the reads and used to correct them. |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
347 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
348 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. |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
349 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
350 .. _`BayesHammer`: https://goo.gl/1iGkMe |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
351 .. _`Hamming graph`: https://en.wikipedia.org/wiki/Hamming_graph |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
352 .. _`Hamming distance`: https://en.wikipedia.org/wiki/Hamming_distance |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
353 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
354 This following option turns error correction on and off:: |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
355 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
356 --no_correct |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
357 Skip SPAdes error correction step |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
358 (default: conduct SPAdes error correction) |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
359 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
360 ----- |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
361 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
362 **Do not rotate completed replicons to start at a standard gene** |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
363 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
364 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. |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
365 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
366 The following option turns rotation on and off:: |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
367 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
368 --no_rotate |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
369 Do not rotate completed replicons |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
370 to start at a standard gene |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
371 (default: completed replicons are rotated) |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
372 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
373 **Do not use Pilon to polish the final assembly** |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
374 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
375 `Pilon`_ is a tool for improving overall quality of draft assemblies and finding variation among strains. Unicycler uses it for assembly *polishing*. |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
376 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
377 The following option turns pilon part of Unicycler pipeline on and off:: |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
378 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
379 --no_pilon |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
380 Do not use Pilon to polish the |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
381 final assembly (default: Pilon is used) |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
382 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
383 .. _`Pilon`: https://github.com/broadinstitute/pilon/wiki |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
384 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
385 ------ |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
386 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
387 **Expected number of linear sequences** |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
388 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
389 If you expect your sample to contain linear (non circular) sequences, set this option:: |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
390 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
391 --expected_linear_seqs EXPECTED_LINEAR_SEQS |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
392 The expected number of linear (i.e. non-circular) |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
393 sequences in the underlying sequence |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
394 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
395 ---- |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
396 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
397 **SPAdes options** |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
398 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
399 This section provides control of SPAdes options:: |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
400 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
401 --min_kmer_frac MIN_KMER_FRAC |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
402 Lowest k-mer size for SPAdes assembly, |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
403 expressed as a fraction of the read length |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
404 (default: 0.2) |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
405 --max_kmer_frac MAX_KMER_FRAC |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
406 Highest k-mer size for SPAdes assembly, |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
407 expressed as a fraction of the read length |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
408 (default: 0.95) |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
409 --kmer_count KMER_COUNT |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
410 Number of k-mer steps to use in |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
411 SPAdes assembly (default: 10) |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
412 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
413 ---- |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
414 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
415 **Rotation options** |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
416 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
417 Unicycler attempts to rotate circular assemblies to make sure that they begin at a consistent starting gene. The following parameters control assembly rotation:: |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
418 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
419 --start_genes START_GENES |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
420 FASTA file of genes for start point |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
421 of rotated replicons |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
422 (default: start_genes.fasta) |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
423 --start_gene_id START_GENE_ID |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
424 The minimum required BLAST percent identity |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
425 for a start gene search |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
426 (default: 90.0) |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
427 --start_gene_cov START_GENE_COV |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
428 The minimum required BLAST percent coverage |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
429 for a start gene search |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
430 (default: 95.0) |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
431 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
432 ----- |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
433 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
434 **Graph cleaning options** |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
435 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
436 These options control the removal of small leftover sequences after bridging is complete:: |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
437 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
438 --min_component_size MIN_COMPONENT_SIZE |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
439 Unbridged graph components smaller |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
440 than this size (bp) will be removed |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
441 from the final graph (default: 1000) |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
442 --min_dead_end_size MIN_DEAD_END_SIZE |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
443 Graph dead ends smaller than this size (bp) |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
444 will be removed from the final graph |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
445 (default: 1000) |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
446 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
447 ----- |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
448 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
449 **Long read alignment options** |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
450 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
451 These options control the alignment of long reads to the assembly graph:: |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
452 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
453 --contamination CONTAMINATION |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
454 FASTA file of known contamination in long reads |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
455 --scores SCORES |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
456 Comma-delimited string of alignment scores: |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
457 match, mismatch, gap open, gap extend |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
458 (default: 3,-6,-5,-2) |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
459 --low_score LOW_SCORE |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
460 Score threshold - alignments below this |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
461 are considered poor |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
462 (default: set threshold automatically) |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
463 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
464 ----- |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
465 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
466 **Outputs** |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
467 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
468 Galaxy's wrapped for Unicycler produces two outputs: |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
469 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
470 * final assembly in FASTA format |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
471 * final assembly grapth in graph format |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
472 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
473 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`_. |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
474 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
475 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
476 .. _`Bandage`: https://github.com/rrwick/Bandage |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
477 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
478 |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
479 ]]></help> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
480 <citations> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
481 <citation type="doi">10.1101/096412</citation> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
482 </citations> |
15a21071f0a2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler commit 97c19413f9d7e85c013b82ffafa73632c79c8f0b
iuc
parents:
diff
changeset
|
483 </tool> |