Mercurial > repos > pjbriggs > macs21
annotate tool_dependencies.xml @ 5:9f6d5cae9181 draft
Uploaded yet another attempt to fix tool dependencies!
author | pjbriggs |
---|---|
date | Mon, 20 Apr 2015 11:12:28 -0400 |
parents | a881c5b7162c |
children | 344dd37d1704 |
rev | line source |
---|---|
0 | 1 <?xml version="1.0"?> |
2 <tool_dependency> | |
2 | 3 <!-- Dependencies from main/test toolsheds --> |
4 <package name="numpy" version="1.9"> | |
5 <repository changeset_revision="266529386609" name="package_numpy_1_9" owner="iuc" prior_installation_required="True" toolshed="https://testtoolshed.g2.bx.psu.edu" /> | |
0 | 6 </package> |
2 | 7 <!-- Subset of UCSC tools --> |
5
9f6d5cae9181
Uploaded yet another attempt to fix tool dependencies!
pjbriggs
parents:
4
diff
changeset
|
8 <package name="ucsc_tools_for_macs21" version="1.0"> |
2 | 9 <install version="1.0"> |
10 <actions> | |
11 <!-- fetchChromSizes --> | |
12 <action type="download_binary"> | |
13 <url_template architecture="x86_64" os="linux">http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/fetchChromSizes</url_template> | |
14 </action> | |
15 <action type="chmod"> | |
16 <file mode="755">$INSTALL_DIR/fetchChromSizes</file> | |
17 </action> | |
18 <!-- bedClip --> | |
19 <action type="download_binary"> | |
20 <url_template architecture="x86_64" os="linux">http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/bedClip</url_template> | |
21 </action> | |
22 <action type="chmod"> | |
23 <file mode="755">$INSTALL_DIR/bedClip</file> | |
24 </action> | |
25 <!-- bedGraphToBigWig --> | |
26 <action type="download_binary"> | |
27 <url_template architecture="x86_64" os="linux">http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/bedGraphToBigWig</url_template> | |
28 </action> | |
29 <action type="chmod"> | |
30 <file mode="755">$INSTALL_DIR/bedGraphToBigWig</file> | |
31 </action> | |
32 </actions> | |
33 </install> | |
0 | 34 </package> |
2 | 35 <!-- MACS 2.1.0 --> |
0 | 36 <package name="macs2" version="2.1.0.20140616"> |
37 <install version="1.0"> | |
38 <actions> | |
39 <action type="download_by_url">https://pypi.python.org/packages/source/M/MACS2/MACS2-2.1.0.20140616.tar.gz</action> | |
2 | 40 <!-- Install environment for main & test toolsheds --> |
41 <action type="set_environment_for_install"> | |
42 <repository changeset_revision="266529386609" name="package_numpy_1_9" owner="iuc" toolshed="https://testtoolshed.g2.bx.psu.edu"> | |
43 <package name="numpy" version="1.9" /> | |
44 </repository> | |
45 </action> | |
0 | 46 <action type="make_directory">$INSTALL_DIR/lib/python</action> |
47 <action type="shell_command"> | |
48 export PYTHONPATH=$PYTHONPATH:$INSTALL_DIR/lib/python && | |
49 python setup.py install --install-lib $INSTALL_DIR/lib/python --install-scripts $INSTALL_DIR/bin | |
50 </action> | |
51 <action type="set_environment"> | |
52 <environment_variable action="prepend_to" name="PYTHONPATH">$INSTALL_DIR/lib/python</environment_variable> | |
53 <environment_variable action="prepend_to" name="PATH">$INSTALL_DIR/bin</environment_variable> | |
54 </action> | |
55 </actions> | |
56 </install> | |
57 <readme>Macs2.1 depends on having python2.7 and numpy 1.8 installed on all nodes of the work cluster</readme> | |
58 </package> | |
59 </tool_dependency> |