annotate arriba.xml @ 13:1d459aaa5765 draft default tip

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
author jjohnson
date Mon, 13 Jun 2022 12:09:32 +0000
parents 73fd7703a743
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
1 <tool id="arriba" name="Arriba" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" python_template_version="3.5">
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
2 <description>detect gene fusions from STAR aligned RNA-Seq data</description>
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
3 <macros>
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
4 <import>macros.xml</import>
11
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
5 <xml name="fusion_actions">
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
6 <actions>
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
7 <action name="comment_lines" type="metadata" default="1" />
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
8 <action name="column_names" type="metadata" default="gene1,gene2,strand1(gene/fusion),strand2(gene/fusion),breakpoint1,breakpoint2,site1,site2,type,split_reads1,split_reads2,discordant_mates,coverage1,coverage2,confidence,reading_frame,tags,retained_protein_domains,closest_genomic_breakpoint1,closest_genomic_breakpoint2,gene_id1,gene_id2,transcript_id1,transcript_id2,direction1,direction2,filters,fusion_transcript,peptide_sequence,read_identifiers" />
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
9 </actions>
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
10 </xml>
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
11 </macros>
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
12 <expand macro="requirements" />
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
13 <expand macro="version_command" />
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
14 <command detect_errors="exit_code"><![CDATA[
9
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
15 @GENOME_SOURCE@
13
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
16 #set $filter_list = []
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
17 #if $options.filters
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
18 #set $filter_list = $options.filters.split(',')
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
19 #end if
12
73fd7703a743 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit fe2e3c7429c5bea23690a27b5889b502984ad58a"
jjohnson
parents: 11
diff changeset
20 #if $blacklist
73fd7703a743 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit fe2e3c7429c5bea23690a27b5889b502984ad58a"
jjohnson
parents: 11
diff changeset
21 #if $blacklist.is_of_type('tabular.gz')
73fd7703a743 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit fe2e3c7429c5bea23690a27b5889b502984ad58a"
jjohnson
parents: 11
diff changeset
22 #set $blacklist_file = 'blacklist.tsv.gz'
73fd7703a743 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit fe2e3c7429c5bea23690a27b5889b502984ad58a"
jjohnson
parents: 11
diff changeset
23 ln -sf '$blacklist' $blacklist_file &&
73fd7703a743 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit fe2e3c7429c5bea23690a27b5889b502984ad58a"
jjohnson
parents: 11
diff changeset
24 #else
73fd7703a743 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit fe2e3c7429c5bea23690a27b5889b502984ad58a"
jjohnson
parents: 11
diff changeset
25 #set $blacklist_file = $blacklist
73fd7703a743 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit fe2e3c7429c5bea23690a27b5889b502984ad58a"
jjohnson
parents: 11
diff changeset
26 #end if
13
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
27 #else
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
28 #if 'blacklist' not in $filter_list
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
29 #silent $filter_list.append('blacklist')
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
30 #end if
12
73fd7703a743 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit fe2e3c7429c5bea23690a27b5889b502984ad58a"
jjohnson
parents: 11
diff changeset
31 #end if
13
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
32 #set $filters = ','.join($filter_list)
12
73fd7703a743 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit fe2e3c7429c5bea23690a27b5889b502984ad58a"
jjohnson
parents: 11
diff changeset
33 #if $known_fusions
73fd7703a743 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit fe2e3c7429c5bea23690a27b5889b502984ad58a"
jjohnson
parents: 11
diff changeset
34 #if $known_fusions.is_of_type('tabular.gz')
73fd7703a743 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit fe2e3c7429c5bea23690a27b5889b502984ad58a"
jjohnson
parents: 11
diff changeset
35 #set $known_fusions_file = 'known_fusions.tsv.gz'
73fd7703a743 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit fe2e3c7429c5bea23690a27b5889b502984ad58a"
jjohnson
parents: 11
diff changeset
36 ln -sf '$known_fusions' $known_fusions_file &&
73fd7703a743 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit fe2e3c7429c5bea23690a27b5889b502984ad58a"
jjohnson
parents: 11
diff changeset
37 #else
73fd7703a743 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit fe2e3c7429c5bea23690a27b5889b502984ad58a"
jjohnson
parents: 11
diff changeset
38 #set $known_fusions_file = $known_fusions
73fd7703a743 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit fe2e3c7429c5bea23690a27b5889b502984ad58a"
jjohnson
parents: 11
diff changeset
39 #end if
73fd7703a743 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit fe2e3c7429c5bea23690a27b5889b502984ad58a"
jjohnson
parents: 11
diff changeset
40 #end if
73fd7703a743 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit fe2e3c7429c5bea23690a27b5889b502984ad58a"
jjohnson
parents: 11
diff changeset
41 #if $tags
73fd7703a743 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit fe2e3c7429c5bea23690a27b5889b502984ad58a"
jjohnson
parents: 11
diff changeset
42 #if $tags.is_of_type('tabular.gz')
73fd7703a743 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit fe2e3c7429c5bea23690a27b5889b502984ad58a"
jjohnson
parents: 11
diff changeset
43 #set $tags_file = 'tags.tsv.gz'
73fd7703a743 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit fe2e3c7429c5bea23690a27b5889b502984ad58a"
jjohnson
parents: 11
diff changeset
44 ln -sf '$tags' $tags_file &&
73fd7703a743 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit fe2e3c7429c5bea23690a27b5889b502984ad58a"
jjohnson
parents: 11
diff changeset
45 #else
73fd7703a743 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit fe2e3c7429c5bea23690a27b5889b502984ad58a"
jjohnson
parents: 11
diff changeset
46 #set $tags_file = $tags
73fd7703a743 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit fe2e3c7429c5bea23690a27b5889b502984ad58a"
jjohnson
parents: 11
diff changeset
47 #end if
73fd7703a743 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit fe2e3c7429c5bea23690a27b5889b502984ad58a"
jjohnson
parents: 11
diff changeset
48 #end if
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
49 #if str($input_params.input_source) == "use_fastq"
8
1a56888ddb7d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit f5af83950615d8c77a3a43cf45f5ddf46000701b"
jjohnson
parents: 7
diff changeset
50 #set $readFilesCommand = ''
9
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
51 #set $read2 = ''
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
52 #if str($input_params.singlePaired.sPaired) == 'paired_collection':
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
53 #if $input_params.singlePaired.input.forward.is_of_type('fastq.gz', 'fastqsanger.gz'):
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
54 #set $readFilesCommand = '--readFilesCommand zcat'
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
55 #set read1 = 'input_1.fastq.gz'
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
56 #set read2 = 'input_2.fastq.gz'
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
57 #else
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
58 #set read1 = 'input_1.fastq'
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
59 #set read2 = 'input_2.fastq'
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
60 #end if
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
61 ln -sf '${$input_params.singlePaired.input.forward}' ${read1} &&
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
62 ln -sf '${$input_params.singlePaired.input.reverse}' ${read2} &&
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
63 #else
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
64 #if $input_params.singlePaired.input1.is_of_type('fastq.gz', 'fastqsanger.gz'):
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
65 #set $readFilesCommand = '--readFilesCommand zcat'
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
66 #set read1 = 'input_1.fastq.gz'
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
67 #else
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
68 #set read1 = 'input_1.fastq'
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
69 #end if
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
70 ln -sf '$input_params.singlePaired.input1' ${read1} &&
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
71 #if str($input_params.singlePaired.sPaired) == 'paired':
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
72 #set $read2 = $read1.replace('1','2')
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
73 ln -sf '$input_params.singlePaired.input2' ${read2} &&
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
74 #end if
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
75 #end if
2
7420753b0671 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 7dbe725aaa7b4b84d7b14ea52f38f63d362bf09c"
jjohnson
parents: 1
diff changeset
76 #if str($input_params.index.index_source) == "history"
4
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
77 #set $star_index_dir = $input_params.index.star_index.extra_files_path
9
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
78 #else
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
79 #set $star_index_dir = $input_params.index.arriba_ref.fields.star_index
2
7420753b0671 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 7dbe725aaa7b4b84d7b14ea52f38f63d362bf09c"
jjohnson
parents: 1
diff changeset
80 #end if
11
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
81
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
82 STAR
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
83 --runThreadN \${GALAXY_SLOTS:-1}
2
7420753b0671 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 7dbe725aaa7b4b84d7b14ea52f38f63d362bf09c"
jjohnson
parents: 1
diff changeset
84 --genomeDir $star_index_dir
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
85 --genomeLoad NoSharedMemory
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
86 --readFilesIn $read1 $read2
8
1a56888ddb7d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit f5af83950615d8c77a3a43cf45f5ddf46000701b"
jjohnson
parents: 7
diff changeset
87 $readFilesCommand
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
88 --outStd BAM_Unsorted
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
89 --outSAMtype BAM Unsorted
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
90 --outSAMunmapped Within
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
91 --outBAMcompression 0
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
92 --outFilterMultimapNmax 50
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
93 --peOverlapNbasesMin 10
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
94 --alignSplicedMateMapLminOverLmate 0.5
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
95 --alignSJstitchMismatchNmax 5 -1 5 5
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
96 --chimSegmentMin 10
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
97 --chimOutType WithinBAM HardClip
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
98 --chimJunctionOverhangMin 10
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
99 --chimScoreDropMax 30
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
100 --chimScoreJunctionNonGTAG 0
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
101 --chimScoreSeparation 1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
102 --chimSegmentReadGapMax 3
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
103 --chimMultimapNmax 50
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
104 | tee Aligned.out.bam |
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
105 arriba
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
106 -x '/dev/stdin'
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
107 #else
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
108 arriba
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
109 -x '$input_params.input'
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
110 #if $input_params.chimeric
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
111 -c '$input_params.chimeric'
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
112 #end if
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
113 #end if
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
114 -a '$genome_assembly'
9
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
115 -g '$genome_annotation'
4
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
116 #if $blacklist
11
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
117 -b '$blacklist_file'
13
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
118 #end if
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
119 #if $filters
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
120 -f '$filters'
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
121 #end if
4
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
122 #if $protein_domains
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
123 -p '$protein_domains'
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
124 #end if
4
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
125 #if $known_fusions
11
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
126 -k '$known_fusions_file'
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
127 #end if
4
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
128 #if $tags
11
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
129 -t '$tags_file'
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
130 #end if
6
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
131 #if str($wgs.use_wgs) == "yes"
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
132 -d '$wgs.wgs'
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
133 #if $wgs.max_genomic_breakpoint_distance
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
134 -D $wgs.max_genomic_breakpoint_distance
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
135 #end if
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
136 #end if
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
137 -o fusions.tsv
5
005b200c8841 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bdefea23247f7d999b96e232ce810e2887338680"
jjohnson
parents: 4
diff changeset
138 #if $output_fusions_discarded
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
139 -O fusions.discarded.tsv
5
005b200c8841 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bdefea23247f7d999b96e232ce810e2887338680"
jjohnson
parents: 4
diff changeset
140 #end if
6
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
141 ## Arriba options
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
142 #if $options.gtf_features
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
143 -G $options.gtf_features
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
144 #end if
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
145 #if $options.strandedness
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
146 -s $options.strandedness
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
147 #end if
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
148 #if $options.genome_contigs
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
149 -i $options.genome_contigs
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
150 #end if
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
151 #if $options.viral_contigs
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
152 -v $options.viral_contigs
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
153 #end if
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
154 #if $options.max_evalue
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
155 -E $options.max_evalue
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
156 #end if
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
157 #if $options.min_supporting_reads
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
158 -S $options.min_supporting_reads
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
159 #end if
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
160 #if $options.max_mismappers
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
161 -m $options.max_mismappers
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
162 #end if
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
163 #if $options.max_homolog_identity
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
164 -L $options.max_homolog_identity
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
165 #end if
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
166 #if $options.homopolymer_length
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
167 -H $options.homopolymer_length
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
168 #end if
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
169 #if $options.read_through_distance
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
170 -R $options.read_through_distance
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
171 #end if
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
172 #if $options.min_anchor_length
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
173 -A $options.min_anchor_length
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
174 #end if
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
175 #if $options.many_spliced_events
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
176 -M $options.many_spliced_events
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
177 #end if
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
178 #if $options.max_kmer_content
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
179 -m $options.max_kmer_content
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
180 #end if
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
181 #if $options.max_mismatch_pvalue
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
182 -V $options.max_mismatch_pvalue
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
183 #end if
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
184 #if $options.fragment_length
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
185 -F $options.fragment_length
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
186 #end if
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
187 #if $options.max_reads
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
188 -U $options.max_reads
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
189 #end if
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
190 #if $options.quantile
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
191 -Q $options.quantile
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
192 #end if
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
193 #if $options.exonic_fraction
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
194 -e $options.exonic_fraction
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
195 #end if
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
196 #if $options.top_n
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
197 -T $options.top_n
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
198 #end if
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
199 #if $options.covered_fraction
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
200 -C $options.covered_fraction
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
201 #end if
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
202 #if $options.max_itd_length
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
203 -l $options.max_itd_length
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
204 #end if
10
c58d1774c762 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit c1d05da7c2c76feae94cbc640be7b010f31397d2-dirty"
jjohnson
parents: 9
diff changeset
205 #if $options.min_itd_allele_fraction
c58d1774c762 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit c1d05da7c2c76feae94cbc640be7b010f31397d2-dirty"
jjohnson
parents: 9
diff changeset
206 -z $options.min_itd_allele_fraction
c58d1774c762 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit c1d05da7c2c76feae94cbc640be7b010f31397d2-dirty"
jjohnson
parents: 9
diff changeset
207 #end if
c58d1774c762 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit c1d05da7c2c76feae94cbc640be7b010f31397d2-dirty"
jjohnson
parents: 9
diff changeset
208 #if $options.min_itd_supporting_reads
c58d1774c762 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit c1d05da7c2c76feae94cbc640be7b010f31397d2-dirty"
jjohnson
parents: 9
diff changeset
209 -Z $options.min_itd_supporting_reads
c58d1774c762 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit c1d05da7c2c76feae94cbc640be7b010f31397d2-dirty"
jjohnson
parents: 9
diff changeset
210 #end if
6
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
211 $options.duplicate_marking
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
212 $options.fill_discarded_columns
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
213 $options.fill_the_gaps
3
2d32e6c86c48 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit b4882afed9ec678b576f126907094c77c03eae96"
jjohnson
parents: 2
diff changeset
214 #if str($input_params.input_source) == "use_fastq"
4
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
215 && samtools sort -@ \${GALAXY_SLOTS:-1} -m 4G -T tmp -O bam Aligned.out.bam > Aligned.sortedByCoord.out.bam
3
2d32e6c86c48 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit b4882afed9ec678b576f126907094c77c03eae96"
jjohnson
parents: 2
diff changeset
216 && samtools index Aligned.sortedByCoord.out.bam
2d32e6c86c48 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit b4882afed9ec678b576f126907094c77c03eae96"
jjohnson
parents: 2
diff changeset
217 #elif str($visualization.do_viz) == "yes"
4
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
218 && samtools sort -@ \${GALAXY_SLOTS:-1} -m 4G -T tmp -O bam '$input_params.input' > Aligned.sortedByCoord.out.bam
3
2d32e6c86c48 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit b4882afed9ec678b576f126907094c77c03eae96"
jjohnson
parents: 2
diff changeset
219 && samtools index Aligned.sortedByCoord.out.bam
2d32e6c86c48 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit b4882afed9ec678b576f126907094c77c03eae96"
jjohnson
parents: 2
diff changeset
220 #end if
11
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
221 #if $output_fusions_vcf
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
222 && convert_fusions_to_vcf.sh '$genome_assembly' fusions.tsv fusions.vcf
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
223 #end if
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
224 #if $output_fusion_bams
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
225 && mkdir fusion_bams
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
226 && extract_fusion-supporting_alignments.sh fusions.tsv Aligned.sortedByCoord.out.bam 'fusion_bams/fusion'
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
227 #end if
3
2d32e6c86c48 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit b4882afed9ec678b576f126907094c77c03eae96"
jjohnson
parents: 2
diff changeset
228 #if str($visualization.do_viz) == "yes"
11
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
229 #set $fusions = 'fusions.tsv'
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
230 && @DRAW_FUSIONS@
3
2d32e6c86c48 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit b4882afed9ec678b576f126907094c77c03eae96"
jjohnson
parents: 2
diff changeset
231 #end if
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
232 ]]></command>
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
233 <inputs>
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
234 <conditional name="input_params">
2
7420753b0671 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 7dbe725aaa7b4b84d7b14ea52f38f63d362bf09c"
jjohnson
parents: 1
diff changeset
235 <param name="input_source" type="select" label="Use output from earlier STAR run or let Arriba running STAR">
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
236 <option value="use_star">Use output from earlier STAR</option>
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
237 <option value="use_fastq">Let Arriba control running STAR</option>
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
238 </param>
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
239 <when value="use_star">
11
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
240 <param name="input" argument="-x" type="data" format="sam,bam,cram" label="STAR Aligned.out.sam">
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
241 <help><![CDATA[ recommended STAR options: --chimSegmentMin 10 --chimOutType WithinBAM ]]></help>
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
242 </param>
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
243 <param name="chimeric" argument="-c" type="data" format="sam,bam,cram" optional="true" label="STAR Chimeric.out.sam">
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
244 <help><![CDATA[ only required, if STAR was run with the parameter '--chimOutType SeparateSAMold' ]]></help>
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
245 </param>
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
246 </when>
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
247 <when value="use_fastq">
9
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
248 <conditional name="singlePaired">
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
249 <param name="sPaired" type="select" label="Single-end or paired-end reads">
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
250 <option value="single" selected="true">Single-end</option>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
251 <option value="paired">Paired-end (as individual datasets)</option>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
252 <option value="paired_collection">Paired-end (as collection)</option>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
253 </param>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
254 <when value="single">
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
255 <param format="fastq,fasta,fastq.gz,fastqsanger.gz" name="input1" type="data" label="RNA-Seq FASTQ/FASTA file"/>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
256 </when>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
257 <when value="paired">
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
258 <param format="fastq,fasta,fastq.gz,fastqsanger.gz" name="input1" type="data" label="RNA-Seq FASTQ/FASTA file, forward reads"/>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
259 <param format="fastq,fasta,fastq.gz,fastqsanger.gz" name="input2" type="data" label="RNA-Seq FASTQ/FASTA file, reverse reads"/>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
260 </when>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
261 <when value="paired_collection">
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
262 <param format="fastq,fasta,fastq.gz,fastqsanger.gz" name="input" type="data_collection" collection_type="paired" label="RNA-Seq FASTQ/FASTA paired reads"/>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
263 </when>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
264 </conditional>
2
7420753b0671 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 7dbe725aaa7b4b84d7b14ea52f38f63d362bf09c"
jjohnson
parents: 1
diff changeset
265 <conditional name="index">
7420753b0671 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 7dbe725aaa7b4b84d7b14ea52f38f63d362bf09c"
jjohnson
parents: 1
diff changeset
266 <param name="index_source" type="select" label="Arriba STAR index source">
7420753b0671 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 7dbe725aaa7b4b84d7b14ea52f38f63d362bf09c"
jjohnson
parents: 1
diff changeset
267 <option value="history">Arriba STAR index from your history</option>
9
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
268 <option value="cached">Use a built-in Arriba STAR index</option>
2
7420753b0671 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 7dbe725aaa7b4b84d7b14ea52f38f63d362bf09c"
jjohnson
parents: 1
diff changeset
269 </param>
7420753b0671 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 7dbe725aaa7b4b84d7b14ea52f38f63d362bf09c"
jjohnson
parents: 1
diff changeset
270 <when value="history">
7420753b0671 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 7dbe725aaa7b4b84d7b14ea52f38f63d362bf09c"
jjohnson
parents: 1
diff changeset
271 <param name="star_index" argument="--genomeDir" type="data" format="txt" label="Arriba STAR index"
7420753b0671 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 7dbe725aaa7b4b84d7b14ea52f38f63d362bf09c"
jjohnson
parents: 1
diff changeset
272 help="generated by: Arriba Reference"/>
7420753b0671 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 7dbe725aaa7b4b84d7b14ea52f38f63d362bf09c"
jjohnson
parents: 1
diff changeset
273 </when>
9
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
274 <when value="cached">
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
275 <param name="arriba_ref" type="select" label="Arriba STAR index">
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
276 <options from_data_table="arriba_indexes">
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
277 </options>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
278 </param>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
279 </when>
2
7420753b0671 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 7dbe725aaa7b4b84d7b14ea52f38f63d362bf09c"
jjohnson
parents: 1
diff changeset
280 </conditional>
9
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
281
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
282 </when>
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
283 </conditional>
9
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
284 <expand macro="genome_source" />
5
005b200c8841 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bdefea23247f7d999b96e232ce810e2887338680"
jjohnson
parents: 4
diff changeset
285 <param name="blacklist" argument="-b" type="data" format="tabular,tabular.gz" optional="true" label="File containing blacklisted ranges."/>
4
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
286 <param name="protein_domains" argument="-p" type="data" format="gff3" optional="true" label="File containing protein domains"/>
5
005b200c8841 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bdefea23247f7d999b96e232ce810e2887338680"
jjohnson
parents: 4
diff changeset
287 <param name="known_fusions" argument="-k" type="data" format="tabular,tabular.gz" optional="true" label="File containing known fusions">
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
288 <help><![CDATA[ file two TAB separated columns: five-prime region three-prime region ]]></help>
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
289 </param>
4
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
290 <param name="tags" argument="-t" type="data" format="tabular" optional="true" label="File containing tag names for a fusion."
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
291 help="This can be the known fusions if that input has a third column with a name"/>
6
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
292 <conditional name="wgs">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
293 <param name="use_wgs" type="select" label="Use whole-genome sequencing data">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
294 <option value="no">no</option>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
295 <option value="yes">Yes</option>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
296 </param>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
297 <when value="yes">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
298 <param name="wgs" argument="-d" type="data" format="tabular" label="whole-genome sequencing structural variant data"
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
299 help="These coordinates serve to increase sensitivity towards weakly expressed fusions and to eliminate fusions with low evidence."/>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
300 <param name="max_genomic_breakpoint_distance" argument="-D" type="integer" value="100000" label="Max genomic breakpoint distance"
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
301 help="determines how far a genomic breakpoint may be away from a transcriptomic breakpoint to consider it as a related event."/>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
302 </when>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
303 <when value="no"/>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
304 </conditional>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
305 <section name="options" expanded="false" title="Arriba Options">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
306 <param name="gtf_features" argument="-G" type="text" value="" optional="true" label="Names of features in the GTF annotation file">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
307 <help>Commma or SPACE separated list, default: gene_name=gene_name gene_id=gene_id transcript_id=transcript_id feature_exon=exon feature_CDS=CDS</help>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
308 <validator type="regex" message="">^(gene_name|gene_id|transcript_id|feature_exon|feature_CDS)=[^ ,]+([ ,](gene_name|gene_id|transcript_id|feature_exon|feature_CDS)=[^ ,]+)?$</validator>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
309 </param>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
310 <param name="strandedness" argument="-s" type="select" optional="true" label="Whether a strand-specific protocol was used for library preparation">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
311 <help>When unstranded data is processed, the strand can sometimes be inferred from splice-patterns. But in unclear situations, stranded data helps resolve ambiguities.</help>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
312 <option value="auto">auto</option>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
313 <option value="yes">yes</option>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
314 <option value="no">no</option>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
315 <option value="reverse">reverse</option>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
316 </param>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
317 <param name="genome_contigs" argument="-i" type="text" value="" optional="true" label="Comma-/space-separated list of interesting contigs">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
318 <help>Comma-/space-separated list of interesting contigs.
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
319 Fusions between genes on other contigs are ignored. Contigs can be specified with or without the prefix "chr".
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
320 Asterisks (*) are treated as wild-cards.
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
321 Default: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 X Y AC_* NC_*
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
322 </help>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
323 </param>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
324 <param name="viral_contigs" argument="-v" type="text" value="" optional="true" label="Comma-/space-separated list of viral contigs">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
325 <help>Comma-/space-separated list of viral contigs.
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
326 Asterisks (*) are treated as wild-cards.
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
327 Default: AC_* NC_*
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
328 </help>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
329 </param>
13
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
330 <param name="filters" argument="-f" type="select" optional="true" multiple="true" label="Diable filters">
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
331 <help>By default all filters are enabled.</help>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
332 <option value="top_expressed_viral_contigs">top_expressed_viral_contigs</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
333 <option value="viral_contigs">viral_contigs</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
334 <option value="low_coverage_viral_contigs">low_coverage_viral_contigs</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
335 <option value="uninteresting_contigs">uninteresting_contigs</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
336 <option value="no_genomic_support">no_genomic_support</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
337 <option value="short_anchor">short_anchor</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
338 <option value="select_best">select_best</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
339 <option value="many_spliced">many_spliced</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
340 <option value="long_gap">long_gap</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
341 <option value="merge_adjacent">merge_adjacent</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
342 <option value="hairpin">hairpin</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
343 <option value="small_insert_size">small_insert_size</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
344 <option value="same_gene">same_gene</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
345 <option value="genomic_support">genomic_support</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
346 <option value="read_through">read_through</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
347 <option value="no_coverage">no_coverage</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
348 <option value="mismatches">mismatches</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
349 <option value="homopolymer">homopolymer</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
350 <option value="low_entropy">low_entropy</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
351 <option value="multimappers">multimappers</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
352 <option value="inconsistently_clipped">inconsistently_clipped</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
353 <option value="duplicates">duplicates</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
354 <option value="homologs">homologs</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
355 <option value="blacklist">blacklist</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
356 <option value="mismappers">mismappers</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
357 <option value="spliced">spliced</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
358 <option value="relative_support">relative_support</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
359 <option value="min_support">min_support</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
360 <option value="known_fusions">known_fusions</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
361 <option value="end_to_end">end_to_end</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
362 <option value="non_coding_neighbors">non_coding_neighbors</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
363 <option value="isoforms">isoforms</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
364 <option value="intronic">intronic</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
365 <option value="in_vitro">in_vitro</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
366 <option value="intragenic_exonic">intragenic_exonic</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
367 <option value="internal_tandem_duplication">internal_tandem_duplication</option>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
368 </param>
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
369
6
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
370 <param name="max_evalue" argument="-E" type="float" value="" optional="true" label="Max e-value threahold">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
371 <help>Arriba estimates the number of fusions with a given number of supporting
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
372 reads which one would expect to see by random chance. If the expected number
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
373 of fusions (e-value) is higher than this threshold, the fusion is
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
374 discarded by the 'relative_support' filter. Note: Increasing this
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
375 threshold can dramatically increase the number of false positives and may
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
376 increase the runtime of resource-intensive steps. Fractional values are possible.
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
377 Default: 0.300000
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
378 </help>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
379 </param>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
380
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
381 <param name="min_supporting_reads" argument="-S" type="integer" value="" min="1" optional="true" label="Min supporting reads">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
382 <help>discard all fusions with fewer than this many supporting reads (split reads and discordant mates combined).
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
383 Default: 2
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
384 </help>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
385 </param>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
386 <param name="max_mismappers" argument="-m" type="float" value="" min="0." max="1.0" optional="true" label="Max mismappers threshold">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
387 <help>When more than this fraction of supporting reads turns out to be mismappers,
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
388 the 'mismappers' filter discards the fusion.
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
389 Default: 0.800000
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
390 </help>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
391 </param>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
392 <param name="max_homolog_identity" argument="-L" type="float" value="" min="0." max="1.0" optional="true" label="Max homologs identity threshold">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
393 <help>Genes with more than the given fraction of sequence identity are
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
394 considered homologs and removed by the 'homologs' filter.
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
395 Default: 0.300000
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
396 </help>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
397 </param>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
398 <param name="homopolymer_length" argument="-H" type="integer" value="" min="1" optional="true" label="Homopolymer length">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
399 <help>The 'homopolymer' filter removes breakpoints adjacent to homopolymers of the given length or more.
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
400 Default: 6
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
401 </help>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
402 </param>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
403 <param name="read_through_distance" argument="-R" type="integer" value="" min="1" optional="true" label="Read-through distance">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
404 <help>The 'read_through' filter removes read-through fusions
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
405 where the breakpoints are less than the given distance away from each other.
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
406 Default: 10000
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
407 </help>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
408 </param>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
409 <param name="min_anchor_length" argument="-A" type="integer" value="" min="1" optional="true" label="Min anchor length">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
410 <help>Alignment artifacts are often characterized by split reads coming
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
411 from only one gene and no discordant mates. Moreover, the split
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
412 reads only align to a short stretch in one of the genes. The
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
413 'short_anchor' filter removes these fusions. This parameter sets
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
414 the threshold in bp for what the filter considers short.
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
415 Default: 23
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
416 </help>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
417 </param>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
418 <param name="many_spliced_events" argument="-M" type="integer" value="" min="1" optional="true" label="Many spliced events">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
419 <help>The 'many_spliced' filter recovers fusions between genes that
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
420 have at least this many spliced breakpoints.
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
421 Default: 4
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
422 </help>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
423 </param>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
424 <param name="max_kmer_content" argument="-m" type="float" value="" min="0." max="1.0" optional="true" label="Max kmer content">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
425 <help>The 'low_entropy' filter removes reads with repetitive 3-mers. If
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
426 the 3-mers make up more than the given fraction of the sequence, then
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
427 the read is discarded.
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
428 Default: 0.600000
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
429 </help>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
430 </param>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
431
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
432 <param name="max_mismatch_pvalue" argument="-V" type="float" value="" optional="true" label="Max mismatchrpvalue threahold">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
433 <help>The 'mismatches' filter uses a binomial model to calculate a
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
434 p-value for observing a given number of mismatches in a read.
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
435 If the number of mismatches is too high, the read is discarded.
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
436 Default: 0.010000
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
437 </help>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
438 </param>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
439
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
440 <param name="fragment_length" argument="-F" type="integer" value="" min="1" optional="true" label="Single-end fragment length">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
441 <help>When paired-end data is given, the fragment length is estimated
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
442 automatically and this parameter has no effect. But when single-end
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
443 data is given, the mean fragment length should be specified to
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
444 effectively filter fusions that arise from hairpin structures.
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
445 Default: 200
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
446 </help>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
447 </param>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
448 <param name="max_reads" argument="-U" type="integer" value="" min="1" optional="true" label="Max reads">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
449 <help>Subsample fusions with more than the given number of supporting reads. This
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
450 improves performance without compromising sensitivity, as long as the
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
451 threshold is high. Counting of supporting reads beyond the threshold is
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
452 inaccurate, obviously.
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
453 Default: 300
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
454 </help>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
455 </param>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
456 <param name="quantile" argument="-Q" type="float" value="" min="0." max="1.0" optional="true" label="Quantile">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
457 <help>Highly expressed genes are prone to produce artifacts during library preparation.
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
458 Genes with an expression above the given quantile are eligible for filtering by the 'in_vitro' filter.
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
459 Default: 0.998000
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
460 </help>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
461 </param>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
462 <param name="exonic_fraction" argument="-e" type="float" value="" min="0." max="1.0" optional="true" label="Exonic fraction">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
463 <help>The breakpoints of false-positive predictions of intragenic events
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
464 are often both in exons. True predictions are more likely to have at
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
465 least one breakpoint in an intron, because introns are larger.
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
466 If the fraction of exonic sequence between two breakpoints is smaller than
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
467 the given fraction, the 'intragenic_exonic' filter discards the event.
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
468 Default: 0.330000
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
469 </help>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
470 </param>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
471
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
472 <param name="top_n" argument="-T" type="integer" value="" min="1" optional="true" label="top N viral contigs">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
473 <help>Only report viral integration sites of the top N most highly expressed viral contigs.
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
474 Default: 5
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
475 </help>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
476 </param>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
477 <param name="covered_fraction" argument="-C" type="float" value="" min="0." max="1.0" optional="true" label="Covered fraction">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
478 <help>Ignore virally associated events if the virus is not fully expressed,
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
479 i.e., less than the given fraction of the viral contig is transcribed.
10
c58d1774c762 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit c1d05da7c2c76feae94cbc640be7b010f31397d2-dirty"
jjohnson
parents: 9
diff changeset
480 Default: 0.050000
6
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
481 </help>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
482 </param>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
483 <param name="max_itd_length" argument="-l" type="integer" value="" min="1" optional="true" label="Maximum length of internal tandem duplications">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
484 <help>Note: Increasing this value beyond the default can impair performance and lead to many false positives.
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
485 Default: 100
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
486 </help>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
487 </param>
10
c58d1774c762 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit c1d05da7c2c76feae94cbc640be7b010f31397d2-dirty"
jjohnson
parents: 9
diff changeset
488 <param name="min_itd_allele_fraction" argument="-z" type="float" value="" min="0." max="1.0" optional="true" label="Required fraction of supporting reads to report an internal tandem duplication">
c58d1774c762 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit c1d05da7c2c76feae94cbc640be7b010f31397d2-dirty"
jjohnson
parents: 9
diff changeset
489 <help> Default: 0.070000
c58d1774c762 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit c1d05da7c2c76feae94cbc640be7b010f31397d2-dirty"
jjohnson
parents: 9
diff changeset
490 </help>
c58d1774c762 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit c1d05da7c2c76feae94cbc640be7b010f31397d2-dirty"
jjohnson
parents: 9
diff changeset
491 </param>
c58d1774c762 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit c1d05da7c2c76feae94cbc640be7b010f31397d2-dirty"
jjohnson
parents: 9
diff changeset
492 <param name="min_itd_supporting_reads" argument="-Z" type="integer" value="" min="1" optional="true" label="Required number of supporting reads to report an internal tandem duplication">
c58d1774c762 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit c1d05da7c2c76feae94cbc640be7b010f31397d2-dirty"
jjohnson
parents: 9
diff changeset
493 <help> Default: 10
c58d1774c762 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit c1d05da7c2c76feae94cbc640be7b010f31397d2-dirty"
jjohnson
parents: 9
diff changeset
494 </help>
c58d1774c762 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit c1d05da7c2c76feae94cbc640be7b010f31397d2-dirty"
jjohnson
parents: 9
diff changeset
495 </param>
6
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
496 <param name="duplicate_marking" argument="-u" type="boolean" truevalue="-u" falsevalue="" checked="false" label="Use aligners duplicate marking">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
497 <help>Instead of performing duplicate marking itself, Arriba relies on duplicate marking by a
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
498 preceding program using the BAM_FDUP flag. This makes sense when unique molecular
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
499 identifiers (UMI) are used.
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
500 </help>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
501 </param>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
502 <param name="fill_discarded_columns" argument="-X" type="boolean" truevalue="-X" falsevalue="" checked="false" label="Fill all fusion.discarded.tsv columns">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
503 <help>To reduce the runtime and file size, by default, the columns 'fusion_transcript',
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
504 'peptide_sequence', and 'read_identifiers' are left empty in the file containing
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
505 discarded fusion candidates (see parameter -O). When this flag is set, this extra
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
506 information is reported in the discarded fusions file.
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
507 </help>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
508 </param>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
509 <param name="fill_the_gaps" argument="-I" type="boolean" truevalue="-I" falsevalue="" checked="false" label="Fill fusion transcript gaps from the assembly">
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
510 <help>If assembly of the fusion transcript sequence from the supporting reads is incomplete
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
511 (denoted as '...'), fill the gaps using the assembly sequence wherever possible.
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
512 </help>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
513 </param>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
514 </section>
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
515 <param name="output_fusions_discarded" argument="-O" type="boolean" truevalue="yes" falsevalue="no" checked="true" label="Output fusions.discarded.tsv"/>
11
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
516 <param name="output_fusions_vcf" type="boolean" truevalue="yes" falsevalue="no" checked="true" label="Output fusions.vcf"/>
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
517 <param name="output_fusion_bams" type="boolean" truevalue="yes" falsevalue="no" checked="false" label="Output fusion BAMs"/>
3
2d32e6c86c48 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit b4882afed9ec678b576f126907094c77c03eae96"
jjohnson
parents: 2
diff changeset
518 <conditional name="visualization">
2d32e6c86c48 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit b4882afed9ec678b576f126907094c77c03eae96"
jjohnson
parents: 2
diff changeset
519 <param name="do_viz" type="select" label="Generate visualization">
2d32e6c86c48 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit b4882afed9ec678b576f126907094c77c03eae96"
jjohnson
parents: 2
diff changeset
520 <option value="yes">Yes</option>
2d32e6c86c48 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit b4882afed9ec678b576f126907094c77c03eae96"
jjohnson
parents: 2
diff changeset
521 <option value="no">no</option>
2d32e6c86c48 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit b4882afed9ec678b576f126907094c77c03eae96"
jjohnson
parents: 2
diff changeset
522 </param>
2d32e6c86c48 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit b4882afed9ec678b576f126907094c77c03eae96"
jjohnson
parents: 2
diff changeset
523 <when value="yes">
7
25d207f7ff83 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit e113a79cc67e0bdb168babfe964f34873b2e1303"
jjohnson
parents: 6
diff changeset
524 <expand macro="visualization_options" />
3
2d32e6c86c48 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit b4882afed9ec678b576f126907094c77c03eae96"
jjohnson
parents: 2
diff changeset
525 </when>
2d32e6c86c48 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit b4882afed9ec678b576f126907094c77c03eae96"
jjohnson
parents: 2
diff changeset
526 <when value="no"/>
2d32e6c86c48 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit b4882afed9ec678b576f126907094c77c03eae96"
jjohnson
parents: 2
diff changeset
527 </conditional>
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
528 </inputs>
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
529 <outputs>
11
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
530 <data name="fusions_tsv" format="tabular" label="${tool.name} on ${on_string}: fusions.tsv" from_work_dir="fusions.tsv">
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
531 <expand macro="fusion_actions" />
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
532 </data>
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
533
7
25d207f7ff83 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit e113a79cc67e0bdb168babfe964f34873b2e1303"
jjohnson
parents: 6
diff changeset
534 <data name="discarded_fusions_tsv" format="tabular" label="${tool.name} on ${on_string}: fusions.discarded.tsv" from_work_dir="fusions.discarded.tsv">
9
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
535 <filter> output_fusions_discarded == True</filter>
11
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
536 <expand macro="fusion_actions" />
5
005b200c8841 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bdefea23247f7d999b96e232ce810e2887338680"
jjohnson
parents: 4
diff changeset
537 </data>
11
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
538 <data name="fusions_vcf" format="vcf" label="${tool.name} on ${on_string}: fusions.vcf" from_work_dir="fusions.vcf">
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
539 <filter> output_fusions_vcf == True</filter>
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
540 </data>
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
541 <collection name="fusion_bams" type="list" label="${tool.name} on ${on_string}: Fusion Alignments">
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
542 <discover_datasets pattern="(?P&lt;name&gt;fusion_\d+\.bam)$" format="bam" directory="fusion_bams" visible="false"/>
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
543 <filter>output_fusion_bams == True</filter>
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
544 </collection>
3
2d32e6c86c48 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit b4882afed9ec678b576f126907094c77c03eae96"
jjohnson
parents: 2
diff changeset
545 <data name="aligned_bam" format="bam" label="${tool.name} on ${on_string}: Aligned.bam" from_work_dir="Aligned.sortedByCoord.out.bam">
2d32e6c86c48 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit b4882afed9ec678b576f126907094c77c03eae96"
jjohnson
parents: 2
diff changeset
546 <filter>input_params['input_source'] == "use_fastq"</filter>
2d32e6c86c48 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit b4882afed9ec678b576f126907094c77c03eae96"
jjohnson
parents: 2
diff changeset
547 </data>
4
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
548 <data name="fusions_pdf" format="pdf" label="${tool.name} on ${on_string}: fusions.pdf" from_work_dir="fusions.pdf">
3
2d32e6c86c48 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit b4882afed9ec678b576f126907094c77c03eae96"
jjohnson
parents: 2
diff changeset
549 <filter>visualization['do_viz'] == "yes"</filter>
2d32e6c86c48 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit b4882afed9ec678b576f126907094c77c03eae96"
jjohnson
parents: 2
diff changeset
550 </data>
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
551 </outputs>
4
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
552 <tests>
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
553 <!-- Test 1 - From exisitng BAM -->
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
554 <test>
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
555 <conditional name="input_params">
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
556 <param name="input_source" value="use_star"/>
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
557 <param name="input" ftype="sam" value="Aligned.out.sam"/>
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
558 </conditional>
9
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
559 <conditional name="genome">
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
560 <param name="genome_source" value="history"/>
10
c58d1774c762 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit c1d05da7c2c76feae94cbc640be7b010f31397d2-dirty"
jjohnson
parents: 9
diff changeset
561 <param name="assembly" ftype="fasta" value="genome.fasta.gz"/>
c58d1774c762 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit c1d05da7c2c76feae94cbc640be7b010f31397d2-dirty"
jjohnson
parents: 9
diff changeset
562 <param name="annotation" ftype="gtf" value="genome.gtf.gz"/>
9
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
563 </conditional>
5
005b200c8841 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bdefea23247f7d999b96e232ce810e2887338680"
jjohnson
parents: 4
diff changeset
564 <param name="protein_domains" ftype="gff3" value="protein_domains.gff3"/>
4
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
565 <conditional name="visualization">
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
566 <param name="do_viz" value="no"/>
5
005b200c8841 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bdefea23247f7d999b96e232ce810e2887338680"
jjohnson
parents: 4
diff changeset
567 <param name="cytobands" ftype="tabular" value="cytobands.tsv"/>
4
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
568 </conditional>
7
25d207f7ff83 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit e113a79cc67e0bdb168babfe964f34873b2e1303"
jjohnson
parents: 6
diff changeset
569 <output name="fusions_tsv">
4
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
570 <assert_contents>
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
571 <has_text_matching expression="BCR\tABL1"/>
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
572 </assert_contents>
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
573 </output>
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
574 </test>
5
005b200c8841 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bdefea23247f7d999b96e232ce810e2887338680"
jjohnson
parents: 4
diff changeset
575 <!-- Test 2 - From exisitng BAM with protein_domains and visualization -->
005b200c8841 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bdefea23247f7d999b96e232ce810e2887338680"
jjohnson
parents: 4
diff changeset
576 <test>
005b200c8841 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bdefea23247f7d999b96e232ce810e2887338680"
jjohnson
parents: 4
diff changeset
577 <conditional name="input_params">
005b200c8841 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bdefea23247f7d999b96e232ce810e2887338680"
jjohnson
parents: 4
diff changeset
578 <param name="input_source" value="use_star"/>
005b200c8841 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bdefea23247f7d999b96e232ce810e2887338680"
jjohnson
parents: 4
diff changeset
579 <param name="input" ftype="sam" value="Aligned.out.sam"/>
005b200c8841 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bdefea23247f7d999b96e232ce810e2887338680"
jjohnson
parents: 4
diff changeset
580 </conditional>
9
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
581 <conditional name="genome">
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
582 <param name="genome_source" value="history"/>
10
c58d1774c762 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit c1d05da7c2c76feae94cbc640be7b010f31397d2-dirty"
jjohnson
parents: 9
diff changeset
583 <param name="assembly" ftype="fasta" value="genome.fasta.gz"/>
c58d1774c762 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit c1d05da7c2c76feae94cbc640be7b010f31397d2-dirty"
jjohnson
parents: 9
diff changeset
584 <param name="annotation" ftype="gtf" value="genome.gtf.gz"/>
9
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
585 </conditional>
7
25d207f7ff83 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit e113a79cc67e0bdb168babfe964f34873b2e1303"
jjohnson
parents: 6
diff changeset
586 <param name="protein_domains" ftype="gff3" value="protein_domains.gff3"/>
5
005b200c8841 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bdefea23247f7d999b96e232ce810e2887338680"
jjohnson
parents: 4
diff changeset
587 <conditional name="visualization">
005b200c8841 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bdefea23247f7d999b96e232ce810e2887338680"
jjohnson
parents: 4
diff changeset
588 <param name="do_viz" value="yes"/>
7
25d207f7ff83 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit e113a79cc67e0bdb168babfe964f34873b2e1303"
jjohnson
parents: 6
diff changeset
589 <param name="cytobands" ftype="tabular" value="cytobands.tsv"/>
5
005b200c8841 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bdefea23247f7d999b96e232ce810e2887338680"
jjohnson
parents: 4
diff changeset
590 </conditional>
7
25d207f7ff83 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit e113a79cc67e0bdb168babfe964f34873b2e1303"
jjohnson
parents: 6
diff changeset
591 <output name="fusions_tsv">
5
005b200c8841 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bdefea23247f7d999b96e232ce810e2887338680"
jjohnson
parents: 4
diff changeset
592 <assert_contents>
005b200c8841 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bdefea23247f7d999b96e232ce810e2887338680"
jjohnson
parents: 4
diff changeset
593 <has_text_matching expression="BCR\tABL1"/>
005b200c8841 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bdefea23247f7d999b96e232ce810e2887338680"
jjohnson
parents: 4
diff changeset
594 </assert_contents>
005b200c8841 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bdefea23247f7d999b96e232ce810e2887338680"
jjohnson
parents: 4
diff changeset
595 </output>
7
25d207f7ff83 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit e113a79cc67e0bdb168babfe964f34873b2e1303"
jjohnson
parents: 6
diff changeset
596 <output name="fusions_pdf">
25d207f7ff83 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit e113a79cc67e0bdb168babfe964f34873b2e1303"
jjohnson
parents: 6
diff changeset
597 <assert_contents>
25d207f7ff83 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit e113a79cc67e0bdb168babfe964f34873b2e1303"
jjohnson
parents: 6
diff changeset
598 <has_size value= "64000" delta="5000" />
25d207f7ff83 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit e113a79cc67e0bdb168babfe964f34873b2e1303"
jjohnson
parents: 6
diff changeset
599 </assert_contents>
25d207f7ff83 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit e113a79cc67e0bdb168babfe964f34873b2e1303"
jjohnson
parents: 6
diff changeset
600 </output>
5
005b200c8841 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bdefea23247f7d999b96e232ce810e2887338680"
jjohnson
parents: 4
diff changeset
601 </test>
9
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
602 <!-- Test 3 - From exisitng BAM using cached genome source -->
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
603 <test>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
604 <conditional name="input_params">
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
605 <param name="input_source" value="use_star"/>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
606 <param name="input" ftype="sam" value="Aligned.out.sam"/>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
607 </conditional>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
608 <conditional name="genome">
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
609 <param name="genome_source" value="cached"/>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
610 <param name="arriba_ref" value="GRCh38+ENSEMBL93"/>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
611 </conditional>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
612 <param name="protein_domains" ftype="gff3" value="protein_domains.gff3"/>
13
1d459aaa5765 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit 25fe476002a414e72f33868ba356a3ca4f86865d"
jjohnson
parents: 12
diff changeset
613 <param name="output_fusions_vcf" value="false"/>
9
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
614 <conditional name="visualization">
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
615 <param name="do_viz" value="no"/>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
616 <param name="cytobands" ftype="tabular" value="cytobands.tsv"/>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
617 </conditional>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
618 <output name="fusions_tsv">
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
619 <assert_contents>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
620 <has_text_matching expression="BCR\tABL1"/>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
621 </assert_contents>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
622 </output>
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
623 </test>
5
005b200c8841 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bdefea23247f7d999b96e232ce810e2887338680"
jjohnson
parents: 4
diff changeset
624
4
77021ad5037d "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 5a62e8a2ec56a8ce00f89c8fbe61b3f1dffbbffd"
jjohnson
parents: 3
diff changeset
625 </tests>
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
626 <help><![CDATA[
6
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
627 **Arriba**
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
628
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
629
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
630 Arriba_ is a fast tool to search for aberrant transcripts such as gene fusions.
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
631 It is based on chimeric alignments found by the STAR RNA-Seq aligner.
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
632
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
633
6
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
634 **INPUTS**
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
635
6
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
636 See: https://arriba.readthedocs.io/en/latest/input-files/
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
637
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
638 - Alignments
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
639
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
640 Arriba takes the main output file of STAR (Aligned.out.bam) as input (parameter -x). If STAR was run with the parameter --chimOutType WithinBAM, then this file contains all the information needed by Arriba to find fusions. When STAR was run with the parameter --chimOutType SeparateSAMold, the main output file lacks chimeric alignments. Instead, STAR writes them to a separate output file named Chimeric.out.sam. In this case, the file needs to be passed to Arriba via the parameter -c in addition to the main output file Aligned.out.bam.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
641
11
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
642 STAR index create recommended parameter value:
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
643
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
644 * --sjdbOverhang 250
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
645
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
646
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
647 STAR recommended parameter values ::
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
648
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
649 * --outSAMunmapped Within
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
650 * --outFilterMultimapNmax 50
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
651 * --peOverlapNbasesMin 10
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
652 * --alignSplicedMateMapLminOverLmate 0.5
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
653 * --alignSJstitchMismatchNmax 5 -1 5 5
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
654 * --chimSegmentMin 10
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
655 * --chimOutType WithinBAM HardClip
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
656 * --chimJunctionOverhangMin 10
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
657 * --chimScoreDropMax 30
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
658 * --chimScoreJunctionNonGTAG 0
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
659 * --chimScoreSeparation 1
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
660 * --chimSegmentReadGapMax 3
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
661 * --chimMultimapNmax 50
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
662
8ed8af5836d1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba commit e0aa03add09ecc4ad5a5d41c439b8af9551fc53c"
jjohnson
parents: 10
diff changeset
663
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
664 Arriba extracts three types of reads from the alignment file(s):
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
665
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
666 * Split-reads, i.e., reads composed of segments which map in a non-linear way. STAR stores such reads as supplementary alignments.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
667 * Discordant mates, i.e., paired-end reads which originate from the same fragment but which align in a non-linear way.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
668 * Alignments which cross the boundaries of annotated genes, because these alignments might arise from focal deletions. In RNA-Seq data deletions of up to several hundred kb are hard to distinguish from splicing. They are represented identically as gapped alignments, because the sizes of many introns are in fact of this order of magnitude. STAR applies a rather arbitrary measure to decide whether a gapped alignment arises from splicing or from a genomic deletion: The parameter --alignIntronMax determines what gap size is still assumed to be a splicing event and introns are used to represent these gaps. Only gaps larger than this limit are classified as potential evidence for genomic deletions and are stored as chimeric alignments. Most STAR-based fusion detection tools only consider chimeric alignments as evidence for gene fusions and are blind to focal deletions, hence. As a workaround, these tools recommend reducing the value of the parameter --alignIntronMax. But this impairs the quality of alignment, because it reduces the scope that STAR searches to find a spliced alignment. To avoid compromising the quality of alignment for the sake of fusion detection, the only solution would be to run STAR twice - once with settings optimized for regular alignment and once for fusion detection. This would double the runtime. In contrast, Arriba does not require to reduce the maximum intron size. It employs a more sensible criterion to distinguish splicing from deletions: Arriba considers all those reads as potential evidence for deletions that span the boundary of annotated genes.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
669
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
670 The alignment files can be in SAM, BAM, and CRAM format. They need not be sorted for Arriba to accept them, but doing so comes with benefits: Often, this reduces the file size. And more importantly, the supporting reads of a fusion can be inspected visually using a genome browser like IGV, which typically requires BAM files to be sorted by coordinate.
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
671
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
672 Single-end and paired-end data and even mixtures are supported. Arriba automatically determines the data type on a read-by-read basis using the flag BAM_FPAIRED.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
673
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
674
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
675 - Assembly
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
676
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
677 Arriba takes the assembly as input (parameter -a) to find mismatches between the chimeric reads and the reference genome, as well as to find alignment artifacts and homologous genes.
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
678
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
679 The script download_references.sh can be used to download the assembly. The available assemblies are listed when the script is run without parameters. The user is not restricted to these assemblies, however. Any assembly can be used as long as its coordinates are compatible with one of the supported assemblies (hg19/hs37d5/GRCh37 or hg38/GRCh38 or mm10/GRCm38).
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
680
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
681 The assembly must be provided in FastA format and may be gzip-compressed. An index with the file extension .fai must exist only if CRAM files are processed.
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
682
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
683 - Annotation
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
684
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
685 The gene annotation (parameter -g) is used for multiple purposes:
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
686
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
687 annotation of breakpoints with genes
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
688 increased sensitivity for breakpoints at splice-sites
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
689 calculation of transcriptomic distances
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
690 determining the putative orientation of fused genes (i.e., 5' and 3' end)
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
691 GENCODE annotation is recommended over RefSeq annotation, because the former has a more comprehensive annotation of transcripts and splice-sites, which boosts the sensitivity. The file must be provided in GTF format and may be gzip-compressed. It does not need to be sorted.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
692
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
693 The script download_references.sh can be used to download the annotation. The available annotation files are listed when the script is run without parameters. The user is not restricted to these annotation files, however. Any annotation can be used as long as its coordinates are compatible with one of the supported assemblies (hg19/hs37d5/GRCh37 or hg38/GRCh38 or mm10/GRCm38).
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
694
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
695
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
696 - Blacklist
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
697
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
698 It is strongly advised to run Arriba with a blacklist (parameter -b). Otherwise, the false positive rate increases by an order of magnitude. For this reason, using Arriba with assemblies or organisms which are not officially supported is not recommended. At the moment, the supported assemblies are: hg19/hs37d5/GRCh37, hg38/GRCh38, and mm10/GRCm38 (as well as any other assemblies that have compatible coordinates). The blacklists are contained in the release tarballs of Arriba.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
699
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
700 The blacklist removes recurrent alignment artifacts and transcripts which are present in healthy tissue. This helps eliminate frequently observed transcripts, such as read-through fusions between neighboring genes, circular RNAs and other non-canonically spliced transcripts. It was trained on RNA-Seq samples from the Human Protein Atlas, the Illumina Human BodyMap2 , the ENCODE project , the Roadmap Epigenomics project, and the NCT MASTER cohort, a heterogeneous cohort of cancer samples, from which highly recurrent artifacts were identified.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
701
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
702 Blacklists for all supported assemblies are shipped with the download package of Arriba. They can be found in the package as database/blacklist_*.
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
703
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
704 The blacklist is a tab-separated file with two columns and may optionally be gzip-compressed. Lines starting with a hash (#) are treated as comments. Each line represents a pair of regions between which events are ignored. A region can be:
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
705 * a 1-based coordinate in the format CONTIG:POSITION, optionally prefixed with the strand (example: +9:56743754). If CONTIG ends on an asterisk (*), the contig with the closest matching name is chosen.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
706 * a range in the format CONTIG:START-END, optionally prefixed with a strand (example: 9:1000000-1100000).
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
707 * the name of a gene given in the provided annotation.
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
708
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
709 In addition, special keywords are allowed for the second column:
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
710 * any: Discard all events if one of the breakpoints matches the given region.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
711 * split_read_donor: Discard fusions only supported by split reads, if all of them have their anchor in the gene given in the first column. This filter is useful for highly mutable loci, which frequently trigger clipped alignments, such as the immunoglobulin loci or the T-cell receptor loci.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
712 * split_read_acceptor: Discard events only supported by split reads, if all of them have their clipped segment in the given region.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
713 * split_read_any: Discard events only supported by split reads, regardless of where the anchor is.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
714 * discordant_mates: Discard fusions, if they are only supported by discordant mates (no split reads).
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
715 * low_support: Discard events, which have few supporting reads relative to expression (as determined by the filter relative_support), even if there is other evidence that the fusion might be a true positive, nonetheless. This keyword effectively prevents recovery of speculative events by filters such as spliced or many_spliced.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
716 * filter_spliced: This keyword prevents the filter spliced from being applied to a given region. It is triggered under the same circumstances as the keyword low_support, but additionally requires that the breakpoints be at splice-sites for the event to be discarded. Some breakpoints produce recurrent artifacts, but the second breakpoint is always a different one, such that the pair of breakpoints is not recurrent and cannot be blacklisted. Often, such breakpoints are at splice-sites and the filter spliced tends to recover them. This keyword prevents the filter from doing so.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
717 * not_both_spliced: This keyword discards events, unless both breakpoints are at splice-sites. This is a strict blacklist criterion, which makes sense to apply to genes which are prone to produce artifacts, because they are highly expressed, for example hemoglobins, collagens, or ribosomal genes.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
718 * read_through: This keyword discards events, if they could arise from read-through transcription, i.e., the supporting reads are oriented like a deletion and are at most 400 kb apart.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
719
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
720
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
721 - Known fusions
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
722
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
723 Arriba can be instructed to be particularly sensitive towards events between certain gene pairs by supplying a list of gene pairs (parameter -k). A number of filters are not applied to these gene pairs. This is useful to improve the detection rate of expected or highly relevant events, such as recurrent fusions. Occassionally, this leads to false positive calls. But if high sensitivity is more important than specificity, this might be acceptable. Events which would be discarded by a filter and were recovered due to being listed in the known fusions list are usually assigned a low confidence.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
724
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
725 Known fusions files for all supported assemblies are shipped with the download package of Arriba. They can be found in the package as database/known_fusions_*.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
726
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
727 The file has two columns separated by a tab and may optionally be gzip-compressed. Lines starting with a hash (#) are treated as comments. Each line represents a pair of regions to which very sensitive filtering thresholds are applied. A region can be:
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
728
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
729 * a 1-based coordinate in the format CONTIG:POSITION, optionally prefixed with the strand (example: +9:56743754). If CONTIG ends on an asterisk (*), the contig with the closest matching name is chosen.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
730 * a range in the format CONTIG:START-END, optionally prefixed with a strand (example: 9:1000000-1100000).
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
731 * the name of a gene given in the provided annotation.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
732
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
733 The order of the given regions is important. The region given in the first column is assumed to denote the 5' end of the fusion and the region in the second column to be the 3' end. If Arriba cannot determine with confidence which gene constitutes the 5' and which the 3' end of a fusion prediction, then the order is ignored and the prediction is rescued in both cases.
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
734
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
735
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
736 - Tags
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
737
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
738 Arriba can be supplied with a list of user-defined tags using the parameter -t. Whenever a fusion prediction matches the selection criteria for a tag, the column tags is populated with the respective tag. This feature is useful to annotate known oncogenic fusions, for example.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
739
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
740 The known fusions file shipped with the download package of Arriba can be used for both known fusions and tags. It is constructed in a way that it can be passed as arguments to the parameters -k and -t alike. The former only uses the first two columns, the latter uses all three columns. If a user wants to separate filtering of known fusions and tagging of interesting fusions, different files may be used, however.
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
741
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
742 The file has three columns separated by a tab and may optionally be gzip-compressed. Lines starting with a hash (#) are treated as comments. Each line represents a pair of regions to be annotated. The first two columns specify the regions to be annotated; the third column the tag that is used for annotation. Some special characters in the tag are replaced with underscores (_) in Arriba's output file. A region can be:
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
743
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
744 * a 1-based coordinate in the format CONTIG:POSITION, optionally prefixed with the strand (example: +9:56743754).
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
745 * a range in the format CONTIG:START-END, optionally prefixed with a strand (example: 9:1000000-1100000).
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
746 * the name of a gene given in the provided annotation.
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
747
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
748 The order of the given regions is important. The region given in the first column is assumed to denote the 5' end of the fusion and the region in the second column to be the 3' end.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
749
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
750 - Protein domains
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
751
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
752 Protein domain annotation can be passed to Arriba via the parameter -p. The column retained_protein_domains of Arriba's output file is then populated accordingly.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
753
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
754 Protein domain annotation files for all supported assemblies are shipped with the download package of Arriba. They can be found in the package as database/protein_domains_*.
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
755
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
756 The file must be in GFF3 format and may optionally be gzip-compressed. The ninth column must at least contain the following attributes:
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
757 * Name=PROTEIN_DOMAIN_NAME;
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
758 * gene_id=GENE_ID;
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
759 * gene_name=GENE_NAME
2
7420753b0671 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 7dbe725aaa7b4b84d7b14ea52f38f63d362bf09c"
jjohnson
parents: 1
diff changeset
760
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
761 The attribute Name is reported in the column retained_protein_domains of Arriba's output file. Some special characters in the name are replaced with underscores (_). The columns gene_id and gene_name are used to match the protein domains to the genes given in the gene annotation. If a match cannot be found, Arriba cannot determine the retained protein domains of the respective gene and a warning is issued. There may be many warnings if RefSeq annotation is used, because the protein domains file distributed with Arriba uses ENSEMBL gene names/IDs.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
762
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
763 - Structural variant calls from WGS
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
764
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
765 If whole-genome sequencing (WGS) data is available, the sensitivity and specificity of Arriba can be improved by passing a list of structural variants detected from WGS to Arriba via the parameter -d. This has the following effects:
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
766
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
767 Certain filters are overruled or run with extra sensitive settings, when an event is confirmed by WGS data.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
768 To reduce the false positive rate, Arriba does not report low-confidence events unless they can be matched with a structural variant found in the WGS data.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
769 Both of these behaviors can be disabled by disabling the filters genomic_support and no_genomic_support, respectively. Providing Arriba with a list of structural variant calls then does not influence the calls, but it still has the benefit of filling the columns closest_genomic_breakpoint1 and closest_genomic_breakpoint2 with the breakpoints of the structural variant which is closest to a fusion. If the structural variant calls were obtained from whole-exome sequencing (WES) data rather than WGS data, the filter no_genomic_support should be disabled, since WES has poor coverage in most regions of the genome, such that many structural variants are missed.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
770
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
771 Two file formats are accepted: a simple four-column format and the standard Variant Call Format (VCF). The format is detected automatically.
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
772
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
773 * In case of the simple format, the file must contain four columns separated by tabs. The first two columns contain the breakpoints of the structural variants in the format CONTIG:POSITION. The last two columns contain the orientation of the breakpoints. The accepted values are:
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
774
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
775 + downstream or +: the fusion partner is fused downstream of the breakpoint, i.e., at a coordinate higher than the breakpoint
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
776 + upstream or -: the fusion partner is fused at a coordinate lower than the breakpoint
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
777
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
778 Example:
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
779
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
780 ::
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
781
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
782 =========== =========== =========== ===========
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
783 5-prime 3-prime orientation orientation
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
784 =========== =========== =========== ===========
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
785 1:54420491 6:9248349 + -
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
786 20:46703288 20:46734546 - +
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
787 17:61499820 20:45133874 + +
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
788 3:190967119 7:77868317 - -
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
789 =========== =========== =========== ===========
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
790
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
791
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
792 * In case of the Variant Call Format, the file must comply with the VCF specification for structural variants. In particular, Arriba requires that the SVTYPE field be present in the INFO column and specify one of the four values BND, DEL, DUP, INV. In addition, for all SVTYPEs other than BND, the END field must be present and specify the second breakpoint of the structural variant. Structural variants with single breakends are silently ignored.
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
793
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
794 Arriba checks if the orientation of the structural variant matches that of a fusion detected in the RNA-Seq data. If, for example, Arriba predicts the 5' end of a gene to be retained in a fusion, then a structural variant is expected to confirm this, or else the variant is not considered to be related.
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
795
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
796 NOTE: Arriba was designed for alignments from RNA-Seq data. It should not be run on WGS data directly. Many assumptions made by Arriba about the data (statistical models, blacklist, etc.) only apply to RNA-Seq data and are not valid for DNA-Seq data. For such data, a structural variant calling algorithm should be used and the results should be passed to Arriba.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
797
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
798
9
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
799 **OPTIONS**
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
800
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
801 - Arriba: https://arriba.readthedocs.io/en/latest/command-line-options/#arriba
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
802 - Visualization: https://arriba.readthedocs.io/en/latest/command-line-options/#draw_fusionsr
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
803 - RNA STAR: https://arriba.readthedocs.io/en/latest/workflow/
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
804
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
805
6
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
806 **OUTPUTS**
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
807
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
808 See: https://arriba.readthedocs.io/en/latest/output-files/
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
809
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
810 - fusions.tsv
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
811
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
812 The file fusions.tsv (as specified by the parameter -o) contains fusions which pass all of Arriba's filters. It should be highly enriched for true predictions. The predictions are listed from highest to lowest confidence. The following paragraphs describe the columns in detail:
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
813
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
814 * gene1 and gene2 : gene1 contains the gene which makes up the 5' end of the transcript and gene2 the gene which makes up the 3' end. The order is predicted on the basis of the strands that the supporting reads map to, how the reads are oriented, and splice patterns. Both columns may contain the same gene, if the event is intragenic. If a breakpoint is in an intergenic region, Arriba lists the closest genes upstream and downstream from the breakpoint, separated by a comma. The numbers in parentheses after the closest genes state the distance to the genes. If no genes are annotated for a contig (e.g., for viral genomes), the column contains a dot (.).
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
815
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
816 * strand1(gene/fusion) and strand2(gene/fusion) : Each of these columns contains two values seperated by a slash. The strand before the slash reflects the strand of the gene according to the gene annotation supplied to Arriba via the parameter -g. If the breakpoint is in an intergenic region, the value is .. The value after the slash reflects the strand that is transcribed. This does not necessarily match the strand of the gene, namely when the sense strand of a gene serves as the template for transcription. Occassionally, the strand that is transcribed cannot be predicted reliably. In this case, Arriba indicates the lack of information as a dot (.). Arriba uses splice-patterns of the alignments to assign a read to the appropriate originating gene. If a strand-specific library was used, Arriba also evaluates the strandedness in ambiguous situations, for example, when none of the supporting reads overlaps a splice-site.
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
817
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
818 * breakpoint1 and breakpoint2 : The columns contain the coordinates of the breakpoints in gene1 and gene2, respectively. If an event is not supported by any split reads but only by discordant mates, the coordinates given here are those of the discordant mates which are closest to the true but unknown breakpoint.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
819
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
820 * site1 and site2 : These columns add information about the location of the breakpoints. Possible values are: 5' UTR, 3' UTR, UTR (overlapping with a 5' UTR as well as a 3' UTR), CDS (coding sequence), exon, intron, and intergenic. The keyword exon is used for non-coding genes or for ambiguous situations where the breakpoint overlaps with both a coding exon and a UTR. If the breakpoint coincides with an exon boundary, the additional keyword splice-site is appended.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
821
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
822 * type : Based on the orientation of the supporting reads and the coordinates of breakpoints, the type of event can be inferred. Possible values are: translocation (between different chromosomes), duplication, inversion, and deletion. If genes are fused head-to-head or tail-to-tail, this is indicated as 5'-5' or 3'-3' respectively. Genes fused in such an orientation cannot yield a chimeric protein, since one of the genes is transcribed from the wrong strand. This type of event is equivalent to the truncation of the genes. The following types of events are flagged with an extra keyword, because they are frequent types of false positives and/or it is not clear if they are somatic or germline variants: Deletions with a size in the range of introns (<400kb) are flagged as read-through, because there is a high chance that the fusion arises from read-through transcription rather than an underlying genomic deletion. Intragenic duplications with both breakpoints at splice-sites are flagged as non-canonical-splicing, because the supporting reads might originate from circular RNAs, which are very abundant even in normal tissue, but manifest as duplications in RNA-Seq data. Internal tandem duplications are flagged as ITD. It is not always clear whether the ITDs observable in RNA-Seq data are somatic or germline variants, because ITDs are abundant in the germline and germline variants cannot be filtered effectively due to lack of a normal control.
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
823
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
824 * split_reads1 and split_reads2 : The number of supporting split fragments with an anchor in gene1 or gene2, respectively, is given in these columns. The gene to which the longer segment of the split read aligns is defined as the anchor.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
825
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
826 * discordant_mates : This column contains the number of pairs (fragments) of discordant mates (a.k.a. spanning reads or bridge reads) supporting the fusion.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
827
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
828 * coverage1 and coverage2 : These two columns show the coverage near breakpoint1 and breakpoint2, respectively. The coverage is calculated as the number of fragments near the breakpoint on the side of the breakpoint that is retained in the fusion transcript. Note that the coverage calculation counts all fragments (even duplicates), whereas the columns split_reads1, split_reads2, and discordant_mates only count non-discarded reads. Fragments discarded due to being duplicates or other types of artifacts can be found in the column filters.
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
829
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
830 * confidence : Each prediction is assigned one of the confidences low, medium, or high. Several characteristics are taken into account, including: the number of supporting reads, the balance of split reads and discordant mates, the distance between the breakpoints, the type of event, whether the breakpoints are intragenic or not, and whether there are other events which corroborate the prediction, e.g. multiple isoforms or balanced translocations. See section Interpretation of results for further advice on judging the credibility of predictions.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
831
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
832 * reading_frame : This column states whether the gene at the 3' end of the fusion is fused in-frame or out-of-frame. The value stop-codon indicates that there is a stop codon prior to the fusion junction, such that the 3' end is not translated, even if the reading frame is preserved across the junction. The prediction of the reading frame builds on the prediction of the peptide sequence. A dot (.) indicates that the peptide sequence cannot be predicted, for example, because the transcript sequence could not be determined or because the breakpoint of the 5' gene does not overlap a coding region.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
833
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
834 * tags : When a user-defined list of tags is provided via the parameter -t, this column is populated with the provided tag whenever a fusion matches the coordinates specified for the respective tag. When multiple tags match, they are separated by a comma.
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
835
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
836 * retained_protein_domains : If Arriba is provided with protein domain annotation using the parameter -p, then this column is populated with protein domains retained in the fusion. Multiple protein domains are separated by a comma. Redundant protein domains are only listed once. After every domain the fraction that is retained is stated as a percentage value in parentheses. The protein domains of the 5' and 3' genes are separated by a pipe symbol (|).
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
837
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
838 * closest_genomic_breakpoint1 and closest_genomic_breakpoint2 : When a matched whole-genome sequencing sample is available, one can feed structural variant calls obtained therefrom into Arriba (see parameter -d). Arriba then considers this information during fusion calling, which improves the overall accuracy. These two columns contain the coordinates of the genomic breakpoints which are closest to the transcriptomic breakpoints given in the columns breakpoint1 and breakpoint2. The values in parentheses are the distances between transcriptomic and genomic breakpoints.
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
839
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
840 * gene_id1 and gene_id2 : These two columns state the identifiers of the fused genes as given in the gene_id attribute in the GTF file.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
841
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
842 * transcript_id1 and transcript_id2 : For both fused genes, Arriba determines the best matching isoform that is transcribed as part of the fusion. The isoform is selected by how well its annotated exons match the splice pattern of the supporting reads of a fusion.
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
843
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
844 * direction1 and direction2 : These columns indicate the orientation of the fusion. A value of downstream means that the partner is fused downstream of the breakpoint, i.e. at a coordinate higher than the breakpoint. A value of upstream means the partner is fused at a coordinate lower than the breakpoint. When the prediction of the strands or of the 5' gene fails, this information gives insight into which parts of the fused genes are retained in the fusion.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
845
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
846 * filters : This column lists the filters which removed one or more of the supporting reads. The section Internal algorithm describes all filters in detail. The number of filtered reads is given in parentheses after the name of the filter. The total number of supporting reads can be obtained by summing up the reads given in the columns split_reads1, split_reads2, discordant_mates, and filters. If a filter discarded the event as a whole (all reads), the number of filtered reads is not stated.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
847
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
848 * fusion_transcript : This column contains the fusion transcript sequence. The sequence is assembled from the supporting reads of the most highly expressed transcript. It represents the transcript isoform that is most likely expressed according to the splice patterns of the supporting reads. The column contains a dot (.), when the sequence could not be predicted. This is the case when the strands or the 5' end of the transcript could not be predicted reliably. The breakpoint is represented as a pipe symbol (|). When non-template bases are inserted between the fused genes, these bases are represented as lowercase letters between two pipes. Reference mismatches (SNPs or SNVs) are indicated as lowercase letters, insertions as bases between brackets ([ and ]), deleted bases as one or more dashes (-), introns as three underscores (___), and ambiguous positions, such as positions with diverse reference mismatches, are represented as ?. Missing information due to insufficient coverage is denoted as an ellipsis (...). If the switch -I is used, then an attempt is made to fill missing information with the assembly sequence. A sequence stretch that was taken from the assembly sequence rather than the supporting reads is wrapped in parentheses (( and )). In addition, when -I is used, the sequence is trimmed to the boundaries of the fused transcripts. The coordinate of the fusion breakpoint relative to the start of the transcript can thus easily be inferred by counting the bases from the beginning of the fusion transcript to the breakpoint character (|). In case the full sequence could be constructed from the combined information of supporting reads and assembly sequence, the start of the fusion transcript is marked by a caret sign (^) and the end by a dollar sign ($). If the full sequence could not be constructed, these signs are missing.
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
849
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
850 * peptide_sequence : This column contains the fusion peptide sequence. The sequence is translated from the fusion transcript given in the column fusion_transcript and determines the reading frame of the fused genes according to the transcript isoforms given in the columns transcript_id1 and transcript_id2. Translation starts at the start of the assembled fusion transcript or when the start codon is encountered in the 5' gene. Translation ends when either the end of the assembled fusion transcript is reached or when a stop codon is encountered. If the fusion transcript contains an ellipsis (...), the sequence beyond the ellipsis is trimmed before translation, because the reading frame cannot be determined reliably. The column contains a dot (.), when the transcript sequence could not be predicted or when the precise breakpoints are unknown due to lack of split reads or when the fusion transcript does not overlap any coding exons in the 5' gene or when no start codon could be found in the 5' gene or when there is a stop codon prior to the fusion junction (in which case the column reading_frame contains the value stop-codon). The breakpoint is represented as a pipe symbol (|). If a codon spans the breakpoint, the amino acid is placed on the side of the breakpoint where two of the three bases reside. Codons resulting from non-template bases are flanked by two pipes. Amino acids are written as lowercase characters in the following situations: non-silent SNVs/SNPs, insertions, frameshifts, codons spanning the breakpoint, non-coding regions (introns/intergenic regions/UTRs), and non-template bases. Codons which cannot be translated to amino acids, such as those having invalid characters, are represented as ?.
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
851
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
852 * read_identifiers : This column contains the names of the supporting reads separated by commas.
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
853
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
854 - fusions.discarded.tsv
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
855
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
856 The file fusions.discarded.tsv (as specified by the parameter -O) contains all events that Arriba classified as an artifact or that are also observed in healthy tissue. It has the same format as the file fusions.tsv.
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
857
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
858
6
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
859 **VISUALIZATION**
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
860
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
861 See: https://arriba.readthedocs.io/en/latest/visualization/
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
862
5
005b200c8841 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bdefea23247f7d999b96e232ce810e2887338680"
jjohnson
parents: 4
diff changeset
863 - fusions.pdf
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
864
5
005b200c8841 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bdefea23247f7d999b96e232ce810e2887338680"
jjohnson
parents: 4
diff changeset
865 A PDF file with one page for each predicted fusion. Each page depicts the fusion partners, their orientation, the retained exons in the fusion transcript, statistics about the number of supporting reads, and if the column fusion_transcript has a value an excerpt of the sequence around the breakpoint.
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
866
9
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
867 .. image:: draw-fusions-example.png
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
868 :width: 800
8c4c97fd0555 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bd2c6bea7cb7dc30ca57f9d69ad49460ddf7f14b"
jjohnson
parents: 8
diff changeset
869 :height: 467
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
870
1
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
871
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
872 .. _Arriba: https://arriba.readthedocs.io/en/latest/
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
873 .. _INPUTS: https://arriba.readthedocs.io/en/latest/input-files/
9f2665b32c45 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 933ae7dfba10b1b31c30a90216d76cdad6dda685"
jjohnson
parents: 0
diff changeset
874 .. _OUTPUTS: https://arriba.readthedocs.io/en/latest/output-files/
5
005b200c8841 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit bdefea23247f7d999b96e232ce810e2887338680"
jjohnson
parents: 4
diff changeset
875 .. _VISUALIZATION: https://arriba.readthedocs.io/en/latest/visualization/
6
7253b367c082 "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit ea14642edb0816912a856281944eb5e8a37c11ea"
jjohnson
parents: 5
diff changeset
876 .. _OPTIONS: https://arriba.readthedocs.io/en/latest/command-line-options/
0
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
877
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
878 ]]></help>
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
879 <expand macro="citations" />
5ebf2354cc9b "planemo upload for repository https://github.com/jj-umn/tools-iuc/tree/arriba/tools/arriba commit 52c9f9825debe783339c13bd1da9a42b59747bd2"
jjohnson
parents:
diff changeset
880 </tool>