13
|
1 <tool id="repeatexplorer2" name="RepeatExplorer2 clustering: " version="2.3.8.1" >
|
2
|
2 <stdio>
|
|
3 <regex match="lastdb: can't open file: NEAR" source="stderr" level="fatal" description="Version of last is too old, use ver 956 or higher\n" />
|
|
4 <regex match="Traceback" source="stderr" level="fatal" description="Unknown error" />
|
|
5 <regex match="error" source="stderr" level="fatal" description="Unknown error" />
|
|
6 <regex match="Warning" source="stderr" level="warning" description="Unknown error" />
|
|
7 <exit_code range="1:" level="fatal" description="Error" />
|
|
8 </stdio>
|
|
9 <description>Improved version or repeat discovery and characterization using graph-based sequence clustering</description>
|
|
10 <requirements>
|
6
|
11 <container type="singularity">library://repeatexplorer/default/repex_tarean:0.3.8-dbaa07f</container>
|
2
|
12 </requirements>
|
4
|
13 <command>
|
2
|
14 export PYTHONHASHSEED=0;
|
4
|
15 seqclust --sample ${read_sampling.sample} --output_dir=tarean_output --logfile=${log} --cleanup $paired --taxon $taxon
|
2
|
16
|
|
17 #if $advanced_options.advanced:
|
|
18 --mincl $advanced_options.size_threshold $advanced_options.keep_names $advanced_options.automatic_filtering -D $advanced_options.blastx.options_blastx
|
|
19 --assembly_min $advanced_options.assembly_min_cluster_size
|
|
20
|
|
21 #if $advanced_options.comparative.options_comparative:
|
|
22 --prefix_length $advanced_options.comparative.prefix_length
|
|
23 #end if
|
|
24
|
|
25 #if $advanced_options.custom_library.options_custom_library:
|
|
26 -d $advanced_options.custom_library.library extra_database
|
|
27 #end if
|
|
28
|
|
29 #if $advanced_options.options.options:
|
|
30 -opt $advanced_options.options.options
|
|
31 #end if
|
|
32 #end if
|
|
33 ${FastaFile} >stdout.log 2> stderr.log ;
|
|
34 echo "STDOUT CONTENT:" >> ${log} ;
|
|
35 cat stdout.log >> ${log} ;
|
|
36 echo "STDERR CONTENT:" >> ${log};
|
|
37 cat stderr.log >> ${log} &&
|
4
|
38 /opt/repex_tarean/stderr_filter.py stderr.log &&
|
2
|
39 cd tarean_output &&
|
|
40 zip -r ${ReportArchive}.zip * &&
|
9
|
41 mv ${ReportArchive}.zip ${ReportArchive} &&
|
2
|
42 cp index.html ${ReportFile} &&
|
10
|
43 mkdir -p ${ReportFile.extra_files_path} &&
|
|
44 cp -r --parents libdir ${ReportFile.extra_files_path} &&
|
|
45 cp -r --parents seqclust/clustering/superclusters ${ReportFile.extra_files_path} &&
|
|
46 cp -r --parents seqclust/clustering/clusters ${ReportFile.extra_files_path} &&
|
|
47 cp seqclust/clustering/hitsort.cls ${ReportFile.extra_files_path}/seqclust/clustering/hitsort.cls &&
|
|
48 cp *.png ${ReportFile.extra_files_path}/ &&
|
|
49 cp *.csv ${ReportFile.extra_files_path}/ &&
|
|
50 cp *.html ${ReportFile.extra_files_path}/ &&
|
|
51 cp *.css ${ReportFile.extra_files_path}/ &&
|
|
52 cp *.fasta ${ReportFile.extra_files_path}/ 2>>$log && rm -r ../tarean_output || :
|
2
|
53
|
|
54 </command>
|
|
55 <inputs>
|
|
56 <param name="FastaFile" label="NGS reads" type="data" format="fasta"
|
|
57 help="Input file must contain FASTA-formatted NGS reads. Illumina paired-end reads are recommended."/>
|
|
58 <param name="paired" type="boolean" truevalue="--paired" falsevalue="" checked="True" label="Paired-end reads" help="If paired-end reads are used, left- and right-hand reads must be interlaced and all pairs must be complete. Example of the correct format is provided in the help below." />
|
|
59
|
|
60 <conditional name="read_sampling">
|
|
61 <param name="do_sampling" type="boolean" truevalue="true" falsevalue="false" checked="False" label="Read sampling" help="Use this option if you want to analyze only a part of the reads" />
|
|
62 <when value="false">
|
|
63 <!-- pass -->
|
|
64 <param name="sample" label="Sample size" hidden="True" type="integer" value="0" help="Number of analyzed reads"/>
|
|
65 </when>
|
|
66 <when value="true">
|
|
67 <param name="sample" label="Sample size" type="integer" value="500000" min="10000" help="Number of analyzed reads"/>
|
|
68 </when>
|
|
69 </conditional>
|
|
70
|
|
71
|
|
72 <param name="taxon" label="Select taxon and protein domain database version (REXdb)" type="select" help="Reference database of transposable element protein domains - REXdb - is used for annotation of repeats">
|
|
73 <option value="VIRIDIPLANTAE3.0" selected="true">Viridiplantae version 3.0 </option>
|
|
74 <option value="VIRIDIPLANTAE2.2" selected="true">Viridiplantae version 2.2</option>
|
|
75 <option value="METAZOA3.0" >Metazoa version 3.0</option>
|
|
76 <option value="METAZOA2.0" >Metazoa version 2.0</option>
|
|
77 <!-- Modify setting in config.py accordingly -->
|
|
78 </param>
|
|
79
|
|
80 <conditional name="advanced_options">
|
|
81 <param name="advanced" type="boolean" truevalue="true" falsevalue="false" checked="False" label="Advanced options" />
|
|
82 <when value="false">
|
|
83 <!-- pass -->
|
|
84 </when>
|
|
85 <when value="true">
|
|
86 <conditional name="comparative">
|
|
87 <param name="options_comparative" type="boolean" truevalue="true" falsevalue="false" checked="False" label="Perform comparative analysis" help="Use this options to analyze multiple samples simultaneously"/>
|
|
88 <when value="false">
|
|
89 <!-- do nothing here -->
|
|
90 </when>
|
|
91 <when value="true">
|
|
92 <param name="prefix_length" label="Group code length" type="integer" value="3" min="1" max="10" help="For comparative analysis, reads from different samples are distinguished by sample codes included as prefix to the read names. See example below."/>
|
|
93 </when>
|
|
94 </conditional>
|
|
95
|
|
96 <conditional name="blastx">
|
|
97 <param name="options_blastx" type="select" label="Select parameters for protein domain search">
|
|
98 <option value="BLASTX_W2" selected="false">blastx with word size 2 (the most sensitive, slowest)</option>
|
|
99 <option value="BLASTX_W3" selected="true">blastx with word size 3 (default)</option>
|
|
100 <option value="DIAMOND" selected="false">diamond program (the least sensitive, fastest)</option>
|
|
101 </param>
|
|
102 </conditional>
|
|
103
|
|
104 <conditional name="options">
|
|
105 <param name="options" type="select" label="Similarity search options">
|
|
106 <option value="ILLUMINA" selected="true">Default </option>
|
|
107 <option value="ILLUMINA_DUST_OFF" selected="false">Masking of low complexity repeats disabled </option>
|
|
108
|
|
109 <!-- <option value="ILLUMINA_SENSITIVE_MGBLAST" selected="false">Illumina reads, sensitive search (search parameters: mgblast, min PID 80, -W8) slow, experimental feature!</option> -->
|
|
110 <!-- <option value="ILLUMINA_SENSITIVE_BLASTPLUS" selected="false">Illumina reads, more sensitive search (search parameters: blastn, min PID 80, -W6) extremely slow, experimental feature!</option> -->
|
|
111 <!-- <option value="OXFORD_NANOPORE" selected="false"> -->
|
|
112 <!-- Pseudo short reads simulated from Oxford Nanopore data, experimental feature! -->
|
|
113 <!-- </option> -->
|
|
114 </param>
|
|
115 </conditional>
|
|
116
|
|
117 <conditional name="custom_library">
|
|
118 <param name="options_custom_library" type="boolean" truevalue="true" falsevalue="false" checked="False" label="Use custom repeat database"/>
|
|
119 <when value="false">
|
|
120 <!-- do nothing here -->
|
|
121 </when>
|
|
122 <when value="true">
|
|
123 <param name="library" format="fasta" type="data" label="Custom repeat database" help="The database should contain DNA sequences in FASTA format. The required format for sequence IDs is : '>reapeatname#class/subclass'"/>
|
|
124 </when>
|
|
125 </conditional>
|
|
126 <param name="size_threshold" label="Cluster size threshold for detailed analysis" type="float" value="0.01" min="0.0001" max="100" help ="Minimal size (as percentage of input reads) of the smallest cluster which is analyzed; clusters with less than 20 reads are not considered."/>
|
|
127 <param name="automatic_filtering" label="Perform automatic filtering of abundant satellite repeats" help="Automatic filtering identifies the most abundant tandem repeats and partially removes their reads from the analysis. This enables to analyze higher proportions of other less abundant repeats." type="boolean" truevalue="--automatic_filtering" falsevalue="" checked="false"/>
|
|
128 <param name="keep_names" label="Keep original read names" type="boolean" truevalue="--keep_names" falsevalue="" checked="false" help="By default, reads are renamed using integers. Use this option to keep original names."/>
|
|
129 <param name="assembly_min_cluster_size" type="integer" label="Minimal cluster size for assembly" value="5" min="2" max="100"/>
|
|
130 </when>
|
|
131 </conditional>
|
|
132
|
5
|
133 <conditional name="queue_definition">
|
|
134 <param name="queue_select" type="select" label="Select queue">
|
|
135 <option value="basic_fast_queue">basic (max runtime 2 days, 4 GB RAM)</option>
|
|
136 <option value="long_slow_queue">long (max runtime 2 weeks, 64 GB RAM)</option>
|
|
137 <option value="extra_long_slow_queue">extra long (max runtime 4 weeks, 64 GB RAM)</option>
|
|
138 </param>
|
|
139 <when value="basic_fast_queue">
|
|
140 <param name="queue_specification" type="text" label="Modify parameters (optional)"
|
|
141 value="-l select=1:ncpus=10:mem=32gb:scratch_local=50gb -l walltime=48:00:00 -q elixirre@pbs.elixir-czech.cz -v TAREAN_MAX_MEM=4000000,TAREAN_CPU=4" />
|
|
142 </when>
|
|
143
|
|
144 <when value="long_slow_queue">
|
|
145 <param name="queue_specification" type="text" label="Modify parameters (optional)"
|
|
146 value="-l select=1:ncpus=16:mem=112gb:scratch_local=50gb -l walltime=336:00:00 -q elixirre@pbs.elixir-czech.cz -v TAREAN_MAX_MEM=64000000,TAREAN_CPU=15" />
|
|
147 </when>
|
|
148 <when value="extra_long_slow_queue">
|
|
149 <param name="queue_specification" type="text" label="Modify parameters (optional)"
|
|
150 value="-l select=1:ncpus=16:mem=112gb:scratch_local=50gb -l walltime=720:00:00 -q elixirre@pbs.elixir-czech.cz -v TAREAN_MAX_MEM=64000000,TAREAN_CPU=15" />
|
|
151 </when>
|
|
152 </conditional>
|
|
153
|
|
154
|
2
|
155
|
|
156 </inputs>
|
|
157 <outputs>
|
|
158 <data name="log" format="txt" label="RepeatExplorer2 - log file"/>
|
|
159 <data name="ReportArchive" format="zip" label="RepeatExplorer2 - Archive with HTML report from data ${FastaFile.hid}"/>
|
|
160 <data name="ReportFile" format="html" label="RepeatExplorer2 - HTML report from data ${FastaFile.hid}"/>
|
|
161 </outputs>
|
|
162
|
|
163 <help>
|
|
164 **HELP**
|
|
165
|
|
166 RepeatExplorer2 clustering is a computational pipeline for unsupervised
|
|
167 identification of repeats from unassembled sequence reads. The
|
|
168 pipeline uses low-pass whole genome sequence reads and performs graph-based
|
|
169 clustering. Resulting clusters, representing all types of repeats, are then
|
|
170 examined to identify and classify into repeats groups.
|
|
171
|
|
172 **Input data**
|
|
173
|
|
174 The analysis requires either **single** or **paired-end reads** generated
|
|
175 by whole genome shotgun sequencing provided as a single fasta-formatted file.
|
|
176 Generally, paired-end reads provide significantly better results than single
|
|
177 reads. Reads should be of uniform length (optimal size range is 100-200 nt) and
|
|
178 the number of analyzed reads should represent less than 1x genome equivalent
|
|
179 (genome coverage of 0.01 - 0.50 x is recommended). Reads should be
|
|
180 quality-filtered (recommended filtering : quality score >=10 over 95% of bases
|
|
181 and no Ns allowed) and only **complete read pairs** should be submitted for
|
|
182 analysis. When paired reads are used, input data must be **interlaced** format
|
|
183 as fasta file:
|
|
184
|
|
185 example of interlaced input format::
|
|
186
|
|
187 >0001_f
|
|
188 CGTAATATACATACTTGCTAGCTAGTTGGATGCATCCAACTTGCAAGCTAGTTTGATG
|
|
189 >0001_r
|
|
190 GATTTGACGGACACACTAACTAGCTAGTTGCATCTAAGCGGGCACACTAACTAACTAT
|
|
191 >0002_f
|
|
192 ACTCATTTGGACTTAACTTTGATAATAAAAACTTAAAAAGGTTTCTGCACATGAATCG
|
|
193 >0002_r
|
|
194 TATGTTGAAAAATTGAATTTCGGGACGAAACAGCGTCTATCGTCACGACATAGTGCTC
|
|
195 >0003_f
|
|
196 TGACATTTGTGAACGTTAATGTTCAACAAATCTTTCCAATGTCTTTTTATCTTATCAT
|
|
197 >0003_r
|
|
198 TATTGAAATACTGGACACAAATTGGAAATGAAACCTTGTGAGTTATTCAATTTATGTT
|
|
199 ...
|
|
200
|
|
201
|
|
202 **Comparative analysis**
|
|
203
|
|
204 For comparative analysis sequence names must contain code (prefix) for each group.
|
|
205 Prefix in sequences names must be of fixed length.
|
|
206
|
|
207 Example of labeling two groups with where **group code length** is 2 and is used to distinguish groups - AA and BB ::
|
|
208
|
|
209 >AA0001_f
|
|
210 CGTAATATACATACTTGCTAGCTAGTTGGATGCATCCAACTTGCAAGCTAGTTTGATG
|
|
211 >AA0001_r
|
|
212 GATTTGACGGACACACTAACTAGCTAGTTGCATCTAAGCGGGCACACTAACTAACTAT
|
|
213 >AA0002_f
|
|
214 ACTCATTTGGACTTAACTTTGATAATAAAAACTTAAAAAGGTTTCTGCACATGAATCG
|
|
215 >AA0002_r
|
|
216 TATGTTGAAAAATTGAATTTCGGGACGAAACAGCGTCTATCGTCACGACATAGTGCTC
|
|
217 >BB0001_f
|
|
218 TGACATTTGTGAACGTTAATGTTCAACAAATCTTTCCAATGTCTTTTTATCTTATCAT
|
|
219 >BB0001_r
|
|
220 TATTGAAATACTGGACACAAATTGGAAATGAAACCTTGTGAGTTATTCAATTTATGTT
|
|
221 >BB0002_f
|
|
222 TGACATTTGTGAACGTTAATGTTCAACAAATCTTTCCAATGTCTTTTTATCTTATCAT
|
|
223 >BB0002_r
|
|
224 TATTGAAATACTGGACACAAATTGGAAATGAAACCTTGTGAGTTATTCAATTTATGTT
|
|
225
|
|
226
|
|
227 To prepare quality filtered and interlaced input fasta file from fastq
|
|
228 files, use `Preprocessing of paired-reads`__ tool.
|
|
229
|
|
230 .. __: tool_runner?tool_id=paired_fastq_filtering
|
|
231
|
|
232
|
|
233 **Additional parameters**
|
|
234
|
|
235 **Sample size** defines how many reads should be used in calculation.
|
|
236 Default setting with 500,000 reads will enable detection of high copy
|
|
237 repeats within several hours of computation time. For higher
|
|
238 sensitivity the sample size can be set higher. Since sample size affects
|
|
239 the memory usage, this parameter may be automatically adjusted to lower
|
|
240 value during the run. Maximum sample size which can be processed depends on
|
|
241 the repetitiveness of analyzed genome.
|
|
242
|
|
243
|
|
244 **Select taxon and protein domain database version (REXdb)**. Classification
|
|
245 of transposable elements is based on the similarity to our reference database
|
|
246 of transposable element protein domains (**REXdb**). Standalone database for Viridiplantae species
|
|
247 can be obtained on `repeatexplorer.org`__. Classification
|
|
248 system used in REXdb is described in article `Systematic survey of plant
|
|
249 LTR-retrotransposons elucidates phylogenetic relationships of their
|
|
250 polyprotein domains and provides a reference for element classification`__
|
|
251 Database for Metazoa species is still under development so use it with caution.
|
|
252
|
|
253 .. __: http://repeatexplorer.org
|
|
254 .. __: https://doi.org/10.1186/s13100-018-0144-1
|
|
255
|
|
256 **Select parameters for protein domain search** REXdb is compared with s
|
|
257 equence clusters either using blastx or diamond aligner. Diamond program
|
|
258 is about three time faster than blastx with word size 3.
|
|
259
|
|
260 **Similarity search options** By default sequence reads are compared using
|
|
261 mgblast program. Default threshold is explicitly set to 90% sequence
|
|
262 similarity spanning at least 55% of the read length (in the case of reads
|
|
263 differing in length it applies to the longer one). Additionally, sequence
|
|
264 overlap must be at least 55 nt. If you select option for shorter reads
|
|
265 than 100 nt, minimum overlap 55 nt is not required.
|
|
266
|
|
267 By default,
|
|
268 mgblast search use DUST program to filter out
|
|
269 low-complexity sequences. If you want
|
|
270 to increase sensitivity of detection of satellites with shorter monomer
|
|
271 use option with '*no masking of low complexity repeats*'. Note that omitting
|
|
272 DUST filtering will significantly increase running times
|
|
273
|
|
274
|
|
275 **Automatic filtering of abundant satellite repeats** perform clustering on
|
|
276 smaller dataset of sequence reads to detect abundant high confidence
|
|
277 satellite repeats. If such satellites are detected, sequence reads derived
|
|
278 from these satellites are depleted from input dataset. This step enable more
|
|
279 sensitive detection of less abundant repeats as more reads can be used
|
|
280 in clustering step.
|
|
281
|
|
282 **Use custom repeat database**. This option allows users to perform similarity
|
|
283 comparison of identified repeats to their custom databases. The repeat class must
|
|
284 be encoded in FASTA headers of database entries in order to allow correct
|
|
285 parsing of similarity hits. Required format for custom database sequence name is: ::
|
|
286
|
|
287 >reapeatname#class/subclass
|
|
288
|
|
289
|
|
290 **Output**
|
|
291
|
|
292 List of clusters identified as putative satellite repeats, their genomic
|
|
293 abundance and various cluster characteristics.
|
|
294
|
|
295 Output includes a **HTML summary** with table listing of all analyzed
|
|
296 clusters. More detailed information about clusters is provided in
|
|
297 additional files and directories. All results are also provided as
|
|
298 downloadable **zip archive**. Additionally a **log file** reporting
|
|
299 the progress of the computational pipeline is provided.
|
|
300
|
|
301 </help>
|
|
302
|
|
303 </tool>
|