changeset 3:a66a914c39b5 draft

Uploaded v0.0.5 take 3, included the new tool_dependencies.xml file.
author peterjc
date Tue, 07 May 2013 10:32:03 -0400
parents 3213023deae1
children 07f2d99bc2de
files tools/clinod/clinod.txt tools/clinod/tool_dependencies.xml
diffstat 2 files changed, 32 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/tools/clinod/clinod.txt	Tue May 07 10:29:57 2013 -0400
+++ b/tools/clinod/clinod.txt	Tue May 07 10:32:03 2013 -0400
@@ -71,13 +71,14 @@
 For making the "Galaxy Tool Shed" http://toolshed.g2.bx.psu.edu/ tarball use
 the following command from the Galaxy root folder:
 
-$ tar -czf clinod.tar.gz tools/clinod/clinod.xml tools/clinod/clinod.txt test-data/four_human_proteins.fasta test-data/four_human_proteins.clinod-1.3.tabular
+$ tar -czf clinod.tar.gz tools/clinod/clinod.xml tools/clinod/clinod.txt tools/clinod/tool_dependencies.xml test-data/four_human_proteins.fasta test-data/four_human_proteins.clinod-1.3.tabular
 
 Check this worked:
 
 $ tar -tzf clinod.tar.gz
 tools/clinod/clinod.xml
 tools/clinod/clinod.txt
+tools/clinod/tool_dependencies.xml
 test-data/four_human_proteins.fasta
 test-data/four_human_proteins.clinod-1.3.tabular
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/clinod/tool_dependencies.xml	Tue May 07 10:32:03 2013 -0400
@@ -0,0 +1,30 @@
+<?xml version="1.0"?>
+<tool_dependency>
+    <package name="clinod" version="1.3">
+        <install version="1.0">
+            <actions>
+                <!-- clinod requires the SNNS Batch Interpreter v1.0 executable -->
+                <action type="download_by_url">http://www.ra.cs.uni-tuebingen.de/downloads/SNNS/SNNSv4.3.tar.gz</action>
+                <action type="move_file"><source>tools/bin/x86_64-pc-unknown-linux-gnuoldld/batchman</source><destination>$INSTALL_DIR/</destination></action>
+                <!-- clinod itself is just a JAR file -->
+                <action type="download_by_url">http://www.compbio.dundee.ac.uk/nod/downloads/clinod-1.3.jar</action>
+                <action type="move_file"><source>clinod-1.3.jar</source><destination>$INSTALL_DIR</destination></action>
+                <action type="set_environment">
+                    <environment_variable name="CLINOD" action="set_to">$INSTALL_DIR</environment_variable>
+                </action>
+            </actions>
+        </install>
+        <readme>
+Downloads and installs the command line NoD (clinod) JAR file and the binary
+dependency batchman, and sets $CLINOD to the folder used.
+
+We could download, compiles and install the SNNS Batch Interpreter v1.0 executable
+(batchman) from Stuttgart Neural Network Simulator (SNNS) v4.2. However, we simplify
+this by downloading SNNS v4.3 which includes the precompiled copy of batch man.
+
+For more details, see:
+http://www.compbio.dundee.ac.uk/www-nod/downloads.jsp
+        </readme>
+    </package>
+</tool_dependency>
+