Commit ecd6817e by Mustafa Tekpinar

Removed local SGEMME_DEV_PATH calls.

parent 90e5f3e6
......@@ -235,13 +235,12 @@ def launchJET(prot, retMet, bFile, fFile, pdbfile, chains, n, N, nl):
# Run Rscript to compute predictions
def launchPred(prot,inAli,mutFile, normWeightMode, alphabet):
SGEMME_DEV_PATH="/home/tekpinar/research/lcqb/SGEMME-dev-ss-based-jetormax"
if (mutFile!=''):
rcmd="Rscript --save "+SGEMME_DEV_PATH+"/computePred.R "+prot+" "+inAli+" FALSE "+mutFile+" "+normWeightMode+" "+alphabet
rcmd="Rscript --save $SGEMME_PATH/computePred.R "+prot+" "+inAli+" FALSE "+mutFile+" "+normWeightMode+" "+alphabet
#TODO: remember that there is a problem here!!!!
else:
rcmd="Rscript --save "+SGEMME_DEV_PATH+"/computePred.R "+prot+" "+inAli+" TRUE none "+normWeightMode+" "+alphabet
rcmd="Rscript --save $SGEMME_PATH/computePred.R "+prot+" "+inAli+" TRUE none "+normWeightMode+" "+alphabet
print("\nRunning: \n"+rcmd)
reCode=subprocess.call(rcmd,shell=True)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment