Mercurial > repos > jjohnson > defuse
annotate tool_dependencies.xml @ 7:1ea6445491d4 draft
Update to deFuse version 0.6.0
author | Jim Johnson <jj@umn.edu> |
---|---|
date | Mon, 07 Jan 2013 14:52:26 -0600 |
parents | 3bd1087db05e |
children | b22f8634ff84 |
rev | line source |
---|---|
4
679a5c7b1294
deFuse version 0.5.0 - Use tool_dependencies.xml
Jim Johnson <jj@umn.edu>
parents:
diff
changeset
|
1 <?xml version="1.0"?> |
679a5c7b1294
deFuse version 0.5.0 - Use tool_dependencies.xml
Jim Johnson <jj@umn.edu>
parents:
diff
changeset
|
2 <tool_dependency> |
7 | 3 <package name="defuse" version="0.6.0"> |
4
679a5c7b1294
deFuse version 0.5.0 - Use tool_dependencies.xml
Jim Johnson <jj@umn.edu>
parents:
diff
changeset
|
4 <install version="1.0"> |
679a5c7b1294
deFuse version 0.5.0 - Use tool_dependencies.xml
Jim Johnson <jj@umn.edu>
parents:
diff
changeset
|
5 <actions> |
7 | 6 <action type="download_by_url">http://sourceforge.net/projects/defuse/files/defuse/0.6/defuse-0.6.0.tar.gz</action> |
4
679a5c7b1294
deFuse version 0.5.0 - Use tool_dependencies.xml
Jim Johnson <jj@umn.edu>
parents:
diff
changeset
|
7 <action type="shell_command">cd tools && make</action> |
679a5c7b1294
deFuse version 0.5.0 - Use tool_dependencies.xml
Jim Johnson <jj@umn.edu>
parents:
diff
changeset
|
8 <action type="move_directory_files"> |
679a5c7b1294
deFuse version 0.5.0 - Use tool_dependencies.xml
Jim Johnson <jj@umn.edu>
parents:
diff
changeset
|
9 <source_directory>.</source_directory> |
679a5c7b1294
deFuse version 0.5.0 - Use tool_dependencies.xml
Jim Johnson <jj@umn.edu>
parents:
diff
changeset
|
10 <destination_directory>$INSTALL_DIR</destination_directory> |
679a5c7b1294
deFuse version 0.5.0 - Use tool_dependencies.xml
Jim Johnson <jj@umn.edu>
parents:
diff
changeset
|
11 </action> |
679a5c7b1294
deFuse version 0.5.0 - Use tool_dependencies.xml
Jim Johnson <jj@umn.edu>
parents:
diff
changeset
|
12 <action type="set_environment"> |
679a5c7b1294
deFuse version 0.5.0 - Use tool_dependencies.xml
Jim Johnson <jj@umn.edu>
parents:
diff
changeset
|
13 <environment_variable name="DEFUSE_PATH" action="set_to">$INSTALL_DIR</environment_variable> |
679a5c7b1294
deFuse version 0.5.0 - Use tool_dependencies.xml
Jim Johnson <jj@umn.edu>
parents:
diff
changeset
|
14 </action> |
679a5c7b1294
deFuse version 0.5.0 - Use tool_dependencies.xml
Jim Johnson <jj@umn.edu>
parents:
diff
changeset
|
15 </actions> |
679a5c7b1294
deFuse version 0.5.0 - Use tool_dependencies.xml
Jim Johnson <jj@umn.edu>
parents:
diff
changeset
|
16 </install> |
679a5c7b1294
deFuse version 0.5.0 - Use tool_dependencies.xml
Jim Johnson <jj@umn.edu>
parents:
diff
changeset
|
17 <readme> |
7 | 18 deFuse code |
19 To build the deFuse toolset you must have the boost c++ development libraries installed. If they are not installed on your system you can download them from the boost website. A full install of boost is not required. The easiest thing to do is to download the latest boost source tar.gz, extract it, then add the extracted path to the CPLUS_INCLUDE_PATH environment variable (in bash, `export CPLUS_INCLUDE_PATH=/boost/directory/:$CPLUS_INCLUDE_PATH`) | |
4
679a5c7b1294
deFuse version 0.5.0 - Use tool_dependencies.xml
Jim Johnson <jj@umn.edu>
parents:
diff
changeset
|
20 </readme> |
679a5c7b1294
deFuse version 0.5.0 - Use tool_dependencies.xml
Jim Johnson <jj@umn.edu>
parents:
diff
changeset
|
21 </package> |
679a5c7b1294
deFuse version 0.5.0 - Use tool_dependencies.xml
Jim Johnson <jj@umn.edu>
parents:
diff
changeset
|
22 |
7 | 23 <package name="samtools" version="0.1.18"> |
24 <install version="1.0"> | |
25 <actions> | |
26 <action type="download_by_url">http://sourceforge.net/projects/samtools/files/samtools/0.1.18/samtools-0.1.18.tar.bz2</action> | |
27 <action type="shell_command">sed -i.bak -e 's/-lcurses/-lncurses/g' Makefile</action> | |
28 <action type="shell_command">make</action> | |
29 <action type="move_file"> | |
30 <source>samtools</source> | |
31 <destination>$INSTALL_DIR/bin</destination> | |
32 </action> | |
33 <action type="move_file"> | |
34 <source>misc/maq2sam-long</source> | |
35 <destination>$INSTALL_DIR/bin</destination> | |
36 </action> | |
37 <action type="set_environment"> | |
38 <environment_variable name="PATH" action="prepend_to">$INSTALL_DIR/bin</environment_variable> | |
39 </action> | |
40 </actions> | |
41 </install> | |
42 <readme> | |
43 Compiling SAMtools requires the ncurses and zlib development libraries. | |
44 </readme> | |
45 </package> | |
46 | |
47 | |
5
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
48 <package name="bowtie" version="0.12.7"> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
49 <install version="1.0"> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
50 <actions> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
51 <action type="download_by_url">http://downloads.sourceforge.net/project/bowtie-bio/bowtie/0.12.7/bowtie-0.12.7-src.zip</action> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
52 <action type="shell_command">make</action> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
53 <action type="move_file"> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
54 <source>bowtie</source> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
55 <destination>$INSTALL_DIR/bin</destination> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
56 </action> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
57 <action type="move_file"> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
58 <source>bowtie-build</source> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
59 <destination>$INSTALL_DIR/bin</destination> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
60 </action> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
61 <action type="move_file"> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
62 <source>bowtie-inspect</source> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
63 <destination>$INSTALL_DIR/bin</destination> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
64 </action> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
65 <action type="set_environment"> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
66 <environment_variable name="PATH" action="prepend_to">$INSTALL_DIR/bin</environment_variable> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
67 </action> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
68 </actions> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
69 </install> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
70 <readme> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
71 Compiling Bowtie requires libpthread to be present on your system. |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
72 </readme> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
73 </package> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
74 |
7 | 75 <package name="gmap" version="2012-07-20"> |
76 <install version="1.0"> | |
77 <actions> | |
78 <action type="download_by_url" target_filename="gmap-2012-07-20.tar.gz">http://research-pub.gene.com/gmap/src/gmap-gsnap-2012-07-20.v2.tar.gz</action> | |
79 <action type="shell_command">./configure</action> | |
80 <action type="shell_command">make</action> | |
81 <action type="move_file"> | |
82 <source>src/gmap</source> | |
83 <destination>$INSTALL_DIR/bin</destination> | |
84 </action> | |
85 <action type="move_file"> | |
86 <source>src/gmapindex</source> | |
87 <destination>$INSTALL_DIR/bin</destination> | |
88 </action> | |
89 <action type="move_file"> | |
90 <source>src/gsnap</source> | |
91 <destination>$INSTALL_DIR/bin</destination> | |
92 </action> | |
93 <action type="move_file"> | |
94 <source>src/uniqscan</source> | |
95 <destination>$INSTALL_DIR/bin</destination> | |
96 </action> | |
97 <action type="move_file"> | |
98 <source>src/iit_store</source> | |
99 <destination>$INSTALL_DIR/bin</destination> | |
100 </action> | |
101 <action type="move_file"> | |
102 <source>src/iit_get</source> | |
103 <destination>$INSTALL_DIR/bin</destination> | |
104 </action> | |
105 <action type="move_file"> | |
106 <source>src/atoiindex</source> | |
107 <destination>$INSTALL_DIR/bin</destination> | |
108 </action> | |
109 <action type="move_file"> | |
110 <source>src/snpindex</source> | |
111 <destination>$INSTALL_DIR/bin</destination> | |
112 </action> | |
113 <action type="move_file"> | |
114 <source>src/cmetindex</source> | |
115 <destination>$INSTALL_DIR/bin</destination> | |
116 </action> | |
117 <action type="move_file"> | |
118 <source>src/get-genome</source> | |
119 <destination>$INSTALL_DIR/bin</destination> | |
120 </action> | |
121 <action type="move_directory_files"> | |
122 <source_directory>util</source_directory> | |
123 <destination_directory>$INSTALL_DIR/bin</destination_directory> | |
124 </action> | |
125 <action type="set_environment"> | |
126 <environment_variable name="PATH" action="prepend_to">$INSTALL_DIR/bin</environment_variable> | |
127 </action> | |
128 </actions> | |
129 </install> | |
130 <readme> | |
131 </readme> | |
132 </package> | |
133 | |
5
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
134 <package name="blat" version="34x10"> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
135 <install version="1.0"> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
136 <actions> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
137 <action type="download_by_url">http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/blat/blat</action> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
138 <action type="shell_command">chmod 755 blat</action> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
139 <action type="move_file"> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
140 <source>blat</source> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
141 <destination>$INSTALL_DIR/bin</destination> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
142 </action> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
143 <action type="set_environment"> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
144 <environment_variable name="PATH" action="prepend_to">$INSTALL_DIR/bin</environment_variable> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
145 </action> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
146 </actions> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
147 </install> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
148 <readme> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
149 This only handles blat for a non-commercial linux system. |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
150 |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
151 Please note that the Blat source and executables are freely available for |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
152 academic, nonprofit and personal use. Commercial licensing information is |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
153 available on the Kent Informatics website (http://www.kentinformatics.com/). |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
154 </readme> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
155 </package> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
156 |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
157 <package name="fatotwobit" version="34x10"> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
158 <install version="1.0"> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
159 <actions> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
160 <action type="download_by_url">http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/faToTwoBit</action> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
161 <action type="shell_command">chmod 755 faToTwoBit</action> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
162 <action type="move_file"> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
163 <source>faToTwoBit</source> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
164 <destination>$INSTALL_DIR/bin</destination> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
165 </action> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
166 <action type="set_environment"> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
167 <environment_variable name="PATH" action="prepend_to">$INSTALL_DIR/bin</environment_variable> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
168 </action> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
169 </actions> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
170 </install> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
171 <readme> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
172 This only handles faToTwoBit for a non-commercial linux system. |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
173 |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
174 Please note that the source and executables are freely available for |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
175 academic, nonprofit and personal use. Commercial licensing information is |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
176 available on the Kent Informatics website (http://www.kentinformatics.com/). |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
177 </readme> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
178 </package> |
3bd1087db05e
Add dependecies for bowtie, blat, and faToTwoBit
Jim Johnson <jj@umn.edu>
parents:
4
diff
changeset
|
179 |
4
679a5c7b1294
deFuse version 0.5.0 - Use tool_dependencies.xml
Jim Johnson <jj@umn.edu>
parents:
diff
changeset
|
180 </tool_dependency> |