Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
CSP_Rank/FUNNEL_PLOT.py
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
17 lines (15 sloc)
508 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
from tqdm import tqdm | |
import pandas as pd | |
import matplotlib.pyplot as plt | |
import os | |
from os import listdir | |
from os.path import isfile, join | |
from plot_tm_dockq_es_rms import generate_bayes_components_plot | |
# List of PDB IDs to process | |
pdb_ids = ['2jw1', '2lgk', '2lsk', '2law', '2kwv', '2mnu', '2mps', | |
'5tp6', '5urn', '7ovc', '7jyn', '7jq8', '6h8c'] | |
# Generate plots for each PDB ID | |
for pdb_id in pdb_ids: | |
print(f"Processing {pdb_id}...") | |
generate_bayes_components_plot(pdb_id) |