annotate adapter_removal.xml @ 0:04d05400d3a6 draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
author iuc
date Wed, 04 May 2022 13:45:52 +0000
parents
children 40874f772ea1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
1 <tool id="adapter_removal" name="AdapterRemoval: remove adapter sequences" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
2 <description>from HTS data</description>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
3 <macros>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
4 <import>macros.xml</import>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
5 </macros>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
6 <expand macro="bio_tools"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
7 <expand macro="requirements"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
8 <command detect_errors="exit_code"><![CDATA[
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
9 #import re
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
10
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
11 #if $input_type_cond.input_type in ['single', 'pair', 'interleaved']:
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
12 #set read1 = $input_type_cond.read1
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
13 #if $input_type_cond.input_type == 'pair':
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
14 #set read2 = $input_type_cond.read2
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
15 #end if
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
16 #else:
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
17 #set read1 = $input_type_cond.reads_collection['forward']
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
18 #set read2 = $input_type_cond.reads_collection['reverse']
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
19 #end if
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
20
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
21 #set read1_identifier = 'read1' + $read1.ext
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
22 ln -s '${read1}' '${read1_identifier}' &&
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
23
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
24 #if $input_type_cond.input_type in ["pair", "paired"]:
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
25 #set read2_identifier = 'read2' + $read2.ext
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
26 ln -s '${read2}' '${read2_identifier}' &&
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
27 #end if
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
28
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
29 AdapterRemoval
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
30 --file1 '${read1_identifier}'
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
31 #if str($input_type_cond.input_type) == 'interleaved':
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
32 --interleaved
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
33 --interleaved-input
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
34 #if str($input_type_cond.interleaved_output) == 'yes':
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
35 --interleaved-output '$output_interleaved_truncated'
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
36 #end if
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
37 $input_type_cond.combined_output
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
38 #else if str($input_type_cond.input_type) in ['pair', 'paired']:
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
39 --file2 '${read2_identifier}'
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
40 $input_type_cond.identify_adapters
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
41 #if str($input_type_cond.interleaved_output) == 'yes':
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
42 --interleaved-output
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
43 #end if
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
44 $input_type_cond.combined_output
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
45 #end if
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
46
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
47 --threads \${GALAXY_SLOTS:-8}
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
48
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
49 ###### FASTQ Options
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
50 --qualitybase '33'
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
51 --qualitybase-output '33'
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
52 --qualitymax $fastq_options.qualitymax
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
53
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
54 ###### FASTQ Trimming Options
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
55 --adapter1 '$fastq_trimming_options.adapter1'
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
56 --adapter2 '$fastq_trimming_options.adapter2'
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
57 #if $fastq_trimming_options.adapter_list:
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
58 --adapter-list '$fastq_trimming_options.adapter_list'
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
59 #end if
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
60 --minadapteroverlap $fastq_trimming_options.minadapteroverlap
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
61 --mm $fastq_trimming_options.mm
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
62 --shift $fastq_trimming_options.shift
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
63 #if str($fastq_trimming_options.trim5p_cond.trim5p_param) == 'yes':
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
64 --trim5p $fastq_trimming_options.trim5p_cond.trim5p_mate1 $fastq_trimming_options.trim5p_cond.trim5p_mate2
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
65 #end if
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
66 #if str($fastq_trimming_options.trim3p_cond.trim3p_param) == 'yes':
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
67 --trim3p $fastq_trimming_options.trim3p_cond.trim3p_mate1 $fastq_trimming_options.trim3p_cond.trim3p_mate2
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
68 #end if
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
69 $fastq_trimming_options.trimns
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
70 --maxns $fastq_trimming_options.maxns
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
71 $fastq_trimming_options.trimqualities
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
72 #if str($fastq_trimming_options.sliding_window_cond.sliding_window_param) == 'yes':
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
73 --trimwindows $fastq_trimming_options.sliding_window_cond.window_size
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
74 #end if
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
75 --minquality $fastq_trimming_options.minquality
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
76 $fastq_trimming_options.preserve5p
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
77 --minlength $fastq_trimming_options.minlength
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
78 --maxlength $fastq_trimming_options.maxlength
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
79
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
80 ###### FASTQ Merging Options
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
81 $fastq_merging_options.collapse
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
82 --minalignmentlength $fastq_merging_options.minalignmentlength
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
83 $fastq_merging_options.collapse_deterministic
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
84 $fastq_merging_options.collapse_conservatively
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
85
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
86 ###### Output Options
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
87 --settings '$output_settings'
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
88 #if str($input_type_cond.input_type) == 'single':
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
89 --output1 '$output_truncated'
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
90 #else if str($input_type_cond.input_type) in ['pair', 'paired']:
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
91 #if str($input_type_cond.interleaved_output) == 'no':
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
92 --output1 '$output_forward_truncated'
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
93 --output2 '$output_reverse_truncated'
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
94 #else:
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
95 --output1 '$output_interleaved_truncated'
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
96 #end if
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
97 #end if
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
98
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
99 ###### Outputs
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
100 #if 'output_singleton' in $output_select:
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
101 --singleton '$output_singleton_truncated'
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
102 #end if
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
103 #if 'output_collapsed' in $output_select:
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
104 --outputcollapsed '$output_collapsed'
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
105 #end if
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
106 #if 'output_collapsed_truncated' in $output_select:
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
107 --outputcollapsedtruncated '$output_collapsed_truncated'
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
108 #end if
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
109 #if 'output_discarded' in $output_select:
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
110 --discarded '$output_discarded'
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
111 #end if
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
112 ]]></command>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
113 <inputs>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
114 <conditional name="input_type_cond">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
115 <param name="input_type" type="select" label="Choose the category of the reads files to be analyzed">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
116 <option value="single" selected="true">Single dataset containing reads</option>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
117 <option value="pair">Pair of forward and reverse reads in separate datasets</option>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
118 <option value="paired">Collection of paired reads</option>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
119 <option value="interleaved">Single dataset in which pairs of reads are written one after the other</option>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
120 </param>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
121 <when value="single">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
122 <param name="read1" type="data" format="@DATATYPES@" label="Read file"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
123 </when>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
124 <when value="pair">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
125 <param name="read1" type="data" format="@DATATYPES@" label="Forward read file"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
126 <param name="read2" type="data" format="@DATATYPES@" label="Reverse read file"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
127 <expand macro="identify_adapters_param"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
128 <expand macro="interleaved_output_param"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
129 <expand macro="combined_output_param"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
130 </when>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
131 <when value="paired">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
132 <param name="reads_collection" type="data_collection" format="@DATATYPES@" collection_type="paired" label="Collection of fastq paired read files"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
133 <expand macro="identify_adapters_param"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
134 <expand macro="interleaved_output_param"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
135 <expand macro="combined_output_param"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
136 </when>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
137 <when value="interleaved">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
138 <param name="read1" type="data" format="@DATATYPES@" label="Interleaved read file"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
139 <expand macro="interleaved_output_param"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
140 <expand macro="combined_output_param"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
141 </when>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
142 </conditional>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
143 <!-- FASTQ Options -->
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
144 <section name="fastq_options" title="FASTQ Options" expanded="false">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
145 <param argument="--qualitymax" type="integer" value="41" min="0" max="93" label="Maximum Phred score expected in input files and used when writing output files" help="Possible values are 0 to 93 for Phred+33 encoded files"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
146 </section>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
147 <!-- FASTQ Trimming Options -->
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
148 <section name="fastq_trimming_options" title="FASTQ Trimming Options" expanded="false">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
149 <param argument="--adapter1" type="text" value="AGATCGGAAGAGCACACGTCTGAACTCCAGTCACNNNNNNATCTCGTATGCCGTCTTCTGCTTG" label="Adapter sequence expected to be found in mate 1 reads, specified in read direction">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
150 <expand macro="sanitizer"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
151 </param>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
152 <param argument="--adapter2" type="text" value="AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGTAGATCTCGGTGGTCGCCGTATCATT" label="Adapter sequence expected to be found in mate 2 reads, specified in read direction">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
153 <expand macro="sanitizer"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
154 </param>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
155 <param argument="--adapter_list" type="data" format="tabular" optional="true" label="Tabular file containing adapter sequences" help="The first two columns of each line in the file must correspond to values passed to --adapter1 and --adapter2"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
156 <param argument="--minadapteroverlap" type="integer" value="0" min="0" label="Trim reads only if the overlap between read and the adapter is at least this number of bases long" help="Ignored unless input files are single-end reads"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
157 <param argument="--mm" type="float" value="3.0" label="The fraction of mismatches allowed in the aligned region" help="The value is used directly if less than 1, the rate s set to 1 / value if the value is greater than 1"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
158 <param argument="--shift" type="integer" value="2" min="0" max="93" label="Slip the alignment by this number of bases in the 5' end to allow for missing bases in the 5' end of the read"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
159 <conditional name="trim5p_cond">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
160 <param name="trim5p_param" type="select" label="Trim the 5' of reads by a fixed amount after removing adapters, but before carrying out quality based trimming?">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
161 <option value="no" selected="true">No</option>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
162 <option value="yes">Yes</option>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
163 </param>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
164 <when value="no"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
165 <when value="yes">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
166 <param name="trim5p_mate1" type="integer" value="0" min="0" label="Value for trimming the 5' of mate1 reads"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
167 <param name="trim5p_mate2" type="integer" value="0" min="0" label="Value for trimming the 5' of mate1 reads"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
168 </when>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
169 </conditional>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
170 <conditional name="trim3p_cond">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
171 <param name="trim3p_param" type="select" label="Trim the 3' of reads by a fixed amount after removing adapters, but before carrying out quality based trimming?">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
172 <option value="no" selected="true">No</option>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
173 <option value="yes">Yes</option>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
174 </param>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
175 <when value="no"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
176 <when value="yes">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
177 <param name="trim3p_mate1" type="integer" value="0" min="0" label="Value for trimming the 3' of mate1 reads"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
178 <param name="trim3p_mate2" type="integer" value="0" min="0" label="Value for trimming the 3' of mate1 reads"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
179 </when>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
180 </conditional>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
181 <param argument="--trimns" type="boolean" truevalue="--trimns" falsevalue="" checked="false" label="Trim consecutive Ns from the 5' and 3' termini?" help="If quality trimming is also enabled (--trimqualities), then stretches of mixed low-quality bases and/or Ns are trimmed"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
182 <param argument="--maxns" type="integer" value="1000" min="0" label="Discard reads containing more than this number of ambiguous bases ('N') after trimming"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
183 <param argument="--trimqualities" type="boolean" truevalue="--trimqualities" falsevalue="" checked="false" label="Trim consecutive stretches of low quality bases (threshold set by --minquality) from the 5' and 3' termini?" help="If trimming of Ns is also enabled (--trimns), then stretches of mixed low-quality bases and Ns are trimmed"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
184 <conditional name="sliding_window_cond">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
185 <param name="sliding_window_param" type="select" label="Perform sliding window approach to quality base-trimming inspired by sickle?">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
186 <option value="no" selected="true">No</option>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
187 <option value="yes">Yes</option>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
188 </param>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
189 <when value="no"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
190 <when value="yes">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
191 <param name="window_size" type="integer" value="0" min="0" label="Window size" help="See the Window based quality trimming section of the tool help below"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
192 </when>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
193 </conditional>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
194 <param argument="--minquality" type="integer" value="2" min="0" label="Threshold for trimming low quality bases using --trimqualities and --trimwindows"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
195 <param argument="--preserve5p" type="boolean" truevalue="--preserve5p" falsevalue="" checked="false" label="Preserve (i.e., do not trim by --trimns, --trimqualities, and --trimwindows) bases at the 5p?" help="Collapsed reads will not be quality trimmed when this option is enabled"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
196 <param argument="--minlength" type="integer" value="15" min="0" label="Reads shorter than this length are discarded following trimming"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
197 <param argument="--maxlength" type="integer" value="4294967295" min="0" label="Reads longer than this length are discarded following trimming"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
198 </section>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
199 <!-- FASTQ Merging Options -->
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
200 <section name="fastq_merging_options" title="FASTQ Merging Options" expanded="false">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
201 <param argument="--collapse" type="boolean" truevalue="--collapse" falsevalue="" checked="false" label="Output complete reads with an 'M_' name prefix and trimmed reads with an 'MT_' name prefix?"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
202 <param argument="--minalignmentlength" type="integer" value="11" min="0" label="Minimum overlap between mate 1 and mate 2 before the reads are collapsed into one when collapsing paired-end reads, or when attempting to identify complete template sequences in single-end mode"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
203 <param argument="--collapse_deterministic" type="boolean" truevalue="--collapse-deterministic" falsevalue="" checked="false" label="Collapse deterministically?" help="Setting this option also sets --collapse"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
204 <param argument="--collapse_conservatively" type="boolean" truevalue="--collapse-conservatively" falsevalue="" checked="false" label="Collapse conservatively?" help="Setting this option also sets --collapse"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
205 </section>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
206 <!-- Output Options -->
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
207 <param name="output_select" type="select" multiple="true" label="Optionally select one or more of the following additional outputs">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
208 <option value="none" selected="true">No additional outputs</option>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
209 <option value="output_singleton">Output file containing paired reads for which the mate has been discarded</option>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
210 <option value="output_collapsed">Output file containing overlapping mate-pairs which have been merged into a single read (PE mode) or reads for which the adapter was identified by a minimum overlap</option>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
211 <option value="output_collapsed_truncated">Output collapsed reads (see param above) which were trimmed due the presence of low-quality or ambiguous nucleotides</option>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
212 <option value="output_discarded">Output reads reads discarded due to the --minlength, --maxlength or --maxns options</option>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
213 </param>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
214 </inputs>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
215 <outputs>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
216 <data name="output_settings" format="txt" label="${tool.name} on ${on_string} (settings)"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
217 <data name="output_truncated" format="fastqsanger" label="${tool.name} on ${on_string} (truncated)">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
218 <filter>input_type_cond['input_type'] == 'single'</filter>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
219 </data>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
220 <data name="output_forward_truncated" format="fastqsanger" label="${tool.name} on ${on_string} (forward truncated)">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
221 <filter>input_type_cond['input_type'] in ['pair', 'paired'] and input_type_cond['interleaved_output'] == 'no'</filter>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
222 </data>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
223 <data name="output_reverse_truncated" format="fastqsanger" label="${tool.name} on ${on_string} (reverse truncated)">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
224 <filter>input_type_cond['input_type'] in ['pair', 'paired'] and input_type_cond['interleaved_output'] == 'no'</filter>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
225 </data>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
226 <data name="output_interleaved_truncated" format="fastqsanger" label="${tool.name} on ${on_string} (interleaved truncated)">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
227 <filter>input_type_cond['input_type'] in ['pair', 'paired'] and input_type_cond['interleaved_output'] == 'yes'</filter>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
228 </data>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
229 <data name="output_singleton_truncated" format="fastqsanger" label="${tool.name} on ${on_string} (singleton truncated)">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
230 <filter>'output_singleton' in output_select</filter>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
231 </data>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
232 <data name="output_collapsed" format="fastqsanger" label="${tool.name} on ${on_string} (collapsed)">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
233 <filter>'output_collapsed' in output_select</filter>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
234 </data>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
235 <data name="output_collapsed_truncated" format="fastqsanger" label="${tool.name} on ${on_string} (collapsed truncated)">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
236 <filter>'output_collapsed_truncated' in output_select</filter>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
237 </data>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
238 <data name="output_discarded" format="fastqsanger" label="${tool.name} on ${on_string} (discarded)">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
239 <filter>'output_discarded' in output_select</filter>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
240 </data>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
241 </outputs>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
242 <tests>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
243 <!-- Single dataset input, all defaults -->
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
244 <test expect_num_outputs="2">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
245 <param name="read1" ftype="fastqsanger.gz" value="reads1.fastq.gz"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
246 <output name="output_settings" ftype="txt">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
247 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
248 <has_size value="2117" delta="10"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
249 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
250 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
251 <has_text text="AdapterRemoval"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
252 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
253 </output>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
254 <output name="output_truncated" ftype="fastqsanger">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
255 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
256 <has_size value="100731"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
257 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
258 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
259 <has_text text="@read_150_1/1"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
260 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
261 </output>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
262 </test>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
263 <!-- Dataset pair input, all defaults -->
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
264 <test expect_num_outputs="3">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
265 <param name="input_type" value="pair"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
266 <param name="read1" ftype="fastqsanger.gz" value="reads1.fastq.gz"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
267 <param name="read2" ftype="fastqsanger.gz" value="reads2.fastq.gz"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
268 <output name="output_settings" ftype="txt">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
269 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
270 <has_size value="2594" delta="10"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
271 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
272 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
273 <has_text text="AdapterRemoval"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
274 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
275 </output>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
276 <output name="output_forward_truncated" ftype="fastqsanger">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
277 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
278 <has_size value="101161"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
279 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
280 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
281 <has_text text="@read_150_1/1"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
282 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
283 </output>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
284 <output name="output_reverse_truncated" ftype="fastqsanger">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
285 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
286 <has_size value="101161"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
287 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
288 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
289 <has_text text="@read_150_1/2"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
290 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
291 </output>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
292 </test>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
293 <!-- Dataset pair input, all defaults, interleaved output -->
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
294 <test expect_num_outputs="2">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
295 <param name="input_type" value="pair"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
296 <param name="read1" ftype="fastqsanger.gz" value="reads1.fastq.gz"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
297 <param name="read2" ftype="fastqsanger.gz" value="reads2.fastq.gz"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
298 <param name="interleaved_output" value="yes"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
299 <output name="output_settings" ftype="txt">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
300 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
301 <has_size value="2593" delta="10"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
302 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
303 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
304 <has_text text="AdapterRemoval"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
305 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
306 </output>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
307 <output name="output_interleaved_truncated" ftype="fastqsanger">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
308 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
309 <has_size value="202322"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
310 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
311 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
312 <has_text text="@read_150_1/1"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
313 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
314 </output>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
315 </test>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
316 <!-- Collection of dataset pairs input, all defaults -->
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
317 <test expect_num_outputs="3">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
318 <param name="input_type" value="paired"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
319 <param name="reads_collection">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
320 <collection type="paired">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
321 <element name="forward" ftype="fastqsanger.gz" value="reads1.fastq.gz"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
322 <element name="reverse" ftype="fastqsanger.gz" value="reads2.fastq.gz"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
323 </collection>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
324 </param>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
325 <output name="output_settings" ftype="txt">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
326 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
327 <has_size value="2594" delta="10"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
328 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
329 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
330 <has_text text="AdapterRemoval"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
331 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
332 </output>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
333 <output name="output_forward_truncated" ftype="fastqsanger">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
334 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
335 <has_size value="101161"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
336 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
337 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
338 <has_text text="@read_150_1/1"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
339 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
340 </output>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
341 <output name="output_reverse_truncated" ftype="fastqsanger">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
342 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
343 <has_size value="101161"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
344 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
345 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
346 <has_text text="@read_150_1/2"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
347 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
348 </output>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
349 </test>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
350 <!-- Dataset pair input, all defaults, all optional outputs checked -->
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
351 <test expect_num_outputs="7">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
352 <param name="input_type" value="pair"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
353 <param name="read1" ftype="fastqsanger.gz" value="reads1.fastq.gz"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
354 <param name="read2" ftype="fastqsanger.gz" value="reads2.fastq.gz"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
355 <param name="output_select" value="output_singleton,output_collapsed,output_collapsed_truncated,output_discarded"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
356 <output name="output_settings" ftype="txt">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
357 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
358 <has_size value="2594" delta="10"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
359 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
360 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
361 <has_text text="AdapterRemoval"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
362 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
363 </output>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
364 <output name="output_forward_truncated" ftype="fastqsanger">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
365 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
366 <has_size value="101161"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
367 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
368 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
369 <has_text text="@read_150_1/1"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
370 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
371 </output>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
372 <output name="output_reverse_truncated" ftype="fastqsanger">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
373 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
374 <has_size value="101161"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
375 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
376 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
377 <has_text text="@read_150_1/2"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
378 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
379 </output>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
380 <output name="output_singleton_truncated" ftype="fastqsanger">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
381 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
382 <has_size value="0"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
383 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
384 </output>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
385 <output name="output_collapsed" ftype="fastqsanger">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
386 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
387 <has_size value="0"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
388 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
389 </output>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
390 <output name="output_collapsed_truncated" ftype="fastqsanger">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
391 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
392 <has_size value="0"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
393 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
394 </output>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
395 <output name="output_discarded" ftype="fastqsanger">
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
396 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
397 <has_size value="270"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
398 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
399 <assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
400 <has_text text="@read_150_57/1"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
401 </assert_contents>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
402 </output>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
403 </test>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
404 </tests>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
405 <help>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
406 **What it does**
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
407
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
408 Searches for and removes adapter sequences from high-throughput sequencing (HTS) data and optionally trims low quality
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
409 bases from the 3' end of reads following adapter removal. This tool can analyze both single-end and paired-end data and
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
410 can be used to merge overlapping paired-end reads into longer consensus sequences. The tool can also construct a consensus
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
411 adapter sequence for paired-end reads.
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
412
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
413 The following outputs, some of which are optional or are only produced under certain scenarios, are produced.
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
414
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
415 * **settings** - File containing information on the parameters used in the run as well as verall statistics on the reads after trimming.
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
416 * **truncated** - File containing trimmed single-end reads.
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
417 * **forward truncated** - File containing trimmed mate1 reads.
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
418 * **reverse truncated** - File containing trimmed mate2 reads.
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
419 * **interleaved truncated** - File containing trimmed mate 2 reads when --interleaved-output is not enabled.
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
420 * **singleton truncated** - File containing trimmed paired reads for which the mate has been discarded.
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
421 * **collapsed** - If --collapsed is set, contains overlapping mate-pairs which have been merged into a single read (PE mode) or reads for which the adapter was identified by a minimum overlap, indicating that the entire template molecule is present. This does not include which have subsequently been trimmed due to low-quality or ambiguous nucleotides.
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
422 * **collapsed truncated** - Collapsed reads (see --outputcollapsed) which were trimmed due the presence of low-quality or ambiguous nucleotides.
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
423 * **discarded** - File containing reads discarded due to the --minlength, --maxlength or --maxns options.
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
424
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
425 **General Options**
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
426
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
427 * **Attempt to build a consensus adapter sequence from fully overlapping pairs of paired-end reads** - The minimum overlap is controlled by --minalignmentlength. The result will be compared with the values set using --adapter1 and --adapter2. No trimming is performed in this mode.
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
428
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
429 **FASTQ Trimming Options**
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
430
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
431 * **Adapter sequence expected to be found in mate 1/2 reads, specified in read direction** - For a detailed description of how to provide the appropriate adapter sequences, see the "Adapters" section of the online documentation.
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
432 * **Tabular file containing adapter sequences** - The first two columns of each line in the file are expected to correspond to values passed to --adapter1 and --adapter2. In single-end mode, only column one is required. Lines starting with # are ignored. When multiple rows are found in the table, AdapterRemoval will try each adapter (pair), and select the best aligning adapters for each FASTQ read processed.
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
433 * **Trim reads only if the overlap between read and the adapter is at least this number of bases long** - In single-end mode, reads are only trimmed if the overlap between read and the adapter is at least X bases long, not counting ambiguous nucleotides (N); this is independent of the --minalignmentlength when using --collapse, allowing a conservative selection of putative complete inserts in single-end mode, while ensuring that all possible adapter contamination is trimmed.
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
434 * **The fraction of mismatches allowed in the aligned region** - The allowed fraction of mismatches allowed in the aligned region. If the value is less than 1, then the value is used directly. If --mismatchrate is greater than 1, the rate is set to 1 / --mismatchrate. The default setting is 3 when trimming adapters, corresponding to a maximum mismatch rate of 1/3, and 10 when using --identify-adapters.
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
435 * **Slip the alignment by this number of bases in the 5' end to allow for missing bases in the 5' end of the read** - To allow for missing bases in the 5' end of the read, the program can let the alignment slip --shift bases in the 5' end. This corresponds to starting the alignment maximum --shift nucleotides into read2 (for paired-end) or the adapter (for single-end).
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
436 * **Trim the 5' of reads by a fixed amount after removing adapters, but before carrying out quality based trimming** - Trim the 5' of reads by a fixed amount after removing adapters, but before carrying out quality based trimming. Specify one value to trim mate 1 and mate 2 reads the same amount, or two values separated by a space to trim each mate different amounts.
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
437 * **Trim the 3' of reads by a fixed amount after removing adapters, but before carrying out quality based trimming** - Trim the 3' of reads by a fixed amount. See the descriptiuon of thetrim5p parameter immediately above.
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
438 * **Trim consecutive Ns from the 5' and 3' termini** - If quality trimming is also enabled (--trimqualities), then stretches of mixed low-quality bases and/or Ns are trimmed.
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
439 * **Window based quality trimming** - If window_size is greater than or equal to 1, that number is used as the window size for all reads. If window_size is greater than or equal to 0 and less than 1, then that number is multiplied by the length of individual reads to determine the window size. If the window length is zero or is greater than the current read length, then the read length is used instead. Reads are trimmed as follows for a given window size:
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
440
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
441 1. The new 5' is determined by locating the first window where both the average quality and the quality of the first base in the window is greater than --minquality.
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
442 2. The new 3' is located by sliding the first window right, until the average quality becomes less than or equal to --minquality. The new 3' is placed at the last base in that window where the quality is greater than or equal to --minquality.
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
443 3. If no 5' position could be determined, the read is discarded.
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
444
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
445 **FASTQ Merging Options**
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
446
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
447 * **Output complete reads with an 'M\_' name prefix and trimmed reads with an 'MT\_' name prefix** - In paired-end mode, merge overlapping mates into a single and recalculate the quality scores. In single-end mode, attempt to identify templates for which the entire sequence is available. In both cases, complete "collapsed" reads are written with a 'M\_' name prefix, and "collapsed" reads which are trimmed due to quality settings are written with a 'MT\_' name prefix. The overlap needs to be at least --minalignmentlength nucleotides, with a maximum number of mismatches determined by --mm.
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
448 * **Collapse deterministically** - Enable deterministic mode; currently only affects --collapse, different overlapping bases with equal quality are set to N quality 0, instead of being randomly sampled. Setting this option also sets --collapse.
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
449 * **Collapse conservatively** - Alternative merging algorithm inspired by FASTQ-join: For matching overlapping bases, the highest quality score is used. For mismatching overlapping bases, the highest quality base is used and the quality is set to the absolute difference in Phred-score between the two bases. For mismatching bases with identical quality scores, the base is set to 'N' and the quality score to 0 (Phred-encoded). Setting this option also sets --collapse.
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
450 </help>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
451 <expand macro="citations"/>
04d05400d3a6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ commit 138d7e0d844a783f1e8100d264d57540199f290f"
iuc
parents:
diff changeset
452 </tool>