Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
335fce6
1
Parent(s):
fbb545c
fixed print statement
Browse files
app.py
CHANGED
@@ -82,7 +82,7 @@ def calculate_clashes_for_pdb(pdb_file):
|
|
82 |
|
83 |
# Normalize steric clashes per number of atoms
|
84 |
norm_ster_clash_count = steric_clash_count / num_atoms
|
85 |
-
return f"
|
86 |
|
87 |
def read_pdb_io(pdb_file):
|
88 |
if isinstance(pdb_file, io.StringIO):
|
|
|
82 |
|
83 |
# Normalize steric clashes per number of atoms
|
84 |
norm_ster_clash_count = steric_clash_count / num_atoms
|
85 |
+
return f"{steric_clash_count}", f"{norm_ster_clash_count}"
|
86 |
|
87 |
def read_pdb_io(pdb_file):
|
88 |
if isinstance(pdb_file, io.StringIO):
|