Mercurial > repos > jjohnson > defuse
comparison README @ 4:679a5c7b1294 draft
deFuse version 0.5.0 - Use tool_dependencies.xml
author | Jim Johnson <jj@umn.edu> |
---|---|
date | Fri, 04 Jan 2013 13:29:03 -0600 |
parents | 4245c2b047de |
children | 3bd1087db05e |
comparison
equal
deleted
inserted
replaced
3:c90022a13c7c | 4:679a5c7b1294 |
---|---|
1 The DeFuse galaxy tool is based on DeFuse_Version_0.4.3 | 1 The DeFuse galaxy tool is based on DeFuse_Version_0.5.0 |
2 http://sourceforge.net/apps/mediawiki/defuse/index.php?title=Main_Page | 2 http://sourceforge.net/apps/mediawiki/defuse/index.php?title=Main_Page |
3 | 3 |
4 DeFuse is a software package for gene fusion discovery using RNA-Seq data. The software uses clusters of discordant paired end alignments to inform a split read alignment analysis for finding fusion boundaries. The software also employs a number of heuristic filters in an attempt to reduce the number of false positives and produces a fully annotated output for each predicted fusion. | 4 DeFuse is a software package for gene fusion discovery using RNA-Seq data. The software uses clusters of discordant paired end alignments to inform a split read alignment analysis for finding fusion boundaries. The software also employs a number of heuristic filters in an attempt to reduce the number of false positives and produces a fully annotated output for each predicted fusion. |
5 | 5 |
6 | 6 |
7 Manual: | 7 Manual: |
8 http://sourceforge.net/apps/mediawiki/defuse/index.php?title=DeFuse_Version_0.4.3 | 8 http://sourceforge.net/apps/mediawiki/defuse/index.php?title=DeFuse_Version_0.4.2 |
9 | |
10 The included tool_dependencies.xml will download and install the defuse code. | |
11 It will set the environment variable: "DEFUSE_PATH" to the location of the defuse install. | |
9 | 12 |
10 | 13 |
11 The included defuse source code is from: http://sourceforge.net/projects/defuse/files/defuse/0.4/defuse-0.4.3.tar.gz/download | 14 The defuse.pl command relies on a configuration file to specifiy options, the location of reference data, and other applications that it depends upon: bowtie, bowtie-build, samtools, blat, fatotwobit, R, and Rscript. |
12 (to install uncompress the defuse source and navigate to the tools dir and type make) | 15 |
13 tar zxf defuse-0.4.3.tar.gz | 16 The DeFuse galaxy tool can either construct the config.txt file that is mentioned in the defuse manual, or select an existing config.txt file in the users history. |
14 cd defuse-0.4.3/tool | 17 When constructing the config.txt file, the DeFuse tool uses the values selected in: tool-data/defuse.loc |
15 make | 18 The dictionary field in the tool-data/defuse.loc can be used to set fields in the config.txt file, including the site specific location of reference data and the paths to the other application binaries. |
16 cd ../.. | 19 The "Defuse parameter settings" are used to alter options in the config.txt file. |
20 | |
21 The DeFuse galaxy tool also generates a bash script to run defuse. | |
22 That script will attempt to edit the config.txt file to specifiy any unset paths to applications that defuse relies upon: | |
23 bowtie, bowtie-build, samtools, blat, fatotwobit, R, and Rscript | |
24 The script uses the using the shell "which" command to discover the application path, so the required applications should in PATH environment variable. | |
25 | |
17 | 26 |
18 Generate Reference Datasets as described in the Manual: | 27 Generate Reference Datasets as described in the Manual: |
19 | 28 |
20 The manual has detailed instructions on how to set up reference datasets for Human hg19 and hg18. | 29 The manual has detailed instructions on how to set up reference datasets for Human hg19 and hg18. |
21 We were able to follow the same basic procedures to set up a reference for Mouse mm9. | 30 We were able to follow the same basic procedures to set up a reference for Mouse mm9. |
22 | 31 |
23 These datasets should be referenced in the tool-data/defuse.loc file. | 32 These datasets should be referenced in the tool-data/defuse.loc file. |
24 | 33 |
25 | 34 |
26 The defuse.xml galaxy tool wrapper will generate a defuse config.txt using values from tool-data/defuse.loc | |
27 and call defuse-0.4.3/scripts/defuse.pl | |
28 | 35 |
29 |