Liza Kozlova

Results 5 comments of Liza Kozlova

Using a docker container following the instructions at #176 was the only thing that helped in my case

Note that you need to run `systemctl reload docker` after setting the default runtime

Hey! We're very glad that it was useful for you, sorry for the long response time. You can generate a PDB file from a `ProteinEntry` instance by running `protein.to_pdb(PATH)`. It...

Could you please attach an example file that this fails on or say its pdb id @ardagoreci ?

This code ran for me without any errors. ```python from proteinflow.data import ProteinEntry from tqdm import tqdm import os folder = "data/proteinflow_20230102_stable/train" for filename in tqdm(os.listdir(folder)): ProteinEntry.from_pickle(os.path.join(folder, filename)).to_pdb("tmp.pdb") ```