annotate circexplorer2.xml @ 0:465d6578b4d0 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
author iuc
date Fri, 26 Aug 2022 22:43:38 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
1 <tool id="circexplorer2" name="CIRCexplorer2" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="21.05">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
2 <description>circular RNA analysis</description>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
3 <macros>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
4 <import>macros.xml</import>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
5 </macros>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
6 <expand macro="requirements" />
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
7 <expand macro='xrefs'/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
8 <command detect_errors="exit_code"><![CDATA[
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
9 #if $mode.selector == 'align'
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
10 mkdir -p reads &&
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
11 #set file_paths = []
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
12 #for $i,$input_file in enumerate($mode.fastq)
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
13 #set $fname = 'file' + str($i) + "." + $input_file.ext
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
14 #set $file_path = 'reads/' + $fname
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
15 ln -s '$input_file' '$file_path' &&
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
16 $file_paths.append($file_path)
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
17 #end for
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
18 CIRCexplorer2 align
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
19 @threads@
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
20 --gtf '$mode.gtf'
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
21 -g '$mode.genome'
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
22 --fastq #echo ','.join($file_paths)#
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
23 $mode.bw
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
24 $mode.scale
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
25 $mode.skip_tophat
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
26 $mode.skip_tophat_fusion
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
27 && tar -zcvf alignment.tgz './alignment'
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
28 #else if $mode.selector == 'parse'
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
29 CIRCexplorer2 parse
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
30 -t $mode.aligner.selector
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
31 $mode.aligner.fusion_file
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
32 #if $mode.aligner.selector == 'TopHat-Fusion'
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
33 $mode.aligner.pe
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
34 #end if
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
35 $mode.aligner.f
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
36 #else if $mode.selector == 'annotate'
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
37 ln -s $mode.genome reference_genome.fa &&
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
38 CIRCexplorer2 annotate
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
39 -r $mode.ref
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
40 -g reference_genome.fa
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
41 -b $mode.bed
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
42 $mode.no_fix
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
43 $mode.low_confidence
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
44 #else if $mode.selector == 'assemble'
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
45 tar -zxf $mode.tophat &&
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
46 CIRCexplorer2 assemble
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
47 @threads@
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
48 -r $mode.ref
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
49 -m ./alignment
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
50 $mode.remove_rRNA
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
51 && tar -zcvf assemble.tgz './assemble'
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
52 #else
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
53 ln -s '$mode.genome' reference_genome.fa &&
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
54 #if $mode.assemble_file.ext.endswith(".gz")
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
55 tar -zxf $mode.assemble_file &&
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
56 #else
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
57 tar -xf $mode.assemble_file &&
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
58 #end if
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
59 #if $mode.as_option.selector == 'enabled'
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
60 tar -zxf $mode.as_option.tophat &&
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
61 #end if
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
62 CIRCexplorer2 denovo
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
63 -d ./assemble
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
64 -r $mode.ref
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
65 -b $mode.bed
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
66 -g reference_genome.fa
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
67 #if $mode.abs
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
68 --abs 'abs'
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
69 #end if
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
70 #if $mode.as_option.selector == 'enabled'
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
71 --as 'as'
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
72 $mode.as_option.type_mapping './alignment'
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
73 #end if
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
74 $mode.no_fix
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
75 $mode.rpkm
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
76 #end if
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
77 ]]></command>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
78 <inputs>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
79 <conditional name="mode">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
80 <param name="selector" type="select"
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
81 label="Tool module" help="CIRCexplorer2 contains 5 modules. Each module
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
82 functions as an independent component owning its distinctive duty.
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
83 Meanwhile, they inteact with each other, and different circular RNA
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
84 analysis pipelines are derived from different combinations of several
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
85 modules.">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
86 <option value="align">Align: Map circular RNA junction reads with TopHat2/TopHat-Fusion</option>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
87 <option value="parse">Parse: Parse fusion junction information from other aligners</option>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
88 <option value="annotate">Annotate: Annotate circular RNA junction reads with gene annotations</option>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
89 <option value="assemble">Assemble: Assemble transcriptome for circular RNAs</option>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
90 <option value="denovo">De novo: Fetch de novo circular RNA isoforms</option>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
91 </param>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
92 <when value="align">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
93 <param argument="--gtf" type="data" format="gtf" label="Annotation GTF file" />
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
94 <expand macro="genome_file"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
95 <param argument="--fastq" type="data" format="fastq,fastqsanger,fastq.gz,fastqsanger.gz" multiple="true" label="RNA-seq FASTQ file(s)"
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
96 help="Only single-read RNA-seq is supported. It is recommended to convert paired-end RNA-seq to single-read RNA-seq before alignment"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
97 <param argument="--bw" type="boolean" truevalue="--bw" falsevalue="" checked="false"
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
98 label="Create BigWig file" help=" It will not consider strand information of read alignment"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
99 <param argument="--scale" type="boolean" truevalue="--scale" falsevalue="" checked="false"
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
100 label="Scale BigWig to HPB" help="Expression levels will be scaled to hits per billion-mapped-bases (HPB)" />
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
101 <param argument="--skip-tophat" type="boolean" truevalue="--skip-tophat" falsevalue="" checked="false"
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
102 label="Skip TopHat mapping" help="CIRexplorer2 aligns reads onto genome and transcriptome using TopHat2 to
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
103 reduce false positive reads aligned in the TopHat-Fusion alignment step" />
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
104 <param argument="--skip-tophat-fusion" type="boolean" truevalue="--skip-tophat-fusion" falsevalue="" checked="false"
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
105 label="Skip TopHat fusion" help="It is useful for poly(A)+ RNA-seq" />
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
106 </when>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
107 <when value="parse">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
108 <conditional name="aligner">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
109 <param argument="-t" name="selector" type="select" label="Aligner"
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
110 help="CIRCexplorer2 parse could accept results derived from TopHat-Fusion,
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
111 STAR, MapSplice, BWA and segemehl.">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
112 <option value="TopHat-Fusion">TopHat-Fusion</option>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
113 <option value="STAR">STAR</option>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
114 <option value="MapSplice">MapSplice</option>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
115 <option value="BWA">BWA</option>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
116 <option value="segemehl">segemehl</option>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
117 </param>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
118 <when value="TopHat-Fusion">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
119 <expand macro="parse_fusion" format="bam" label="TopHat-Fusion file"
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
120 help="The required input file is accepted_hits.bam"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
121 <expand macro="parse_statistics"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
122 <param argument="--pe" type="boolean" truevalue="--pe" falsevalue="" checked="false" label="Paired-end aligner file"
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
123 help="Parse paired-end alignment file. If this is set, then -f is set automatically." />
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
124 </when>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
125 <when value="STAR">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
126 <expand macro="parse_fusion" format="interval,tabular" label="STAR fusion file"
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
127 help="The required input file is Chimeric.out.junction"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
128 <expand macro="parse_statistics"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
129 </when>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
130 <when value="MapSplice">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
131 <expand macro="parse_fusion" format="txt" label="MapSplice fusion file"
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
132 help="The required input file is fusions_raw.txt"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
133 <expand macro="parse_statistics"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
134 </when>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
135 <when value="BWA">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
136 <expand macro="parse_fusion" format="sam" label="BWA fusion file"
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
137 help="The required input file is the output sam file"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
138 <expand macro="parse_statistics"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
139 </when>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
140 <when value="segemehl">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
141 <expand macro="parse_fusion" format="bed" label="segemehl fusion file"
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
142 help="The required input file is splicesites.bed"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
143 <expand macro="parse_statistics"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
144 </when>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
145 </conditional>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
146 </when>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
147 <when value="annotate">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
148 <expand macro="annotation_file"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
149 <expand macro="genome_file"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
150 <expand macro="junction_file"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
151 <param argument="--no-fix" type="boolean" truevalue="--no-fix" falsevalue="" checked="false" label="No fix mode"
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
152 help="When enabled, realignment step of fusion junction reads will be skipped. It is useful for species with
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
153 poor gene annotations, but the accuracy of circular RNA prediction would decrease." />
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
154 <param argument="--low-confidence" type="boolean" truevalue="--low-confidence" falsevalue="" checked="false" label="Low confidence"
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
155 help="By default, it extracts fusion junction reads exactly matching the boundaries of exons of the same isoform by default.
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
156 If you set the --low-confidence, it will also extract fusion junction reads matching the boundaries of exons of the different
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
157 isofoms of the same gene" />
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
158 </when>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
159 <when value="assemble">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
160 <expand macro="annotation_file"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
161 <expand macro="tophat_file"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
162 <param argument="--remove-rRNA" type="boolean" truevalue="--remove-rRNA" falsevalue="" checked="false"
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
163 label="Remove rRNA" help="Ignore rRNA during assembling (only for human hg19)" />
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
164 </when>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
165 <when value="denovo">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
166 <expand macro="annotation_file"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
167 <expand macro="junction_file"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
168 <expand macro="genome_file"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
169 <param name="assemble_file" type="data" format="tgz,tar" label="Assemble file"
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
170 help="Generated by the module CIRCexplorer2 assemble" />
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
171 <param argument="--abs" type="boolean" truevalue="--abs" falsevalue="" checked="false"
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
172 label="Detect alternative back-splicing" help="When set, it will characterize the
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
173 alternative back-splicing of circular RNAs" />
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
174 <conditional name="as_option">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
175 <param name="selector" type="select" label="Characterize alternative splicing of cirRNAs"
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
176 help="If enabled, it will characterize the alternative splicing of circular RNAs, including
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
177 cassette exons, retained introns, A5SS and A3SS">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
178 <option value="disabled">Disabled</option>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
179 <option value="enabled">Enabled</option>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
180 </param>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
181 <when value="disabled"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
182 <when value="enabled">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
183 <expand macro="tophat_file"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
184 <param name="type_mapping" type="select" label="Type of mapping"
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
185 help="In this mode, you should also offer the path of TopHat mapping directory for
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
186 p(A)-/p(A)+ RNA-seq via -m/-n option">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
187 <option value="-m">p(A)-</option>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
188 <option value="-n">p(A)+ RNA-seq</option>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
189 </param>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
190 </when>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
191 </conditional>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
192 <param argument="--no-fix" type="boolean" truevalue="--no-fix" falsevalue="" checked="false" label="No-fix mode"
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
193 help="If enabled, realignment step of fusion junction reads will be skipped. It is useful for species with
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
194 poor gene annotations, but the accuracy of circular RNA prediction would decrease." />
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
195 <param argument="--rpkm" type="boolean" truevalue="--rpkm" falsevalue="" checked="false" label="Calculate RPKM for cassete exons"
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
196 help="If enabled, RPKM of cassette exons would be calculated" />
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
197 </when>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
198 </conditional>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
199 </inputs>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
200 <outputs>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
201 <data name="alignment" format="tgz" from_work_dir="alignment.tgz" label="${tool.name} on ${on_string}: alignment file ">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
202 <filter>mode['selector'] == 'align'</filter>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
203 </data>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
204 <data name="fusion_junction_bw" format="bigwig" from_work_dir="./alignment/tophat/accepted_hits.bw" label="${tool.name} on ${on_string}: BigWig">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
205 <filter>mode['selector'] == 'align'</filter>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
206 <filter>mode['bw']</filter>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
207 </data>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
208 <data name="parse" format="bed" from_work_dir="back_spliced_junction.bed" label="${tool.name} on ${on_string}: back spliced junction (BED)">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
209 <filter>mode['selector'] == 'parse'</filter>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
210 </data>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
211 <data name="annotate" format="tabular" from_work_dir="circularRNA_known.txt" label="${tool.name} on ${on_string}: circRNA known">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
212 <filter>mode['selector'] == 'annotate'</filter>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
213 </data>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
214 <data name="annotate_low" format="tabular" from_work_dir="low_conf_circularRNA_known.txt" label="${tool.name} on ${on_string}: Low confidence circRNA">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
215 <filter>mode['selector'] == 'annotate'</filter>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
216 <filter>mode['low_confidence']</filter>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
217 </data>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
218 <data name="assemble" format="tgz" from_work_dir="assemble.tgz" label="${tool.name} on ${on_string}: assemble file">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
219 <filter>mode['selector'] == 'assemble'</filter>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
220 </data>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
221 <data name="denovo_combined" format="tabular" from_work_dir="./denovo/combined_ref.txt" label="${tool.name} on ${on_string}: combined ref">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
222 <filter>mode['selector'] == 'denovo'</filter>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
223 </data>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
224 <data name="denovo_circularRNA" format="tabular" from_work_dir="./denovo/circularRNA_full.txt" label="${tool.name} on ${on_string}: circRNA full">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
225 <filter>mode['selector'] == 'denovo'</filter>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
226 </data>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
227 <data name="denovo_annotated" format="tabular" from_work_dir="./denovo/annotated_circ.txt" label="${tool.name} on ${on_string}: annotated circRNA">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
228 <filter>mode['selector'] == 'denovo'</filter>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
229 </data>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
230 <data name="denovo_novel" format="tabular" from_work_dir="./denovo/novel_circ.txt" label="${tool.name} on ${on_string}: novel circRNA">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
231 <filter>mode['selector'] == 'denovo'</filter>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
232 </data>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
233 <data name="denovo_abs5" format="tabular" from_work_dir="./abs/a5bs.txt" label="${tool.name} on ${on_string}: a5bs">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
234 <filter>mode['selector'] == 'denovo'</filter>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
235 <filter>mode['abs']</filter>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
236 </data>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
237 <data name="denovo_abs3" format="tabular" from_work_dir="./abs/a3bs.txt" label="${tool.name} on ${on_string}: a3bs">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
238 <filter>mode['selector'] == 'denovo'</filter>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
239 <filter>mode['abs']</filter>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
240 </data>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
241 <data name="denovo_all_exon" format="tabular" from_work_dir="./as/all_exon_info.txt" label="${tool.name} on ${on_string}: all exon info">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
242 <filter>mode['selector'] == 'denovo'</filter>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
243 <filter>mode['as_option'] == 'enabled'</filter>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
244 </data>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
245 <data name="denovo_all_intron" format="tabular" from_work_dir="./as/all_intron_info.txt" label="${tool.name} on ${on_string}: all intron info">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
246 <filter>mode['selector'] == 'denovo'</filter>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
247 <filter>mode['as_option'] == 'enabled'</filter>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
248 </data>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
249 <data name="denovo_a5ss" format="tabular" from_work_dir="./as/all_A5SS_info.txt" label="${tool.name} on ${on_string}: all A5SS info">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
250 <filter>mode['selector'] == 'denovo'</filter>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
251 <filter>mode['as_option'] == 'enabled'</filter>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
252 </data>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
253 <data name="denovo_a3ss" format="tabular" from_work_dir="./as/all_A3SS_info.txt" label="${tool.name} on ${on_string}: all A3SS info">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
254 <filter>mode['selector'] == 'denovo'</filter>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
255 <filter>mode['as_option'] == 'enabled'</filter>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
256 </data>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
257 </outputs>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
258 <tests>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
259 <test expect_num_outputs="1">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
260 <!--Test 01: Module align default options-->
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
261 <conditional name="mode">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
262 <param name="selector" value="align"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
263 <param name="gtf" value="annotation_01.gtf"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
264 <param name="genome" value="reference_01.fa"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
265 <param name="fastq" value="reads_01.fastq,reads_02.fastq,reads_03.fastq"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
266 <param name="skip_tophat_fusion" value="true"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
267 </conditional>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
268 <output name="alignment">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
269 <assert_contents>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
270 <has_size value="3426053" delta="5000"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
271 </assert_contents>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
272 </output>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
273 </test>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
274 <test expect_num_outputs="2">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
275 <!--Test 02: Module align compressed files-->
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
276 <conditional name="mode">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
277 <param name="selector" value="align"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
278 <param name="gtf" value="annotation_01.gtf"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
279 <param name="genome" value="reference_01.fa"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
280 <param name="fastq" value="reads_01.fastq.gz,reads_02.fastq.gz,reads_03.fastq.gz"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
281 <param name="skip_tophat_fusion" value="true"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
282 <param name="bw" value="true"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
283 <param name="scale" value="true"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
284 </conditional>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
285 <output name="alignment">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
286 <assert_contents>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
287 <has_size value="3435977" delta="5000"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
288 </assert_contents>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
289 </output>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
290 <output name="fusion_junction_bw" value="test_02.bigwig" ftype="bigwig"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
291 </test>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
292 <test expect_num_outputs="1">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
293 <!--Test 03: Module parse-->
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
294 <conditional name="mode">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
295 <param name="selector" value="parse"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
296 <conditional name="aligner">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
297 <param name="selector" value="MapSplice"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
298 <param name="fusion_file" value="mapsplice_chimeric.junction"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
299 </conditional>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
300 </conditional>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
301 <output name="parse" value="test_03.bed" ftype="bed"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
302 </test>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
303 <test expect_num_outputs="1">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
304 <!--Test 04: Module parse STAR-->
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
305 <conditional name="mode">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
306 <param name="selector" value="parse"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
307 <conditional name="aligner">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
308 <param name="selector" value="STAR"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
309 <param name="fusion_file" value="STAR_chimeric.junction"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
310 <param name="f" value="true"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
311 </conditional>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
312 </conditional>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
313 <output name="parse" value="test_04.bed" ftype="bed"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
314 </test>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
315 <test expect_num_outputs="1">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
316 <!--Test 05: Module annotate-->
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
317 <conditional name="mode">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
318 <param name="selector" value="annotate"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
319 <param name="ref" value="annotation_02.txt"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
320 <param name="genome" value="reference_02.fa"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
321 <param name="bed" value="test_04.bed"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
322 </conditional>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
323 <output name="annotate" value="test_05.tabular" ftype="tabular"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
324 </test>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
325 <test expect_num_outputs="2">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
326 <!--Test 06: Module annotate-->
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
327 <conditional name="mode">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
328 <param name="selector" value="annotate"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
329 <param name="ref" value="annotation_02.txt"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
330 <param name="genome" value="reference_02.fa"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
331 <param name="bed" value="test_04.bed"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
332 <param name="no_fix" value="true"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
333 <param name="low_confidence" value="true"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
334 </conditional>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
335 <output name="annotate" value="test_06.tabular" ftype="tabular"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
336 </test>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
337 <test expect_num_outputs="4">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
338 <!--Test 07: Module de novo-->
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
339 <conditional name="mode">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
340 <param name="selector" value="denovo"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
341 <param name="ref" value="annotation_02.txt"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
342 <param name="bed" value="test_04.bed"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
343 <param name="genome" value="reference_02.fa"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
344 <param name="assemble_file" value="assemble.tgz"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
345 </conditional>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
346 <output name="denovo_combined" value="test_07_combined.txt" ftype="tabular"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
347 <output name="denovo_circularRNA" value="test_07_full.txt" ftype="tabular"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
348 <output name="denovo_annotated" value="test_07_annotated.txt" ftype="tabular"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
349 <output name="denovo_novel" value="test_07_novel.txt" ftype="tabular"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
350 </test>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
351 <test expect_num_outputs="6">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
352 <!--Test 08: Module de novo additional options-->
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
353 <conditional name="mode">
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
354 <param name="selector" value="denovo"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
355 <param name="ref" value="annotation_02.txt"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
356 <param name="bed" value="test_04.bed"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
357 <param name="genome" value="reference_02.fa"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
358 <param name="assemble_file" value="assemble.tgz"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
359 <param name="abs" value="true"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
360 <param name="no_fix" value="true"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
361 <param name="rpkm" value="true"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
362 </conditional>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
363 <output name="denovo_combined" value="test_08_combined.txt" ftype="tabular"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
364 <output name="denovo_circularRNA" value="test_08_full.txt" ftype="tabular"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
365 <output name="denovo_annotated" value="test_08_annotated.txt" ftype="tabular"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
366 <output name="denovo_novel" value="test_08_novel.txt" ftype="tabular"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
367 <output name="denovo_abs5" value="test_08_a5bs.txt" ftype="tabular"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
368 <output name="denovo_abs3" value="test_08_a3bs.txt" ftype="tabular"/>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
369 </test>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
370 </tests>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
371 <help><![CDATA[
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
372
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
373 .. class:: infomark
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
374
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
375 **Purpose**
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
376
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
377 CIRCexplorer2 is a comprehensive and integrative circular RNA analysis toolset. It is the successor
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
378 of CIRCexplorer with plenty of new features to facilitate circular RNA identification and characterization.
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
379
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
380 -------------------
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
381
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
382 .. class:: infomark
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
383
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
384 **Features**
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
385
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
386 * Precisely annotate circular RNAs (Annotate)
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
387 * Support multiple circular RNA aligners (TopHat2/TopHat-Fusion, STAR, MapSplice, BWA and segemehl) (Align and Parse)
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
388 * De novo assemble novel circular RNA transcripts (Assemble)
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
389 * Characterize various of alternative (back-)splicing events of circular RNAs (Denovo)
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
390 * Fast identify circuar RNAs with STAR or BWA (Parse)
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
391 * Support both single-read and paired-end sequencing.
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
392
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
393 -------------------
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
394
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
395 .. class:: infomark
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
396
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
397 **Modules**
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
398
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
399 CIRCexplorer2 contains 5 modules. Each module functions as an independent component owning its distinctive duty.
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
400 Meanwhile, they inteact with each other, and different circular RNA analysis pipelines are derived from different
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
401 combinations of several modules. Understanding the detailed mechanism of each module could facilitate your circular
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
402 RNA research.
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
403
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
404 CIRCexplorer2 documentation is available from `here <http://circexplorer2.readthedocs.org/>`_, including installation instructions and tutorial.
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
405
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
406 ]]></help>
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
407 <expand macro="citations" />
465d6578b4d0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 commit fe03991cd7c43f5266314d1fb9e4108f1ab102e8
iuc
parents:
diff changeset
408 </tool>