annotate tophat_fusion_post.xml @ 11:08f88205d596 draft

Uploaded
author devteam
date Thu, 27 Feb 2014 15:03:33 -0500
parents 33aafd74bb31
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
1 <tool id="tophat_fusion_post" name="Tophat Fusion Post" version="0.1">
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
2 <description>post-processing to identify fusion genes</description>
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
3 <version_command>tophat-fusion-post --version</version_command>
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
4 <requirements>
1
75845643f9dd Requirement fixes and fixed sample loc file."
devteam@galaxyproject.org
parents: 0
diff changeset
5 <requirement type="package" version="2.2.28">blast+</requirement>
4
51ede4e7d4f0 Add Tophat2 requirement.
devteam@galaxyproject.org
parents: 3
diff changeset
6 <requirement type="package" version="0.12.7">bowtie</requirement>
51ede4e7d4f0 Add Tophat2 requirement.
devteam@galaxyproject.org
parents: 3
diff changeset
7 <requirement type="package" version="2.0.9">tophat2</requirement>
0
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
8 </requirements>
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
9 <command>
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
10 ## Set up tophat_out structure.
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
11 mkdir tophat_out; ln -s $accepted_hits tophat_out/accepted_hits.bam; ln -s $fusions tophat_out/fusions.out;
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
12
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
13 ## Set up blast directory structure.
3
2f75d0317ee5 Use Bowtie rather than Bowtie2 and update wrapper to fix Cheetah syntax bug.
devteam@galaxyproject.org
parents: 1
diff changeset
14 #set blast_db_path = $__get_data_table_entry__('tophat_fusion_blastdb_indexes', 'dbkey', $accepted_hits.dbkey, 'path')
0
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
15 ln -s ${blast_db_path}/ blast;
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
16
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
17 ## Set up additional files:
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
18 ln -s ${blast_db_path}/refGene.txt .;
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
19 ln -s ${blast_db_path}/ensGene.txt .;
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
20 ln -s ${blast_db_path}/mcl .;
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
21
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
22 ## Run tophat-fusion-post
9
7d6658b2531a Uploaded
devteam
parents: 7
diff changeset
23 tophat-fusion-post -p \${GALAXY_SLOTS:-4}
0
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
24 --num-fusion-reads $num_fusion_reads --num-fusion-pairs $num_fusion_pairs --num-fusion-both $num_fusion_both --fusion-read-mismatches $fusion_read_mismatches --fusion-multireads $fusion_multireads
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
25 #if str($is_human) == 'No':
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
26 --non-human
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
27 #end if
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
28
3
2f75d0317ee5 Use Bowtie rather than Bowtie2 and update wrapper to fix Cheetah syntax bug.
devteam@galaxyproject.org
parents: 1
diff changeset
29 ## Bowtie indices.
10
33aafd74bb31 Fix bugs: (a) use value rather than dbkey to get bowtie indices and (b) point to correct bowtie table.
devteam@galaxyproject.org
parents: 9
diff changeset
30 ${__get_data_table_entry__('bowtie_indexes', 'value', $accepted_hits.dbkey, 'path')}
0
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
31 </command>
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
32
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
33 <inputs>
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
34 <param format="bam" name="accepted_hits" type="data" label="BAM file of aligned RNA-Seq reads" help=""/>
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
35 <param format="tabular" name="fusions" type="data" label="Tabular file of potential fusions" help=""/>
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
36 <param name="num_fusion_reads" type="integer" value="3" label="Num Fusion Reads" help="Fusions with at least this many supporting reads will be reported."/>
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
37 <param name="num_fusion_pairs" type="integer" value="2" label="Num Fusion Pairs" help="Fusions with at least this many supporting pairs will be reported."/>
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
38 <param name="num_fusion_both" type="integer" value="0" label="Num Fusion Reads + Pairs" help="The sum of supporting reads and pairs is at least this number for a fusion to be reported."/>
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
39 <param name="fusion_read_mismatches" type="integer" value="2" label="Fusion Read Mismatches" help="Reads support fusions if they map across fusion with at most this many mismatches."/>
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
40 <param name="fusion_multireads" type="integer" value="2" label="Reads that map to more than this many places will be ignored." help=""/>
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
41 <param name="is_human" type="select" label="Is your data from humans?">
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
42 <option value="Yes" selected="True">Yes</option>
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
43 <option value="No">No</option>
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
44 </param>
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
45 </inputs>
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
46
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
47 <stdio>
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
48 <regex match=".*" source="both" level="log" description="tool progress"/>
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
49 </stdio>
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
50
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
51 <outputs>
7
052b357bb2b8 Update output type
devteam@galaxyproject.org
parents: 4
diff changeset
52 <data format="tabular" name="results_txt" label="${tool.name} on ${on_string}: text results" from_work_dir="tophatfusion_out/result.txt"/>
0
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
53 <data format="html" name="results_html" label="${tool.name} on ${on_string}: html results" from_work_dir="tophatfusion_out/result.html"/>
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
54 </outputs>
11
08f88205d596 Uploaded
devteam
parents: 10
diff changeset
55
0
70f710e91120 Initial upload
devteam@galaxyproject.org
parents:
diff changeset
56 </tool>