annotate tool_dependencies.xml @ 10:2d4ef45ec089 draft

Uploaded modified tool_dependencies.xml to see if that helps with setting the installation env for MACS 2.1.0 (which needs Numpy).
author pjbriggs
date Mon, 15 Jun 2015 06:56:07 -0400
parents 7aecd0908b3c
children e164b8e164a7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
fdad0c8c0957 Uploaded initial version to test toolshed.
pjbriggs
parents:
diff changeset
1 <?xml version="1.0"?>
fdad0c8c0957 Uploaded initial version to test toolshed.
pjbriggs
parents:
diff changeset
2 <tool_dependency>
2
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
3 <!-- Dependencies from main/test toolsheds -->
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
4 <package name="numpy" version="1.9">
9
7aecd0908b3c Uploaded version 2.1.0-4.
pjbriggs
parents: 7
diff changeset
5 <repository changeset_revision="43cb426cb05d" name="package_numpy_1_9" owner="iuc" prior_installation_required="True" toolshed="https://testtoolshed.g2.bx.psu.edu" />
0
fdad0c8c0957 Uploaded initial version to test toolshed.
pjbriggs
parents:
diff changeset
6 </package>
6
344dd37d1704 Add dependency on R.
pjbriggs
parents: 5
diff changeset
7 <package name="R" version="3.1.2">
344dd37d1704 Add dependency on R.
pjbriggs
parents: 5
diff changeset
8 <repository changeset_revision="41f43a2064ba" name="package_r_3_1_2" owner="iuc" prior_installation_required="True" toolshed="https://testtoolshed.g2.bx.psu.edu" />
344dd37d1704 Add dependency on R.
pjbriggs
parents: 5
diff changeset
9 </package>
2
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
10 <!-- Subset of UCSC tools -->
5
9f6d5cae9181 Uploaded yet another attempt to fix tool dependencies!
pjbriggs
parents: 4
diff changeset
11 <package name="ucsc_tools_for_macs21" version="1.0">
2
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
12 <install version="1.0">
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
13 <actions>
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
14 <!-- fetchChromSizes -->
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
15 <action type="download_binary">
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
16 <url_template architecture="x86_64" os="linux">http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/fetchChromSizes</url_template>
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
17 </action>
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
18 <action type="chmod">
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
19 <file mode="755">$INSTALL_DIR/fetchChromSizes</file>
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
20 </action>
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
21 <!-- bedClip -->
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
22 <action type="download_binary">
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
23 <url_template architecture="x86_64" os="linux">http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/bedClip</url_template>
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
24 </action>
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
25 <action type="chmod">
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
26 <file mode="755">$INSTALL_DIR/bedClip</file>
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
27 </action>
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
28 <!-- bedGraphToBigWig -->
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
29 <action type="download_binary">
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
30 <url_template architecture="x86_64" os="linux">http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/bedGraphToBigWig</url_template>
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
31 </action>
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
32 <action type="chmod">
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
33 <file mode="755">$INSTALL_DIR/bedGraphToBigWig</file>
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
34 </action>
7
0c6b14f3fefc Attempt to fix installation of tool dependencies for UCSC/bigwig generation, and trap for undefined genome build.
pjbriggs
parents: 6
diff changeset
35 <action type="set_environment">
0c6b14f3fefc Attempt to fix installation of tool dependencies for UCSC/bigwig generation, and trap for undefined genome build.
pjbriggs
parents: 6
diff changeset
36 <environment_variable action="prepend_to" name="PATH">$INSTALL_DIR</environment_variable>
0c6b14f3fefc Attempt to fix installation of tool dependencies for UCSC/bigwig generation, and trap for undefined genome build.
pjbriggs
parents: 6
diff changeset
37 </action>
2
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
38 </actions>
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
39 </install>
0
fdad0c8c0957 Uploaded initial version to test toolshed.
pjbriggs
parents:
diff changeset
40 </package>
2
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
41 <!-- MACS 2.1.0 -->
0
fdad0c8c0957 Uploaded initial version to test toolshed.
pjbriggs
parents:
diff changeset
42 <package name="macs2" version="2.1.0.20140616">
fdad0c8c0957 Uploaded initial version to test toolshed.
pjbriggs
parents:
diff changeset
43 <install version="1.0">
fdad0c8c0957 Uploaded initial version to test toolshed.
pjbriggs
parents:
diff changeset
44 <actions>
2
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
45 <!-- Install environment for main & test toolsheds -->
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
46 <action type="set_environment_for_install">
9
7aecd0908b3c Uploaded version 2.1.0-4.
pjbriggs
parents: 7
diff changeset
47 <repository changeset_revision="43cb426cb05d" name="package_numpy_1_9" owner="iuc" toolshed="https://testtoolshed.g2.bx.psu.edu">
2
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
48 <package name="numpy" version="1.9" />
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
49 </repository>
15889783e759 Fix bugs in tool operation and update dependencies.
pjbriggs
parents: 1
diff changeset
50 </action>
10
2d4ef45ec089 Uploaded modified tool_dependencies.xml to see if that helps with setting the installation env for MACS 2.1.0 (which needs Numpy).
pjbriggs
parents: 9
diff changeset
51 <action type="download_by_url">https://pypi.python.org/packages/source/M/MACS2/MACS2-2.1.0.20140616.tar.gz</action>
0
fdad0c8c0957 Uploaded initial version to test toolshed.
pjbriggs
parents:
diff changeset
52 <action type="make_directory">$INSTALL_DIR/lib/python</action>
fdad0c8c0957 Uploaded initial version to test toolshed.
pjbriggs
parents:
diff changeset
53 <action type="shell_command">
fdad0c8c0957 Uploaded initial version to test toolshed.
pjbriggs
parents:
diff changeset
54 export PYTHONPATH=$PYTHONPATH:$INSTALL_DIR/lib/python &amp;&amp;
fdad0c8c0957 Uploaded initial version to test toolshed.
pjbriggs
parents:
diff changeset
55 python setup.py install --install-lib $INSTALL_DIR/lib/python --install-scripts $INSTALL_DIR/bin
fdad0c8c0957 Uploaded initial version to test toolshed.
pjbriggs
parents:
diff changeset
56 </action>
fdad0c8c0957 Uploaded initial version to test toolshed.
pjbriggs
parents:
diff changeset
57 <action type="set_environment">
fdad0c8c0957 Uploaded initial version to test toolshed.
pjbriggs
parents:
diff changeset
58 <environment_variable action="prepend_to" name="PYTHONPATH">$INSTALL_DIR/lib/python</environment_variable>
fdad0c8c0957 Uploaded initial version to test toolshed.
pjbriggs
parents:
diff changeset
59 <environment_variable action="prepend_to" name="PATH">$INSTALL_DIR/bin</environment_variable>
fdad0c8c0957 Uploaded initial version to test toolshed.
pjbriggs
parents:
diff changeset
60 </action>
fdad0c8c0957 Uploaded initial version to test toolshed.
pjbriggs
parents:
diff changeset
61 </actions>
fdad0c8c0957 Uploaded initial version to test toolshed.
pjbriggs
parents:
diff changeset
62 </install>
fdad0c8c0957 Uploaded initial version to test toolshed.
pjbriggs
parents:
diff changeset
63 <readme>Macs2.1 depends on having python2.7 and numpy 1.8 installed on all nodes of the work cluster</readme>
fdad0c8c0957 Uploaded initial version to test toolshed.
pjbriggs
parents:
diff changeset
64 </package>
fdad0c8c0957 Uploaded initial version to test toolshed.
pjbriggs
parents:
diff changeset
65 </tool_dependency>