Commit 56d41188 by Mustafa Tekpinar

Changed CV cutoff radius from 8 to 7.

parent 8be6ee36
......@@ -53,7 +53,7 @@ accessType chain change this parameter with -d option of JET. See usage of
*****************************************
>CV
max_dist 8.0 max distance
max_dist 7.0 max distance
*****************************************
>Interface
cutoff 0 minimum percentage accessible surface variation of an interface residu
......
......@@ -157,7 +157,7 @@ def editDefaultConfChangeCVRC(CVRc):
"""
with open("default.conf", "r+" ) as file:
fileContents = file.read()
textPattern = re.compile( re.escape(">CV\nmax_dist 8.0"))
textPattern = re.compile( re.escape(">CV\nmax_dist 7.0"))
fileContents = textPattern.sub(">CV\nmax_dist {:.1f}".format(CVRc), fileContents)
file.seek( 0 )
file.truncate()
......@@ -1016,7 +1016,7 @@ def parse_command_line():
required=False, default=5)
parser.add_argument('--cvrc', dest='cvrc', type=float, \
help="Cutoff radius for CV (Circular Variance) calculation. Default is 8.0 Angstrom in default.conf file.)",
help="Cutoff radius for CV (Circular Variance) calculation. Default is 7.0 Angstrom in default.conf file.)",
required=False, default=None)
# parser.add_argument('--coilbreakerlength', dest='coilbreakerlength', type=int, \
......
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