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
ba2786df
Commit
ba2786df
authored
May 18, 2022
by
Mustafa Tekpinar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added --pdbfile option to parse PDB files provided by the user.
parent
d7774e36
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
10 deletions
+47
-10
gemme.py
gemme.py
+17
-5
gemmeAnal.py
gemmeAnal.py
+30
-5
No files found.
gemme.py
View file @
ba2786df
...
@@ -259,6 +259,10 @@ def parse_command_line():
...
@@ -259,6 +259,10 @@ def parse_command_line():
retMet_args
.
add_argument
(
'--jetfile'
,
dest
=
'jetfile'
,
type
=
str
,
\
retMet_args
.
add_argument
(
'--jetfile'
,
dest
=
'jetfile'
,
type
=
str
,
\
help
=
"If a jet file is provided, it will skip JET2 calculation and use the precalculated JET2 data in that file. Default is None"
,
help
=
"If a jet file is provided, it will skip JET2 calculation and use the precalculated JET2 data in that file. Default is None"
,
required
=
False
,
default
=
None
)
required
=
False
,
default
=
None
)
retMet_args
.
add_argument
(
'-p'
,
'--pdbfile'
,
dest
=
'pdbfile'
,
type
=
str
,
\
help
=
"If a pdb file is provided, it will skip fake pdb file production step and use that file. Default is None"
,
required
=
False
,
default
=
None
)
retMet_args
.
add_argument
(
'--normweightmode'
,
dest
=
'normweightmode'
,
type
=
str
,
\
retMet_args
.
add_argument
(
'--normweightmode'
,
dest
=
'normweightmode'
,
type
=
str
,
\
help
=
"It can be one of these: 'trace', 'trace+pc', 'trace+cv' or 'trace+pc+cv'. Default is 'trace'."
,
help
=
"It can be one of these: 'trace', 'trace+pc', 'trace+cv' or 'trace+pc+cv'. Default is 'trace'."
,
...
@@ -277,7 +281,7 @@ def parse_command_line():
...
@@ -277,7 +281,7 @@ def parse_command_line():
return
args
return
args
def
doit
(
inAli
,
mutFile
,
retMet
,
bFile
,
fFile
,
n
,
N
,
jetfile
,
normWeightMode
):
def
doit
(
inAli
,
mutFile
,
retMet
,
bFile
,
fFile
,
n
,
N
,
jetfile
,
pdbfile
,
normWeightMode
):
"""
"""
Perfect explanation for a function: typing the function call exactly!
Perfect explanation for a function: typing the function call exactly!
doit is basically the main function in disguise!
doit is basically the main function in disguise!
...
@@ -285,10 +289,18 @@ def doit(inAli,mutFile,retMet,bFile,fFile,n,N, jetfile, normWeightMode):
...
@@ -285,10 +289,18 @@ def doit(inAli,mutFile,retMet,bFile,fFile,n,N, jetfile, normWeightMode):
"""
"""
simple
=
True
simple
=
True
prot
,
seq
,
nl
=
extractQuerySeq
(
inAli
)
prot
,
seq
,
nl
=
extractQuerySeq
(
inAli
)
createPDB
(
prot
,
seq
)
if
(
pdbfile
==
None
):
createPDB
(
prot
,
seq
)
else
:
if
(
os
.
path
.
exists
(
prot
+
".pdb"
)):
shutil
.
move
(
prot
+
".pdb"
,
prot
+
"_original.pdb"
)
shutil
.
copy2
(
pdbfile
,
prot
+
".pdb"
)
else
:
shutil
.
copy2
(
pdbfile
,
prot
+
".pdb"
)
print
(
"query protein: "
+
prot
)
print
(
"query protein: "
+
prot
)
if
((
jetfile
)
==
None
):
if
((
jetfile
)
==
None
):
...
@@ -296,7 +308,7 @@ def doit(inAli,mutFile,retMet,bFile,fFile,n,N, jetfile, normWeightMode):
...
@@ -296,7 +308,7 @@ def doit(inAli,mutFile,retMet,bFile,fFile,n,N, jetfile, normWeightMode):
#It is too much buggy and it has too many dependencies.
#It is too much buggy and it has too many dependencies.
#Using it with a Docker or Singularity may be the best solution!
#Using it with a Docker or Singularity may be the best solution!
print
(
"computing conservation levels..."
)
print
(
"computing conservation levels..."
)
launchJET
(
prot
,
retMet
,
bFile
,
fFile
,
n
,
N
,
nl
)
launchJET
(
prot
,
retMet
,
bFile
,
fFile
,
pdbfile
,
n
,
N
,
nl
)
print
(
"done"
)
print
(
"done"
)
else
:
else
:
print
(
"using previously calculated JET2 data from "
+
jetfile
+
"..."
)
print
(
"using previously calculated JET2 data from "
+
jetfile
+
"..."
)
...
@@ -355,7 +367,7 @@ def doit(inAli,mutFile,retMet,bFile,fFile,n,N, jetfile, normWeightMode):
...
@@ -355,7 +367,7 @@ def doit(inAli,mutFile,retMet,bFile,fFile,n,N, jetfile, normWeightMode):
def
main
():
def
main
():
args
=
parse_command_line
()
args
=
parse_command_line
()
doit
(
args
.
input
,
args
.
mutations
,
args
.
retrievingMethod
,
args
.
blastFile
,
\
doit
(
args
.
input
,
args
.
mutations
,
args
.
retrievingMethod
,
args
.
blastFile
,
\
args
.
fastaFile
,
args
.
nIter
,
args
.
NSeqs
,
args
.
jetfile
,
args
.
normweightmode
)
args
.
fastaFile
,
args
.
nIter
,
args
.
NSeqs
,
args
.
jetfile
,
args
.
pdbfile
,
args
.
normweightmode
)
if
(
__name__
==
'__main__'
):
if
(
__name__
==
'__main__'
):
main
()
main
()
...
...
gemmeAnal.py
View file @
ba2786df
...
@@ -47,7 +47,10 @@ def getNbSeq(filename):
...
@@ -47,7 +47,10 @@ def getNbSeq(filename):
# Create a PDB file with dummy CA atoms based on the query sequence
# Create a PDB file with dummy CA atoms based on the query sequence
def
createPDB
(
prot
,
seq
):
def
createPDB
(
prot
,
seq
):
"""
If there is not a real PDB file for a given sequence,
create a fake PDB containing only CA atoms.
"""
d
=
{
'C'
:
'CYS'
,
'D'
:
'ASP'
,
'S'
:
'SER'
,
'Q'
:
'GLN'
,
'K'
:
'LYS'
,
d
=
{
'C'
:
'CYS'
,
'D'
:
'ASP'
,
'S'
:
'SER'
,
'Q'
:
'GLN'
,
'K'
:
'LYS'
,
'I'
:
'ILE'
,
'P'
:
'PRO'
,
'T'
:
'THR'
,
'F'
:
'PHE'
,
'N'
:
'ASN'
,
'I'
:
'ILE'
,
'P'
:
'PRO'
,
'T'
:
'THR'
,
'F'
:
'PHE'
,
'N'
:
'ASN'
,
'G'
:
'GLY'
,
'H'
:
'HIS'
,
'L'
:
'LEU'
,
'R'
:
'ARG'
,
'W'
:
'TRP'
,
'G'
:
'GLY'
,
'H'
:
'HIS'
,
'L'
:
'LEU'
,
'R'
:
'ARG'
,
'W'
:
'TRP'
,
...
@@ -66,7 +69,7 @@ def editConfJET(N):
...
@@ -66,7 +69,7 @@ def editConfJET(N):
return
(
reCode
)
return
(
reCode
)
# Run JET to compute TJET values
# Run JET to compute TJET values
def
launchJET
(
prot
,
retMet
,
bFile
,
fFile
,
n
,
N
,
nl
):
def
launchJET
(
prot
,
retMet
,
bFile
,
fFile
,
pdbfile
,
n
,
N
,
nl
):
"""
"""
Call JET2 and produce prot+"_jet.res" file.
Call JET2 and produce prot+"_jet.res" file.
...
@@ -88,6 +91,12 @@ def launchJET(prot,retMet,bFile,fFile,n,N,nl):
...
@@ -88,6 +91,12 @@ def launchJET(prot,retMet,bFile,fFile,n,N,nl):
fFile: string
fFile: string
A multiple sequence alignment file obtained with psiblast.
A multiple sequence alignment file obtained with psiblast.
It is used only if the retMet (explained above) is input.
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.
n: int
n: int
Number of JET2 iterations.
Number of JET2 iterations.
N: int
N: int
...
@@ -109,7 +118,13 @@ def launchJET(prot,retMet,bFile,fFile,n,N,nl):
...
@@ -109,7 +118,13 @@ def launchJET(prot,retMet,bFile,fFile,n,N,nl):
shutil
.
copy2
(
bFile
+
".orig "
,
prot
+
"_A.psiblast"
)
shutil
.
copy2
(
bFile
+
".orig "
,
prot
+
"_A.psiblast"
)
else
:
else
:
shutil
.
copy2
(
bFile
+
" "
,
prot
+
"_A.psiblast"
)
shutil
.
copy2
(
bFile
+
" "
,
prot
+
"_A.psiblast"
)
jetcmd
=
"java -Xmx1000m -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
+
"_A.psiblast -d chain -n "
+
n
+
" > "
+
prot
+
".out"
if
(
pdbfile
==
None
):
jetcmd
=
"java -Xmx1000m -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
+
"_A.psiblast -d chain -n "
+
n
+
" > "
+
prot
+
".out"
else
:
jetcmd
=
"java -Xmx1000m -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
+
"_A.psiblast -d chain -n "
+
n
+
" > "
+
prot
+
".out"
else
:
else
:
print
(
N
)
print
(
N
)
editConfJET
(
N
)
editConfJET
(
N
)
...
@@ -125,9 +140,19 @@ def launchJET(prot,retMet,bFile,fFile,n,N,nl):
...
@@ -125,9 +140,19 @@ def launchJET(prot,retMet,bFile,fFile,n,N,nl):
print
(
"
\n
Running:
\n
"
+
grpcmd
)
print
(
"
\n
Running:
\n
"
+
grpcmd
)
subprocess
.
call
(
grpcmd
,
shell
=
True
)
subprocess
.
call
(
grpcmd
,
shell
=
True
)
jetcmd
=
"java -Xmx1000m -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
+
"_A.fasta -d chain -n "
+
n
+
" > "
+
prot
+
".out"
if
(
pdbfile
==
None
):
jetcmd
=
"java -Xmx1000m -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
+
"_A.fasta -d chain -n "
+
n
+
" > "
+
prot
+
".out"
else
:
jetcmd
=
"java -Xmx1000m -cp $JET2_PATH:$JET2_PATH/jet/extLibs/vecmath.jar jet.JET -c default.conf -i "
+
\
prot
+
".pdb -o `pwd` -p AVJ -r input -f "
+
prot
+
"_A.fasta -d chain -n "
+
n
+
" > "
+
prot
+
".out"
else
:
else
:
jetcmd
=
"java -Xmx1000m -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"
if
(
pdbfile
==
None
):
jetcmd
=
"java -Xmx1000m -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 -Xmx1000m -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"
print
(
"
\n
Running:
\n
"
+
jetcmd
)
print
(
"
\n
Running:
\n
"
+
jetcmd
)
reCode
=
subprocess
.
call
(
jetcmd
,
shell
=
True
)
reCode
=
subprocess
.
call
(
jetcmd
,
shell
=
True
)
if
os
.
path
.
isfile
(
prot
+
"/"
+
prot
+
"_jet.res"
):
if
os
.
path
.
isfile
(
prot
+
"/"
+
prot
+
"_jet.res"
):
...
...
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