# HG changeset patch # User eugen # Date 1345104822 14400 # Node ID d49ae6a0ecda490fa1362ef3e01e6dc2e5d58c42 # Parent 54492fec12ba298e4b3640bdf9672b7df4cea522 Uploaded diff -r 54492fec12ba -r d49ae6a0ecda bsmap_meth_caller.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bsmap_meth_caller.sh Thu Aug 16 04:13:42 2012 -0400 @@ -0,0 +1,34 @@ +#!/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 + +#echo $ref + +python ~/dependencies/bsmap-2.6/methratio.py -o $output -d $ref -q $input \ No newline at end of file