"description":"A path to the nextflow working directory in the ReadWriteMany Persistent Volume Claim shared by the driver and worker pods. Must be a unique path in the PVC not shared by other workflow instances, or weird things will happen."
},
"id":{
"type":"string",
"description":"An identifier assigned to the launched workflow instance. It should be universally unique to monitor the status of the launched workflow."
}
},
"required":[
"target_genomes",
"nxf_params_file",
"nxf_work",
"id"
]
},
"globus_details":{
"type":"object",
"properties":{
"dir_path_on_guest_collection":{
"type":"string",
"description":"A globus endpoint ID. Files are transferred from this destination to local storage."
"description":"Validates the JSON representation of a samplesheet",
"type":"array",
"uniqueItems":true,
"minItems":1,
"items":{
"type":"object",
"properties":{
"sampleset":{
"type":"string",
"pattern":"^\\S+$",
"description":"Sampleset name must be provided and cannot contain spaces"
},
"vcf_path":{
"type":[
"string",
"null"
],
"pattern":"^\\S+\\.vcf\\.gz$",
"description":"VCF path must end with .vcf.gz, mutually exclusive with other formats",
"type":[
"null",
"string"
],
"pattern":"^\\S+\\.vcf\\.gz$",
"minLength":5
},
"vcf_genotype_field":{
"description":"Specify whether to import genotypes (default: GT), or imputed dosages (DS) from the VCF file.",
"type":[
"string",
"null"
],
"pattern":"/^(GT|DS)$/"
},
"bed":{
"description":"Plink 1 binary genotype file",
"type":[
"string",
"null"
],
"pattern":"^.*bed$",
"minLength":5
},
"bim":{
"description":"Plink 1 variant information file",
"type":[
"string",
"null"
],
"pattern":"^.*bim$",
"minLength":5
},
"fam":{
"description":"Plink 1 sample information file",
"type":[
"string",
"null"
],
"pattern":"^.*fam$",
"minLength":5
},
"pgen":{
"description":"Plink 2 binary genotype file",
"type":[
"string",
"null"
],
"pattern":"^.*pgen$",
"minLength":6
},
"psam":{
"description":"Plink 2 sample information file",
"type":[
"string",
"null"
],
"pattern":"^.*psam$",
"minLength":6
},
"pvar":{
"description":"Plink 2 variant information file",
"type":[
"string",
"null"
],
"pattern":"^.*pvar$",
"minLength":6
},
"chrom":{
"description":"Specify the chromosome of associated genotyping data (must be in {1-22, X, XY, Y}). If all chromosomes are in the associated file (e.g. your data is not split by chromosome), set to null.",