fatmacankara commited on
Commit
e53bdf2
1 Parent(s): 8820325

Update code/manage_files.py

Browse files
Files changed (1) hide show
  1. code/manage_files.py +1 -5
code/manage_files.py CHANGED
@@ -33,11 +33,7 @@ def manage_files(mode):
33
  alphafold_summary = path_to_input_files / 'alphafold_summary.txt'
34
  path_to_interfaces = path_to_input_files / 'H_sapiens_interfacesHQ.txt'
35
  # Unzip before using
36
- from datasets import load_dataset
37
- alphafold_path = load_dataset("HUBioDataLab/AlphafoldStructures")
38
- st.write('path')
39
- st.write(alphafold_path)
40
- ###alphafold_path = Path(path_to_input_files/'alphafold_structures')
41
 
42
  os.makedirs('out_files', exist_ok=True)
43
  path_to_output_files = Path('out_files/alphafold')
 
33
  alphafold_summary = path_to_input_files / 'alphafold_summary.txt'
34
  path_to_interfaces = path_to_input_files / 'H_sapiens_interfacesHQ.txt'
35
  # Unzip before using
36
+ alphafold_path = Path(path_to_input_files/'alphafold_structures')
 
 
 
 
37
 
38
  os.makedirs('out_files', exist_ok=True)
39
  path_to_output_files = Path('out_files/alphafold')