25
|
1 #RSAT tools - developed by Jocelyn Brayet <jocelyn.brayet@curie.fr>
|
|
2 #Copyright (C) 2015 Institut Curie
|
|
3 #
|
|
4 #Programs are free software: you can redistribute it and/or modify
|
|
5 #it under the terms of the GNU General Public License as published by
|
|
6 #the Free Software Foundation, either version 3 of the License, or
|
|
7 #(at your option) any later version.
|
|
8 #
|
|
9 #Programs are distributed in the hope that it will be useful,
|
|
10 #but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12 #GNU General Public License for more details.
|
|
13 #
|
|
14 #You should have received a copy of the GNU General Public License
|
|
15 #along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
16 #
|
|
17 ###########################################################'
|
|
18
|
|
19 1/ Additional softwares
|
|
20
|
|
21 -> Python packages :
|
|
22
|
|
23 - argparse
|
|
24 - os
|
|
25 - urllib
|
|
26 - zipfile
|
|
27 - time
|
|
28 - platform
|
|
29 - suds
|
|
30
|
|
31 ###########################################################'
|
|
32
|
|
33 2/ Recup organisms on each RSAT server :
|
|
34
|
|
35 To use -organism option in different tools, you must create organisms files for each RSAT server.
|
|
36 Run supported-organisms_soap.py script with a terminal :
|
|
37
|
|
38 python supported-organisms_soap.py -f tab -galaxyPath /path/to/galaxy/tool-data
|
|
39
|
|
40 -> galaxyPath must be your tool-data path in your system
|
|
41
|
|
42 If you want help :
|
|
43
|
|
44 python supported-organisms_soap.py -h
|
|
45
|
|
46 ###########################################################'
|
|
47
|
46
|
48 3/ Recup motif databases on each RSAT server :
|
25
|
49
|
|
50 To use -motif_db option peak motifs, you must create motif databases files for each RSAT server.
|
|
51 Run supported-motif-databases_soap.py script with a terminal :
|
|
52
|
|
53 python supported-motif-databases_soap.py -galaxyPath /path/to/galaxy/tool-data
|
|
54
|
|
55 -> galaxyPath must be your tool-data path in your system
|
|
56
|
|
57 If you want help :
|
|
58
|
|
59 python supported-motif-databases_soap.py -h
|
|
60
|
46
|
61 ###########################################################'
|
|
62
|
|
63 4/ Display
|
|
64
|
48
|
65 If you want an aesthetical display, change "sanitize_all_html" parameter in galaxi.ini file.
|
|
66 You must put : sanitize_all_html=False
|
25
|
67
|
|
68
|
|
69
|
|
70
|