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 ###########################################################'
|
|
48
|
|
49 2/ Recup motif databases on each RSAT server :
|
|
50
|
|
51 To use -motif_db option peak motifs, you must create motif databases files for each RSAT server.
|
|
52 Run supported-motif-databases_soap.py script with a terminal :
|
|
53
|
|
54 python supported-motif-databases_soap.py -galaxyPath /path/to/galaxy/tool-data
|
|
55
|
|
56 -> galaxyPath must be your tool-data path in your system
|
|
57
|
|
58 If you want help :
|
|
59
|
|
60 python supported-motif-databases_soap.py -h
|
|
61
|
|
62
|
|
63
|
|
64
|
|
65
|