Closed AymenFJA closed 1 month ago
The current suggested solution, just to move forward in generating data is to check for the protein before trying to access it and maniplualte it:
sub_iter_seqs = {}
# comparison of curr and prev
for proteins, scores in self.curr_scores.items():
if scores > self.prev_scores[proteins]:
# check if the protein key exist in the dict otherwise skip
------> if self.iter_seqs.get(proteins):
# proteins to be removed from the current pipeline
sub_iter_seqs[proteins] = self.iter_seqs.pop(proteins)
Issue resolved, pipeline runs as expected
IMPRESS pipelines are currently failing on Amarel with the following error:
This error is unrelated to RCT and is mainly due to some bug in the logic of the
adaptive_pipeline
code.