You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One of the most important pain points during validation is cases when I am using % instead of %s in pattern strings strings. Example:
name:
text: "% adenoma"
vars:
- v0
def:
text: "A adenoma that involves the %."
vars:
- v0
This should be carefully QCed, by taking also into account the number of variables in the subsequent vars section; This could avoid mistakenly flagging up cases like like
def:
text: "A adenoma that involves at least 90% the %s."
vars:
- v0
or
def:
text: "A adenoma that involves at least 90 % the %s."
vars:
- v0
The text was updated successfully, but these errors were encountered:
One of the most important pain points during validation is cases when I am using
%
instead of%s
in pattern strings strings. Example:This should be carefully QCed, by taking also into account the number of variables in the subsequent
vars
section; This could avoid mistakenly flagging up cases like likeor
The text was updated successfully, but these errors were encountered: