Mercurial > repos > iuc > polypolish
annotate polypolish.xml @ 2:f355085dd2aa draft default tip
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 2a8a85c8b08a62edbd11c34126753192baf6da66
author | iuc |
---|---|
date | Thu, 11 Jan 2024 16:44:56 +0000 |
parents | bd2a15dbcea1 |
children |
rev | line source |
---|---|
0
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
1 <tool id="polypolish" name="Polypolish" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
2 <description> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
3 Short-read polishing of long-read bacterial genome assemblies |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
4 </description> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
5 <macros> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
6 <import>macro.xml</import> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
7 </macros> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
8 <expand macro='xrefs'/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
9 <expand macro="requirements" /> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
10 <expand macro="version_command" /> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
11 <command detect_errors="aggressive"><![CDATA[ |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
12 ln -s '$input.fasta_file' input_data && |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
13 #*====================================== |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
14 For single SAM |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
15 ======================================*# |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
16 #if $input.sam_data_type.sam_selector == 'single' |
1
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
17 #if $input.sam_data_type.single_sam.is_of_type("unsorted.bam") |
2
f355085dd2aa
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 2a8a85c8b08a62edbd11c34126753192baf6da66
iuc
parents:
1
diff
changeset
|
18 samtools view -@ \$addthreads -h $input.sam_data_type.single_sam > input_sam && |
0
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
19 #elif $input.sam_data_type.single_sam.ext == 'sam' |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
20 ln -s $input.sam_data_type.single_sam input_sam && |
1
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
21 #else |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
22 echo "${input.sam_data_type.single_sam} not a sam/bam file" |
0
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
23 #end if |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
24 polypolish input_data input_sam > '$polished_fasta' |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
25 #*====================================== |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
26 For paired SAM |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
27 ======================================*# |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
28 #elif $input.sam_data_type.sam_selector == 'paired' |
1
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
29 #if $input.sam_data_type.R1_sam.is_of_type("unsorted.bam") |
2
f355085dd2aa
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 2a8a85c8b08a62edbd11c34126753192baf6da66
iuc
parents:
1
diff
changeset
|
30 samtools view -@ \$addthreads -h $input.sam_data_type.R1_sam > sample_R1.sam && |
0
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
31 #elif $input.sam_data_type.R1_sam.ext == 'sam' |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
32 ln -s '$input.sam_data_type.R1_sam' sample_R1.sam && |
1
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
33 #else |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
34 echo "${input.sam_data_type.single_sam} not a sam/bam file" |
0
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
35 #end if |
1
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
36 #if $input.sam_data_type.R2_sam.is_of_type("unsorted.bam") |
2
f355085dd2aa
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 2a8a85c8b08a62edbd11c34126753192baf6da66
iuc
parents:
1
diff
changeset
|
37 samtools view -@ \$addthreads -h $input.sam_data_type.R2_sam > sample_R2.sam && |
0
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
38 #elif $input.sam_data_type.R2_sam.ext == 'sam' |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
39 ln -s '$input.sam_data_type.R2_sam' sample_R2.sam && |
1
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
40 #else |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
41 echo "${input.sam_data_type.single_sam} not a sam/bam file" |
0
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
42 #end if |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
43 #if $input.sam_data_type.insert_filter.filter_select == 'filter' |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
44 polypolish_insert_filter.py --low '$input.sam_data_type.insert_filter.low' |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
45 --high '$input.sam_data_type.insert_filter.high' |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
46 --in1 sample_R1.sam |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
47 --in2 sample_R2.sam |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
48 --out1 'filtered_1.sam' |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
49 --out2 'filtered_2.sam' && |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
50 polypolish input_data 'filtered_1.sam' 'filtered_2.sam' > $polished_fasta |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
51 #else |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
52 polypolish input_data sample_R1.sam sample_R2.sam > $polished_fasta |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
53 #end if |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
54 #*====================================== |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
55 For multiple single-end SAM |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
56 ======================================*# |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
57 #elif $input.sam_data_type.sam_selector == 'multiple_single' |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
58 mkdir single_collection && |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
59 #for $value, $single_sam in enumerate($input.sam_data_type.single_collection): |
1
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
60 #if $single_sam.is_of_type("unsorted.bam") |
2
f355085dd2aa
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 2a8a85c8b08a62edbd11c34126753192baf6da66
iuc
parents:
1
diff
changeset
|
61 samtools view -@ \$addthreads -h $single_sam > 'single_collection/$(single_sam.element_identifier).sam' && |
0
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
62 #elif $single_sam.ext == 'sam' |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
63 ln -s $single_sam 'single_collection/$(single_sam.element_identifier).$(single_sam.ext)' && |
1
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
64 #else |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
65 echo "${single_sam} is not a sam/bam file" |
0
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
66 #end if |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
67 #end for |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
68 polypolish input_data single_collection/*.sam > '$polished_fasta' |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
69 #*====================================== |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
70 For multiple paired-end SAM |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
71 ======================================*# |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
72 #elif $input.sam_data_type.sam_selector == "multiple_paired" |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
73 mkdir paired_collection && |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
74 #for $value, $paired_sam in enumerate($input.sam_data_type.paired_collection): |
1
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
75 #if $paired_sam.forward.is_of_type("unsorted.bam") |
2
f355085dd2aa
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 2a8a85c8b08a62edbd11c34126753192baf6da66
iuc
parents:
1
diff
changeset
|
76 samtools view -@ \$addthreads -h $paired_sam.forward > 'paired_collection/forward_input$(value)$(paired_sam.forward.element_identifier).sam' && |
0
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
77 #else |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
78 ln -s '$paired_sam.forward' 'paired_collection/forward_input$(value)$(paired_sam.forward.element_identifier).sam' && |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
79 #end if |
1
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
80 #if $paired_sam.reverse.is_of_type("unsorted.bam") |
2
f355085dd2aa
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 2a8a85c8b08a62edbd11c34126753192baf6da66
iuc
parents:
1
diff
changeset
|
81 samtools view -@ \$addthreads -h $paired_sam.reverse > 'paired_collection/reverse_input$(value)$(paired_sam.reverse.element_identifier).sam' && |
0
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
82 #else |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
83 ln -s '$paired_sam.reverse' 'paired_collection/reverse_input$(value)$(paired_sam.reverse.element_identifier).sam' && |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
84 #end if |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
85 #if $input.sam_data_type.insert_filter.filter_select == 'filter' |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
86 polypolish_insert_filter.py --low '$input.sam_data_type.insert_filter.low' |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
87 --high '$input.sam_data_type.insert_filter.high' |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
88 --in1 'paired_collection/forward_input$(value)$(paired_sam.forward.element_identifier).sam' |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
89 --in2 'paired_collection/reverse_input$(value)$(paired_sam.reverse.element_identifier).sam' |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
90 --out1 'paired_collection/forward_input$(value)$(paired_sam.forward.element_identifier)_filtered.sam' |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
91 --out2 'paired_collection/reverse_input$(value)$(paired_sam.reverse.element_identifier)_filtered.sam' && |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
92 #end if |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
93 #end for |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
94 #*====================================== |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
95 Filtering option |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
96 ======================================*# |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
97 #if $input.sam_data_type.insert_filter.filter_select == 'filter' |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
98 polypolish input_data paired_collection/*_filtered.sam > '$polished_fasta' |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
99 #else |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
100 polypolish input_data paired_collection/*.sam > '$polished_fasta' |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
101 #end if |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
102 #end if |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
103 #*====================================== |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
104 For debug file output |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
105 ======================================*# |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
106 #if $options.debug == 'true' |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
107 --debug $debug_file |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
108 #end if |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
109 #*====================================== |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
110 For LOGFILE OUTPUT |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
111 ======================================*# |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
112 #if $options.keep_logfile == 'true' |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
113 | tee '$logfile' |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
114 #end if |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
115 ]]> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
116 </command> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
117 <inputs> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
118 <section name="input" title="Input sequences" expanded="True"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
119 <param name="fasta_file" type="data" format="fasta" label="Select a draft genome for polishing" |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
120 help="Fasta sequence to be cleaned using short-reads data"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
121 <conditional name="sam_data_type"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
122 <param name="sam_selector" type="select" label="Select aligned data to polish" help="Choose number of aligned sam/bam files. Need aligned file with all possible locations in aligner option"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
123 <option value="single">Single SAM/BAM file</option> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
124 <option value="paired">Paired SAM/BAM files</option> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
125 <option value="multiple_single">Multiple single SAM/BAM files</option> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
126 <option value="multiple_paired">Multiple paired SAM/BAM files</option> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
127 </param> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
128 <when value="single"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
129 <param name="single_sam" type="data" format="sam,unsorted.bam" label="Select a SAM/BAM file" help="Specify dataset with only one SAM/BAM file"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
130 </when> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
131 <when value="paired"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
132 <param name="R1_sam" type="data" format="sam,unsorted.bam" label="Select forward SAM/BAM file" help="Specify the forward SAM/BAM files"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
133 <param name="R2_sam" type="data" format="sam,unsorted.bam" label="Select reverse SAM/BAM file" help="Specify the reverse SAM/BAM files"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
134 <expand macro="filter_option"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
135 </when> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
136 <when value="multiple_single"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
137 <param name="single_collection" format="sam,unsorted.bam" type="data_collection" collection_type="list" label="Single-end collection" help="Specify a list of single-end dataset"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
138 </when> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
139 <when value="multiple_paired"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
140 <param name="paired_collection" format="sam,unsorted.bam" type="data_collection" collection_type="list:paired" label="Single-end collection" help="Specify a list of single-end dataset"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
141 <expand macro="filter_option"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
142 </when> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
143 </conditional> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
144 </section> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
145 <section name="options" title="Options" expanded="False"> |
1
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
146 <param argument="--min_depth" type="integer" min="0" value="5" label="Minimal depth" |
0
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
147 help="A base must occur at least this many times in the pileup to be considered valid [default: 5]"/> |
1
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
148 <param argument="--fraction_invalid" type="float" min="0" value="0.2" max="1" label="Minimal invalid fraction" |
0
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
149 help="A base must make up less than this fraction of the read depth to be considered invalid [default: 0.2]"/> |
1
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
150 <param argument="--max_errors" type="integer" min="0" value="10" label="Number of mismatch/indels to ignore alignments" |
0
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
151 help="Ignore alignments with more than this many mismatches and indels [default: 10]"/> |
1
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
152 <param argument="--fraction_valid" type="float" min="0" value="0.5" max="1" label="Minimal valid fraction" |
0
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
153 help="A base must make up at least this fraction of the read depth to be considered valid [default: 0.5"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
154 <param name="keep_logfile" type="boolean" truevalue="true" falsevalue="false" label="Keep log file"/> |
1
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
155 <param argument="--debug" type="boolean" truevalue="true" falsevalue="false" label="Keep per base information file"/> |
0
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
156 </section> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
157 </inputs> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
158 <outputs> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
159 <data name="polished_fasta" format="fasta" label="${tool.name} on ${on_string}: polished fasta"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
160 <data name="debug_file" format="tabular" label="${tool.name} on ${on_string}: Per base informations"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
161 <filter> options['debug'] == True </filter> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
162 </data> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
163 <data name="logfile" format="txt" from_work_dir="output" label="${tool.name} on ${on_string}: log report"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
164 <filter> options['keep_logfile'] == True </filter> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
165 </data> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
166 </outputs> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
167 <tests> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
168 <!-- Test_1 with default values and single SAM --> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
169 <test expect_num_outputs="1"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
170 <section name="input"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
171 <param name="fasta_file" value="contigs.fa"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
172 <conditional name="sam_data_type"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
173 <param name="sam_selector" value="single"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
174 <param name="single_sam" value="aligned_test_file/alignement_R1.sam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
175 </conditional> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
176 </section> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
177 <output name="polished_fasta" value="polished.fasta"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
178 </test> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
179 <!-- Test_2 with default values and paired SAM --> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
180 <test expect_num_outputs="2"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
181 <section name="input"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
182 <param name="fasta_file" value="contigs.fa"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
183 <conditional name="sam_data_type"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
184 <param name="sam_selector" value="paired"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
185 <param name="R1_sam" value="aligned_test_file/alignement_R1.sam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
186 <param name="R2_sam" value="aligned_test_file/alignement_R2.sam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
187 </conditional> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
188 </section> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
189 <section name="options"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
190 <param name="debug" value="true"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
191 <param name="keep_logfile" value="false"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
192 </section> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
193 <output name="polished_fasta" value="polished.fasta"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
194 <output name="debug_file" value="debug_file_test_2.tsv"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
195 </test> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
196 <!-- Test_3 with default values and single-end multiple SAM --> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
197 <test expect_num_outputs="2"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
198 <section name="input"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
199 <param name="fasta_file" value="contigs.fa"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
200 <conditional name="sam_data_type"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
201 <param name="sam_selector" value="multiple_single"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
202 <param name="single_collection"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
203 <collection type="list"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
204 <element name="R1_sam" value="aligned_test_file/alignement_R1.sam" ftype="sam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
205 <element name="R1_bis_sam" value="aligned_test_file/alignement_R1_bis.sam" ftype="sam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
206 <element name="R1_ter_sam" value="aligned_test_file/alignement_R1_ter.sam" ftype="sam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
207 </collection> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
208 </param> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
209 </conditional> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
210 </section> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
211 <section name="options"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
212 <param name="debug" value="false"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
213 <param name="keep_logfile" value="true"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
214 </section> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
215 <output name="polished_fasta" value="polished.fasta"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
216 <output name="logfile" value="logfile_test_3.log" lines_diff="15"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
217 </test> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
218 <!-- Test_4 with default values and paired collection SAM --> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
219 <test expect_num_outputs="1"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
220 <section name="input"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
221 <param name="fasta_file" value="contigs.fa"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
222 <conditional name="sam_data_type"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
223 <param name="sam_selector" value="multiple_paired"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
224 <param name="paired_collection"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
225 <collection type="list:paired"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
226 <element name="paired_1"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
227 <collection type="paired"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
228 <element name="forward" value="aligned_test_file/alignement_R1.sam" ftype="sam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
229 <element name="reverse" value="aligned_test_file/alignement_R2.sam" ftype="sam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
230 </collection> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
231 </element> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
232 <element name="paired_2"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
233 <collection type="paired"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
234 <element name="forward" value="aligned_test_file/alignement_R1_bis.sam" ftype="sam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
235 <element name="reverse" value="aligned_test_file/alignement_R2_bis.sam" ftype="sam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
236 </collection> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
237 </element> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
238 <element name="paired_3"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
239 <collection type="paired"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
240 <element name="forward" value="aligned_test_file/alignement_R1_ter.sam" ftype="sam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
241 <element name="reverse" value="aligned_test_file/alignement_R2_ter.sam" ftype="sam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
242 </collection> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
243 </element> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
244 </collection> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
245 </param> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
246 </conditional> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
247 </section> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
248 <output name="polished_fasta" value="polished.fasta"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
249 </test> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
250 <!-- Test_5 paired-end without filtering and whitout log file --> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
251 <test expect_num_outputs="1"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
252 <section name="input"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
253 <param name="fasta_file" value="contigs.fa"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
254 <conditional name="sam_data_type"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
255 <param name="sam_selector" value="paired"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
256 <param name="R1_sam" value="aligned_test_file/alignement_R1.sam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
257 <param name="R2_sam" value="aligned_test_file/alignement_R2.sam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
258 </conditional> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
259 </section> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
260 <section name="options"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
261 <conditional name="insert_filter"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
262 <param name="filter_select" value="non_filter"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
263 </conditional> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
264 <param name="debug" value="false"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
265 <param name="keep_logfile" value="false"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
266 </section> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
267 <output name="polished_fasta" value="polished.fasta"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
268 </test> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
269 <!-- Test_6 paired-end with filter, user defined values and whitout log file --> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
270 <test expect_num_outputs="1"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
271 <section name="input"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
272 <param name="fasta_file" value="contigs.fa"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
273 <conditional name="sam_data_type"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
274 <param name="sam_selector" value="paired"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
275 <param name="R1_sam" value="aligned_test_file/alignement_R1.sam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
276 <param name="R2_sam" value="aligned_test_file/alignement_R2.sam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
277 <conditional name="insert_filter"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
278 <param name="filter_select" value="filter"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
279 <param name="low" value="1"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
280 <param name="high" value="98.7"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
281 </conditional> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
282 </conditional> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
283 </section> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
284 <section name="options"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
285 <param name="debug" value="false"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
286 <param name="keep_logfile" value="false"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
287 </section> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
288 <output name="polished_fasta" value="polished.fasta"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
289 </test> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
290 <!-- Test_7 paired-end with all customized filters --> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
291 <test expect_num_outputs="1"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
292 <section name="input"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
293 <param name="fasta_file" value="contigs.fa"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
294 <conditional name="sam_data_type"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
295 <param name="sam_selector" value="paired"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
296 <param name="R1_sam" value="aligned_test_file/alignement_R1.sam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
297 <param name="R2_sam" value="aligned_test_file/alignement_R2.sam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
298 <conditional name="insert_filter"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
299 <param name="filter_select" value="filter"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
300 <param name="low" value="1.4"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
301 <param name="high" value="96.6"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
302 </conditional> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
303 </conditional> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
304 </section> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
305 <section name="options"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
306 <param name="min_depth" value="10"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
307 <param name="fraction_invalid" value="0.5"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
308 <param name="max_errors" value="8"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
309 <param name="fraction_valid" value="0.6"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
310 <param name="debug" value="false"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
311 <param name="keep_logfile" value="false"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
312 </section> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
313 <output name="polished_fasta" value="polished.fasta"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
314 </test> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
315 <!-- Test_8 single with bam input --> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
316 <test expect_num_outputs="1"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
317 <section name="input"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
318 <param name="fasta_file" value="contigs.fa"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
319 <conditional name="sam_data_type"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
320 <param name="sam_selector" value="single"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
321 <param name="single_sam" value="aligned_test_file/alignement_R1.bam" ftype="unsorted.bam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
322 </conditional> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
323 </section> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
324 <section name="options"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
325 <param name="debug" value="false"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
326 <param name="keep_logfile" value="false"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
327 </section> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
328 <output name="polished_fasta" value="polished.fasta"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
329 </test> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
330 <!-- Test_9 paired-end with bam input --> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
331 <test expect_num_outputs="1"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
332 <section name="input"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
333 <param name="fasta_file" value="contigs.fa"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
334 <conditional name="sam_data_type"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
335 <param name="sam_selector" value="paired"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
336 <param name="R1_sam" value="aligned_test_file/alignement_R1.bam" ftype="unsorted.bam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
337 <param name="R2_sam" value="aligned_test_file/alignement_R2.bam" ftype="unsorted.bam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
338 </conditional> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
339 </section> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
340 <section name="options"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
341 <param name="debug" value="false"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
342 <param name="keep_logfile" value="false"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
343 </section> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
344 <output name="polished_fasta" value="polished.fasta"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
345 </test> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
346 <!-- Test_10 single collection with bam input --> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
347 <test expect_num_outputs="1"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
348 <section name="input"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
349 <param name="fasta_file" value="contigs.fa"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
350 <conditional name="sam_data_type"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
351 <param name="sam_selector" value="multiple_single"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
352 <param name="single_collection"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
353 <collection type="list"> |
1
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
354 <element name="R1_sam" value="aligned_test_file/alignement_R1.sam" ftype="sam"/> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
355 <element name="R1_bis_sam" value="aligned_test_file/alignement_R1_bis.sam" ftype="sam"/> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
356 <element name="R1_ter_sam" value="aligned_test_file/alignement_R1_ter.sam" ftype="sam"/> |
0
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
357 </collection> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
358 </param> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
359 </conditional> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
360 </section> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
361 <section name="options"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
362 <param name="debug" value="false"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
363 <param name="keep_logfile" value="false"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
364 </section> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
365 <output name="polished_fasta" value="polished.fasta"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
366 </test> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
367 <!-- Test_11 paired-end with bam input --> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
368 <test expect_num_outputs="1"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
369 <section name="input"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
370 <param name="fasta_file" value="contigs.fa"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
371 <conditional name="sam_data_type"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
372 <param name="sam_selector" value="multiple_paired"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
373 <param name="paired_collection"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
374 <collection type="list:paired"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
375 <element name="paired_1"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
376 <collection type="paired"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
377 <element name="forward" value="aligned_test_file/alignement_R1.bam" ftype="unsorted.bam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
378 <element name="reverse" value="aligned_test_file/alignement_R2.bam" ftype="unsorted.bam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
379 </collection> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
380 </element> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
381 <element name="paired_2"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
382 <collection type="paired"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
383 <element name="forward" value="aligned_test_file/alignement_R1_bis.bam" ftype="unsorted.bam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
384 <element name="reverse" value="aligned_test_file/alignement_R2_bis.bam" ftype="unsorted.bam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
385 </collection> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
386 </element> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
387 <element name="paired_3"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
388 <collection type="paired"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
389 <element name="forward" value="aligned_test_file/alignement_R1_ter.bam" ftype="unsorted.bam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
390 <element name="reverse" value="aligned_test_file/alignement_R2_ter.bam" ftype="unsorted.bam"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
391 </collection> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
392 </element> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
393 </collection> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
394 </param> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
395 </conditional> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
396 </section> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
397 <section name="options"> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
398 <param name="debug" value="false"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
399 <param name="keep_logfile" value="false"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
400 </section> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
401 <output name="polished_fasta" value="polished.fasta"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
402 </test> |
1
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
403 <!-- Test_12 Test with bam files --> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
404 <test expect_num_outputs="1"> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
405 <section name="input"> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
406 <param name="fasta_file" value="contigs.fa"/> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
407 <conditional name="sam_data_type"> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
408 <param name="sam_selector" value="single"/> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
409 <param name="single_sam" value="aligned_test_file/alignement_R1.bam"/> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
410 </conditional> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
411 </section> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
412 <output name="polished_fasta" value="polished.fasta"/> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
413 </test> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
414 <!-- Test_13 paired bam --> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
415 <test expect_num_outputs="2"> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
416 <section name="input"> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
417 <param name="fasta_file" value="contigs.fa"/> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
418 <conditional name="sam_data_type"> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
419 <param name="sam_selector" value="paired"/> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
420 <param name="R1_sam" value="aligned_test_file/alignement_R1.bam"/> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
421 <param name="R2_sam" value="aligned_test_file/alignement_R2.bam"/> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
422 </conditional> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
423 </section> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
424 <section name="options"> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
425 <param name="debug" value="true"/> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
426 <param name="keep_logfile" value="false"/> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
427 </section> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
428 <output name="polished_fasta" value="polished.fasta"/> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
429 <output name="debug_file" value="debug_file_test_2.tsv"/> |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
430 </test> |
0
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
431 </tests> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
432 <help><![CDATA[ |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
433 **What it does** |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
434 Polypolish is a tool for polishing genome assemblies with short reads. |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
435 Polypolish uses SAM/BAM files where each read has been aligned to all possible locations (not just a single best location). |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
436 This allows it to repair errors in repeat regions that other alignment-based polishers cannot fix. |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
437 |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
438 **Polypolish pipeline steps** |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
439 1. [Optional] Filter aligned reads |
1
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
440 Exclude some alignments based on their insert size |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
441 This should reduce the number of excessive alignments, |
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
442 particularly near the edges of repeat sequences, improving Polypolish's ability to fix errors in those regions. |
0
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
443 2. Clean assembly with filtered reads |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
444 |
1
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
445 |
0
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
446 **Inputs** |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
447 Polypolish need SAM/BAM input format obtain from aligner with option to keep all possible location |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
448 Polypolish take on or more assembly as input fasta. |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
449 It need also raw data reads in single or paired-end SAM/BAM format. |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
450 You can use multiple aligned data to polish the same assembly. |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
451 **WARNING It can only work if multiple location information is available in sam/bam files** |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
452 For example using bwa mem to align raw data before use, you need : |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
453 1. To align each read data independantly (also for paired data) |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
454 2. Set the option "Output all alignments for single-ends or unpaired paired-ends" in Select analysis mode>Set input/output options |
1
bd2a15dbcea1
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit afc3449a0b68d43fd1179543815dfe23b951e157
iuc
parents:
0
diff
changeset
|
455 This allow multiple ailgnemnt output need to use polypolish |
0
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
456 ]]></help> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
457 <expand macro="citations"/> |
aaa868913641
planemo upload for repository https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish commit 95f351736787f04c65e830cd9daf9c9c8521893a
iuc
parents:
diff
changeset
|
458 </tool> |