Supported Task Option Data models
- class
pbcommand.models.BasePacBioOption(option_id, name, default, description)[source]¶Bases:
objectCore constructor for the PacBio Task Option.
Parameters:
- option_id (str) – PacBio Task Option type id. Must adhere to the A-z0-9_
- name (str) – Display name of the Task Option
- default – Default value
- description (str) – Description of the Task Option
OPTION_TYPE_ID= 'UNKNOWN'¶
default¶Returns the default value for the option
- class
pbcommand.models.PacBioIntOption(option_id, name, default, description)[source]¶Bases:
pbcommand.models.common.BasePacBioOptionCore constructor for the PacBio Task Option.
Parameters:
- option_id (str) – PacBio Task Option type id. Must adhere to the A-z0-9_
- name (str) – Display name of the Task Option
- default – Default value
- description (str) – Description of the Task Option
OPTION_TYPE_ID= 'integer'¶
- class
pbcommand.models.PacBioBooleanOption(option_id, name, default, description)[source]¶Bases:
pbcommand.models.common.BasePacBioOptionCore constructor for the PacBio Task Option.
Parameters:
- option_id (str) – PacBio Task Option type id. Must adhere to the A-z0-9_
- name (str) – Display name of the Task Option
- default – Default value
- description (str) – Description of the Task Option
OPTION_TYPE_ID= 'boolean'¶
- class
pbcommand.models.PacBioStringOption(option_id, name, default, description)[source]¶Bases:
pbcommand.models.common.BasePacBioOptionCore constructor for the PacBio Task Option.
Parameters:
- option_id (str) – PacBio Task Option type id. Must adhere to the A-z0-9_
- name (str) – Display name of the Task Option
- default – Default value
- description (str) – Description of the Task Option
OPTION_TYPE_ID= 'string'¶
- class
pbcommand.models.PacBioFloatOption(option_id, name, default, description)[source]¶Bases:
pbcommand.models.common.BasePacBioOptionCore constructor for the PacBio Task Option.
Parameters:
- option_id (str) – PacBio Task Option type id. Must adhere to the A-z0-9_
- name (str) – Display name of the Task Option
- default – Default value
- description (str) – Description of the Task Option
OPTION_TYPE_ID= 'float'¶
- class
pbcommand.models.PacBioIntChoiceOption(option_id, name, default, description, choices)[source]¶Bases:
pbcommand.models.common.BaseChoiceType
OPTION_TYPE_ID= 'choice_integer'¶
- class
pbcommand.models.PacBioFloatChoiceOption(option_id, name, default, description, choices)[source]¶Bases:
pbcommand.models.common.BaseChoiceType
OPTION_TYPE_ID= 'choice_float'¶
- class
pbcommand.models.PacBioStringChoiceOption(option_id, name, default, description, choices)[source]¶Bases:
pbcommand.models.common.BaseChoiceType
OPTION_TYPE_ID= 'choice_string'¶