MCPcopy Create free account
hub / github.com/SegataLab/lefse / funcIsValidChar

Method funcIsValidChar

lefsebiom/ValidateData.py:275–285  ·  view source on GitHub ↗

Validates a parameter as a valid character. :param parameterValue: Value to be evaluated. :type Unknown :return Boolean: True indicates the parameter is a valid value. :type Boolean

(parameterValue)

Source from the content-addressed store, hash-verified

273 #Tested 5
274 @staticmethod
275 def funcIsValidChar(parameterValue):
276 """
277 Validates a parameter as a valid character.
278
279 :param parameterValue: Value to be evaluated.
280 :type Unknown
281 :return Boolean: True indicates the parameter is a valid value.
282 :type Boolean
283 """
284
285 return ValidateData.funcIsValidString(parameterValue)
286
287 #Tested 13
288 @staticmethod

Callers

nothing calls this directly

Calls 1

funcIsValidStringMethod · 0.80

Tested by

no test coverage detected