Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
PRESCOTT
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Mustafa Tekpinar
PRESCOTT
Commits
8f6e1b64
Commit
8f6e1b64
authored
Feb 21, 2023
by
Mustafa Tekpinar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved editConf and launchJET from gemmeAnal.py to sgemme.py
parent
9f20b4c1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
394 additions
and
196 deletions
+394
-196
gemmeAnal.py
gemmeAnal.py
+196
-196
sgemme.py
sgemme.py
+198
-0
No files found.
gemmeAnal.py
View file @
8f6e1b64
...
...
@@ -73,201 +73,201 @@ import numpy as np
# fOUT.close()
def
editConfJET
(
N
):
"""
# Edit JET configuration file with correct number of Seqs & MSA
"""
reCode
=
subprocess
.
call
(
"sed -i 's/results
\t\t
5000/results
\t\t
"
+
str
(
N
)
+
"/' default.conf"
,
shell
=
True
)
return
(
reCode
)
def
minMaxNormalization
(
data
):
"""
Min-max normalization of a data array.
"""
return
(
data
-
np
.
min
(
data
))
/
(
np
.
max
(
data
)
-
np
.
min
(
data
))
# Run JET to compute TJET values
def
launchJET
(
prot
,
retMet
,
bFile
,
fFile
,
pdbfile
,
chains
,
n
,
N
,
nl
):
"""
Call JET2 and produce prot+"_jet.res" file.
prot+"_jet.res" will be used in the following steps (in launchPred)
to calculate independent and epistatic models.
Ideally, this call to JET2 should be from Dockers or Singularity
because installing all requirements of JET2 is a pain in the ass!
Parameters
----------
prot: string ???
Name of the protein ???
retMet: string
Retreival method of multiple sequence alignments file
It can be 'input', 'local' or 'server'. Default is local.
bFile: string
A multiple sequence alignment file obtained with psiblast.
It is used only if the retMet (explained above) is input.
fFile: string
A multiple sequence alignment file obtained with psiblast.
It is used only if the retMet (explained above) is input.
pdbfile: string
a Protein Data Bank file obtained with rcsb.org or any
computational method like alphafold.
If it is None, only JET and PC scores are calculated.
Otherwise, CV and other structural-dynamical features also
can be calculated.
chains: list
A list of chains available in the pdb file.
Most of the time, it is supposed to be just one!
n: int
Number of JET2 iterations.
N: int
Default 40000
nl: int
Number of lines after > character in the query sequences file.
It is obtained in extractQuerySeq() function.
Returns
-------
Nothing
"""
chainID
=
chains
[
0
]
#TODO: Remove Bash dependency here. Make the copying process in Python
subprocess
.
call
(
"cp $SGEMME_PATH/default.conf ."
,
shell
=
True
)
if
retMet
==
"input"
:
if
bFile
!=
''
:
#TODO: I think these two lines must be here as well but I am not sure.
# print(N)
# editConfJET(N)
if
(
bFile
==
prot
+
"_"
+
chainID
+
".psiblast"
):
shutil
.
copy2
(
bFile
,
bFile
+
".orig"
)
shutil
.
copy2
(
bFile
+
".orig "
,
prot
+
"_"
+
chainID
+
".psiblast"
)
else
:
shutil
.
copy2
(
bFile
+
" "
,
prot
+
"_"
+
chainID
+
".psiblast"
)
if
(
pdbfile
==
None
):
jetcmd
=
"java -Xmx4096m -cp $JET2_PATH:$JET2_PATH/jet/extLibs/vecmath.jar jet.JET -c default.conf -i "
+
\
prot
+
".pdb -o `pwd` -p J -r input -b "
+
prot
+
"_"
+
chainID
+
".psiblast -d chain -n "
+
n
+
" > "
+
prot
+
".out"
else
:
# jetcmd = "java -Xmx4096m -cp $JET2_PATH:$JET2_PATH/jet/extLibs/vecmath.jar jet.JET -c default.conf -i "+\
# prot+".pdb -o `pwd` -p AVJ -r input -b "+prot+"_"+chainID+".psiblast -d chain -n "+n+" > "+prot+".out"
jetcmd
=
"java -Xmx4096m -cp $JET2_PATH:$JET2_PATH/jet/extLibs/vecmath.jar jet.JET -c default.conf -i "
+
\
prot
+
".pdb -o `pwd` -p AVJCG -r input -f "
+
prot
+
"_"
+
chainID
+
".psiblast -d chain -n "
+
n
+
" -a 5"
+
" > "
+
prot
+
".out"
#One can also add: -g 'trace,pc,cv,clusters,axs'
else
:
print
(
N
)
editConfJET
(
N
)
if
(
fFile
==
prot
+
"_"
+
chainID
+
".fasta"
):
shutil
.
copy2
(
fFile
,
fFile
+
".orig"
)
#I think this subprocess call causes overwriting of the fasta file.
#subprocess.call("cp "+fFile+" "+prot+"_"+chainID+".fasta",shell=True)
grpcmd
=
"grep -m "
+
str
(
int
(
N
)
+
1
)
+
" -A "
+
str
(
nl
)
+
" '^>' "
+
fFile
+
".orig > "
+
prot
+
"_"
+
chainID
+
".fasta"
else
:
#subprocess.call("cp "+fFile+" "+prot+"_"+chainID+".fasta",shell=True)
grpcmd
=
"grep -m "
+
str
(
int
(
N
)
+
1
)
+
" -A "
+
str
(
nl
)
+
" '^>' "
+
fFile
+
" > "
+
prot
+
"_"
+
chainID
+
".fasta"
print
(
"
\n
Running:
\n
"
+
grpcmd
)
subprocess
.
call
(
grpcmd
,
shell
=
True
)
if
(
pdbfile
==
None
):
jetcmd
=
"java -Xmx4096m -cp $JET2_PATH:$JET2_PATH/jet/extLibs/vecmath.jar jet.JET -c default.conf -i "
+
\
prot
+
".pdb -o `pwd` -p J -r input -f "
+
prot
+
"_"
+
chainID
+
".fasta -d chain -n "
+
n
+
" > "
+
prot
+
".out"
print
(
"
\n
Running command:
\n
"
+
jetcmd
)
reCode
=
subprocess
.
call
(
jetcmd
,
shell
=
True
)
if
os
.
path
.
isfile
(
prot
+
"/"
+
prot
+
"_jet.res"
):
os
.
rename
(
prot
+
"/"
+
prot
+
"_jet.res"
,
prot
+
"_jet.res"
)
else
:
# Calculate SC1
jetcmd
=
"java -Xmx4096m -cp $JET2_PATH:$JET2_PATH/jet/extLibs/vecmath.jar jet.JET -c default.conf -i "
+
\
prot
+
".pdb -o `pwd` -p AVJCG -r input -f "
+
prot
+
"_"
+
chainID
+
".fasta -d chain -n "
+
n
+
" -a 3"
+
" > "
+
prot
+
".out"
#One can also add: -g 'trace,pc,cv,clusters,axs'
print
(
"
\n
Running for SC1:
\n
"
+
jetcmd
)
reCode
=
subprocess
.
call
(
jetcmd
,
shell
=
True
)
if
os
.
path
.
isfile
(
prot
+
"/"
+
prot
+
"_jet.res"
):
os
.
rename
(
prot
+
"/"
+
prot
+
"_jet.res"
,
prot
+
"_jet.res"
)
dir_name
=
prot
+
"/"
if
os
.
path
.
isdir
(
dir_name
):
for
f
in
os
.
listdir
(
dir_name
):
f_path
=
os
.
path
.
join
(
dir_name
,
f
)
if
os
.
path
.
isfile
(
f_path
):
os
.
remove
(
f_path
)
os
.
rmdir
(
dir_name
)
else
:
if
(
pdbfile
==
None
):
jetcmd
=
"java -Xmx4096m -cp $JET2_PATH:$JET2_PATH/jet/extLibs/vecmath.jar jet.JET -c default.conf -i "
+
\
prot
+
".pdb -o `pwd` -p J -r "
+
retMet
+
" -d chain -n "
+
n
+
" > "
+
prot
+
".out"
else
:
# jetcmd = "java -Xmx4096m -cp $JET2_PATH:$JET2_PATH/jet/extLibs/vecmath.jar jet.JET -c default.conf -i "+\
# prot+".pdb -o `pwd` -p AVJ -r "+retMet+" -d chain -n "+n+" > "+prot+".out"
jetcmd
=
"java -Xmx4096m -cp $JET2_PATH:$JET2_PATH/jet/extLibs/vecmath.jar jet.JET -c default.conf -i "
+
\
prot
+
".pdb -o `pwd` -p AVJCG -r "
+
retMet
+
" -d chain -n "
+
n
+
" -a 5"
+
" > "
+
prot
+
".out"
reCode
=
subprocess
.
call
(
jetcmd
,
shell
=
True
)
if
os
.
path
.
isfile
(
prot
+
"/"
+
prot
+
"_jet.res"
):
os
.
rename
(
prot
+
"/"
+
prot
+
"_jet.res"
,
prot
+
"_jet.res"
)
dir_name
=
prot
+
"/"
if
os
.
path
.
isdir
(
dir_name
):
for
f
in
os
.
listdir
(
dir_name
):
f_path
=
os
.
path
.
join
(
dir_name
,
f
)
if
os
.
path
.
isfile
(
f_path
):
os
.
remove
(
f_path
)
os
.
rmdir
(
dir_name
)
# print("\nRunning:\n"+jetcmd)
# reCode=subprocess.call(jetcmd,shell=True)
# if os.path.isfile(prot+"/"+prot+"_jet.res"):
# os.rename(prot+"/"+prot+"_jet.res",prot+"_jet.res")
return
(
reCode
)
# Run Rscript to compute predictions
def
launchPred
(
prot
,
inAli
,
mutFile
,
normWeightMode
,
alphabet
):
if
mutFile
!=
''
:
rcmd
=
"Rscript --save $SGEMME_PATH/computePred.R "
+
prot
+
" "
+
inAli
+
" FALSE "
+
mutFile
+
" "
+
normWeightMode
+
" "
+
alphabet
else
:
rcmd
=
"Rscript --save $SGEMME_PATH/computePred.R "
+
prot
+
" "
+
inAli
+
" TRUE none "
+
normWeightMode
+
" "
+
alphabet
print
(
"
\n
Running:
\n
"
+
rcmd
)
reCode
=
subprocess
.
call
(
rcmd
,
shell
=
True
)
#Add plots here with gemmemore
return
(
reCode
)
# Remove temporary files
def
cleanTheMess
(
prot
,
bFile
,
fFile
,
chainID
):
if
bFile
!=
''
:
if
bFile
!=
prot
+
"_"
+
chainID
+
".psiblast"
:
os
.
remove
(
prot
+
"_"
+
chainID
+
".psiblast"
)
else
:
if
os
.
path
.
isfile
(
prot
+
"/"
+
prot
+
"_"
+
chainID
+
".psiblast"
):
os
.
rename
(
prot
+
"/"
+
prot
+
"_"
+
chainID
+
".psiblast"
,
prot
+
"_"
+
chainID
+
".psiblast"
)
if
fFile
!=
''
:
if
fFile
!=
prot
+
"_"
+
chainID
+
".fasta"
:
if
os
.
path
.
isfile
(
prot
+
"_"
+
chainID
+
".fasta"
):
os
.
remove
(
prot
+
"_"
+
chainID
+
".fasta"
)
# def editConfJET(N):
# """
# # Edit JET configuration file with correct number of Seqs & MSA
# """
# reCode=subprocess.call("sed -i 's/results\t\t5000/results\t\t"+str(N)+"/' default.conf",shell=True)
# return(reCode)
# def minMaxNormalization(data):
# """
# Min-max normalization of a data array.
# """
# return (data - np.min(data)) / (np.max(data) - np.min(data))
# # Run JET to compute TJET values
# def launchJET(prot, retMet, bFile, fFile, pdbfile, chains, n, N, nl):
# """
# Call JET2 and produce prot+"_jet.res" file.
# prot+"_jet.res" will be used in the following steps (in launchPred)
# to calculate independent and epistatic models.
# Ideally, this call to JET2 should be from Dockers or Singularity
# because installing all requirements of JET2 is a pain in the ass!
# Parameters
# ----------
# prot: string ???
# Name of the protein ???
# retMet: string
# Retreival method of multiple sequence alignments file
# It can be 'input', 'local' or 'server'. Default is local.
# bFile: string
# A multiple sequence alignment file obtained with psiblast.
# It is used only if the retMet (explained above) is input.
# fFile: string
# A multiple sequence alignment file obtained with psiblast.
# It is used only if the retMet (explained above) is input.
# pdbfile: string
# a Protein Data Bank file obtained with rcsb.org or any
# computational method like alphafold.
# If it is None, only JET and PC scores are calculated.
# Otherwise, CV and other structural-dynamical features also
# can be calculated.
# chains: list
# A list of chains available in the pdb file.
# Most of the time, it is supposed to be just one!
# n: int
# Number of JET2 iterations.
# N: int
# Default 40000
# nl: int
# Number of lines after > character in the query sequences file.
# It is obtained in extractQuerySeq() function.
# Returns
# -------
# Nothing
# """
# chainID = chains[0]
# #TODO: Remove Bash dependency here. Make the copying process in Python
# subprocess.call("cp $SGEMME_PATH/default.conf .",shell=True)
# if retMet=="input":
# if bFile!='':
# #TODO: I think these two lines must be here as well but I am not sure.
# # print(N)
# # editConfJET(N)
# if(bFile == prot+"_"+chainID+".psiblast"):
# shutil.copy2(bFile, bFile+".orig")
# shutil.copy2(bFile+".orig ", prot+"_"+chainID+".psiblast")
# else:
# shutil.copy2(bFile+" ", prot+"_"+chainID+".psiblast")
# if(pdbfile == None):
# jetcmd = "java -Xmx4096m -cp $JET2_PATH:$JET2_PATH/jet/extLibs/vecmath.jar jet.JET -c default.conf -i "+\
# prot+".pdb -o `pwd` -p J -r input -b "+prot+"_"+chainID+".psiblast -d chain -n "+n+" > "+prot+".out"
# else:
# # jetcmd = "java -Xmx4096m -cp $JET2_PATH:$JET2_PATH/jet/extLibs/vecmath.jar jet.JET -c default.conf -i "+\
# # prot+".pdb -o `pwd` -p AVJ -r input -b "+prot+"_"+chainID+".psiblast -d chain -n "+n+" > "+prot+".out"
# jetcmd = "java -Xmx4096m -cp $JET2_PATH:$JET2_PATH/jet/extLibs/vecmath.jar jet.JET -c default.conf -i "+\
# prot+".pdb -o `pwd` -p AVJCG -r input -f "+prot+"_"+chainID+".psiblast -d chain -n "+n+" -a 5"+" > "+prot+".out"
# #One can also add: -g 'trace,pc,cv,clusters,axs'
# else:
# print(N)
# editConfJET(N)
# if(fFile == prot+"_"+chainID+".fasta"):
# shutil.copy2(fFile, fFile+".orig")
# #I think this subprocess call causes overwriting of the fasta file.
# #subprocess.call("cp "+fFile+" "+prot+"_"+chainID+".fasta",shell=True)
# grpcmd="grep -m "+str(int(N)+1)+" -A "+str(nl)+" '^>' "+fFile+".orig > "+prot+"_"+chainID+".fasta"
# else:
# #subprocess.call("cp "+fFile+" "+prot+"_"+chainID+".fasta",shell=True)
# grpcmd="grep -m "+str(int(N)+1)+" -A "+str(nl)+" '^>' "+fFile+" > "+prot+"_"+chainID+".fasta"
# print("\nRunning:\n"+grpcmd)
# subprocess.call(grpcmd,shell=True)
# if(pdbfile == None):
# jetcmd = "java -Xmx4096m -cp $JET2_PATH:$JET2_PATH/jet/extLibs/vecmath.jar jet.JET -c default.conf -i "+\
# prot+".pdb -o `pwd` -p J -r input -f "+prot+"_"+chainID+".fasta -d chain -n "+n+" > "+prot+".out"
# print("\nRunning command:\n"+jetcmd)
# reCode=subprocess.call(jetcmd,shell=True)
# if os.path.isfile(prot+"/"+prot+"_jet.res"):
# os.rename(prot+"/"+prot+"_jet.res",prot+"_jet.res")
# else:
# # Calculate SC1
# jetcmd = "java -Xmx4096m -cp $JET2_PATH:$JET2_PATH/jet/extLibs/vecmath.jar jet.JET -c default.conf -i "+\
# prot+".pdb -o `pwd` -p AVJCG -r input -f "+prot+"_"+chainID+".fasta -d chain -n "+n+" -a 3"+" > "+prot+".out"
# #One can also add: -g 'trace,pc,cv,clusters,axs'
# print("\nRunning for SC1:\n"+jetcmd)
# reCode=subprocess.call(jetcmd,shell=True)
# if os.path.isfile(prot+"/"+prot+"_jet.res"):
# os.rename(prot+"/"+prot+"_jet.res",prot+"_jet.res")
# dir_name = prot+"/"
# if os.path.isdir(dir_name):
# for f in os.listdir(dir_name):
# f_path = os.path.join(dir_name, f)
# if os.path.isfile(f_path):
# os.remove(f_path)
# os.rmdir(dir_name)
# else:
# if(pdbfile == None):
# jetcmd = "java -Xmx4096m -cp $JET2_PATH:$JET2_PATH/jet/extLibs/vecmath.jar jet.JET -c default.conf -i "+\
# prot+".pdb -o `pwd` -p J -r "+retMet+" -d chain -n "+n+" > "+prot+".out"
# else:
# # jetcmd = "java -Xmx4096m -cp $JET2_PATH:$JET2_PATH/jet/extLibs/vecmath.jar jet.JET -c default.conf -i "+\
# # prot+".pdb -o `pwd` -p AVJ -r "+retMet+" -d chain -n "+n+" > "+prot+".out"
# jetcmd = "java -Xmx4096m -cp $JET2_PATH:$JET2_PATH/jet/extLibs/vecmath.jar jet.JET -c default.conf -i "+\
# prot+".pdb -o `pwd` -p AVJCG -r "+retMet+" -d chain -n "+n+" -a 5"+" > "+prot+".out"
# reCode=subprocess.call(jetcmd,shell=True)
# if os.path.isfile(prot+"/"+prot+"_jet.res"):
# os.rename(prot+"/"+prot+"_jet.res",prot+"_jet.res")
# os.remove(prot+".pdb")
# Get all files with suffix nwk
treefiles
=
glob
.
glob
(
'*.nwk'
)
# Iterate over the list of files and remove individually
for
file
in
treefiles
:
os
.
remove
(
file
)
dir_name
=
prot
+
"/"
if
os
.
path
.
isdir
(
dir_name
):
for
f
in
os
.
listdir
(
dir_name
):
f_path
=
os
.
path
.
join
(
dir_name
,
f
)
if
os
.
path
.
isfile
(
f_path
):
os
.
remove
(
f_path
)
os
.
rmdir
(
dir_name
)
# dir_name = prot+"/"
# if os.path.isdir(dir_name):
# for f in os.listdir(dir_name):
# f_path = os.path.join(dir_name, f)
# if os.path.isfile(f_path):
# os.remove(f_path)
# os.rmdir(dir_name)
# # print("\nRunning:\n"+jetcmd)
# # reCode=subprocess.call(jetcmd,shell=True)
# # if os.path.isfile(prot+"/"+prot+"_jet.res"):
# # os.rename(prot+"/"+prot+"_jet.res",prot+"_jet.res")
# return(reCode)
# # Run Rscript to compute predictions
# def launchPred(prot,inAli,mutFile, normWeightMode, alphabet):
# if mutFile!='':
# rcmd="Rscript --save $SGEMME_PATH/computePred.R "+prot+" "+inAli+" FALSE "+mutFile+" "+normWeightMode+" "+alphabet
# else:
# rcmd="Rscript --save $SGEMME_PATH/computePred.R "+prot+" "+inAli+" TRUE none "+normWeightMode+" "+alphabet
# print("\nRunning: \n"+rcmd)
# reCode=subprocess.call(rcmd,shell=True)
# #Add plots here with gemmemore
# return(reCode)
# # Remove temporary files
# def cleanTheMess(prot,bFile,fFile, chainID):
# if bFile!='':
# if bFile!=prot+"_"+chainID+".psiblast":
# os.remove(prot+"_"+chainID+".psiblast")
# else:
# if os.path.isfile(prot+"/"+prot+"_"+chainID+".psiblast"):
# os.rename(prot+"/"+prot+"_"+chainID+".psiblast",prot+"_"+chainID+".psiblast")
# if fFile!='':
# if fFile!=prot+"_"+chainID+".fasta":
# if os.path.isfile(prot+"_"+chainID+".fasta"):
# os.remove(prot+"_"+chainID+".fasta")
# # if os.path.isfile(prot+"/"+prot+"_jet.res"):
# # os.rename(prot+"/"+prot+"_jet.res",prot+"_jet.res")
# # os.remove(prot+".pdb")
# # Get all files with suffix nwk
# treefiles = glob.glob('*.nwk')
# # Iterate over the list of files and remove individually
# for file in treefiles:
# os.remove(file)
# dir_name = prot+"/"
# if os.path.isdir(dir_name):
# for f in os.listdir(dir_name):
# f_path = os.path.join(dir_name, f)
# if os.path.isfile(f_path):
# os.remove(f_path)
# os.rmdir(dir_name)
sgemme.py
View file @
8f6e1b64
...
...
@@ -78,6 +78,204 @@ def createPDB(prot,seq):
i
+=
1
fOUT
.
close
()
def
editConfJET
(
N
):
"""
# Edit JET configuration file with correct number of Seqs & MSA
"""
reCode
=
subprocess
.
call
(
"sed -i 's/results
\t\t
5000/results
\t\t
"
+
str
(
N
)
+
"/' default.conf"
,
shell
=
True
)
return
(
reCode
)
def
minMaxNormalization
(
data
):
"""
Min-max normalization of a data array.
"""
return
(
data
-
np
.
min
(
data
))
/
(
np
.
max
(
data
)
-
np
.
min
(
data
))
# Run JET to compute TJET values
def
launchJET
(
prot
,
retMet
,
bFile
,
fFile
,
pdbfile
,
chains
,
n
,
N
,
nl
):
"""
Call JET2 and produce prot+"_jet.res" file.
prot+"_jet.res" will be used in the following steps (in launchPred)
to calculate independent and epistatic models.
Ideally, this call to JET2 should be from Dockers or Singularity
because installing all requirements of JET2 is a pain in the ass!
Parameters
----------
prot: string ???
Name of the protein ???
retMet: string
Retreival method of multiple sequence alignments file
It can be 'input', 'local' or 'server'. Default is local.
bFile: string
A multiple sequence alignment file obtained with psiblast.
It is used only if the retMet (explained above) is input.
fFile: string
A multiple sequence alignment file obtained with psiblast.
It is used only if the retMet (explained above) is input.
pdbfile: string
a Protein Data Bank file obtained with rcsb.org or any
computational method like alphafold.
If it is None, only JET and PC scores are calculated.
Otherwise, CV and other structural-dynamical features also
can be calculated.
chains: list
A list of chains available in the pdb file.
Most of the time, it is supposed to be just one!
n: int
Number of JET2 iterations.
N: int
Default 40000
nl: int
Number of lines after > character in the query sequences file.
It is obtained in extractQuerySeq() function.
Returns
-------
Nothing
"""
chainID
=
chains
[
0
]
#TODO: Remove Bash dependency here. Make the copying process in Python
subprocess
.
call
(
"cp $SGEMME_PATH/default.conf ."
,
shell
=
True
)
if
retMet
==
"input"
:
if
bFile
!=
''
:
#TODO: I think these two lines must be here as well but I am not sure.
# print(N)
# editConfJET(N)
if
(
bFile
==
prot
+
"_"
+
chainID
+
".psiblast"
):
shutil
.
copy2
(
bFile
,
bFile
+
".orig"
)
shutil
.
copy2
(
bFile
+
".orig "
,
prot
+
"_"
+
chainID
+
".psiblast"
)
else
:
shutil
.
copy2
(
bFile
+
" "
,
prot
+
"_"
+
chainID
+
".psiblast"
)
if
(
pdbfile
==
None
):
jetcmd
=
"java -Xmx4096m -cp $JET2_PATH:$JET2_PATH/jet/extLibs/vecmath.jar jet.JET -c default.conf -i "
+
\
prot
+
".pdb -o `pwd` -p J -r input -b "
+
prot
+
"_"
+
chainID
+
".psiblast -d chain -n "
+
n
+
" > "
+
prot
+
".out"
else
:
# jetcmd = "java -Xmx4096m -cp $JET2_PATH:$JET2_PATH/jet/extLibs/vecmath.jar jet.JET -c default.conf -i "+\
# prot+".pdb -o `pwd` -p AVJ -r input -b "+prot+"_"+chainID+".psiblast -d chain -n "+n+" > "+prot+".out"
jetcmd
=
"java -Xmx4096m -cp $JET2_PATH:$JET2_PATH/jet/extLibs/vecmath.jar jet.JET -c default.conf -i "
+
\
prot
+
".pdb -o `pwd` -p AVJCG -r input -f "
+
prot
+
"_"
+
chainID
+
".psiblast -d chain -n "
+
n
+
" -a 5"
+
" > "
+
prot
+
".out"
#One can also add: -g 'trace,pc,cv,clusters,axs'
else
:
print
(
N
)
editConfJET
(
N
)
if
(
fFile
==
prot
+
"_"
+
chainID
+
".fasta"
):
shutil
.
copy2
(
fFile
,
fFile
+
".orig"
)
#I think this subprocess call causes overwriting of the fasta file.
#subprocess.call("cp "+fFile+" "+prot+"_"+chainID+".fasta",shell=True)
grpcmd
=
"grep -m "
+
str
(
int
(
N
)
+
1
)
+
" -A "
+
str
(
nl
)
+
" '^>' "
+
fFile
+
".orig > "
+
prot
+
"_"
+
chainID
+
".fasta"
else
:
#subprocess.call("cp "+fFile+" "+prot+"_"+chainID+".fasta",shell=True)
grpcmd
=
"grep -m "
+
str
(
int
(
N
)
+
1
)
+
" -A "
+
str
(
nl
)
+
" '^>' "
+
fFile
+
" > "
+
prot
+
"_"
+
chainID
+
".fasta"
print
(
"
\n
Running:
\n
"
+
grpcmd
)
subprocess
.
call
(
grpcmd
,
shell
=
True
)
if
(
pdbfile
==
None
):
jetcmd
=
"java -Xmx4096m -cp $JET2_PATH:$JET2_PATH/jet/extLibs/vecmath.jar jet.JET -c default.conf -i "
+
\
prot
+
".pdb -o `pwd` -p J -r input -f "
+
prot
+
"_"
+
chainID
+
".fasta -d chain -n "
+
n
+
" > "
+
prot
+
".out"
print
(
"
\n
Running command:
\n
"
+
jetcmd
)
reCode
=
subprocess
.
call
(
jetcmd
,
shell
=
True
)
if
os
.
path
.
isfile
(
prot
+
"/"
+
prot
+
"_jet.res"
):
os
.
rename
(
prot
+
"/"
+
prot
+
"_jet.res"
,
prot
+
"_jet.res"
)
else
:
# Calculate SC1
jetcmd
=
"java -Xmx4096m -cp $JET2_PATH:$JET2_PATH/jet/extLibs/vecmath.jar jet.JET -c default.conf -i "
+
\
prot
+
".pdb -o `pwd` -p AVJCG -r input -f "
+
prot
+
"_"
+
chainID
+
".fasta -d chain -n "
+
n
+
" -a 3"
+
" > "
+
prot
+
".out"
#One can also add: -g 'trace,pc,cv,clusters,axs'
print
(
"
\n
Running for SC1:
\n
"
+
jetcmd
)
reCode
=
subprocess
.
call
(
jetcmd
,
shell
=
True
)
if
os
.
path
.
isfile
(
prot
+
"/"
+
prot
+
"_jet.res"
):
os
.
rename
(
prot
+
"/"
+
prot
+
"_jet.res"
,
prot
+
"_jet.res"
)
dir_name
=
prot
+
"/"
if
os
.
path
.
isdir
(
dir_name
):
for
f
in
os
.
listdir
(
dir_name
):
f_path
=
os
.
path
.
join
(
dir_name
,
f
)
if
os
.
path
.
isfile
(
f_path
):
os
.
remove
(
f_path
)
os
.
rmdir
(
dir_name
)
else
:
if
(
pdbfile
==
None
):
jetcmd
=
"java -Xmx4096m -cp $JET2_PATH:$JET2_PATH/jet/extLibs/vecmath.jar jet.JET -c default.conf -i "
+
\
prot
+
".pdb -o `pwd` -p J -r "
+
retMet
+
" -d chain -n "
+
n
+
" > "
+
prot
+
".out"
else
:
# jetcmd = "java -Xmx4096m -cp $JET2_PATH:$JET2_PATH/jet/extLibs/vecmath.jar jet.JET -c default.conf -i "+\
# prot+".pdb -o `pwd` -p AVJ -r "+retMet+" -d chain -n "+n+" > "+prot+".out"
jetcmd
=
"java -Xmx4096m -cp $JET2_PATH:$JET2_PATH/jet/extLibs/vecmath.jar jet.JET -c default.conf -i "
+
\
prot
+
".pdb -o `pwd` -p AVJCG -r "
+
retMet
+
" -d chain -n "
+
n
+
" -a 5"
+
" > "
+
prot
+
".out"
reCode
=
subprocess
.
call
(
jetcmd
,
shell
=
True
)
if
os
.
path
.
isfile
(
prot
+
"/"
+
prot
+
"_jet.res"
):
os
.
rename
(
prot
+
"/"
+
prot
+
"_jet.res"
,
prot
+
"_jet.res"
)
dir_name
=
prot
+
"/"
if
os
.
path
.
isdir
(
dir_name
):
for
f
in
os
.
listdir
(
dir_name
):
f_path
=
os
.
path
.
join
(
dir_name
,
f
)
if
os
.
path
.
isfile
(
f_path
):
os
.
remove
(
f_path
)
os
.
rmdir
(
dir_name
)
# print("\nRunning:\n"+jetcmd)
# reCode=subprocess.call(jetcmd,shell=True)
# if os.path.isfile(prot+"/"+prot+"_jet.res"):
# os.rename(prot+"/"+prot+"_jet.res",prot+"_jet.res")
return
(
reCode
)
# Run Rscript to compute predictions
def
launchPred
(
prot
,
inAli
,
mutFile
,
normWeightMode
,
alphabet
):
if
mutFile
!=
''
:
rcmd
=
"Rscript --save $SGEMME_PATH/computePred.R "
+
prot
+
" "
+
inAli
+
" FALSE "
+
mutFile
+
" "
+
normWeightMode
+
" "
+
alphabet
else
:
rcmd
=
"Rscript --save $SGEMME_PATH/computePred.R "
+
prot
+
" "
+
inAli
+
" TRUE none "
+
normWeightMode
+
" "
+
alphabet
print
(
"
\n
Running:
\n
"
+
rcmd
)
reCode
=
subprocess
.
call
(
rcmd
,
shell
=
True
)
#Add plots here with gemmemore
return
(
reCode
)
# Remove temporary files
def
cleanTheMess
(
prot
,
bFile
,
fFile
,
chainID
):
if
bFile
!=
''
:
if
bFile
!=
prot
+
"_"
+
chainID
+
".psiblast"
:
os
.
remove
(
prot
+
"_"
+
chainID
+
".psiblast"
)
else
:
if
os
.
path
.
isfile
(
prot
+
"/"
+
prot
+
"_"
+
chainID
+
".psiblast"
):
os
.
rename
(
prot
+
"/"
+
prot
+
"_"
+
chainID
+
".psiblast"
,
prot
+
"_"
+
chainID
+
".psiblast"
)
if
fFile
!=
''
:
if
fFile
!=
prot
+
"_"
+
chainID
+
".fasta"
:
if
os
.
path
.
isfile
(
prot
+
"_"
+
chainID
+
".fasta"
):
os
.
remove
(
prot
+
"_"
+
chainID
+
".fasta"
)
# if os.path.isfile(prot+"/"+prot+"_jet.res"):
# os.rename(prot+"/"+prot+"_jet.res",prot+"_jet.res")
# os.remove(prot+".pdb")
# Get all files with suffix nwk
treefiles
=
glob
.
glob
(
'*.nwk'
)
# Iterate over the list of files and remove individually
for
file
in
treefiles
:
os
.
remove
(
file
)
dir_name
=
prot
+
"/"
if
os
.
path
.
isdir
(
dir_name
):
for
f
in
os
.
listdir
(
dir_name
):
f_path
=
os
.
path
.
join
(
dir_name
,
f
)
if
os
.
path
.
isfile
(
f_path
):
os
.
remove
(
f_path
)
os
.
rmdir
(
dir_name
)
###############################################################################
def
rankSortProteinData
(
dataArray
,
inverted
=
True
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment