Entering edit mode
6.0 years ago
ionox0
▴
390
I like to use SchemaDefRequirements
to define parameter groups for our tools. Is it possible to include the symbols field under the record fields that have type enum
? Thank you!
name: vcf2maf_params
type: record
fields:
species:
type: enum?
# This doesn't pass validation:
# symbols: [homo_sapiens, mus_musculus]
ncbi_build:
type: enum?
# symbols: [GRCh37, GRCh38, GRCm38]
With the newly released version
1.0.20181201184214
ofcwltool
the above is now simpler:Thank you for the help and improvements!