Skip to content

Commit

Permalink
Remove pi_score from statistics.csv
Browse files Browse the repository at this point in the history
  • Loading branch information
DimaMolod committed Oct 10, 2024
1 parent d0ae30a commit 8075208
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions alphapulldown/analysis_pipeline/pdb_analyser.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,9 +274,10 @@ def run_and_summarise_pi_score(
f"export PYTHONPATH={software_path}:$PYTHONPATH && "
f"python {piscore_script_path} -p {pdb_path} -o {temp_dir} -s {surface_thres}"
]
result = subprocess.run(command, capture_output=True, text=True)
if result.returncode != 0:
return self._handle_pi_score_error(result, command, result.stderr)
# We decided to remove pi_score from the pipeline
#result = subprocess.run(command, capture_output=True, text=True)
#if result.returncode != 0:
# return self._handle_pi_score_error(result, command, result.stderr)

# Read the results from the temporary directory
csv_files = [f for f in os.listdir(temp_dir) if f.endswith('.csv')]
Expand Down

0 comments on commit 8075208

Please sign in to comment.