9
|
1 ----------------------------------------------------
|
|
2 DESeq: A Galaxy wrapper for DESeq version 1.12.1
|
|
3 ----------------------------------------------------
|
0
|
4
|
|
5 Description:
|
9
|
6 ------------
|
0
|
7 DESeq can be used as a web service embedded in a Galaxy instance.
|
|
8 We call it as DESeq-hts.
|
|
9
|
9
|
10 Requirements:
|
|
11 -------------
|
0
|
12 MATLAB/OCTAVE and Python :- Preprocessing of sequencing reads and GFF files
|
9
|
13 R, Bio-conductor package :- Required for DESeq
|
0
|
14 SCIPY, NUMPY :- for python
|
9
|
15 SAMTOOLS :- Sequencing read processing
|
0
|
16
|
|
17 Contents:
|
9
|
18 ---------
|
|
19 ./src
|
0
|
20 All relevant scripts for DESeq-hts are located in the subdirectory
|
9
|
21 src. src/deseq-hts.sh is the main script to start DESeq-hts. The
|
|
22 preprocessing of BAM and GFF file start before the R DESeq script.
|
0
|
23 Please follow the shell script to understand the details.
|
|
24
|
9
|
25 ./galaxy
|
0
|
26 Galaxy tool configuration file can be found galaxy folder. Please
|
|
27 make necessary editing for .xml file and remaining .sh files and
|
|
28 perform few tests.
|
|
29
|
9
|
30 ./setup_deseq-hts.sh
|
0
|
31 Setup script for DESeq-hts.
|
|
32
|
9
|
33 ./mex
|
0
|
34 matlab executable files.
|
|
35
|
9
|
36 ./bin
|
0
|
37 Contains deseq_config.sh file which is used for the configuration of
|
|
38 DESeq-hts. According to your platform, the default file will be changed.
|
|
39
|
9
|
40 ./test_data
|
|
41 This sub-directory contains all data for running a functional test in
|
0
|
42 Galaxy framework. You may need to move these test files into the test-data
|
|
43 directory.
|
|
44
|
9
|
45 ./tools
|
0
|
46 A python based GFF parsing program. Also contains small utils programs.
|
|
47
|
|
48 Getting started:
|
9
|
49 ----------------
|
0
|
50 Check for all requirements first, then
|
|
51
|
|
52 a) Run ./setup_deseq-hts.sh and setup paths and configuration options for DESeq-hts.
|
|
53
|
|
54 b) Inside the mex folder execute the make file to create platform dependent .mex files
|
|
55 cd mex/Makefile
|
|
56 make [interpreter]
|
|
57 make octave for octave
|
|
58 make matlab for matlab
|
|
59 make all for octave and matlab
|
|
60
|
|
61 c) Edit the Galaxy tool configuration file to adjust the path if necessary.
|
|
62
|
|
63 Licenses:
|
9
|
64 ---------
|
0
|
65 If **DESeq** is used to obtain results for scientific publications it should be cited as [1].
|
|
66
|
|
67 This wrapper program (DESeq-hts) is free software; you can redistribute it and/or modify it
|
|
68 under the terms of the GNU General Public License as published by the Free Software Foundation;
|
|
69 either version 3 of the License, or (at your option) any later version.
|
|
70
|
|
71 Written (W) 2009-2012 Jonas Behr, Regina Bohnert, Andre Kahles, Gunnar Raetsch, Vipin T. Sreedharan
|
|
72 Copyright (C) 2009-2012 Friedrich Miescher Laboratory of the Max Planck Society, Tubingen, Germany and
|
9
|
73 2013 cBio Memorial Sloan Kettering Cancer Center, New York City, USA.
|
0
|
74
|
|
75 References:
|
9
|
76 -----------
|
0
|
77 [1] Anders, S and Huber, W (2010): `Differential expression analysis for sequence count data`.
|
|
78
|
9
|
79 Contributions:
|
|
80 --------------
|
|
81 15 Aug. 2013
|
|
82 Philippe Moncuquet
|
|
83 Bioinformatics Analyst, Bioinformatics Core, CSIRO Mathematics, Informatics and Statistics
|
|
84
|
|
85 Extended the DESeq result.
|
|
86
|
0
|
87 Contact:
|
9
|
88 --------
|
|
89 support [at] oqtans.org
|
0
|
90
|