Skip to content
Snippets Groups Projects
Commit 60d7640d authored by Yannick DAYER's avatar Yannick DAYER
Browse files

[py] Added females to verification protocol

parent 38b32e3b
No related branches found
No related tags found
No related merge requests found
Pipeline #39271 failed
...@@ -98,11 +98,11 @@ class Protocol: ...@@ -98,11 +98,11 @@ class Protocol:
# Return the according gender(s) # Return the according gender(s)
if self.name == "verification_fold1": if self.name == "verification_fold1":
return ["M"] return ["M", "F"]
if self.name == "verification_fold2": if self.name == "verification_fold2":
return ["M"] return ["M", "F"]
if self.name == "verification_fold3": if self.name == "verification_fold3":
return ["M"] return ["M", "F"]
logger.warning( logger.warning(
f"The protocol '{self.name}' has no defined gender. " f"The protocol '{self.name}' has no defined gender. "
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment