Skip to content

Commit

Permalink
Check samples are not duplicated
Browse files Browse the repository at this point in the history
  • Loading branch information
ypriverol committed Jul 29, 2024
1 parent c89e1db commit 333aeda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdrf_pipelines/sdrf/sdrf.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def check_unique_sample_file_combinations(self, errors: List[LogicError]) -> Lis

for col in cols:
if col not in self.columns:
error_message = f"In order to perfrom experimental design validation, column '{col}' must be present in the SDRF"
error_message = f"In order to perform experimental design validation, column '{col}' must be present in the SDRF"
errors.append(LogicError(error_message, error_type=logging.ERROR))

colum_present = all(col in self.columns for col in cols)
Expand Down

0 comments on commit 333aeda

Please sign in to comment.