Repository 'bsmap'
hg clone https://toolshed.g2.bx.psu.edu/repos/eiriche/bsmap

Changeset 5:98a0a60e934c (2012-11-29)
Previous changeset 4:e5025e0378d0 (2012-11-29) Next changeset 6:bce9005066b1 (2012-11-29)
Commit message:
Uploaded
added:
bsmap_meth_caller.sh
b
diff -r e5025e0378d0 -r 98a0a60e934c bsmap_meth_caller.sh
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/bsmap_meth_caller.sh Thu Nov 29 10:10:55 2012 -0500
[
@@ -0,0 +1,32 @@
+#!/bin/bash
+#
+# Galaxy wrapper for BSMAP Methylation Caller
+#
+
+set -e
+
+#get parameters
+
+until [ $# -eq 0 ]
+do
+ case $1 in
+ input=*)
+ input=${1#input=}
+ ;;
+ method=*)
+ method=${1#method=}
+ ;;
+ output=*)
+ output=${1#output=}
+ ;;
+ tempdir=*)
+ tempdir=${1#tempdir=}
+ ;;
+ ref=*)
+ ref=${1#ref=}
+ ;;
+ esac
+ shift
+done
+
+methratio.py -o $output -d $ref -q $input
\ No newline at end of file