# HG changeset patch # User eugen # Date 1345107357 14400 # Node ID 1d716ddd75118581eac6e636bec2029f746ae5e2 # Parent 87af1f51d27082bf6644e34c763c6b87189d24dd Uploaded diff -r 87af1f51d270 -r 1d716ddd7511 bsmap_meth_caller.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bsmap_meth_caller.sh Thu Aug 16 04:55:57 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 + +methratio.py -o $output -d $ref -q $input \ No newline at end of file