Mercurial > repos > nilesh > somatic_sniper
comparison tool_dependencies.xml @ 26:05eeb8bb9715 draft
Uploaded
author | nilesh |
---|---|
date | Mon, 08 Jul 2013 14:38:23 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
25:d2d716dbea04 | 26:05eeb8bb9715 |
---|---|
1 <?xml version="1.0"?> | |
2 <tool_dependency> | |
3 <package name="somatic-sniper" version="unstable"> | |
4 <install version="1.0"> | |
5 <actions> | |
6 | |
7 <!-- Samtools --> | |
8 <action type="download_by_url">http://downloads.sourceforge.net/project/samtools/samtools/0.1.6/samtools-0.1.6.tar.bz2</action> | |
9 <action type="shell_command">sed -i.bak 's/-lcurses/-lncurses/' Makefile</action> | |
10 <action type="shell_command">sed -i.bak 's/-lz -L. -lbam/-lbam -lz -L./' Makefile</action> | |
11 <action type="shell_command">make</action> | |
12 <action type="move_directory_files"> | |
13 <source_directory>.</source_directory> | |
14 <destination_directory>$INSTALL_DIR/lib/samtools</destination_directory> | |
15 </action> | |
16 | |
17 <!-- Somatic Sniper --> | |
18 <action type="shell_command">git clone --recursive git://github.com/genome/somatic-sniper.git</action> | |
19 <action type="move_directory_files"> | |
20 <source_directory>.</source_directory> | |
21 <destination_directory>$INSTALL_DIR/lib</destination_directory> | |
22 </action> | |
23 <action type="make_directory">$INSTALL_DIR/build</action> | |
24 <action type="shell_command">cmake -D Samtools_INCLUDE_DIR:PATH=$INSTALL_DIR/lib/samtools $INSTALL_DIR/lib/somatic-sniper</action> | |
25 <action type="move_directory_files"> | |
26 <source_directory>.</source_directory> | |
27 <destination_directory>$INSTALL_DIR/build</destination_directory> | |
28 </action> | |
29 <action type="shell_command">make</action> | |
30 <action type="move_directory_files"> | |
31 <source_directory>$install_DIR/build/bin</source_directory> | |
32 <destination_directory>$INSTALL_DIR/bin</destination_directory> | |
33 </action> | |
34 <action type="set_environment"> | |
35 <environment_variable name="PATH" action="prepend_to">$INSTALL_DIR/bin</environment_variable> | |
36 </action> | |
37 </actions> | |
38 </install> | |
39 <readme> | |
40 Somatic-sniper compiled version is unstable, for stable version use debian package system apt-get, this install requires cmake and zlib (for samtools) | |
41 </readme> | |
42 </package> | |
43 | |
44 | |
45 </tool_dependency> |