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
8603802b
Commit
8603802b
authored
Jul 31, 2023
by
Mustafa Tekpinar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tested new argument (coilbreakerlength) but gave upon it eventually!
parent
e61bdc0c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
52 additions
and
12 deletions
+52
-12
esgemme.py
esgemme/esgemme.py
+52
-12
No files found.
esgemme/esgemme.py
View file @
8603802b
...
...
@@ -791,7 +791,7 @@ def check_argument_groups(parser, arg_dict, group, argument):
parser
.
error
(
"esgemme requires "
+
group
+
" to be set to input if "
+
str
(
argument
)
+
" is used."
)
return
None
def
calculateSecondaryStructure
(
pdbfile
):
def
calculateSecondaryStructure
(
pdbfile
,
coilBreakerLength
):
"""
Calls dssp, calculates secondary structure and saves the results as a
text file with .dssp extention. The result contains a residue index and
...
...
@@ -807,7 +807,6 @@ def calculateSecondaryStructure(pdbfile):
A structure file in PDB format is the main input.
"""
#pdbfile: Name of the input pdb file
#outfile=Name of outputfile that contain secondary structure information= pdbfile+".dssp"
#for each residue in a new line
...
...
@@ -820,11 +819,47 @@ def calculateSecondaryStructure(pdbfile):
# print(sse)
calphas
=
array
[
array
.
atom_name
==
"CA"
]
residList
=
(
calphas
.
res_id
)
i
=
0
# #################################################################
# # Check S or T residues that are between coils and convert them to coils.
# # These S or Ts break the continuity of a coil and reduce coil length parameter,
# # which is used later do select Tjet or Max score.
# # We have to do it in a loop because we change S or T to C. When you check ss in a
# # second round, you will capture new C(S|T)+S patterns. We do this until this pattern
# # can not be found!
# debug = True
# myRegex = r'C(S|T){'+str(coilBreakerLength)+',6}C'
# print(myRegex)
# while(1):
# secondaryStructureString=""
# for item in sse:
# secondaryStructureString = secondaryStructureString + item
# # print(secondaryStructureString)
# #allMatcheSum = sum(1 for _ in re.finditer(r'C(S|T)+C', secondaryStructureString))
# allMatcheSum = sum(1 for _ in re.finditer(myRegex, secondaryStructureString))
# # allMatches = re.finditer(r'C(S|T)+C', secondaryStructureString)
# if(allMatcheSum==0):
# break
# else:
# for match in re.finditer(myRegex, secondaryStructureString):
# if(debug):
# print(secondaryStructureString[match.span()[0]:match.span()[1]], match.span()[0], match.span()[1])
# for i in range(match.span()[0], match.span()[1]):
# sse[i]='C'
# secondaryStructureString=""
# for item in sse:
# secondaryStructureString = secondaryStructureString + item
# #print(secondaryStructureString)
# # print(match.span())
# #sys.exit(-1)
# #################################################################
with
open
(
pdbfile
+
".dssp"
,
'w'
)
as
file
:
for
item
in
sse
:
file
.
write
(
str
(
residList
[
i
])
+
","
+
item
+
"
\n
"
)
i
+=
1
for
j
in
range
(
len
(
sse
)):
file
.
write
(
str
(
residList
[
j
])
+
","
+
sse
[
j
]
+
"
\n
"
)
def
countCoilSegments
(
inputfile
):
"""
...
...
@@ -959,6 +994,10 @@ def parse_command_line():
help
=
"If coil length is > maxcoillength, it will use JET values."
,
required
=
False
,
default
=
5
)
parser
.
add_argument
(
'--coilbreakerlength'
,
dest
=
'coilbreakerlength'
,
type
=
int
,
\
help
=
"Length of coil breaking S or T residues between C(S|T)C pattern."
,
required
=
False
,
default
=
1
)
args
=
parser
.
parse_args
()
arg_dict
=
vars
(
args
)
...
...
@@ -973,7 +1012,7 @@ def parse_command_line():
def
doit
(
inAli
,
mutFile
,
retMet
,
bFile
,
fFile
,
n
,
N
,
jetfile
,
pdbfile
,
normWeightMode
,
\
alphabet
,
verbosity
,
offset
,
colormap
,
maxCoilLength
=
5
):
alphabet
,
verbosity
,
offset
,
colormap
,
maxCoilLength
=
5
,
coilbreakerlength
=
1
):
"""
Perfect explanation for a function: typing the function call exactly!
doit is basically the main function in disguise!
...
...
@@ -1044,7 +1083,7 @@ def doit(inAli,mutFile,retMet,bFile,fFile,n,N, jetfile, pdbfile, normWeightMode,
print
(
"ERROR: There is not any pdb file."
)
sys
.
exit
(
-
1
)
else
:
calculateSecondaryStructure
(
pdbfile
)
calculateSecondaryStructure
(
pdbfile
,
coilbreakerlength
)
countCoilSegments
(
pdbfile
+
".dssp"
)
df
=
pd
.
read_table
(
prot
+
"_jet.res"
,
sep
=
"
\
s+"
)
...
...
@@ -1081,7 +1120,7 @@ def doit(inAli,mutFile,retMet,bFile,fFile,n,N, jetfile, pdbfile, normWeightMode,
print
(
"ERROR: There is not any pdb file."
)
sys
.
exit
(
-
1
)
else
:
calculateSecondaryStructure
(
pdbfile
)
calculateSecondaryStructure
(
pdbfile
,
coilbreakerlength
)
countCoilSegments
(
pdbfile
+
".dssp"
)
df
=
pd
.
read_table
(
prot
+
"_jet.res"
,
sep
=
"
\
s+"
)
...
...
@@ -1118,7 +1157,7 @@ def doit(inAli,mutFile,retMet,bFile,fFile,n,N, jetfile, pdbfile, normWeightMode,
print
(
"ERROR: There is not any pdb file."
)
sys
.
exit
(
-
1
)
else
:
calculateSecondaryStructure
(
pdbfile
)
calculateSecondaryStructure
(
pdbfile
,
coilbreakerlength
)
countCoilSegments
(
pdbfile
+
".dssp"
)
df
=
pd
.
read_table
(
prot
+
"_jet.res"
,
sep
=
"
\
s+"
)
...
...
@@ -1182,7 +1221,7 @@ def doit(inAli,mutFile,retMet,bFile,fFile,n,N, jetfile, pdbfile, normWeightMode,
threeLetters2oneLetter
=
{
v
:
k
for
k
,
v
in
oneLetter2ThreeLetters
.
items
()}
calculateSecondaryStructure
(
pdbfile
)
calculateSecondaryStructure
(
pdbfile
,
coilbreakerlength
)
countCoilSegments
(
pdbfile
+
".dssp"
)
df
=
pd
.
read_table
(
prot
+
"_jet.res"
,
sep
=
"
\
s+"
)
...
...
@@ -1405,7 +1444,8 @@ def main():
doit
(
args
.
input
,
args
.
mutations
,
args
.
retrievingMethod
,
args
.
blastFile
,
\
args
.
fastaFile
,
args
.
nIter
,
args
.
NSeqs
,
args
.
jetfile
,
args
.
pdbfile
,
\
args
.
normweightmode
,
args
.
alphabet
,
args
.
verbose
,
args
.
offset
,
\
args
.
colormap
,
maxCoilLength
=
args
.
maxcoillength
)
args
.
colormap
,
maxCoilLength
=
args
.
maxcoillength
,
\
coilbreakerlength
=
args
.
coilbreakerlength
)
toc
=
time
.
perf_counter
()
...
...
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