Anton Bushuiev commited on
Commit
13bb831
·
1 Parent(s): 7d3d4d7

Fix input file format not to contain '_'

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -102,7 +102,7 @@ def process_inputs(inputs, temp_dir):
102
  partners = list(map(lambda x: x.strip(), partners.split(',')))
103
 
104
  # Add partners to file name
105
- pdb_path = pdb_path.rename(pdb_path.with_stem(f"{pdb_path.stem}_{'_'.join(partners)}"))
106
 
107
  # Extract PPI into temp dir
108
  try:
 
102
  partners = list(map(lambda x: x.strip(), partners.split(',')))
103
 
104
  # Add partners to file name
105
+ pdb_path = pdb_path.rename(pdb_path.with_stem(f"{pdb_path.stem}-{'-'.join(partners)}"))
106
 
107
  # Extract PPI into temp dir
108
  try: