Mercurial > repos > pjbriggs > macs21
annotate tool_dependencies.xml @ 2:00d73c812399 draft
Version 2.1.0-6: add sorting step in bigWig generation, and explicitly terminate tool on error from MACS2.
author | pjbriggs |
---|---|
date | Wed, 22 Mar 2017 11:36:07 -0400 |
parents | 02a01ea54722 |
children |
rev | line source |
---|---|
0 | 1 <?xml version="1.0"?> |
2 <tool_dependency> | |
3 <!-- Dependencies from main/test toolsheds --> | |
4 <package name="numpy" version="1.9"> | |
1 | 5 <repository changeset_revision="83d12e13dbbd" name="package_numpy_1_9" owner="iuc" prior_installation_required="True" toolshed="https://toolshed.g2.bx.psu.edu" /> |
0 | 6 </package> |
7 <package name="R" version="3.1.2"> | |
1 | 8 <repository changeset_revision="4d2fd1413b56" name="package_r_3_1_2" owner="iuc" prior_installation_required="True" toolshed="https://toolshed.g2.bx.psu.edu" /> |
0 | 9 </package> |
10 <!-- Subset of UCSC tools --> | |
2
00d73c812399
Version 2.1.0-6: add sorting step in bigWig generation, and explicitly terminate tool on error from MACS2.
pjbriggs
parents:
1
diff
changeset
|
11 <package name="ucsc_tools_for_macs21" version="2.0"> |
0 | 12 <install version="1.0"> |
13 <actions> | |
14 <!-- fetchChromSizes --> | |
15 <action type="download_binary"> | |
16 <url_template architecture="x86_64" os="linux">http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/fetchChromSizes</url_template> | |
17 </action> | |
18 <action type="chmod"> | |
19 <file mode="755">$INSTALL_DIR/fetchChromSizes</file> | |
20 </action> | |
21 <!-- bedClip --> | |
22 <action type="download_binary"> | |
23 <url_template architecture="x86_64" os="linux">http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/bedClip</url_template> | |
24 </action> | |
25 <action type="chmod"> | |
26 <file mode="755">$INSTALL_DIR/bedClip</file> | |
27 </action> | |
2
00d73c812399
Version 2.1.0-6: add sorting step in bigWig generation, and explicitly terminate tool on error from MACS2.
pjbriggs
parents:
1
diff
changeset
|
28 <!-- bedSort --> |
00d73c812399
Version 2.1.0-6: add sorting step in bigWig generation, and explicitly terminate tool on error from MACS2.
pjbriggs
parents:
1
diff
changeset
|
29 <action type="download_binary"> |
00d73c812399
Version 2.1.0-6: add sorting step in bigWig generation, and explicitly terminate tool on error from MACS2.
pjbriggs
parents:
1
diff
changeset
|
30 <url_template architecture="x86_64" os="linux">http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/bedSort</url_template> |
00d73c812399
Version 2.1.0-6: add sorting step in bigWig generation, and explicitly terminate tool on error from MACS2.
pjbriggs
parents:
1
diff
changeset
|
31 </action> |
00d73c812399
Version 2.1.0-6: add sorting step in bigWig generation, and explicitly terminate tool on error from MACS2.
pjbriggs
parents:
1
diff
changeset
|
32 <action type="chmod"> |
00d73c812399
Version 2.1.0-6: add sorting step in bigWig generation, and explicitly terminate tool on error from MACS2.
pjbriggs
parents:
1
diff
changeset
|
33 <file mode="755">$INSTALL_DIR/bedSort</file> |
00d73c812399
Version 2.1.0-6: add sorting step in bigWig generation, and explicitly terminate tool on error from MACS2.
pjbriggs
parents:
1
diff
changeset
|
34 </action> |
0 | 35 <!-- bedGraphToBigWig --> |
36 <action type="download_binary"> | |
37 <url_template architecture="x86_64" os="linux">http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/bedGraphToBigWig</url_template> | |
38 </action> | |
39 <action type="chmod"> | |
40 <file mode="755">$INSTALL_DIR/bedGraphToBigWig</file> | |
41 </action> | |
42 <action type="set_environment"> | |
43 <environment_variable action="prepend_to" name="PATH">$INSTALL_DIR</environment_variable> | |
44 </action> | |
45 </actions> | |
46 </install> | |
47 </package> | |
48 <!-- MACS 2.1.0 --> | |
49 <package name="macs2" version="2.1.0.20140616"> | |
50 <install version="1.0"> | |
51 <actions> | |
52 <action type="download_by_url">https://pypi.python.org/packages/source/M/MACS2/MACS2-2.1.0.20140616.tar.gz</action> | |
53 <!-- Install environment for main & test toolsheds --> | |
54 <action type="set_environment_for_install"> | |
1 | 55 <repository changeset_revision="83d12e13dbbd" name="package_numpy_1_9" owner="iuc" toolshed="https://toolshed.g2.bx.psu.edu"> |
0 | 56 <package name="numpy" version="1.9" /> |
57 </repository> | |
58 </action> | |
59 <action type="make_directory">$INSTALL_DIR/lib/python</action> | |
60 <action type="shell_command"> | |
61 export PYTHONPATH=$PYTHONPATH:$INSTALL_DIR/lib/python && | |
62 python setup.py install --install-lib $INSTALL_DIR/lib/python --install-scripts $INSTALL_DIR/bin | |
63 </action> | |
64 <action type="set_environment"> | |
65 <environment_variable action="prepend_to" name="PYTHONPATH">$INSTALL_DIR/lib/python</environment_variable> | |
66 <environment_variable action="prepend_to" name="PATH">$INSTALL_DIR/bin</environment_variable> | |
67 </action> | |
68 </actions> | |
69 </install> | |
70 <readme>Macs2.1 depends on having python2.7 and numpy 1.8 installed on all nodes of the work cluster</readme> | |
71 </package> | |
72 </tool_dependency> |