annotate fuma.xml @ 14:cf3788eb803c draft

planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 1ddd5a54b9cf4602014c274bbcf70211ff061000-dirty
author yhoogstrate
date Sat, 02 Apr 2016 09:41:54 -0400
parents 209e96e870e8
children 889c61da402a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
267d0c2ebe56 Uploaded
yhoogstrate
parents:
diff changeset
1 <?xml version="1.0" encoding="UTF-8"?>
14
cf3788eb803c planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 1ddd5a54b9cf4602014c274bbcf70211ff061000-dirty
yhoogstrate
parents: 13
diff changeset
2 <tool id="fuma" name="FuMa" version="3.0.0-g0">
9
77abea4fc3e7 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 1f068f256b74445a7ac296e12ccc12d42a902e70
yhoogstrate
parents: 8
diff changeset
3 <description>match detected fusion genes based on gene names (in particular for RNA-Seq)</description>
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
4
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
5 <requirements>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
6 <requirement type="package" version="2.7">python</requirement>
14
cf3788eb803c planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 1ddd5a54b9cf4602014c274bbcf70211ff061000-dirty
yhoogstrate
parents: 13
diff changeset
7 <requirement type="package" version="3.0.0">fuma</requirement>
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
8 </requirements>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
9
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
10 <version_command>fuma --version 2>&amp;1 | head -n 1</version_command><!-- -V also works, but is not GNU standard -->
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
11
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
12 <command><![CDATA[
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
13 #import pipes
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
14
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
15 #set $gene_annotations = []
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
16 #set $samples = []
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
17 #set $links = []
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
18
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
19 #for $i, $d in enumerate( $datasets )
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
20 #set $sample_name = pipes.quote(str($d['sample'].name))
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
21
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
22 #set $gene_annotations = $gene_annotations + [ "ga_" + str($i) + ":" + str($d['gene_annotation'].file_name) ]
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
23
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
24 #set $samples = $samples + [ $sample_name + ":" + str($d['format']) + ":" + str($d['sample'].file_name) ]
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
25 #set $links = $links + [ $sample_name + ":" + str("ga_") + str($i) ]
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
26 #end for
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
27
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
28 #set $gene_annotations_str = " ".join(gene_annotations)
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
29 #set $samples_str = " ".join(samples)
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
30 #set $links_str = " ".join(links)
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
31
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
32 fuma
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
33 -m
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
34 $params.matching_method
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
35
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
36 $params.strand_specific_matching
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
37 $params.acceptor_donor_order_specific_matchig
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
38
10
d39811cb7c3a planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 18ae9555a548d5cb3b3d15d46f57c28112bb16b9
yhoogstrate
parents: 9
diff changeset
39 --long-gene-size $params.long_gene_size
d39811cb7c3a planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 18ae9555a548d5cb3b3d15d46f57c28112bb16b9
yhoogstrate
parents: 9
diff changeset
40
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
41 -a
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
42 $gene_annotations_str
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
43 -s
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
44 $samples_str
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
45 -l
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
46 $links_str
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
47 #if $params.output_format.value == "list_boolean"
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
48 -f list
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
49 #else
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
50 -f $params.output_format.value
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
51 #end if
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
52 -o $fuma_overview ;
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
53
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
54
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
55 #if $params.output_format.value == "list_boolean"
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
56 fuma-list-to-boolean-list -o tmp.txt $fuma_overview ;
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
57 mv tmp.txt $fuma_overview
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
58 #end if
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
59 ]]></command>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
60
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
61 <inputs>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
62 <repeat name="datasets" title="FusionGene Datasets" min="2">
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
63 <param name="sample" type="data" format="txt,tabular" label="Dataset (RNA-Seq fusion gene detection experiment)" />
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
64 <param name="format" type="select" label="Format of dataset">
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
65 <option value="chimera">Chimera prettyPrint()</option>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
66 <option value="chimerascan">ChimeraScan</option>
13
209e96e870e8 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit d90385601350b4d5fafae3004b470dee4a7f442d-dirty
yhoogstrate
parents: 12
diff changeset
67 <option value="complete-genomics">Complete Genomics var/mastervar</option>
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
68 <option value="defuse">DeFuse</option>
13
209e96e870e8 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit d90385601350b4d5fafae3004b470dee4a7f442d-dirty
yhoogstrate
parents: 12
diff changeset
69 <option value="ericscript">EricScript (.results.total.txt)</option>
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
70 <option value="fusion-catcher_final">Fusion Catcher (final-list file)</option>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
71 <option value="fusionmap">FusionMap</option>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
72 <option value="trinity-gmap">GMAP (As step after Trinity)</option>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
73 <option value="oncofuse">OncoFuse</option>
13
209e96e870e8 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit d90385601350b4d5fafae3004b470dee4a7f442d-dirty
yhoogstrate
parents: 12
diff changeset
74 <option value="soapfuse-final-gene">SOAPFuse (final.*.for.genes.txt)</option>
209e96e870e8 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit d90385601350b4d5fafae3004b470dee4a7f442d-dirty
yhoogstrate
parents: 12
diff changeset
75 <option value="soapfuse-final-transcript">SOAPFuse (final.*.for.trans.txt)</option>
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
76 <option value="rna-star_chimeric">STAR (chimeric file)</option>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
77 <option value="star-fusion_final">STAR-Fusion (candidates.final)</option>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
78 <option value="tophat-fusion_pre">Tophat Fusion Pre (fusions.out)</option>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
79 <option value="tophat-fusion_post_potential_fusion">Tophat Fusion Post (potential_fusion.txt)</option>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
80 <option value="tophat-fusion_post_result">Tophat Fusion Post (result.txt)</option>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
81 <option value="tophat-fusion_post_result_html">Tophat Fusion Post (result.html)</option>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
82 </param>
9
77abea4fc3e7 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 1f068f256b74445a7ac296e12ccc12d42a902e70
yhoogstrate
parents: 8
diff changeset
83 <param name="gene_annotation" type="data" format="bed" label="Corresponding gene-name annotation file (BED format)" help="Make use of persistent gene annotations! Gene annotations should only be different if different reference genome builds were used" />
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
84 </repeat>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
85
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
86 <conditional name="params">
9
77abea4fc3e7 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 1f068f256b74445a7ac296e12ccc12d42a902e70
yhoogstrate
parents: 8
diff changeset
87 <param name="settingsType" type="select" label="Settings to use" help="You can use the default settings or set custom values for any FuMa parameter">
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
88 <option value="preSet" selected="true">Use Defaults</option>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
89 <option value="full">Full parameter list</option>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
90 </param>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
91 <when value="preSet">
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
92 <param name="strand_specific_matching" type="hidden" value="--strand-specific-matching" />
10
d39811cb7c3a planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 18ae9555a548d5cb3b3d15d46f57c28112bb16b9
yhoogstrate
parents: 9
diff changeset
93 <param name="acceptor_donor_order_specific_matchig" type="hidden" value="--no-acceptor-donor-order-specific-matching" />
d39811cb7c3a planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 18ae9555a548d5cb3b3d15d46f57c28112bb16b9
yhoogstrate
parents: 9
diff changeset
94 <param name="long_gene_size" type="hidden" value="200000" />
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
95 </when>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
96 <when value="full">
9
77abea4fc3e7 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 1f068f256b74445a7ac296e12ccc12d42a902e70
yhoogstrate
parents: 8
diff changeset
97 <param name="matching_method" type="select" label="Matching method: technique used to match fusion genes based on annotated gene sets" help="Overlap is the most sensitive but also more sensitive for long gene artefacts; subset is the recommended technique and EGM is conservative">
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
98 <option value="overlap">Overlap</option>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
99 <option value="subset" selected="True">Subset</option>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
100 <option value="egm">Exact Geneset Matching (EGM)</option>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
101 </param>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
102
9
77abea4fc3e7 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 1f068f256b74445a7ac296e12ccc12d42a902e70
yhoogstrate
parents: 8
diff changeset
103 <param name="strand_specific_matching" type="boolean" checked="True"
77abea4fc3e7 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 1f068f256b74445a7ac296e12ccc12d42a902e70
yhoogstrate
parents: 8
diff changeset
104 truevalue="--strand-specific-matching"
77abea4fc3e7 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 1f068f256b74445a7ac296e12ccc12d42a902e70
yhoogstrate
parents: 8
diff changeset
105 falsevalue="--no-strand-specific-matching"
10
d39811cb7c3a planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 18ae9555a548d5cb3b3d15d46f57c28112bb16b9
yhoogstrate
parents: 9
diff changeset
106 label="Consider fusion genes distinct when the breakpoints have different strands: (A&lt;-,B&lt;-) != (-&gt;A,B&lt;-); default"
9
77abea4fc3e7 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 1f068f256b74445a7ac296e12ccc12d42a902e70
yhoogstrate
parents: 8
diff changeset
107 help="Only a limited number of file formats support this feature" />
77abea4fc3e7 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 1f068f256b74445a7ac296e12ccc12d42a902e70
yhoogstrate
parents: 8
diff changeset
108 <param name="acceptor_donor_order_specific_matchig" type="boolean" checked="False"
77abea4fc3e7 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 1f068f256b74445a7ac296e12ccc12d42a902e70
yhoogstrate
parents: 8
diff changeset
109 truevalue="--acceptor-donor-order-specific-matching"
77abea4fc3e7 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 1f068f256b74445a7ac296e12ccc12d42a902e70
yhoogstrate
parents: 8
diff changeset
110 falsevalue="--no-acceptor-donor-order-specific-matching"
77abea4fc3e7 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 1f068f256b74445a7ac296e12ccc12d42a902e70
yhoogstrate
parents: 8
diff changeset
111 label="Consider fusion genes distinct when the donor and acceptor sites are swapped (A,B) != (B,A)"
77abea4fc3e7 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 1f068f256b74445a7ac296e12ccc12d42a902e70
yhoogstrate
parents: 8
diff changeset
112 help="This settings is not recommended when fusion genes detected in DNA-Seq are used" />
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
113
10
d39811cb7c3a planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 18ae9555a548d5cb3b3d15d46f57c28112bb16b9
yhoogstrate
parents: 9
diff changeset
114 <param name="long_gene_size" type="integer" min="0" value="200000" label="Long gene size" help="Gene-name based matching is more sensitive to long genes. This is the gene size used to mark fusion genes spanning a 'long gene' as reported the output. Use 0 to disable this feature (--long-gene-size)" />
d39811cb7c3a planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 18ae9555a548d5cb3b3d15d46f57c28112bb16b9
yhoogstrate
parents: 9
diff changeset
115
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
116 <param name="output_format" type="select" label="Output format">
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
117 <option value="list_boolean" selected="true">List (Boolean)</option>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
118 <option value="list">List</option>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
119 <option value="summary">Count summary</option>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
120 </param>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
121 </when>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
122 </conditional>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
123 </inputs>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
124
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
125 <outputs>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
126 <data format="tabular" name="fuma_overview" label="${tool.name} on ${', '.join([ str(d['sample'].hid)+': '+d['sample'].name for d in $datasets ])}" />
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
127 </outputs>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
128
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
129 <tests>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
130 <test>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
131 <!-- <repeat name="datasets"> -->
8
9ca5372beeae planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2-dirty
yhoogstrate
parents: 7
diff changeset
132 <param name="datasets_0|sample" value="edgren_chimerascan.txt" ftype="tabular" />
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
133 <param name="datasets_0|format" value="chimerascan" />
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
134 <param name="datasets_0|gene_annotation" value="refseq_genes_hg19.bed" ftype="bed" />
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
135 <!-- </repeat> -->
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
136 <!-- <repeat name="datasets"> -->
8
9ca5372beeae planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2-dirty
yhoogstrate
parents: 7
diff changeset
137 <param name="datasets_1|sample" value="edgren_defuse.txt" ftype="tabular" />
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
138 <param name="datasets_1|format" value="defuse" />
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
139 <param name="datasets_1|gene_annotation" value="refseq_genes_hg19.bed" ftype="bed" />
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
140 <!-- </repeat> -->
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
141 <!-- <repeat name="datasets"> -->
8
9ca5372beeae planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2-dirty
yhoogstrate
parents: 7
diff changeset
142 <param name="datasets_2|sample" value="edgren_fusion-map.txt" ftype="tabular" />
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
143 <param name="datasets_2|format" value="fusionmap" />
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
144 <param name="datasets_2|gene_annotation" value="refseq_genes_hg19.bed" ftype="bed" />
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
145 <!-- </repeat> -->
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
146 <!-- <repeat name="datasets"> -->
8
9ca5372beeae planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2-dirty
yhoogstrate
parents: 7
diff changeset
147 <param name="datasets_3|sample" value="edgren_true_positives.txt" ftype="tabular" />
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
148 <param name="datasets_3|format" value="fusionmap" />
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
149 <param name="datasets_3|gene_annotation" value="refseq_genes_hg19.bed" ftype="bed" />
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
150 <!-- </repeat> -->
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
151
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
152 <param name="settingsType" value="full" />
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
153
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
154 <param name="matching_method" value="subset" />
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
155 <param name="strand_specific_matching" value="--strand-specific-matching" />
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
156 <param name="acceptor_donor_order_specific_matchig" value="--acceptor-donor-order-specific-matching" />
10
d39811cb7c3a planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 18ae9555a548d5cb3b3d15d46f57c28112bb16b9
yhoogstrate
parents: 9
diff changeset
157 <param name="long_gene_size" value="200000" />
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
158 <param name="output_format" value="list_boolean" />
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
159
8
9ca5372beeae planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2-dirty
yhoogstrate
parents: 7
diff changeset
160 <output name="fuma_overview" file="edgren_test_01_specifc_matching_output.txt" />
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
161 </test>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
162 <test>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
163 <!-- <repeat name="datasets"> -->
8
9ca5372beeae planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2-dirty
yhoogstrate
parents: 7
diff changeset
164 <param name="datasets_0|sample" value="edgren_chimerascan.txt" ftype="tabular" />
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
165 <param name="datasets_0|format" value="chimerascan" />
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
166 <param name="datasets_0|gene_annotation" value="refseq_genes_hg19.bed" ftype="bed" />
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
167 <!-- </repeat> -->
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
168 <!-- <repeat name="datasets"> -->
8
9ca5372beeae planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2-dirty
yhoogstrate
parents: 7
diff changeset
169 <param name="datasets_1|sample" value="edgren_defuse.txt" ftype="tabular" />
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
170 <param name="datasets_1|format" value="defuse" />
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
171 <param name="datasets_1|gene_annotation" value="refseq_genes_hg19.bed" ftype="bed" />
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
172 <!-- </repeat> -->
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
173 <!-- <repeat name="datasets"> -->
8
9ca5372beeae planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2-dirty
yhoogstrate
parents: 7
diff changeset
174 <param name="datasets_2|sample" value="edgren_fusion-map.txt" ftype="tabular" />
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
175 <param name="datasets_2|format" value="fusionmap" />
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
176 <param name="datasets_2|gene_annotation" value="refseq_genes_hg19.bed" ftype="bed" />
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
177 <!-- </repeat> -->
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
178 <!-- <repeat name="datasets"> -->
8
9ca5372beeae planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2-dirty
yhoogstrate
parents: 7
diff changeset
179 <param name="datasets_3|sample" value="edgren_true_positives.txt" ftype="tabular" />
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
180 <param name="datasets_3|format" value="fusionmap" />
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
181 <param name="datasets_3|gene_annotation" value="refseq_genes_hg19.bed" ftype="bed" />
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
182 <!-- </repeat> -->
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
183
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
184 <param name="settingsType" value="full" />
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
185
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
186 <param name="matching_method" value="subset" />
9
77abea4fc3e7 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 1f068f256b74445a7ac296e12ccc12d42a902e70
yhoogstrate
parents: 8
diff changeset
187 <param name="strand_specific_matching" value="False" /><!-- Set to false, automatically sets the false value -->
77abea4fc3e7 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 1f068f256b74445a7ac296e12ccc12d42a902e70
yhoogstrate
parents: 8
diff changeset
188 <param name="acceptor_donor_order_specific_matchig" value="False" /><!-- Set to false, automatically sets the false value -->
10
d39811cb7c3a planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 18ae9555a548d5cb3b3d15d46f57c28112bb16b9
yhoogstrate
parents: 9
diff changeset
189 <param name="long_gene_size" value="200000" />
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
190 <param name="output_format" value="list_boolean" />
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
191
8
9ca5372beeae planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2-dirty
yhoogstrate
parents: 7
diff changeset
192 <output name="fuma_overview" file="edgren_test_02_unspecifc_matching_output.txt" />
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
193 </test>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
194 </tests>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
195
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
196 <help><![CDATA[
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
197 ============
3
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
198 Introduction
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
199 ============
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
200
9
77abea4fc3e7 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 1f068f256b74445a7ac296e12ccc12d42a902e70
yhoogstrate
parents: 8
diff changeset
201 A new generation of tools that identify fusion genes in RNA-seq data is limited in either sensitivity and or specificity. To allow further downstream analysis and to estimate performance, predicted fusion genes from different tools have to be compared. However, the transcriptomic context complicates genomic location-based matching. FusionMatcher (FuMa) is a program that reports identical fusion genes based on gene-name annotations. FuMa automatically compares and summarizes all combinations of two or more datasets in a single run, without additional programming necessary. FuMa uses one gene annotation, avoiding mismatches caused by tool specific gene annotations. FuMa matches 10% more fusion genes compared to exact gene matching (EGM) due to overlapping genes and accepts intermediate output files that allow a step wise analysis of corresponding tools.
3
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
202
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
203 =====
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
204 Usage
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
205 =====
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
206
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
207 After you have uploaded the results of your Fusion Gene detection experiment, and selected the format to be *tabular*, you can start the FuMa wrapper. For each dataset you simply have to add another repeat. Then you have to select a corresponding format:
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
208
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
209 *******
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
210 Formats
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
211 *******
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
212
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
213 +-------------------+-----------------------+-------------------------------------+
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
214 |Tools | File | Format string |
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
215 +===================+=======================+=====================================+
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
216 |Chimera | prettyPrint() output | chimera |
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
217 +-------------------+-----------------------+-------------------------------------+
3
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
218 |ChimeraScan | chimeras.bedpe | chimerascan |
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
219 +-------------------+-----------------------+-------------------------------------+
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
220 |Complete Genomics | highConfidenceJu*.tsv | complete-genomics |
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
221 +-------------------+-----------------------+-------------------------------------+
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
222 |Complete Genomics | allJunctionsBeta*.tsv | complete-genomics |
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
223 +-------------------+-----------------------+-------------------------------------+
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
224 |DeFuse | results.txt | defuse |
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
225 +-------------------+-----------------------+-------------------------------------+
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
226 |DeFuse | results.classify.txt | defuse |
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
227 +-------------------+-----------------------+-------------------------------------+
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
228 |DeFuse | results.filtered.txt | defuse |
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
229 +-------------------+-----------------------+-------------------------------------+
13
209e96e870e8 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit d90385601350b4d5fafae3004b470dee4a7f442d-dirty
yhoogstrate
parents: 12
diff changeset
230 |EricScript | .results.total.txt | ericscript ************* |
209e96e870e8 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit d90385601350b4d5fafae3004b470dee4a7f442d-dirty
yhoogstrate
parents: 12
diff changeset
231 +-------------------+-----------------------+-------------------------------------+
3
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
232 |Fusion Catcher | final-list_cand*.txt | fusion-catcher_final |
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
233 +-------------------+-----------------------+-------------------------------------+
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
234 |FusionMap | | fusionmap |
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
235 +-------------------+-----------------------+-------------------------------------+
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
236 |Trinity + GMAP | | trinity-gmap |
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
237 +-------------------+-----------------------+-------------------------------------+
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
238 |OncoFuse | | oncofuse |
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
239 +-------------------+-----------------------+-------------------------------------+
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
240 |RNA STAR | Chimeric.out.junction | rna-star_chimeric |
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
241 +-------------------+-----------------------+-------------------------------------+
13
209e96e870e8 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit d90385601350b4d5fafae3004b470dee4a7f442d-dirty
yhoogstrate
parents: 12
diff changeset
242 |SOAPFuse | final.*.for.genes.txt | soapfuse-final-gene |
209e96e870e8 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit d90385601350b4d5fafae3004b470dee4a7f442d-dirty
yhoogstrate
parents: 12
diff changeset
243 +-------------------+-----------------------+-------------------------------------+
209e96e870e8 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit d90385601350b4d5fafae3004b470dee4a7f442d-dirty
yhoogstrate
parents: 12
diff changeset
244 |SOAPFuse | final.*.for.trans.txt | soapfuse-final-transcript |
209e96e870e8 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit d90385601350b4d5fafae3004b470dee4a7f442d-dirty
yhoogstrate
parents: 12
diff changeset
245 +-------------------+-----------------------+-------------------------------------+
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
246 |STAR Fusion | _candidates.final | star-fusion_final |
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
247 +-------------------+-----------------------+-------------------------------------+
3
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
248 |TopHat Fusion pre | fusions.out | tophat-fusion_pre |
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
249 +-------------------+-----------------------+-------------------------------------+
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
250 |TopHat Fusion post | potential_fusion.txt | tophat-fusion_post_potential_fusion |
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
251 +-------------------+-----------------------+-------------------------------------+
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
252 |TopHat Fusion post | result.txt | tophat-fusion_post_result |
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
253 +-------------------+-----------------------+-------------------------------------+
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
254 |TopHat Fusion post | result.html | tophat-fusion_post_result_html |
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
255 +-------------------+-----------------------+-------------------------------------+
3
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
256
13
209e96e870e8 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit d90385601350b4d5fafae3004b470dee4a7f442d-dirty
yhoogstrate
parents: 12
diff changeset
257 ************* EricScript often contains entries with unknown breakpoints.
209e96e870e8 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit d90385601350b4d5fafae3004b470dee4a7f442d-dirty
yhoogstrate
parents: 12
diff changeset
258 Because no genomic coordinates are given those fusion genes can not be
209e96e870e8 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit d90385601350b4d5fafae3004b470dee4a7f442d-dirty
yhoogstrate
parents: 12
diff changeset
259 imported into FuMa and only those with breakpoints will be taken into account.
209e96e870e8 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit d90385601350b4d5fafae3004b470dee4a7f442d-dirty
yhoogstrate
parents: 12
diff changeset
260
209e96e870e8 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit d90385601350b4d5fafae3004b470dee4a7f442d-dirty
yhoogstrate
parents: 12
diff changeset
261
209e96e870e8 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit d90385601350b4d5fafae3004b470dee4a7f442d-dirty
yhoogstrate
parents: 12
diff changeset
262
3
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
263 To annotate genes upon the breakpoints you must provide a BED file that contains gene annotations for the user genome build. Make sure **your BED file contains one gene per line**. You should use BED files that contain one exon per line only if you want restrict your analysis to fusion genes detected within exons.
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
264
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
265 UCSC genome browser provides a very simple way of obtaining BED files with one gene per line by selecting their *RefSeq Genes*-track and *knownGene*-table and putting the export format to BED. Galaxy should have a built-in UCSC table browser.
f06461883f7b updated to version 2.7.1 and extended wrapper with additional output type and a help section
yhoogstrate
parents: 2
diff changeset
266
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
267 ]]></help>
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
268
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
269 <citations>
12
4ceaf2551a79 planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 811623bf945377481ed49f83e4dc4d08e83103c5
yhoogstrate
parents: 10
diff changeset
270 <citation type="doi">10.1093/bioinformatics/btv721</citation>
7
77c5a17f335b planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/fuma_galaxy_wrapper commit 3da3fcc0204205d4899763f9fe63edf9aa16d5a2
yhoogstrate
parents: 6
diff changeset
271 </citations>
0
267d0c2ebe56 Uploaded
yhoogstrate
parents:
diff changeset
272 </tool>