Skip to content

Commit

Permalink
Merge pull request #130 from adaptyvbio/select_cdrs
Browse files Browse the repository at this point in the history
Select CDRs
  • Loading branch information
elkoz committed Dec 28, 2023
2 parents 4ae89fe + 29f6eb5 commit 9ef6128
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions proteinflow/data/torch.py
Original file line number Diff line number Diff line change
Expand Up @@ -908,12 +908,15 @@ def set_cdr(self, cdr):
Parameters
----------
cdr : {"H1", "H2", "H3", "L1", "L2", "L3"}
The CDR to be iterated over. Set to `None` to go back to iterating over all chains.
cdr : list | str | None
The CDR to be iterated over (choose from H1, H2, H3, L1, L2, L3).
Set to `None` to go back to iterating over all chains.
"""
if not self.sabdab:
cdr = None
if isinstance(cdr, str):
cdr = [cdr]
if cdr == self.cdr:
return
self.cdr = cdr
Expand All @@ -924,12 +927,12 @@ def set_cdr(self, cdr):
print(f"Setting CDR to {cdr}...")
for i, data in tqdm(enumerate(self.data)):
if self.clusters is not None:
if data.split("__")[1] == cdr:
if data.split("__")[1] in cdr:
self.indices.append(i)
else:
add = False
for chain in self.files[data]:
if chain.split("__")[1] == cdr:
if chain.split("__")[1] in cdr:
add = True
break
if add:
Expand Down Expand Up @@ -1061,7 +1064,7 @@ def __getitem__(self, idx):
id = self.data[idx] # data is already filtered by length
chain_id = random.choice(list(self.files[id].keys()))
if self.cdr is not None:
while self.cdr != chain_id.split("__")[1]:
while chain_id.split("__")[1] not in self.cdr:
chain_id = random.choice(list(self.files[id].keys()))
else:
cluster = self.data[idx]
Expand Down

0 comments on commit 9ef6128

Please sign in to comment.