diff --git a/gxformat2/schema/v19_09.py b/gxformat2/schema/v19_09.py index 5d6778e..5268193 100644 --- a/gxformat2/schema/v19_09.py +++ b/gxformat2/schema/v19_09.py @@ -6613,7 +6613,10 @@ def save( booltype, ) ) -uri_strtype_False_True_None_None = _URILoader(strtype, False, True, None, None) +GalaxyWorkflow_classLoader = _EnumLoader(("GalaxyWorkflow",), "GalaxyWorkflow_class") +uri_GalaxyWorkflow_classLoader_False_True_None_None = _URILoader( + GalaxyWorkflow_classLoader, False, True, None, None +) array_of_WorkflowInputParameterLoader = _ArrayLoader(WorkflowInputParameterLoader) idmap_inputs_array_of_WorkflowInputParameterLoader = _IdMapLoader( array_of_WorkflowInputParameterLoader, "id", "type" diff --git a/java/src/main/java/org/galaxyproject/gxformat2/v19_09/GalaxyWorkflow.java b/java/src/main/java/org/galaxyproject/gxformat2/v19_09/GalaxyWorkflow.java index a994b9c..726639d 100644 --- a/java/src/main/java/org/galaxyproject/gxformat2/v19_09/GalaxyWorkflow.java +++ b/java/src/main/java/org/galaxyproject/gxformat2/v19_09/GalaxyWorkflow.java @@ -52,7 +52,7 @@ public interface GalaxyWorkflow extends Process, HasUUID, Saveable { /** * Getter for property https://galaxyproject.org/gxformat2/v19_09#GalaxyWorkflow/class */ - String getClass_(); + GalaxyWorkflow_class getClass_(); /** * Getter for property https://w3id.org/cwl/cwl#Labeled/label * diff --git a/java/src/main/java/org/galaxyproject/gxformat2/v19_09/GalaxyWorkflowImpl.java b/java/src/main/java/org/galaxyproject/gxformat2/v19_09/GalaxyWorkflowImpl.java index 204d95a..57753ff 100644 --- a/java/src/main/java/org/galaxyproject/gxformat2/v19_09/GalaxyWorkflowImpl.java +++ b/java/src/main/java/org/galaxyproject/gxformat2/v19_09/GalaxyWorkflowImpl.java @@ -61,12 +61,12 @@ public java.util.Optional getId() { return this.id; } - private String class_; + private GalaxyWorkflow_class class_; /** * Getter for property https://galaxyproject.org/gxformat2/v19_09#GalaxyWorkflow/class */ - public String getClass_() { + public GalaxyWorkflow_class getClass_() { return this.class_; } @@ -310,10 +310,10 @@ public GalaxyWorkflowImpl( } else { __baseUri = (String) id.orElse(null); } - String class_; + GalaxyWorkflow_class class_; try { class_ = - LoaderInstances.uri_StringInstance_False_True_None_None.loadField( + LoaderInstances.uri_GalaxyWorkflow_class_False_True_None_None.loadField( __doc.get("class"), __baseUri, __loadingOptions); } catch (ValidationException e) { class_ = null; // won't be used but prevents compiler from complaining. @@ -487,7 +487,7 @@ public GalaxyWorkflowImpl( this.inputs = (java.util.List) inputs; this.outputs = (java.util.List) outputs; this.uuid = (java.util.Optional) uuid; - this.class_ = (String) class_; + this.class_ = (GalaxyWorkflow_class) class_; this.steps = (java.util.List) steps; this.report = (java.util.Optional) report; this.tags = (java.util.Optional>) tags; diff --git a/java/src/main/java/org/galaxyproject/gxformat2/v19_09/utils/ConstantMaps.java b/java/src/main/java/org/galaxyproject/gxformat2/v19_09/utils/ConstantMaps.java index 9e60c96..f88ca00 100644 --- a/java/src/main/java/org/galaxyproject/gxformat2/v19_09/utils/ConstantMaps.java +++ b/java/src/main/java/org/galaxyproject/gxformat2/v19_09/utils/ConstantMaps.java @@ -14,7 +14,7 @@ public class ConstantMaps { vocab.put("EnumSchema", "https://w3id.org/cwl/salad#EnumSchema"); vocab.put("File", "https://galaxyproject.org/gxformat2/v19_09#GalaxyType/File"); vocab.put("GalaxyType", "https://galaxyproject.org/gxformat2/v19_09#GalaxyType"); - vocab.put("GalaxyWorkflow", "https://galaxyproject.org/gxformat2/v19_09#GalaxyWorkflow"); + vocab.put("GalaxyWorkflow", "GalaxyWorkflow"); vocab.put("HasStepErrors", "https://galaxyproject.org/gxformat2/gxformat2common#HasStepErrors"); vocab.put( "HasStepPosition", "https://galaxyproject.org/gxformat2/gxformat2common#HasStepPosition"); @@ -72,7 +72,7 @@ public class ConstantMaps { rvocab.put("https://w3id.org/cwl/salad#EnumSchema", "EnumSchema"); rvocab.put("https://galaxyproject.org/gxformat2/v19_09#GalaxyType/File", "File"); rvocab.put("https://galaxyproject.org/gxformat2/v19_09#GalaxyType", "GalaxyType"); - rvocab.put("https://galaxyproject.org/gxformat2/v19_09#GalaxyWorkflow", "GalaxyWorkflow"); + rvocab.put("GalaxyWorkflow", "GalaxyWorkflow"); rvocab.put( "https://galaxyproject.org/gxformat2/gxformat2common#HasStepErrors", "HasStepErrors"); rvocab.put( diff --git a/java/src/main/java/org/galaxyproject/gxformat2/v19_09/utils/LoaderInstances.java b/java/src/main/java/org/galaxyproject/gxformat2/v19_09/utils/LoaderInstances.java index f11bd0d..00452eb 100644 --- a/java/src/main/java/org/galaxyproject/gxformat2/v19_09/utils/LoaderInstances.java +++ b/java/src/main/java/org/galaxyproject/gxformat2/v19_09/utils/LoaderInstances.java @@ -228,8 +228,10 @@ public class LoaderInstances { false, 2, null); - public static Loader uri_StringInstance_False_True_None_None = - new UriLoader(StringInstance, false, true, null, null); + public static Loader GalaxyWorkflow_class = + new EnumLoader(GalaxyWorkflow_class.class); + public static Loader uri_GalaxyWorkflow_class_False_True_None_None = + new UriLoader(GalaxyWorkflow_class, false, true, null, null); public static Loader> array_of_WorkflowStep = new ArrayLoader(WorkflowStep); public static Loader> idmap_steps_array_of_WorkflowStep = diff --git a/typescript/docs/assets/search.js b/typescript/docs/assets/search.js index 7e64786..6f718c3 100644 --- a/typescript/docs/assets/search.js +++ b/typescript/docs/assets/search.js @@ -1 +1 @@ -window.searchData = JSON.parse("{\"kinds\":{\"8\":\"Enumeration\",\"16\":\"Enumeration member\",\"64\":\"Function\",\"128\":\"Class\",\"256\":\"Interface\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\"},\"rows\":[{\"id\":0,\"kind\":64,\"name\":\"loadDocument\",\"url\":\"modules.html#loadDocument\",\"classes\":\"tsd-kind-function\"},{\"id\":1,\"kind\":64,\"name\":\"loadDocumentByString\",\"url\":\"modules.html#loadDocumentByString\",\"classes\":\"tsd-kind-function\"},{\"id\":2,\"kind\":128,\"name\":\"ValidationException\",\"url\":\"classes/ValidationException.html\",\"classes\":\"tsd-kind-class\"},{\"id\":3,\"kind\":1024,\"name\":\"indentPerLevel\",\"url\":\"classes/ValidationException.html#indentPerLevel\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"ValidationException\"},{\"id\":4,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/ValidationException.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"ValidationException\"},{\"id\":5,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ValidationException.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"ValidationException\"},{\"id\":6,\"kind\":1024,\"name\":\"children\",\"url\":\"classes/ValidationException.html#children\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ValidationException\"},{\"id\":7,\"kind\":1024,\"name\":\"bullet\",\"url\":\"classes/ValidationException.html#bullet\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ValidationException\"},{\"id\":8,\"kind\":2048,\"name\":\"withBullet\",\"url\":\"classes/ValidationException.html#withBullet\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ValidationException\"},{\"id\":9,\"kind\":2048,\"name\":\"simplify\",\"url\":\"classes/ValidationException.html#simplify\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ValidationException\"},{\"id\":10,\"kind\":2048,\"name\":\"summary\",\"url\":\"classes/ValidationException.html#summary\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ValidationException\"},{\"id\":11,\"kind\":2048,\"name\":\"prettyStr\",\"url\":\"classes/ValidationException.html#prettyStr\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ValidationException\"},{\"id\":12,\"kind\":2048,\"name\":\"toString\",\"url\":\"classes/ValidationException.html#toString\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ValidationException\"},{\"id\":13,\"kind\":64,\"name\":\"shortname\",\"url\":\"modules.html#shortname\",\"classes\":\"tsd-kind-function\"},{\"id\":14,\"kind\":8,\"name\":\"Any\",\"url\":\"enums/Any.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":15,\"kind\":16,\"name\":\"ANY\",\"url\":\"enums/Any.html#ANY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Any\"},{\"id\":16,\"kind\":128,\"name\":\"ArraySchema\",\"url\":\"classes/ArraySchema.html\",\"classes\":\"tsd-kind-class\"},{\"id\":17,\"kind\":2048,\"name\":\"fromDoc\",\"url\":\"classes/ArraySchema.html#fromDoc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static\",\"parent\":\"ArraySchema\"},{\"id\":18,\"kind\":1024,\"name\":\"attr\",\"url\":\"classes/ArraySchema.html#attr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"ArraySchema\"},{\"id\":19,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ArraySchema.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"ArraySchema\"},{\"id\":20,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"classes/ArraySchema.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ArraySchema\"},{\"id\":21,\"kind\":1024,\"name\":\"items\",\"url\":\"classes/ArraySchema.html#items\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ArraySchema\"},{\"id\":22,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/ArraySchema.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ArraySchema\"},{\"id\":23,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/ArraySchema.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"ArraySchema\"},{\"id\":24,\"kind\":1024,\"name\":\"loadingOptions\",\"url\":\"classes/ArraySchema.html#loadingOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"ArraySchema\"},{\"id\":25,\"kind\":256,\"name\":\"ArraySchemaProperties\",\"url\":\"interfaces/ArraySchemaProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":26,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"interfaces/ArraySchemaProperties.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ArraySchemaProperties\"},{\"id\":27,\"kind\":1024,\"name\":\"items\",\"url\":\"interfaces/ArraySchemaProperties.html#items\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ArraySchemaProperties\"},{\"id\":28,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/ArraySchemaProperties.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ArraySchemaProperties\"},{\"id\":29,\"kind\":256,\"name\":\"DocumentedProperties\",\"url\":\"interfaces/DocumentedProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":30,\"kind\":1024,\"name\":\"doc\",\"url\":\"interfaces/DocumentedProperties.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DocumentedProperties\"},{\"id\":31,\"kind\":128,\"name\":\"EnumSchema\",\"url\":\"classes/EnumSchema.html\",\"classes\":\"tsd-kind-class\"},{\"id\":32,\"kind\":2048,\"name\":\"fromDoc\",\"url\":\"classes/EnumSchema.html#fromDoc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static\",\"parent\":\"EnumSchema\"},{\"id\":33,\"kind\":1024,\"name\":\"attr\",\"url\":\"classes/EnumSchema.html#attr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"EnumSchema\"},{\"id\":34,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/EnumSchema.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"EnumSchema\"},{\"id\":35,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"classes/EnumSchema.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EnumSchema\"},{\"id\":36,\"kind\":1024,\"name\":\"symbols\",\"url\":\"classes/EnumSchema.html#symbols\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EnumSchema\"},{\"id\":37,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/EnumSchema.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EnumSchema\"},{\"id\":38,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/EnumSchema.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"EnumSchema\"},{\"id\":39,\"kind\":1024,\"name\":\"loadingOptions\",\"url\":\"classes/EnumSchema.html#loadingOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"EnumSchema\"},{\"id\":40,\"kind\":256,\"name\":\"EnumSchemaProperties\",\"url\":\"interfaces/EnumSchemaProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":41,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"interfaces/EnumSchemaProperties.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"EnumSchemaProperties\"},{\"id\":42,\"kind\":1024,\"name\":\"symbols\",\"url\":\"interfaces/EnumSchemaProperties.html#symbols\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"EnumSchemaProperties\"},{\"id\":43,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/EnumSchemaProperties.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"EnumSchemaProperties\"},{\"id\":44,\"kind\":8,\"name\":\"GalaxyType\",\"url\":\"enums/GalaxyType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":45,\"kind\":16,\"name\":\"NULL\",\"url\":\"enums/GalaxyType.html#NULL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"GalaxyType\"},{\"id\":46,\"kind\":16,\"name\":\"BOOLEAN\",\"url\":\"enums/GalaxyType.html#BOOLEAN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"GalaxyType\"},{\"id\":47,\"kind\":16,\"name\":\"INT\",\"url\":\"enums/GalaxyType.html#INT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"GalaxyType\"},{\"id\":48,\"kind\":16,\"name\":\"LONG\",\"url\":\"enums/GalaxyType.html#LONG\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"GalaxyType\"},{\"id\":49,\"kind\":16,\"name\":\"FLOAT\",\"url\":\"enums/GalaxyType.html#FLOAT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"GalaxyType\"},{\"id\":50,\"kind\":16,\"name\":\"DOUBLE\",\"url\":\"enums/GalaxyType.html#DOUBLE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"GalaxyType\"},{\"id\":51,\"kind\":16,\"name\":\"STRING\",\"url\":\"enums/GalaxyType.html#STRING\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"GalaxyType\"},{\"id\":52,\"kind\":16,\"name\":\"INTEGER\",\"url\":\"enums/GalaxyType.html#INTEGER\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"GalaxyType\"},{\"id\":53,\"kind\":16,\"name\":\"TEXT\",\"url\":\"enums/GalaxyType.html#TEXT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"GalaxyType\"},{\"id\":54,\"kind\":16,\"name\":\"FILE\",\"url\":\"enums/GalaxyType.html#FILE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"GalaxyType\"},{\"id\":55,\"kind\":16,\"name\":\"DATA\",\"url\":\"enums/GalaxyType.html#DATA\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"GalaxyType\"},{\"id\":56,\"kind\":16,\"name\":\"COLLECTION\",\"url\":\"enums/GalaxyType.html#COLLECTION\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"GalaxyType\"},{\"id\":57,\"kind\":128,\"name\":\"GalaxyWorkflow\",\"url\":\"classes/GalaxyWorkflow.html\",\"classes\":\"tsd-kind-class\"},{\"id\":58,\"kind\":2048,\"name\":\"fromDoc\",\"url\":\"classes/GalaxyWorkflow.html#fromDoc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static\",\"parent\":\"GalaxyWorkflow\"},{\"id\":59,\"kind\":1024,\"name\":\"attr\",\"url\":\"classes/GalaxyWorkflow.html#attr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"GalaxyWorkflow\"},{\"id\":60,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/GalaxyWorkflow.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"GalaxyWorkflow\"},{\"id\":61,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"classes/GalaxyWorkflow.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":62,\"kind\":1024,\"name\":\"id\",\"url\":\"classes/GalaxyWorkflow.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":63,\"kind\":1024,\"name\":\"class_\",\"url\":\"classes/GalaxyWorkflow.html#class_\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":64,\"kind\":1024,\"name\":\"label\",\"url\":\"classes/GalaxyWorkflow.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":65,\"kind\":1024,\"name\":\"doc\",\"url\":\"classes/GalaxyWorkflow.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":66,\"kind\":1024,\"name\":\"inputs\",\"url\":\"classes/GalaxyWorkflow.html#inputs\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":67,\"kind\":1024,\"name\":\"outputs\",\"url\":\"classes/GalaxyWorkflow.html#outputs\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":68,\"kind\":1024,\"name\":\"uuid\",\"url\":\"classes/GalaxyWorkflow.html#uuid\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":69,\"kind\":1024,\"name\":\"steps\",\"url\":\"classes/GalaxyWorkflow.html#steps\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":70,\"kind\":1024,\"name\":\"report\",\"url\":\"classes/GalaxyWorkflow.html#report\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":71,\"kind\":1024,\"name\":\"tags\",\"url\":\"classes/GalaxyWorkflow.html#tags\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":72,\"kind\":1024,\"name\":\"creator\",\"url\":\"classes/GalaxyWorkflow.html#creator\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":73,\"kind\":1024,\"name\":\"license\",\"url\":\"classes/GalaxyWorkflow.html#license\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":74,\"kind\":1024,\"name\":\"release\",\"url\":\"classes/GalaxyWorkflow.html#release\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":75,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/GalaxyWorkflow.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"GalaxyWorkflow\"},{\"id\":76,\"kind\":1024,\"name\":\"loadingOptions\",\"url\":\"classes/GalaxyWorkflow.html#loadingOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"GalaxyWorkflow\"},{\"id\":77,\"kind\":256,\"name\":\"GalaxyWorkflowProperties\",\"url\":\"interfaces/GalaxyWorkflowProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":78,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":79,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":80,\"kind\":1024,\"name\":\"class_\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#class_\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":81,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":82,\"kind\":1024,\"name\":\"doc\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":83,\"kind\":1024,\"name\":\"inputs\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#inputs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":84,\"kind\":1024,\"name\":\"outputs\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#outputs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":85,\"kind\":1024,\"name\":\"uuid\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#uuid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":86,\"kind\":1024,\"name\":\"steps\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#steps\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":87,\"kind\":1024,\"name\":\"report\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#report\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":88,\"kind\":1024,\"name\":\"tags\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#tags\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":89,\"kind\":1024,\"name\":\"creator\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#creator\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":90,\"kind\":1024,\"name\":\"license\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#license\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":91,\"kind\":1024,\"name\":\"release\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#release\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":92,\"kind\":256,\"name\":\"HasStepErrorsProperties\",\"url\":\"interfaces/HasStepErrorsProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":93,\"kind\":1024,\"name\":\"errors\",\"url\":\"interfaces/HasStepErrorsProperties.html#errors\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HasStepErrorsProperties\"},{\"id\":94,\"kind\":256,\"name\":\"HasStepPositionProperties\",\"url\":\"interfaces/HasStepPositionProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":95,\"kind\":1024,\"name\":\"position\",\"url\":\"interfaces/HasStepPositionProperties.html#position\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HasStepPositionProperties\"},{\"id\":96,\"kind\":256,\"name\":\"HasUUIDProperties\",\"url\":\"interfaces/HasUUIDProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":97,\"kind\":1024,\"name\":\"uuid\",\"url\":\"interfaces/HasUUIDProperties.html#uuid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HasUUIDProperties\"},{\"id\":98,\"kind\":256,\"name\":\"IdentifiedProperties\",\"url\":\"interfaces/IdentifiedProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":99,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/IdentifiedProperties.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IdentifiedProperties\"},{\"id\":100,\"kind\":256,\"name\":\"InputParameterProperties\",\"url\":\"interfaces/InputParameterProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":101,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/InputParameterProperties.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"InputParameterProperties\"},{\"id\":102,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/InputParameterProperties.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"InputParameterProperties\"},{\"id\":103,\"kind\":1024,\"name\":\"doc\",\"url\":\"interfaces/InputParameterProperties.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"InputParameterProperties\"},{\"id\":104,\"kind\":1024,\"name\":\"default_\",\"url\":\"interfaces/InputParameterProperties.html#default_\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"InputParameterProperties\"},{\"id\":105,\"kind\":256,\"name\":\"LabeledProperties\",\"url\":\"interfaces/LabeledProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":106,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/LabeledProperties.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LabeledProperties\"},{\"id\":107,\"kind\":256,\"name\":\"OutputParameterProperties\",\"url\":\"interfaces/OutputParameterProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":108,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/OutputParameterProperties.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"OutputParameterProperties\"},{\"id\":109,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/OutputParameterProperties.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"OutputParameterProperties\"},{\"id\":110,\"kind\":1024,\"name\":\"doc\",\"url\":\"interfaces/OutputParameterProperties.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"OutputParameterProperties\"},{\"id\":111,\"kind\":256,\"name\":\"ParameterProperties\",\"url\":\"interfaces/ParameterProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":112,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/ParameterProperties.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"ParameterProperties\"},{\"id\":113,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/ParameterProperties.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"ParameterProperties\"},{\"id\":114,\"kind\":1024,\"name\":\"doc\",\"url\":\"interfaces/ParameterProperties.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"ParameterProperties\"},{\"id\":115,\"kind\":8,\"name\":\"PrimitiveType\",\"url\":\"enums/PrimitiveType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":116,\"kind\":16,\"name\":\"NULL\",\"url\":\"enums/PrimitiveType.html#NULL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"PrimitiveType\"},{\"id\":117,\"kind\":16,\"name\":\"BOOLEAN\",\"url\":\"enums/PrimitiveType.html#BOOLEAN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"PrimitiveType\"},{\"id\":118,\"kind\":16,\"name\":\"INT\",\"url\":\"enums/PrimitiveType.html#INT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"PrimitiveType\"},{\"id\":119,\"kind\":16,\"name\":\"LONG\",\"url\":\"enums/PrimitiveType.html#LONG\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"PrimitiveType\"},{\"id\":120,\"kind\":16,\"name\":\"FLOAT\",\"url\":\"enums/PrimitiveType.html#FLOAT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"PrimitiveType\"},{\"id\":121,\"kind\":16,\"name\":\"DOUBLE\",\"url\":\"enums/PrimitiveType.html#DOUBLE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"PrimitiveType\"},{\"id\":122,\"kind\":16,\"name\":\"STRING\",\"url\":\"enums/PrimitiveType.html#STRING\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"PrimitiveType\"},{\"id\":123,\"kind\":256,\"name\":\"ProcessProperties\",\"url\":\"interfaces/ProcessProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":124,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/ProcessProperties.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"ProcessProperties\"},{\"id\":125,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/ProcessProperties.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"ProcessProperties\"},{\"id\":126,\"kind\":1024,\"name\":\"doc\",\"url\":\"interfaces/ProcessProperties.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"ProcessProperties\"},{\"id\":127,\"kind\":1024,\"name\":\"inputs\",\"url\":\"interfaces/ProcessProperties.html#inputs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ProcessProperties\"},{\"id\":128,\"kind\":1024,\"name\":\"outputs\",\"url\":\"interfaces/ProcessProperties.html#outputs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ProcessProperties\"},{\"id\":129,\"kind\":128,\"name\":\"RecordField\",\"url\":\"classes/RecordField.html\",\"classes\":\"tsd-kind-class\"},{\"id\":130,\"kind\":2048,\"name\":\"fromDoc\",\"url\":\"classes/RecordField.html#fromDoc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static\",\"parent\":\"RecordField\"},{\"id\":131,\"kind\":1024,\"name\":\"attr\",\"url\":\"classes/RecordField.html#attr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"RecordField\"},{\"id\":132,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/RecordField.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"RecordField\"},{\"id\":133,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"classes/RecordField.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"RecordField\"},{\"id\":134,\"kind\":1024,\"name\":\"name\",\"url\":\"classes/RecordField.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"RecordField\"},{\"id\":135,\"kind\":1024,\"name\":\"doc\",\"url\":\"classes/RecordField.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"RecordField\"},{\"id\":136,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/RecordField.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"RecordField\"},{\"id\":137,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/RecordField.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"RecordField\"},{\"id\":138,\"kind\":1024,\"name\":\"loadingOptions\",\"url\":\"classes/RecordField.html#loadingOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RecordField\"},{\"id\":139,\"kind\":256,\"name\":\"RecordFieldProperties\",\"url\":\"interfaces/RecordFieldProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":140,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"interfaces/RecordFieldProperties.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"RecordFieldProperties\"},{\"id\":141,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/RecordFieldProperties.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"RecordFieldProperties\"},{\"id\":142,\"kind\":1024,\"name\":\"doc\",\"url\":\"interfaces/RecordFieldProperties.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"RecordFieldProperties\"},{\"id\":143,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/RecordFieldProperties.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"RecordFieldProperties\"},{\"id\":144,\"kind\":128,\"name\":\"RecordSchema\",\"url\":\"classes/RecordSchema.html\",\"classes\":\"tsd-kind-class\"},{\"id\":145,\"kind\":2048,\"name\":\"fromDoc\",\"url\":\"classes/RecordSchema.html#fromDoc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static\",\"parent\":\"RecordSchema\"},{\"id\":146,\"kind\":1024,\"name\":\"attr\",\"url\":\"classes/RecordSchema.html#attr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"RecordSchema\"},{\"id\":147,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/RecordSchema.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"RecordSchema\"},{\"id\":148,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"classes/RecordSchema.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"RecordSchema\"},{\"id\":149,\"kind\":1024,\"name\":\"fields\",\"url\":\"classes/RecordSchema.html#fields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"RecordSchema\"},{\"id\":150,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/RecordSchema.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"RecordSchema\"},{\"id\":151,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/RecordSchema.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"RecordSchema\"},{\"id\":152,\"kind\":1024,\"name\":\"loadingOptions\",\"url\":\"classes/RecordSchema.html#loadingOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RecordSchema\"},{\"id\":153,\"kind\":256,\"name\":\"RecordSchemaProperties\",\"url\":\"interfaces/RecordSchemaProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":154,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"interfaces/RecordSchemaProperties.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"RecordSchemaProperties\"},{\"id\":155,\"kind\":1024,\"name\":\"fields\",\"url\":\"interfaces/RecordSchemaProperties.html#fields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"RecordSchemaProperties\"},{\"id\":156,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/RecordSchemaProperties.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"RecordSchemaProperties\"},{\"id\":157,\"kind\":256,\"name\":\"ReferencesToolProperties\",\"url\":\"interfaces/ReferencesToolProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":158,\"kind\":1024,\"name\":\"tool_id\",\"url\":\"interfaces/ReferencesToolProperties.html#tool_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ReferencesToolProperties\"},{\"id\":159,\"kind\":1024,\"name\":\"tool_shed_repository\",\"url\":\"interfaces/ReferencesToolProperties.html#tool_shed_repository\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ReferencesToolProperties\"},{\"id\":160,\"kind\":1024,\"name\":\"tool_version\",\"url\":\"interfaces/ReferencesToolProperties.html#tool_version\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ReferencesToolProperties\"},{\"id\":161,\"kind\":128,\"name\":\"Report\",\"url\":\"classes/Report.html\",\"classes\":\"tsd-kind-class\"},{\"id\":162,\"kind\":2048,\"name\":\"fromDoc\",\"url\":\"classes/Report.html#fromDoc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static\",\"parent\":\"Report\"},{\"id\":163,\"kind\":1024,\"name\":\"attr\",\"url\":\"classes/Report.html#attr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"Report\"},{\"id\":164,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Report.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Report\"},{\"id\":165,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"classes/Report.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Report\"},{\"id\":166,\"kind\":1024,\"name\":\"markdown\",\"url\":\"classes/Report.html#markdown\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Report\"},{\"id\":167,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/Report.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Report\"},{\"id\":168,\"kind\":1024,\"name\":\"loadingOptions\",\"url\":\"classes/Report.html#loadingOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"Report\"},{\"id\":169,\"kind\":256,\"name\":\"ReportProperties\",\"url\":\"interfaces/ReportProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":170,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"interfaces/ReportProperties.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ReportProperties\"},{\"id\":171,\"kind\":1024,\"name\":\"markdown\",\"url\":\"interfaces/ReportProperties.html#markdown\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ReportProperties\"},{\"id\":172,\"kind\":256,\"name\":\"SinkProperties\",\"url\":\"interfaces/SinkProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":173,\"kind\":1024,\"name\":\"source\",\"url\":\"interfaces/SinkProperties.html#source\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"SinkProperties\"},{\"id\":174,\"kind\":128,\"name\":\"StepPosition\",\"url\":\"classes/StepPosition.html\",\"classes\":\"tsd-kind-class\"},{\"id\":175,\"kind\":2048,\"name\":\"fromDoc\",\"url\":\"classes/StepPosition.html#fromDoc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static\",\"parent\":\"StepPosition\"},{\"id\":176,\"kind\":1024,\"name\":\"attr\",\"url\":\"classes/StepPosition.html#attr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"StepPosition\"},{\"id\":177,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/StepPosition.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"StepPosition\"},{\"id\":178,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"classes/StepPosition.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StepPosition\"},{\"id\":179,\"kind\":1024,\"name\":\"top\",\"url\":\"classes/StepPosition.html#top\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StepPosition\"},{\"id\":180,\"kind\":1024,\"name\":\"left\",\"url\":\"classes/StepPosition.html#left\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StepPosition\"},{\"id\":181,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/StepPosition.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"StepPosition\"},{\"id\":182,\"kind\":1024,\"name\":\"loadingOptions\",\"url\":\"classes/StepPosition.html#loadingOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StepPosition\"},{\"id\":183,\"kind\":256,\"name\":\"StepPositionProperties\",\"url\":\"interfaces/StepPositionProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":184,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"interfaces/StepPositionProperties.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StepPositionProperties\"},{\"id\":185,\"kind\":1024,\"name\":\"top\",\"url\":\"interfaces/StepPositionProperties.html#top\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StepPositionProperties\"},{\"id\":186,\"kind\":1024,\"name\":\"left\",\"url\":\"interfaces/StepPositionProperties.html#left\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StepPositionProperties\"},{\"id\":187,\"kind\":128,\"name\":\"ToolShedRepository\",\"url\":\"classes/ToolShedRepository.html\",\"classes\":\"tsd-kind-class\"},{\"id\":188,\"kind\":2048,\"name\":\"fromDoc\",\"url\":\"classes/ToolShedRepository.html#fromDoc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static\",\"parent\":\"ToolShedRepository\"},{\"id\":189,\"kind\":1024,\"name\":\"attr\",\"url\":\"classes/ToolShedRepository.html#attr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"ToolShedRepository\"},{\"id\":190,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ToolShedRepository.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"ToolShedRepository\"},{\"id\":191,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"classes/ToolShedRepository.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ToolShedRepository\"},{\"id\":192,\"kind\":1024,\"name\":\"name\",\"url\":\"classes/ToolShedRepository.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ToolShedRepository\"},{\"id\":193,\"kind\":1024,\"name\":\"changeset_revision\",\"url\":\"classes/ToolShedRepository.html#changeset_revision\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ToolShedRepository\"},{\"id\":194,\"kind\":1024,\"name\":\"owner\",\"url\":\"classes/ToolShedRepository.html#owner\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ToolShedRepository\"},{\"id\":195,\"kind\":1024,\"name\":\"tool_shed\",\"url\":\"classes/ToolShedRepository.html#tool_shed\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ToolShedRepository\"},{\"id\":196,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/ToolShedRepository.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"ToolShedRepository\"},{\"id\":197,\"kind\":1024,\"name\":\"loadingOptions\",\"url\":\"classes/ToolShedRepository.html#loadingOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"ToolShedRepository\"},{\"id\":198,\"kind\":256,\"name\":\"ToolShedRepositoryProperties\",\"url\":\"interfaces/ToolShedRepositoryProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":199,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"interfaces/ToolShedRepositoryProperties.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ToolShedRepositoryProperties\"},{\"id\":200,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/ToolShedRepositoryProperties.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ToolShedRepositoryProperties\"},{\"id\":201,\"kind\":1024,\"name\":\"changeset_revision\",\"url\":\"interfaces/ToolShedRepositoryProperties.html#changeset_revision\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ToolShedRepositoryProperties\"},{\"id\":202,\"kind\":1024,\"name\":\"owner\",\"url\":\"interfaces/ToolShedRepositoryProperties.html#owner\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ToolShedRepositoryProperties\"},{\"id\":203,\"kind\":1024,\"name\":\"tool_shed\",\"url\":\"interfaces/ToolShedRepositoryProperties.html#tool_shed\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ToolShedRepositoryProperties\"},{\"id\":204,\"kind\":128,\"name\":\"WorkflowInputParameter\",\"url\":\"classes/WorkflowInputParameter.html\",\"classes\":\"tsd-kind-class\"},{\"id\":205,\"kind\":2048,\"name\":\"fromDoc\",\"url\":\"classes/WorkflowInputParameter.html#fromDoc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static\",\"parent\":\"WorkflowInputParameter\"},{\"id\":206,\"kind\":1024,\"name\":\"attr\",\"url\":\"classes/WorkflowInputParameter.html#attr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"WorkflowInputParameter\"},{\"id\":207,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/WorkflowInputParameter.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"WorkflowInputParameter\"},{\"id\":208,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"classes/WorkflowInputParameter.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowInputParameter\"},{\"id\":209,\"kind\":1024,\"name\":\"id\",\"url\":\"classes/WorkflowInputParameter.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowInputParameter\"},{\"id\":210,\"kind\":1024,\"name\":\"label\",\"url\":\"classes/WorkflowInputParameter.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowInputParameter\"},{\"id\":211,\"kind\":1024,\"name\":\"doc\",\"url\":\"classes/WorkflowInputParameter.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowInputParameter\"},{\"id\":212,\"kind\":1024,\"name\":\"default_\",\"url\":\"classes/WorkflowInputParameter.html#default_\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowInputParameter\"},{\"id\":213,\"kind\":1024,\"name\":\"position\",\"url\":\"classes/WorkflowInputParameter.html#position\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowInputParameter\"},{\"id\":214,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/WorkflowInputParameter.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowInputParameter\"},{\"id\":215,\"kind\":1024,\"name\":\"optional\",\"url\":\"classes/WorkflowInputParameter.html#optional\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowInputParameter\"},{\"id\":216,\"kind\":1024,\"name\":\"format\",\"url\":\"classes/WorkflowInputParameter.html#format\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowInputParameter\"},{\"id\":217,\"kind\":1024,\"name\":\"collection_type\",\"url\":\"classes/WorkflowInputParameter.html#collection_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowInputParameter\"},{\"id\":218,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/WorkflowInputParameter.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"WorkflowInputParameter\"},{\"id\":219,\"kind\":1024,\"name\":\"loadingOptions\",\"url\":\"classes/WorkflowInputParameter.html#loadingOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"WorkflowInputParameter\"},{\"id\":220,\"kind\":256,\"name\":\"WorkflowInputParameterProperties\",\"url\":\"interfaces/WorkflowInputParameterProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":221,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"interfaces/WorkflowInputParameterProperties.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowInputParameterProperties\"},{\"id\":222,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/WorkflowInputParameterProperties.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowInputParameterProperties\"},{\"id\":223,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/WorkflowInputParameterProperties.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowInputParameterProperties\"},{\"id\":224,\"kind\":1024,\"name\":\"doc\",\"url\":\"interfaces/WorkflowInputParameterProperties.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowInputParameterProperties\"},{\"id\":225,\"kind\":1024,\"name\":\"default_\",\"url\":\"interfaces/WorkflowInputParameterProperties.html#default_\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowInputParameterProperties\"},{\"id\":226,\"kind\":1024,\"name\":\"position\",\"url\":\"interfaces/WorkflowInputParameterProperties.html#position\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowInputParameterProperties\"},{\"id\":227,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/WorkflowInputParameterProperties.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowInputParameterProperties\"},{\"id\":228,\"kind\":1024,\"name\":\"optional\",\"url\":\"interfaces/WorkflowInputParameterProperties.html#optional\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowInputParameterProperties\"},{\"id\":229,\"kind\":1024,\"name\":\"format\",\"url\":\"interfaces/WorkflowInputParameterProperties.html#format\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowInputParameterProperties\"},{\"id\":230,\"kind\":1024,\"name\":\"collection_type\",\"url\":\"interfaces/WorkflowInputParameterProperties.html#collection_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowInputParameterProperties\"},{\"id\":231,\"kind\":128,\"name\":\"WorkflowOutputParameter\",\"url\":\"classes/WorkflowOutputParameter.html\",\"classes\":\"tsd-kind-class\"},{\"id\":232,\"kind\":2048,\"name\":\"fromDoc\",\"url\":\"classes/WorkflowOutputParameter.html#fromDoc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static\",\"parent\":\"WorkflowOutputParameter\"},{\"id\":233,\"kind\":1024,\"name\":\"attr\",\"url\":\"classes/WorkflowOutputParameter.html#attr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"WorkflowOutputParameter\"},{\"id\":234,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/WorkflowOutputParameter.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"WorkflowOutputParameter\"},{\"id\":235,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"classes/WorkflowOutputParameter.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowOutputParameter\"},{\"id\":236,\"kind\":1024,\"name\":\"id\",\"url\":\"classes/WorkflowOutputParameter.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowOutputParameter\"},{\"id\":237,\"kind\":1024,\"name\":\"label\",\"url\":\"classes/WorkflowOutputParameter.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowOutputParameter\"},{\"id\":238,\"kind\":1024,\"name\":\"doc\",\"url\":\"classes/WorkflowOutputParameter.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowOutputParameter\"},{\"id\":239,\"kind\":1024,\"name\":\"outputSource\",\"url\":\"classes/WorkflowOutputParameter.html#outputSource\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowOutputParameter\"},{\"id\":240,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/WorkflowOutputParameter.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowOutputParameter\"},{\"id\":241,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/WorkflowOutputParameter.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"WorkflowOutputParameter\"},{\"id\":242,\"kind\":1024,\"name\":\"loadingOptions\",\"url\":\"classes/WorkflowOutputParameter.html#loadingOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"WorkflowOutputParameter\"},{\"id\":243,\"kind\":256,\"name\":\"WorkflowOutputParameterProperties\",\"url\":\"interfaces/WorkflowOutputParameterProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":244,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"interfaces/WorkflowOutputParameterProperties.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowOutputParameterProperties\"},{\"id\":245,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/WorkflowOutputParameterProperties.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowOutputParameterProperties\"},{\"id\":246,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/WorkflowOutputParameterProperties.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowOutputParameterProperties\"},{\"id\":247,\"kind\":1024,\"name\":\"doc\",\"url\":\"interfaces/WorkflowOutputParameterProperties.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowOutputParameterProperties\"},{\"id\":248,\"kind\":1024,\"name\":\"outputSource\",\"url\":\"interfaces/WorkflowOutputParameterProperties.html#outputSource\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowOutputParameterProperties\"},{\"id\":249,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/WorkflowOutputParameterProperties.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowOutputParameterProperties\"},{\"id\":250,\"kind\":128,\"name\":\"WorkflowStep\",\"url\":\"classes/WorkflowStep.html\",\"classes\":\"tsd-kind-class\"},{\"id\":251,\"kind\":2048,\"name\":\"fromDoc\",\"url\":\"classes/WorkflowStep.html#fromDoc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static\",\"parent\":\"WorkflowStep\"},{\"id\":252,\"kind\":1024,\"name\":\"attr\",\"url\":\"classes/WorkflowStep.html#attr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"WorkflowStep\"},{\"id\":253,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/WorkflowStep.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"WorkflowStep\"},{\"id\":254,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"classes/WorkflowStep.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":255,\"kind\":1024,\"name\":\"id\",\"url\":\"classes/WorkflowStep.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":256,\"kind\":1024,\"name\":\"label\",\"url\":\"classes/WorkflowStep.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":257,\"kind\":1024,\"name\":\"doc\",\"url\":\"classes/WorkflowStep.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":258,\"kind\":1024,\"name\":\"position\",\"url\":\"classes/WorkflowStep.html#position\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":259,\"kind\":1024,\"name\":\"tool_id\",\"url\":\"classes/WorkflowStep.html#tool_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":260,\"kind\":1024,\"name\":\"tool_shed_repository\",\"url\":\"classes/WorkflowStep.html#tool_shed_repository\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":261,\"kind\":1024,\"name\":\"tool_version\",\"url\":\"classes/WorkflowStep.html#tool_version\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":262,\"kind\":1024,\"name\":\"errors\",\"url\":\"classes/WorkflowStep.html#errors\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":263,\"kind\":1024,\"name\":\"uuid\",\"url\":\"classes/WorkflowStep.html#uuid\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":264,\"kind\":1024,\"name\":\"in_\",\"url\":\"classes/WorkflowStep.html#in_\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":265,\"kind\":1024,\"name\":\"out\",\"url\":\"classes/WorkflowStep.html#out\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":266,\"kind\":1024,\"name\":\"state\",\"url\":\"classes/WorkflowStep.html#state\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":267,\"kind\":1024,\"name\":\"tool_state\",\"url\":\"classes/WorkflowStep.html#tool_state\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":268,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/WorkflowStep.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":269,\"kind\":1024,\"name\":\"run\",\"url\":\"classes/WorkflowStep.html#run\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":270,\"kind\":1024,\"name\":\"runtime_inputs\",\"url\":\"classes/WorkflowStep.html#runtime_inputs\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":271,\"kind\":1024,\"name\":\"when\",\"url\":\"classes/WorkflowStep.html#when\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":272,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/WorkflowStep.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"WorkflowStep\"},{\"id\":273,\"kind\":1024,\"name\":\"loadingOptions\",\"url\":\"classes/WorkflowStep.html#loadingOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"WorkflowStep\"},{\"id\":274,\"kind\":128,\"name\":\"WorkflowStepInput\",\"url\":\"classes/WorkflowStepInput.html\",\"classes\":\"tsd-kind-class\"},{\"id\":275,\"kind\":2048,\"name\":\"fromDoc\",\"url\":\"classes/WorkflowStepInput.html#fromDoc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static\",\"parent\":\"WorkflowStepInput\"},{\"id\":276,\"kind\":1024,\"name\":\"attr\",\"url\":\"classes/WorkflowStepInput.html#attr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"WorkflowStepInput\"},{\"id\":277,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/WorkflowStepInput.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"WorkflowStepInput\"},{\"id\":278,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"classes/WorkflowStepInput.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepInput\"},{\"id\":279,\"kind\":1024,\"name\":\"id\",\"url\":\"classes/WorkflowStepInput.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepInput\"},{\"id\":280,\"kind\":1024,\"name\":\"source\",\"url\":\"classes/WorkflowStepInput.html#source\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepInput\"},{\"id\":281,\"kind\":1024,\"name\":\"label\",\"url\":\"classes/WorkflowStepInput.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepInput\"},{\"id\":282,\"kind\":1024,\"name\":\"default_\",\"url\":\"classes/WorkflowStepInput.html#default_\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepInput\"},{\"id\":283,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/WorkflowStepInput.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"WorkflowStepInput\"},{\"id\":284,\"kind\":1024,\"name\":\"loadingOptions\",\"url\":\"classes/WorkflowStepInput.html#loadingOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"WorkflowStepInput\"},{\"id\":285,\"kind\":256,\"name\":\"WorkflowStepInputProperties\",\"url\":\"interfaces/WorkflowStepInputProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":286,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"interfaces/WorkflowStepInputProperties.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepInputProperties\"},{\"id\":287,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/WorkflowStepInputProperties.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowStepInputProperties\"},{\"id\":288,\"kind\":1024,\"name\":\"source\",\"url\":\"interfaces/WorkflowStepInputProperties.html#source\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowStepInputProperties\"},{\"id\":289,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/WorkflowStepInputProperties.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowStepInputProperties\"},{\"id\":290,\"kind\":1024,\"name\":\"default_\",\"url\":\"interfaces/WorkflowStepInputProperties.html#default_\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepInputProperties\"},{\"id\":291,\"kind\":128,\"name\":\"WorkflowStepOutput\",\"url\":\"classes/WorkflowStepOutput.html\",\"classes\":\"tsd-kind-class\"},{\"id\":292,\"kind\":2048,\"name\":\"fromDoc\",\"url\":\"classes/WorkflowStepOutput.html#fromDoc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static\",\"parent\":\"WorkflowStepOutput\"},{\"id\":293,\"kind\":1024,\"name\":\"attr\",\"url\":\"classes/WorkflowStepOutput.html#attr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"WorkflowStepOutput\"},{\"id\":294,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/WorkflowStepOutput.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"WorkflowStepOutput\"},{\"id\":295,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"classes/WorkflowStepOutput.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepOutput\"},{\"id\":296,\"kind\":1024,\"name\":\"id\",\"url\":\"classes/WorkflowStepOutput.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepOutput\"},{\"id\":297,\"kind\":1024,\"name\":\"add_tags\",\"url\":\"classes/WorkflowStepOutput.html#add_tags\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepOutput\"},{\"id\":298,\"kind\":1024,\"name\":\"change_datatype\",\"url\":\"classes/WorkflowStepOutput.html#change_datatype\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepOutput\"},{\"id\":299,\"kind\":1024,\"name\":\"delete_intermediate_datasets\",\"url\":\"classes/WorkflowStepOutput.html#delete_intermediate_datasets\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepOutput\"},{\"id\":300,\"kind\":1024,\"name\":\"hide\",\"url\":\"classes/WorkflowStepOutput.html#hide\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepOutput\"},{\"id\":301,\"kind\":1024,\"name\":\"remove_tags\",\"url\":\"classes/WorkflowStepOutput.html#remove_tags\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepOutput\"},{\"id\":302,\"kind\":1024,\"name\":\"rename\",\"url\":\"classes/WorkflowStepOutput.html#rename\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepOutput\"},{\"id\":303,\"kind\":1024,\"name\":\"set_columns\",\"url\":\"classes/WorkflowStepOutput.html#set_columns\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepOutput\"},{\"id\":304,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/WorkflowStepOutput.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"WorkflowStepOutput\"},{\"id\":305,\"kind\":1024,\"name\":\"loadingOptions\",\"url\":\"classes/WorkflowStepOutput.html#loadingOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"WorkflowStepOutput\"},{\"id\":306,\"kind\":256,\"name\":\"WorkflowStepOutputProperties\",\"url\":\"interfaces/WorkflowStepOutputProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":307,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"interfaces/WorkflowStepOutputProperties.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepOutputProperties\"},{\"id\":308,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/WorkflowStepOutputProperties.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowStepOutputProperties\"},{\"id\":309,\"kind\":1024,\"name\":\"add_tags\",\"url\":\"interfaces/WorkflowStepOutputProperties.html#add_tags\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepOutputProperties\"},{\"id\":310,\"kind\":1024,\"name\":\"change_datatype\",\"url\":\"interfaces/WorkflowStepOutputProperties.html#change_datatype\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepOutputProperties\"},{\"id\":311,\"kind\":1024,\"name\":\"delete_intermediate_datasets\",\"url\":\"interfaces/WorkflowStepOutputProperties.html#delete_intermediate_datasets\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepOutputProperties\"},{\"id\":312,\"kind\":1024,\"name\":\"hide\",\"url\":\"interfaces/WorkflowStepOutputProperties.html#hide\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepOutputProperties\"},{\"id\":313,\"kind\":1024,\"name\":\"remove_tags\",\"url\":\"interfaces/WorkflowStepOutputProperties.html#remove_tags\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepOutputProperties\"},{\"id\":314,\"kind\":1024,\"name\":\"rename\",\"url\":\"interfaces/WorkflowStepOutputProperties.html#rename\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepOutputProperties\"},{\"id\":315,\"kind\":1024,\"name\":\"set_columns\",\"url\":\"interfaces/WorkflowStepOutputProperties.html#set_columns\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepOutputProperties\"},{\"id\":316,\"kind\":256,\"name\":\"WorkflowStepProperties\",\"url\":\"interfaces/WorkflowStepProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":317,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"interfaces/WorkflowStepProperties.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepProperties\"},{\"id\":318,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/WorkflowStepProperties.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowStepProperties\"},{\"id\":319,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/WorkflowStepProperties.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowStepProperties\"},{\"id\":320,\"kind\":1024,\"name\":\"doc\",\"url\":\"interfaces/WorkflowStepProperties.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowStepProperties\"},{\"id\":321,\"kind\":1024,\"name\":\"position\",\"url\":\"interfaces/WorkflowStepProperties.html#position\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowStepProperties\"},{\"id\":322,\"kind\":1024,\"name\":\"tool_id\",\"url\":\"interfaces/WorkflowStepProperties.html#tool_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowStepProperties\"},{\"id\":323,\"kind\":1024,\"name\":\"tool_shed_repository\",\"url\":\"interfaces/WorkflowStepProperties.html#tool_shed_repository\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowStepProperties\"},{\"id\":324,\"kind\":1024,\"name\":\"tool_version\",\"url\":\"interfaces/WorkflowStepProperties.html#tool_version\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowStepProperties\"},{\"id\":325,\"kind\":1024,\"name\":\"errors\",\"url\":\"interfaces/WorkflowStepProperties.html#errors\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowStepProperties\"},{\"id\":326,\"kind\":1024,\"name\":\"uuid\",\"url\":\"interfaces/WorkflowStepProperties.html#uuid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowStepProperties\"},{\"id\":327,\"kind\":1024,\"name\":\"in_\",\"url\":\"interfaces/WorkflowStepProperties.html#in_\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepProperties\"},{\"id\":328,\"kind\":1024,\"name\":\"out\",\"url\":\"interfaces/WorkflowStepProperties.html#out\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepProperties\"},{\"id\":329,\"kind\":1024,\"name\":\"state\",\"url\":\"interfaces/WorkflowStepProperties.html#state\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepProperties\"},{\"id\":330,\"kind\":1024,\"name\":\"tool_state\",\"url\":\"interfaces/WorkflowStepProperties.html#tool_state\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepProperties\"},{\"id\":331,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/WorkflowStepProperties.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepProperties\"},{\"id\":332,\"kind\":1024,\"name\":\"run\",\"url\":\"interfaces/WorkflowStepProperties.html#run\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepProperties\"},{\"id\":333,\"kind\":1024,\"name\":\"runtime_inputs\",\"url\":\"interfaces/WorkflowStepProperties.html#runtime_inputs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepProperties\"},{\"id\":334,\"kind\":1024,\"name\":\"when\",\"url\":\"interfaces/WorkflowStepProperties.html#when\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepProperties\"},{\"id\":335,\"kind\":8,\"name\":\"WorkflowStepType\",\"url\":\"enums/WorkflowStepType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":336,\"kind\":16,\"name\":\"TOOL\",\"url\":\"enums/WorkflowStepType.html#TOOL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"WorkflowStepType\"},{\"id\":337,\"kind\":16,\"name\":\"SUBWORKFLOW\",\"url\":\"enums/WorkflowStepType.html#SUBWORKFLOW\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"WorkflowStepType\"},{\"id\":338,\"kind\":16,\"name\":\"PAUSE\",\"url\":\"enums/WorkflowStepType.html#PAUSE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"WorkflowStepType\"},{\"id\":339,\"kind\":8,\"name\":\"enum_d062602be0b4b8fd33e69e29a841317b6ab665bc\",\"url\":\"enums/enum_d062602be0b4b8fd33e69e29a841317b6ab665bc.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":340,\"kind\":16,\"name\":\"ARRAY\",\"url\":\"enums/enum_d062602be0b4b8fd33e69e29a841317b6ab665bc.html#ARRAY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"enum_d062602be0b4b8fd33e69e29a841317b6ab665bc\"},{\"id\":341,\"kind\":8,\"name\":\"enum_d961d79c225752b9fadb617367615ab176b47d77\",\"url\":\"enums/enum_d961d79c225752b9fadb617367615ab176b47d77.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":342,\"kind\":16,\"name\":\"ENUM\",\"url\":\"enums/enum_d961d79c225752b9fadb617367615ab176b47d77.html#ENUM\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"enum_d961d79c225752b9fadb617367615ab176b47d77\"},{\"id\":343,\"kind\":8,\"name\":\"enum_d9cba076fca539106791a4f46d198c7fcfbdb779\",\"url\":\"enums/enum_d9cba076fca539106791a4f46d198c7fcfbdb779.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":344,\"kind\":16,\"name\":\"RECORD\",\"url\":\"enums/enum_d9cba076fca539106791a4f46d198c7fcfbdb779.html#RECORD\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"enum_d9cba076fca539106791a4f46d198c7fcfbdb779\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"parent\"],\"fieldVectors\":[[\"name/0\",[0,54.41]],[\"parent/0\",[]],[\"name/1\",[1,54.41]],[\"parent/1\",[]],[\"name/2\",[2,34.041]],[\"parent/2\",[]],[\"name/3\",[3,54.41]],[\"parent/3\",[2,3.188]],[\"name/4\",[4,54.41]],[\"parent/4\",[2,3.188]],[\"name/5\",[5,31.723]],[\"parent/5\",[2,3.188]],[\"name/6\",[6,54.41]],[\"parent/6\",[2,3.188]],[\"name/7\",[7,54.41]],[\"parent/7\",[2,3.188]],[\"name/8\",[8,54.41]],[\"parent/8\",[2,3.188]],[\"name/9\",[9,54.41]],[\"parent/9\",[2,3.188]],[\"name/10\",[10,54.41]],[\"parent/10\",[2,3.188]],[\"name/11\",[11,54.41]],[\"parent/11\",[2,3.188]],[\"name/12\",[12,54.41]],[\"parent/12\",[2,3.188]],[\"name/13\",[13,54.41]],[\"parent/13\",[]],[\"name/14\",[14,45.937]],[\"parent/14\",[]],[\"name/15\",[14,45.937]],[\"parent/15\",[14,4.302]],[\"name/16\",[15,35.951]],[\"parent/16\",[]],[\"name/17\",[16,32.437]],[\"parent/17\",[15,3.367]],[\"name/18\",[17,32.437]],[\"parent/18\",[15,3.367]],[\"name/19\",[5,31.723]],[\"parent/19\",[15,3.367]],[\"name/20\",[18,25.693]],[\"parent/20\",[15,3.367]],[\"name/21\",[19,49.301]],[\"parent/21\",[15,3.367]],[\"name/22\",[20,31.723]],[\"parent/22\",[15,3.367]],[\"name/23\",[21,32.437]],[\"parent/23\",[15,3.367]],[\"name/24\",[22,32.437]],[\"parent/24\",[15,3.367]],[\"name/25\",[23,43.424]],[\"parent/25\",[]],[\"name/26\",[18,25.693]],[\"parent/26\",[23,4.067]],[\"name/27\",[19,49.301]],[\"parent/27\",[23,4.067]],[\"name/28\",[20,31.723]],[\"parent/28\",[23,4.067]],[\"name/29\",[24,49.301]],[\"parent/29\",[]],[\"name/30\",[25,31.056]],[\"parent/30\",[24,4.617]],[\"name/31\",[26,35.951]],[\"parent/31\",[]],[\"name/32\",[16,32.437]],[\"parent/32\",[26,3.367]],[\"name/33\",[17,32.437]],[\"parent/33\",[26,3.367]],[\"name/34\",[5,31.723]],[\"parent/34\",[26,3.367]],[\"name/35\",[18,25.693]],[\"parent/35\",[26,3.367]],[\"name/36\",[27,49.301]],[\"parent/36\",[26,3.367]],[\"name/37\",[20,31.723]],[\"parent/37\",[26,3.367]],[\"name/38\",[21,32.437]],[\"parent/38\",[26,3.367]],[\"name/39\",[22,32.437]],[\"parent/39\",[26,3.367]],[\"name/40\",[28,43.424]],[\"parent/40\",[]],[\"name/41\",[18,25.693]],[\"parent/41\",[28,4.067]],[\"name/42\",[27,49.301]],[\"parent/42\",[28,4.067]],[\"name/43\",[20,31.723]],[\"parent/43\",[28,4.067]],[\"name/44\",[29,32.437]],[\"parent/44\",[]],[\"name/45\",[30,49.301]],[\"parent/45\",[29,3.038]],[\"name/46\",[31,49.301]],[\"parent/46\",[29,3.038]],[\"name/47\",[32,49.301]],[\"parent/47\",[29,3.038]],[\"name/48\",[33,49.301]],[\"parent/48\",[29,3.038]],[\"name/49\",[34,49.301]],[\"parent/49\",[29,3.038]],[\"name/50\",[35,49.301]],[\"parent/50\",[29,3.038]],[\"name/51\",[36,49.301]],[\"parent/51\",[29,3.038]],[\"name/52\",[37,54.41]],[\"parent/52\",[29,3.038]],[\"name/53\",[38,54.41]],[\"parent/53\",[29,3.038]],[\"name/54\",[39,54.41]],[\"parent/54\",[29,3.038]],[\"name/55\",[40,54.41]],[\"parent/55\",[29,3.038]],[\"name/56\",[41,54.41]],[\"parent/56\",[29,3.038]],[\"name/57\",[42,28.26]],[\"parent/57\",[]],[\"name/58\",[16,32.437]],[\"parent/58\",[42,2.647]],[\"name/59\",[17,32.437]],[\"parent/59\",[42,2.647]],[\"name/60\",[5,31.723]],[\"parent/60\",[42,2.647]],[\"name/61\",[18,25.693]],[\"parent/61\",[42,2.647]],[\"name/62\",[43,29.842]],[\"parent/62\",[42,2.647]],[\"name/63\",[44,49.301]],[\"parent/63\",[42,2.647]],[\"name/64\",[45,31.056]],[\"parent/64\",[42,2.647]],[\"name/65\",[25,31.056]],[\"parent/65\",[42,2.647]],[\"name/66\",[46,45.937]],[\"parent/66\",[42,2.647]],[\"name/67\",[47,45.937]],[\"parent/67\",[42,2.647]],[\"name/68\",[48,41.417]],[\"parent/68\",[42,2.647]],[\"name/69\",[49,49.301]],[\"parent/69\",[42,2.647]],[\"name/70\",[50,34.951]],[\"parent/70\",[42,2.647]],[\"name/71\",[51,49.301]],[\"parent/71\",[42,2.647]],[\"name/72\",[52,49.301]],[\"parent/72\",[42,2.647]],[\"name/73\",[53,49.301]],[\"parent/73\",[42,2.647]],[\"name/74\",[54,49.301]],[\"parent/74\",[42,2.647]],[\"name/75\",[21,32.437]],[\"parent/75\",[42,2.647]],[\"name/76\",[22,32.437]],[\"parent/76\",[42,2.647]],[\"name/77\",[55,31.056]],[\"parent/77\",[]],[\"name/78\",[18,25.693]],[\"parent/78\",[55,2.909]],[\"name/79\",[43,29.842]],[\"parent/79\",[55,2.909]],[\"name/80\",[44,49.301]],[\"parent/80\",[55,2.909]],[\"name/81\",[45,31.056]],[\"parent/81\",[55,2.909]],[\"name/82\",[25,31.056]],[\"parent/82\",[55,2.909]],[\"name/83\",[46,45.937]],[\"parent/83\",[55,2.909]],[\"name/84\",[47,45.937]],[\"parent/84\",[55,2.909]],[\"name/85\",[48,41.417]],[\"parent/85\",[55,2.909]],[\"name/86\",[49,49.301]],[\"parent/86\",[55,2.909]],[\"name/87\",[50,34.951]],[\"parent/87\",[55,2.909]],[\"name/88\",[51,49.301]],[\"parent/88\",[55,2.909]],[\"name/89\",[52,49.301]],[\"parent/89\",[55,2.909]],[\"name/90\",[53,49.301]],[\"parent/90\",[55,2.909]],[\"name/91\",[54,49.301]],[\"parent/91\",[55,2.909]],[\"name/92\",[56,49.301]],[\"parent/92\",[]],[\"name/93\",[57,45.937]],[\"parent/93\",[56,4.617]],[\"name/94\",[58,49.301]],[\"parent/94\",[]],[\"name/95\",[59,41.417]],[\"parent/95\",[58,4.617]],[\"name/96\",[60,49.301]],[\"parent/96\",[]],[\"name/97\",[48,41.417]],[\"parent/97\",[60,4.617]],[\"name/98\",[61,49.301]],[\"parent/98\",[]],[\"name/99\",[43,29.842]],[\"parent/99\",[61,4.617]],[\"name/100\",[62,41.417]],[\"parent/100\",[]],[\"name/101\",[43,29.842]],[\"parent/101\",[62,3.879]],[\"name/102\",[45,31.056]],[\"parent/102\",[62,3.879]],[\"name/103\",[25,31.056]],[\"parent/103\",[62,3.879]],[\"name/104\",[63,41.417]],[\"parent/104\",[62,3.879]],[\"name/105\",[64,49.301]],[\"parent/105\",[]],[\"name/106\",[45,31.056]],[\"parent/106\",[64,4.617]],[\"name/107\",[65,43.424]],[\"parent/107\",[]],[\"name/108\",[43,29.842]],[\"parent/108\",[65,4.067]],[\"name/109\",[45,31.056]],[\"parent/109\",[65,4.067]],[\"name/110\",[25,31.056]],[\"parent/110\",[65,4.067]],[\"name/111\",[66,43.424]],[\"parent/111\",[]],[\"name/112\",[43,29.842]],[\"parent/112\",[66,4.067]],[\"name/113\",[45,31.056]],[\"parent/113\",[66,4.067]],[\"name/114\",[25,31.056]],[\"parent/114\",[66,4.067]],[\"name/115\",[67,37.064]],[\"parent/115\",[]],[\"name/116\",[30,49.301]],[\"parent/116\",[67,3.471]],[\"name/117\",[31,49.301]],[\"parent/117\",[67,3.471]],[\"name/118\",[32,49.301]],[\"parent/118\",[67,3.471]],[\"name/119\",[33,49.301]],[\"parent/119\",[67,3.471]],[\"name/120\",[34,49.301]],[\"parent/120\",[67,3.471]],[\"name/121\",[35,49.301]],[\"parent/121\",[67,3.471]],[\"name/122\",[36,49.301]],[\"parent/122\",[67,3.471]],[\"name/123\",[68,39.746]],[\"parent/123\",[]],[\"name/124\",[43,29.842]],[\"parent/124\",[68,3.723]],[\"name/125\",[45,31.056]],[\"parent/125\",[68,3.723]],[\"name/126\",[25,31.056]],[\"parent/126\",[68,3.723]],[\"name/127\",[46,45.937]],[\"parent/127\",[68,3.723]],[\"name/128\",[47,45.937]],[\"parent/128\",[68,3.723]],[\"name/129\",[69,34.951]],[\"parent/129\",[]],[\"name/130\",[16,32.437]],[\"parent/130\",[69,3.273]],[\"name/131\",[17,32.437]],[\"parent/131\",[69,3.273]],[\"name/132\",[5,31.723]],[\"parent/132\",[69,3.273]],[\"name/133\",[18,25.693]],[\"parent/133\",[69,3.273]],[\"name/134\",[70,43.424]],[\"parent/134\",[69,3.273]],[\"name/135\",[25,31.056]],[\"parent/135\",[69,3.273]],[\"name/136\",[20,31.723]],[\"parent/136\",[69,3.273]],[\"name/137\",[21,32.437]],[\"parent/137\",[69,3.273]],[\"name/138\",[22,32.437]],[\"parent/138\",[69,3.273]],[\"name/139\",[71,41.417]],[\"parent/139\",[]],[\"name/140\",[18,25.693]],[\"parent/140\",[71,3.879]],[\"name/141\",[70,43.424]],[\"parent/141\",[71,3.879]],[\"name/142\",[25,31.056]],[\"parent/142\",[71,3.879]],[\"name/143\",[20,31.723]],[\"parent/143\",[71,3.879]],[\"name/144\",[72,35.951]],[\"parent/144\",[]],[\"name/145\",[16,32.437]],[\"parent/145\",[72,3.367]],[\"name/146\",[17,32.437]],[\"parent/146\",[72,3.367]],[\"name/147\",[5,31.723]],[\"parent/147\",[72,3.367]],[\"name/148\",[18,25.693]],[\"parent/148\",[72,3.367]],[\"name/149\",[73,49.301]],[\"parent/149\",[72,3.367]],[\"name/150\",[20,31.723]],[\"parent/150\",[72,3.367]],[\"name/151\",[21,32.437]],[\"parent/151\",[72,3.367]],[\"name/152\",[22,32.437]],[\"parent/152\",[72,3.367]],[\"name/153\",[74,43.424]],[\"parent/153\",[]],[\"name/154\",[18,25.693]],[\"parent/154\",[74,4.067]],[\"name/155\",[73,49.301]],[\"parent/155\",[74,4.067]],[\"name/156\",[20,31.723]],[\"parent/156\",[74,4.067]],[\"name/157\",[75,43.424]],[\"parent/157\",[]],[\"name/158\",[76,45.937]],[\"parent/158\",[75,4.067]],[\"name/159\",[77,45.937]],[\"parent/159\",[75,4.067]],[\"name/160\",[78,45.937]],[\"parent/160\",[75,4.067]],[\"name/161\",[50,34.951]],[\"parent/161\",[]],[\"name/162\",[16,32.437]],[\"parent/162\",[50,3.273]],[\"name/163\",[17,32.437]],[\"parent/163\",[50,3.273]],[\"name/164\",[5,31.723]],[\"parent/164\",[50,3.273]],[\"name/165\",[18,25.693]],[\"parent/165\",[50,3.273]],[\"name/166\",[79,49.301]],[\"parent/166\",[50,3.273]],[\"name/167\",[21,32.437]],[\"parent/167\",[50,3.273]],[\"name/168\",[22,32.437]],[\"parent/168\",[50,3.273]],[\"name/169\",[80,45.937]],[\"parent/169\",[]],[\"name/170\",[18,25.693]],[\"parent/170\",[80,4.302]],[\"name/171\",[79,49.301]],[\"parent/171\",[80,4.302]],[\"name/172\",[81,49.301]],[\"parent/172\",[]],[\"name/173\",[82,45.937]],[\"parent/173\",[81,4.617]],[\"name/174\",[83,35.951]],[\"parent/174\",[]],[\"name/175\",[16,32.437]],[\"parent/175\",[83,3.367]],[\"name/176\",[17,32.437]],[\"parent/176\",[83,3.367]],[\"name/177\",[5,31.723]],[\"parent/177\",[83,3.367]],[\"name/178\",[18,25.693]],[\"parent/178\",[83,3.367]],[\"name/179\",[84,49.301]],[\"parent/179\",[83,3.367]],[\"name/180\",[85,49.301]],[\"parent/180\",[83,3.367]],[\"name/181\",[21,32.437]],[\"parent/181\",[83,3.367]],[\"name/182\",[22,32.437]],[\"parent/182\",[83,3.367]],[\"name/183\",[86,43.424]],[\"parent/183\",[]],[\"name/184\",[18,25.693]],[\"parent/184\",[86,4.067]],[\"name/185\",[84,49.301]],[\"parent/185\",[86,4.067]],[\"name/186\",[85,49.301]],[\"parent/186\",[86,4.067]],[\"name/187\",[87,34.041]],[\"parent/187\",[]],[\"name/188\",[16,32.437]],[\"parent/188\",[87,3.188]],[\"name/189\",[17,32.437]],[\"parent/189\",[87,3.188]],[\"name/190\",[5,31.723]],[\"parent/190\",[87,3.188]],[\"name/191\",[18,25.693]],[\"parent/191\",[87,3.188]],[\"name/192\",[70,43.424]],[\"parent/192\",[87,3.188]],[\"name/193\",[88,49.301]],[\"parent/193\",[87,3.188]],[\"name/194\",[89,49.301]],[\"parent/194\",[87,3.188]],[\"name/195\",[90,49.301]],[\"parent/195\",[87,3.188]],[\"name/196\",[21,32.437]],[\"parent/196\",[87,3.188]],[\"name/197\",[22,32.437]],[\"parent/197\",[87,3.188]],[\"name/198\",[91,39.746]],[\"parent/198\",[]],[\"name/199\",[18,25.693]],[\"parent/199\",[91,3.723]],[\"name/200\",[70,43.424]],[\"parent/200\",[91,3.723]],[\"name/201\",[88,49.301]],[\"parent/201\",[91,3.723]],[\"name/202\",[89,49.301]],[\"parent/202\",[91,3.723]],[\"name/203\",[90,49.301]],[\"parent/203\",[91,3.723]],[\"name/204\",[92,30.431]],[\"parent/204\",[]],[\"name/205\",[16,32.437]],[\"parent/205\",[92,2.85]],[\"name/206\",[17,32.437]],[\"parent/206\",[92,2.85]],[\"name/207\",[5,31.723]],[\"parent/207\",[92,2.85]],[\"name/208\",[18,25.693]],[\"parent/208\",[92,2.85]],[\"name/209\",[43,29.842]],[\"parent/209\",[92,2.85]],[\"name/210\",[45,31.056]],[\"parent/210\",[92,2.85]],[\"name/211\",[25,31.056]],[\"parent/211\",[92,2.85]],[\"name/212\",[63,41.417]],[\"parent/212\",[92,2.85]],[\"name/213\",[59,41.417]],[\"parent/213\",[92,2.85]],[\"name/214\",[20,31.723]],[\"parent/214\",[92,2.85]],[\"name/215\",[93,49.301]],[\"parent/215\",[92,2.85]],[\"name/216\",[94,49.301]],[\"parent/216\",[92,2.85]],[\"name/217\",[95,49.301]],[\"parent/217\",[92,2.85]],[\"name/218\",[21,32.437]],[\"parent/218\",[92,2.85]],[\"name/219\",[22,32.437]],[\"parent/219\",[92,2.85]],[\"name/220\",[96,34.041]],[\"parent/220\",[]],[\"name/221\",[18,25.693]],[\"parent/221\",[96,3.188]],[\"name/222\",[43,29.842]],[\"parent/222\",[96,3.188]],[\"name/223\",[45,31.056]],[\"parent/223\",[96,3.188]],[\"name/224\",[25,31.056]],[\"parent/224\",[96,3.188]],[\"name/225\",[63,41.417]],[\"parent/225\",[96,3.188]],[\"name/226\",[59,41.417]],[\"parent/226\",[96,3.188]],[\"name/227\",[20,31.723]],[\"parent/227\",[96,3.188]],[\"name/228\",[93,49.301]],[\"parent/228\",[96,3.188]],[\"name/229\",[94,49.301]],[\"parent/229\",[96,3.188]],[\"name/230\",[95,49.301]],[\"parent/230\",[96,3.188]],[\"name/231\",[97,33.207]],[\"parent/231\",[]],[\"name/232\",[16,32.437]],[\"parent/232\",[97,3.11]],[\"name/233\",[17,32.437]],[\"parent/233\",[97,3.11]],[\"name/234\",[5,31.723]],[\"parent/234\",[97,3.11]],[\"name/235\",[18,25.693]],[\"parent/235\",[97,3.11]],[\"name/236\",[43,29.842]],[\"parent/236\",[97,3.11]],[\"name/237\",[45,31.056]],[\"parent/237\",[97,3.11]],[\"name/238\",[25,31.056]],[\"parent/238\",[97,3.11]],[\"name/239\",[98,49.301]],[\"parent/239\",[97,3.11]],[\"name/240\",[20,31.723]],[\"parent/240\",[97,3.11]],[\"name/241\",[21,32.437]],[\"parent/241\",[97,3.11]],[\"name/242\",[22,32.437]],[\"parent/242\",[97,3.11]],[\"name/243\",[99,38.315]],[\"parent/243\",[]],[\"name/244\",[18,25.693]],[\"parent/244\",[99,3.589]],[\"name/245\",[43,29.842]],[\"parent/245\",[99,3.589]],[\"name/246\",[45,31.056]],[\"parent/246\",[99,3.589]],[\"name/247\",[25,31.056]],[\"parent/247\",[99,3.589]],[\"name/248\",[98,49.301]],[\"parent/248\",[99,3.589]],[\"name/249\",[20,31.723]],[\"parent/249\",[99,3.589]],[\"name/250\",[100,26.478]],[\"parent/250\",[]],[\"name/251\",[16,32.437]],[\"parent/251\",[100,2.48]],[\"name/252\",[17,32.437]],[\"parent/252\",[100,2.48]],[\"name/253\",[5,31.723]],[\"parent/253\",[100,2.48]],[\"name/254\",[18,25.693]],[\"parent/254\",[100,2.48]],[\"name/255\",[43,29.842]],[\"parent/255\",[100,2.48]],[\"name/256\",[45,31.056]],[\"parent/256\",[100,2.48]],[\"name/257\",[25,31.056]],[\"parent/257\",[100,2.48]],[\"name/258\",[59,41.417]],[\"parent/258\",[100,2.48]],[\"name/259\",[76,45.937]],[\"parent/259\",[100,2.48]],[\"name/260\",[77,45.937]],[\"parent/260\",[100,2.48]],[\"name/261\",[78,45.937]],[\"parent/261\",[100,2.48]],[\"name/262\",[57,45.937]],[\"parent/262\",[100,2.48]],[\"name/263\",[48,41.417]],[\"parent/263\",[100,2.48]],[\"name/264\",[101,49.301]],[\"parent/264\",[100,2.48]],[\"name/265\",[102,49.301]],[\"parent/265\",[100,2.48]],[\"name/266\",[103,49.301]],[\"parent/266\",[100,2.48]],[\"name/267\",[104,49.301]],[\"parent/267\",[100,2.48]],[\"name/268\",[20,31.723]],[\"parent/268\",[100,2.48]],[\"name/269\",[105,49.301]],[\"parent/269\",[100,2.48]],[\"name/270\",[106,49.301]],[\"parent/270\",[100,2.48]],[\"name/271\",[107,49.301]],[\"parent/271\",[100,2.48]],[\"name/272\",[21,32.437]],[\"parent/272\",[100,2.48]],[\"name/273\",[22,32.437]],[\"parent/273\",[100,2.48]],[\"name/274\",[108,34.041]],[\"parent/274\",[]],[\"name/275\",[16,32.437]],[\"parent/275\",[108,3.188]],[\"name/276\",[17,32.437]],[\"parent/276\",[108,3.188]],[\"name/277\",[5,31.723]],[\"parent/277\",[108,3.188]],[\"name/278\",[18,25.693]],[\"parent/278\",[108,3.188]],[\"name/279\",[43,29.842]],[\"parent/279\",[108,3.188]],[\"name/280\",[82,45.937]],[\"parent/280\",[108,3.188]],[\"name/281\",[45,31.056]],[\"parent/281\",[108,3.188]],[\"name/282\",[63,41.417]],[\"parent/282\",[108,3.188]],[\"name/283\",[21,32.437]],[\"parent/283\",[108,3.188]],[\"name/284\",[22,32.437]],[\"parent/284\",[108,3.188]],[\"name/285\",[109,39.746]],[\"parent/285\",[]],[\"name/286\",[18,25.693]],[\"parent/286\",[109,3.723]],[\"name/287\",[43,29.842]],[\"parent/287\",[109,3.723]],[\"name/288\",[82,45.937]],[\"parent/288\",[109,3.723]],[\"name/289\",[45,31.056]],[\"parent/289\",[109,3.723]],[\"name/290\",[63,41.417]],[\"parent/290\",[109,3.723]],[\"name/291\",[110,31.056]],[\"parent/291\",[]],[\"name/292\",[16,32.437]],[\"parent/292\",[110,2.909]],[\"name/293\",[17,32.437]],[\"parent/293\",[110,2.909]],[\"name/294\",[5,31.723]],[\"parent/294\",[110,2.909]],[\"name/295\",[18,25.693]],[\"parent/295\",[110,2.909]],[\"name/296\",[43,29.842]],[\"parent/296\",[110,2.909]],[\"name/297\",[111,49.301]],[\"parent/297\",[110,2.909]],[\"name/298\",[112,49.301]],[\"parent/298\",[110,2.909]],[\"name/299\",[113,49.301]],[\"parent/299\",[110,2.909]],[\"name/300\",[114,49.301]],[\"parent/300\",[110,2.909]],[\"name/301\",[115,49.301]],[\"parent/301\",[110,2.909]],[\"name/302\",[116,49.301]],[\"parent/302\",[110,2.909]],[\"name/303\",[117,49.301]],[\"parent/303\",[110,2.909]],[\"name/304\",[21,32.437]],[\"parent/304\",[110,2.909]],[\"name/305\",[22,32.437]],[\"parent/305\",[110,2.909]],[\"name/306\",[118,34.951]],[\"parent/306\",[]],[\"name/307\",[18,25.693]],[\"parent/307\",[118,3.273]],[\"name/308\",[43,29.842]],[\"parent/308\",[118,3.273]],[\"name/309\",[111,49.301]],[\"parent/309\",[118,3.273]],[\"name/310\",[112,49.301]],[\"parent/310\",[118,3.273]],[\"name/311\",[113,49.301]],[\"parent/311\",[118,3.273]],[\"name/312\",[114,49.301]],[\"parent/312\",[118,3.273]],[\"name/313\",[115,49.301]],[\"parent/313\",[118,3.273]],[\"name/314\",[116,49.301]],[\"parent/314\",[118,3.273]],[\"name/315\",[117,49.301]],[\"parent/315\",[118,3.273]],[\"name/316\",[119,28.76]],[\"parent/316\",[]],[\"name/317\",[18,25.693]],[\"parent/317\",[119,2.694]],[\"name/318\",[43,29.842]],[\"parent/318\",[119,2.694]],[\"name/319\",[45,31.056]],[\"parent/319\",[119,2.694]],[\"name/320\",[25,31.056]],[\"parent/320\",[119,2.694]],[\"name/321\",[59,41.417]],[\"parent/321\",[119,2.694]],[\"name/322\",[76,45.937]],[\"parent/322\",[119,2.694]],[\"name/323\",[77,45.937]],[\"parent/323\",[119,2.694]],[\"name/324\",[78,45.937]],[\"parent/324\",[119,2.694]],[\"name/325\",[57,45.937]],[\"parent/325\",[119,2.694]],[\"name/326\",[48,41.417]],[\"parent/326\",[119,2.694]],[\"name/327\",[101,49.301]],[\"parent/327\",[119,2.694]],[\"name/328\",[102,49.301]],[\"parent/328\",[119,2.694]],[\"name/329\",[103,49.301]],[\"parent/329\",[119,2.694]],[\"name/330\",[104,49.301]],[\"parent/330\",[119,2.694]],[\"name/331\",[20,31.723]],[\"parent/331\",[119,2.694]],[\"name/332\",[105,49.301]],[\"parent/332\",[119,2.694]],[\"name/333\",[106,49.301]],[\"parent/333\",[119,2.694]],[\"name/334\",[107,49.301]],[\"parent/334\",[119,2.694]],[\"name/335\",[120,43.424]],[\"parent/335\",[]],[\"name/336\",[121,54.41]],[\"parent/336\",[120,4.067]],[\"name/337\",[122,54.41]],[\"parent/337\",[120,4.067]],[\"name/338\",[123,54.41]],[\"parent/338\",[120,4.067]],[\"name/339\",[124,49.301]],[\"parent/339\",[]],[\"name/340\",[125,54.41]],[\"parent/340\",[124,4.617]],[\"name/341\",[126,49.301]],[\"parent/341\",[]],[\"name/342\",[127,54.41]],[\"parent/342\",[126,4.617]],[\"name/343\",[128,49.301]],[\"parent/343\",[]],[\"name/344\",[129,54.41]],[\"parent/344\",[128,4.617]]],\"invertedIndex\":[[\"__type\",{\"_index\":4,\"name\":{\"4\":{}},\"parent\":{}}],[\"add_tags\",{\"_index\":111,\"name\":{\"297\":{},\"309\":{}},\"parent\":{}}],[\"any\",{\"_index\":14,\"name\":{\"14\":{},\"15\":{}},\"parent\":{\"15\":{}}}],[\"array\",{\"_index\":125,\"name\":{\"340\":{}},\"parent\":{}}],[\"arrayschema\",{\"_index\":15,\"name\":{\"16\":{}},\"parent\":{\"17\":{},\"18\":{},\"19\":{},\"20\":{},\"21\":{},\"22\":{},\"23\":{},\"24\":{}}}],[\"arrayschemaproperties\",{\"_index\":23,\"name\":{\"25\":{}},\"parent\":{\"26\":{},\"27\":{},\"28\":{}}}],[\"attr\",{\"_index\":17,\"name\":{\"18\":{},\"33\":{},\"59\":{},\"131\":{},\"146\":{},\"163\":{},\"176\":{},\"189\":{},\"206\":{},\"233\":{},\"252\":{},\"276\":{},\"293\":{}},\"parent\":{}}],[\"boolean\",{\"_index\":31,\"name\":{\"46\":{},\"117\":{}},\"parent\":{}}],[\"bullet\",{\"_index\":7,\"name\":{\"7\":{}},\"parent\":{}}],[\"change_datatype\",{\"_index\":112,\"name\":{\"298\":{},\"310\":{}},\"parent\":{}}],[\"changeset_revision\",{\"_index\":88,\"name\":{\"193\":{},\"201\":{}},\"parent\":{}}],[\"children\",{\"_index\":6,\"name\":{\"6\":{}},\"parent\":{}}],[\"class_\",{\"_index\":44,\"name\":{\"63\":{},\"80\":{}},\"parent\":{}}],[\"collection\",{\"_index\":41,\"name\":{\"56\":{}},\"parent\":{}}],[\"collection_type\",{\"_index\":95,\"name\":{\"217\":{},\"230\":{}},\"parent\":{}}],[\"constructor\",{\"_index\":5,\"name\":{\"5\":{},\"19\":{},\"34\":{},\"60\":{},\"132\":{},\"147\":{},\"164\":{},\"177\":{},\"190\":{},\"207\":{},\"234\":{},\"253\":{},\"277\":{},\"294\":{}},\"parent\":{}}],[\"creator\",{\"_index\":52,\"name\":{\"72\":{},\"89\":{}},\"parent\":{}}],[\"data\",{\"_index\":40,\"name\":{\"55\":{}},\"parent\":{}}],[\"default_\",{\"_index\":63,\"name\":{\"104\":{},\"212\":{},\"225\":{},\"282\":{},\"290\":{}},\"parent\":{}}],[\"delete_intermediate_datasets\",{\"_index\":113,\"name\":{\"299\":{},\"311\":{}},\"parent\":{}}],[\"doc\",{\"_index\":25,\"name\":{\"30\":{},\"65\":{},\"82\":{},\"103\":{},\"110\":{},\"114\":{},\"126\":{},\"135\":{},\"142\":{},\"211\":{},\"224\":{},\"238\":{},\"247\":{},\"257\":{},\"320\":{}},\"parent\":{}}],[\"documentedproperties\",{\"_index\":24,\"name\":{\"29\":{}},\"parent\":{\"30\":{}}}],[\"double\",{\"_index\":35,\"name\":{\"50\":{},\"121\":{}},\"parent\":{}}],[\"enum\",{\"_index\":127,\"name\":{\"342\":{}},\"parent\":{}}],[\"enum_d062602be0b4b8fd33e69e29a841317b6ab665bc\",{\"_index\":124,\"name\":{\"339\":{}},\"parent\":{\"340\":{}}}],[\"enum_d961d79c225752b9fadb617367615ab176b47d77\",{\"_index\":126,\"name\":{\"341\":{}},\"parent\":{\"342\":{}}}],[\"enum_d9cba076fca539106791a4f46d198c7fcfbdb779\",{\"_index\":128,\"name\":{\"343\":{}},\"parent\":{\"344\":{}}}],[\"enumschema\",{\"_index\":26,\"name\":{\"31\":{}},\"parent\":{\"32\":{},\"33\":{},\"34\":{},\"35\":{},\"36\":{},\"37\":{},\"38\":{},\"39\":{}}}],[\"enumschemaproperties\",{\"_index\":28,\"name\":{\"40\":{}},\"parent\":{\"41\":{},\"42\":{},\"43\":{}}}],[\"errors\",{\"_index\":57,\"name\":{\"93\":{},\"262\":{},\"325\":{}},\"parent\":{}}],[\"extensionfields\",{\"_index\":18,\"name\":{\"20\":{},\"26\":{},\"35\":{},\"41\":{},\"61\":{},\"78\":{},\"133\":{},\"140\":{},\"148\":{},\"154\":{},\"165\":{},\"170\":{},\"178\":{},\"184\":{},\"191\":{},\"199\":{},\"208\":{},\"221\":{},\"235\":{},\"244\":{},\"254\":{},\"278\":{},\"286\":{},\"295\":{},\"307\":{},\"317\":{}},\"parent\":{}}],[\"fields\",{\"_index\":73,\"name\":{\"149\":{},\"155\":{}},\"parent\":{}}],[\"file\",{\"_index\":39,\"name\":{\"54\":{}},\"parent\":{}}],[\"float\",{\"_index\":34,\"name\":{\"49\":{},\"120\":{}},\"parent\":{}}],[\"format\",{\"_index\":94,\"name\":{\"216\":{},\"229\":{}},\"parent\":{}}],[\"fromdoc\",{\"_index\":16,\"name\":{\"17\":{},\"32\":{},\"58\":{},\"130\":{},\"145\":{},\"162\":{},\"175\":{},\"188\":{},\"205\":{},\"232\":{},\"251\":{},\"275\":{},\"292\":{}},\"parent\":{}}],[\"galaxytype\",{\"_index\":29,\"name\":{\"44\":{}},\"parent\":{\"45\":{},\"46\":{},\"47\":{},\"48\":{},\"49\":{},\"50\":{},\"51\":{},\"52\":{},\"53\":{},\"54\":{},\"55\":{},\"56\":{}}}],[\"galaxyworkflow\",{\"_index\":42,\"name\":{\"57\":{}},\"parent\":{\"58\":{},\"59\":{},\"60\":{},\"61\":{},\"62\":{},\"63\":{},\"64\":{},\"65\":{},\"66\":{},\"67\":{},\"68\":{},\"69\":{},\"70\":{},\"71\":{},\"72\":{},\"73\":{},\"74\":{},\"75\":{},\"76\":{}}}],[\"galaxyworkflowproperties\",{\"_index\":55,\"name\":{\"77\":{}},\"parent\":{\"78\":{},\"79\":{},\"80\":{},\"81\":{},\"82\":{},\"83\":{},\"84\":{},\"85\":{},\"86\":{},\"87\":{},\"88\":{},\"89\":{},\"90\":{},\"91\":{}}}],[\"hassteperrorsproperties\",{\"_index\":56,\"name\":{\"92\":{}},\"parent\":{\"93\":{}}}],[\"hassteppositionproperties\",{\"_index\":58,\"name\":{\"94\":{}},\"parent\":{\"95\":{}}}],[\"hasuuidproperties\",{\"_index\":60,\"name\":{\"96\":{}},\"parent\":{\"97\":{}}}],[\"hide\",{\"_index\":114,\"name\":{\"300\":{},\"312\":{}},\"parent\":{}}],[\"id\",{\"_index\":43,\"name\":{\"62\":{},\"79\":{},\"99\":{},\"101\":{},\"108\":{},\"112\":{},\"124\":{},\"209\":{},\"222\":{},\"236\":{},\"245\":{},\"255\":{},\"279\":{},\"287\":{},\"296\":{},\"308\":{},\"318\":{}},\"parent\":{}}],[\"identifiedproperties\",{\"_index\":61,\"name\":{\"98\":{}},\"parent\":{\"99\":{}}}],[\"in_\",{\"_index\":101,\"name\":{\"264\":{},\"327\":{}},\"parent\":{}}],[\"indentperlevel\",{\"_index\":3,\"name\":{\"3\":{}},\"parent\":{}}],[\"inputparameterproperties\",{\"_index\":62,\"name\":{\"100\":{}},\"parent\":{\"101\":{},\"102\":{},\"103\":{},\"104\":{}}}],[\"inputs\",{\"_index\":46,\"name\":{\"66\":{},\"83\":{},\"127\":{}},\"parent\":{}}],[\"int\",{\"_index\":32,\"name\":{\"47\":{},\"118\":{}},\"parent\":{}}],[\"integer\",{\"_index\":37,\"name\":{\"52\":{}},\"parent\":{}}],[\"items\",{\"_index\":19,\"name\":{\"21\":{},\"27\":{}},\"parent\":{}}],[\"label\",{\"_index\":45,\"name\":{\"64\":{},\"81\":{},\"102\":{},\"106\":{},\"109\":{},\"113\":{},\"125\":{},\"210\":{},\"223\":{},\"237\":{},\"246\":{},\"256\":{},\"281\":{},\"289\":{},\"319\":{}},\"parent\":{}}],[\"labeledproperties\",{\"_index\":64,\"name\":{\"105\":{}},\"parent\":{\"106\":{}}}],[\"left\",{\"_index\":85,\"name\":{\"180\":{},\"186\":{}},\"parent\":{}}],[\"license\",{\"_index\":53,\"name\":{\"73\":{},\"90\":{}},\"parent\":{}}],[\"loaddocument\",{\"_index\":0,\"name\":{\"0\":{}},\"parent\":{}}],[\"loaddocumentbystring\",{\"_index\":1,\"name\":{\"1\":{}},\"parent\":{}}],[\"loadingoptions\",{\"_index\":22,\"name\":{\"24\":{},\"39\":{},\"76\":{},\"138\":{},\"152\":{},\"168\":{},\"182\":{},\"197\":{},\"219\":{},\"242\":{},\"273\":{},\"284\":{},\"305\":{}},\"parent\":{}}],[\"long\",{\"_index\":33,\"name\":{\"48\":{},\"119\":{}},\"parent\":{}}],[\"markdown\",{\"_index\":79,\"name\":{\"166\":{},\"171\":{}},\"parent\":{}}],[\"name\",{\"_index\":70,\"name\":{\"134\":{},\"141\":{},\"192\":{},\"200\":{}},\"parent\":{}}],[\"null\",{\"_index\":30,\"name\":{\"45\":{},\"116\":{}},\"parent\":{}}],[\"optional\",{\"_index\":93,\"name\":{\"215\":{},\"228\":{}},\"parent\":{}}],[\"out\",{\"_index\":102,\"name\":{\"265\":{},\"328\":{}},\"parent\":{}}],[\"outputparameterproperties\",{\"_index\":65,\"name\":{\"107\":{}},\"parent\":{\"108\":{},\"109\":{},\"110\":{}}}],[\"outputs\",{\"_index\":47,\"name\":{\"67\":{},\"84\":{},\"128\":{}},\"parent\":{}}],[\"outputsource\",{\"_index\":98,\"name\":{\"239\":{},\"248\":{}},\"parent\":{}}],[\"owner\",{\"_index\":89,\"name\":{\"194\":{},\"202\":{}},\"parent\":{}}],[\"parameterproperties\",{\"_index\":66,\"name\":{\"111\":{}},\"parent\":{\"112\":{},\"113\":{},\"114\":{}}}],[\"pause\",{\"_index\":123,\"name\":{\"338\":{}},\"parent\":{}}],[\"position\",{\"_index\":59,\"name\":{\"95\":{},\"213\":{},\"226\":{},\"258\":{},\"321\":{}},\"parent\":{}}],[\"prettystr\",{\"_index\":11,\"name\":{\"11\":{}},\"parent\":{}}],[\"primitivetype\",{\"_index\":67,\"name\":{\"115\":{}},\"parent\":{\"116\":{},\"117\":{},\"118\":{},\"119\":{},\"120\":{},\"121\":{},\"122\":{}}}],[\"processproperties\",{\"_index\":68,\"name\":{\"123\":{}},\"parent\":{\"124\":{},\"125\":{},\"126\":{},\"127\":{},\"128\":{}}}],[\"record\",{\"_index\":129,\"name\":{\"344\":{}},\"parent\":{}}],[\"recordfield\",{\"_index\":69,\"name\":{\"129\":{}},\"parent\":{\"130\":{},\"131\":{},\"132\":{},\"133\":{},\"134\":{},\"135\":{},\"136\":{},\"137\":{},\"138\":{}}}],[\"recordfieldproperties\",{\"_index\":71,\"name\":{\"139\":{}},\"parent\":{\"140\":{},\"141\":{},\"142\":{},\"143\":{}}}],[\"recordschema\",{\"_index\":72,\"name\":{\"144\":{}},\"parent\":{\"145\":{},\"146\":{},\"147\":{},\"148\":{},\"149\":{},\"150\":{},\"151\":{},\"152\":{}}}],[\"recordschemaproperties\",{\"_index\":74,\"name\":{\"153\":{}},\"parent\":{\"154\":{},\"155\":{},\"156\":{}}}],[\"referencestoolproperties\",{\"_index\":75,\"name\":{\"157\":{}},\"parent\":{\"158\":{},\"159\":{},\"160\":{}}}],[\"release\",{\"_index\":54,\"name\":{\"74\":{},\"91\":{}},\"parent\":{}}],[\"remove_tags\",{\"_index\":115,\"name\":{\"301\":{},\"313\":{}},\"parent\":{}}],[\"rename\",{\"_index\":116,\"name\":{\"302\":{},\"314\":{}},\"parent\":{}}],[\"report\",{\"_index\":50,\"name\":{\"70\":{},\"87\":{},\"161\":{}},\"parent\":{\"162\":{},\"163\":{},\"164\":{},\"165\":{},\"166\":{},\"167\":{},\"168\":{}}}],[\"reportproperties\",{\"_index\":80,\"name\":{\"169\":{}},\"parent\":{\"170\":{},\"171\":{}}}],[\"run\",{\"_index\":105,\"name\":{\"269\":{},\"332\":{}},\"parent\":{}}],[\"runtime_inputs\",{\"_index\":106,\"name\":{\"270\":{},\"333\":{}},\"parent\":{}}],[\"save\",{\"_index\":21,\"name\":{\"23\":{},\"38\":{},\"75\":{},\"137\":{},\"151\":{},\"167\":{},\"181\":{},\"196\":{},\"218\":{},\"241\":{},\"272\":{},\"283\":{},\"304\":{}},\"parent\":{}}],[\"set_columns\",{\"_index\":117,\"name\":{\"303\":{},\"315\":{}},\"parent\":{}}],[\"shortname\",{\"_index\":13,\"name\":{\"13\":{}},\"parent\":{}}],[\"simplify\",{\"_index\":9,\"name\":{\"9\":{}},\"parent\":{}}],[\"sinkproperties\",{\"_index\":81,\"name\":{\"172\":{}},\"parent\":{\"173\":{}}}],[\"source\",{\"_index\":82,\"name\":{\"173\":{},\"280\":{},\"288\":{}},\"parent\":{}}],[\"state\",{\"_index\":103,\"name\":{\"266\":{},\"329\":{}},\"parent\":{}}],[\"stepposition\",{\"_index\":83,\"name\":{\"174\":{}},\"parent\":{\"175\":{},\"176\":{},\"177\":{},\"178\":{},\"179\":{},\"180\":{},\"181\":{},\"182\":{}}}],[\"steppositionproperties\",{\"_index\":86,\"name\":{\"183\":{}},\"parent\":{\"184\":{},\"185\":{},\"186\":{}}}],[\"steps\",{\"_index\":49,\"name\":{\"69\":{},\"86\":{}},\"parent\":{}}],[\"string\",{\"_index\":36,\"name\":{\"51\":{},\"122\":{}},\"parent\":{}}],[\"subworkflow\",{\"_index\":122,\"name\":{\"337\":{}},\"parent\":{}}],[\"summary\",{\"_index\":10,\"name\":{\"10\":{}},\"parent\":{}}],[\"symbols\",{\"_index\":27,\"name\":{\"36\":{},\"42\":{}},\"parent\":{}}],[\"tags\",{\"_index\":51,\"name\":{\"71\":{},\"88\":{}},\"parent\":{}}],[\"text\",{\"_index\":38,\"name\":{\"53\":{}},\"parent\":{}}],[\"tool\",{\"_index\":121,\"name\":{\"336\":{}},\"parent\":{}}],[\"tool_id\",{\"_index\":76,\"name\":{\"158\":{},\"259\":{},\"322\":{}},\"parent\":{}}],[\"tool_shed\",{\"_index\":90,\"name\":{\"195\":{},\"203\":{}},\"parent\":{}}],[\"tool_shed_repository\",{\"_index\":77,\"name\":{\"159\":{},\"260\":{},\"323\":{}},\"parent\":{}}],[\"tool_state\",{\"_index\":104,\"name\":{\"267\":{},\"330\":{}},\"parent\":{}}],[\"tool_version\",{\"_index\":78,\"name\":{\"160\":{},\"261\":{},\"324\":{}},\"parent\":{}}],[\"toolshedrepository\",{\"_index\":87,\"name\":{\"187\":{}},\"parent\":{\"188\":{},\"189\":{},\"190\":{},\"191\":{},\"192\":{},\"193\":{},\"194\":{},\"195\":{},\"196\":{},\"197\":{}}}],[\"toolshedrepositoryproperties\",{\"_index\":91,\"name\":{\"198\":{}},\"parent\":{\"199\":{},\"200\":{},\"201\":{},\"202\":{},\"203\":{}}}],[\"top\",{\"_index\":84,\"name\":{\"179\":{},\"185\":{}},\"parent\":{}}],[\"tostring\",{\"_index\":12,\"name\":{\"12\":{}},\"parent\":{}}],[\"type\",{\"_index\":20,\"name\":{\"22\":{},\"28\":{},\"37\":{},\"43\":{},\"136\":{},\"143\":{},\"150\":{},\"156\":{},\"214\":{},\"227\":{},\"240\":{},\"249\":{},\"268\":{},\"331\":{}},\"parent\":{}}],[\"uuid\",{\"_index\":48,\"name\":{\"68\":{},\"85\":{},\"97\":{},\"263\":{},\"326\":{}},\"parent\":{}}],[\"validationexception\",{\"_index\":2,\"name\":{\"2\":{}},\"parent\":{\"3\":{},\"4\":{},\"5\":{},\"6\":{},\"7\":{},\"8\":{},\"9\":{},\"10\":{},\"11\":{},\"12\":{}}}],[\"when\",{\"_index\":107,\"name\":{\"271\":{},\"334\":{}},\"parent\":{}}],[\"withbullet\",{\"_index\":8,\"name\":{\"8\":{}},\"parent\":{}}],[\"workflowinputparameter\",{\"_index\":92,\"name\":{\"204\":{}},\"parent\":{\"205\":{},\"206\":{},\"207\":{},\"208\":{},\"209\":{},\"210\":{},\"211\":{},\"212\":{},\"213\":{},\"214\":{},\"215\":{},\"216\":{},\"217\":{},\"218\":{},\"219\":{}}}],[\"workflowinputparameterproperties\",{\"_index\":96,\"name\":{\"220\":{}},\"parent\":{\"221\":{},\"222\":{},\"223\":{},\"224\":{},\"225\":{},\"226\":{},\"227\":{},\"228\":{},\"229\":{},\"230\":{}}}],[\"workflowoutputparameter\",{\"_index\":97,\"name\":{\"231\":{}},\"parent\":{\"232\":{},\"233\":{},\"234\":{},\"235\":{},\"236\":{},\"237\":{},\"238\":{},\"239\":{},\"240\":{},\"241\":{},\"242\":{}}}],[\"workflowoutputparameterproperties\",{\"_index\":99,\"name\":{\"243\":{}},\"parent\":{\"244\":{},\"245\":{},\"246\":{},\"247\":{},\"248\":{},\"249\":{}}}],[\"workflowstep\",{\"_index\":100,\"name\":{\"250\":{}},\"parent\":{\"251\":{},\"252\":{},\"253\":{},\"254\":{},\"255\":{},\"256\":{},\"257\":{},\"258\":{},\"259\":{},\"260\":{},\"261\":{},\"262\":{},\"263\":{},\"264\":{},\"265\":{},\"266\":{},\"267\":{},\"268\":{},\"269\":{},\"270\":{},\"271\":{},\"272\":{},\"273\":{}}}],[\"workflowstepinput\",{\"_index\":108,\"name\":{\"274\":{}},\"parent\":{\"275\":{},\"276\":{},\"277\":{},\"278\":{},\"279\":{},\"280\":{},\"281\":{},\"282\":{},\"283\":{},\"284\":{}}}],[\"workflowstepinputproperties\",{\"_index\":109,\"name\":{\"285\":{}},\"parent\":{\"286\":{},\"287\":{},\"288\":{},\"289\":{},\"290\":{}}}],[\"workflowstepoutput\",{\"_index\":110,\"name\":{\"291\":{}},\"parent\":{\"292\":{},\"293\":{},\"294\":{},\"295\":{},\"296\":{},\"297\":{},\"298\":{},\"299\":{},\"300\":{},\"301\":{},\"302\":{},\"303\":{},\"304\":{},\"305\":{}}}],[\"workflowstepoutputproperties\",{\"_index\":118,\"name\":{\"306\":{}},\"parent\":{\"307\":{},\"308\":{},\"309\":{},\"310\":{},\"311\":{},\"312\":{},\"313\":{},\"314\":{},\"315\":{}}}],[\"workflowstepproperties\",{\"_index\":119,\"name\":{\"316\":{}},\"parent\":{\"317\":{},\"318\":{},\"319\":{},\"320\":{},\"321\":{},\"322\":{},\"323\":{},\"324\":{},\"325\":{},\"326\":{},\"327\":{},\"328\":{},\"329\":{},\"330\":{},\"331\":{},\"332\":{},\"333\":{},\"334\":{}}}],[\"workflowsteptype\",{\"_index\":120,\"name\":{\"335\":{}},\"parent\":{\"336\":{},\"337\":{},\"338\":{}}}]],\"pipeline\":[]}}"); \ No newline at end of file +window.searchData = JSON.parse("{\"kinds\":{\"8\":\"Enumeration\",\"16\":\"Enumeration member\",\"64\":\"Function\",\"128\":\"Class\",\"256\":\"Interface\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\"},\"rows\":[{\"id\":0,\"kind\":64,\"name\":\"loadDocument\",\"url\":\"modules.html#loadDocument\",\"classes\":\"tsd-kind-function\"},{\"id\":1,\"kind\":64,\"name\":\"loadDocumentByString\",\"url\":\"modules.html#loadDocumentByString\",\"classes\":\"tsd-kind-function\"},{\"id\":2,\"kind\":128,\"name\":\"ValidationException\",\"url\":\"classes/ValidationException.html\",\"classes\":\"tsd-kind-class\"},{\"id\":3,\"kind\":1024,\"name\":\"indentPerLevel\",\"url\":\"classes/ValidationException.html#indentPerLevel\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"ValidationException\"},{\"id\":4,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/ValidationException.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"ValidationException\"},{\"id\":5,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ValidationException.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"ValidationException\"},{\"id\":6,\"kind\":1024,\"name\":\"children\",\"url\":\"classes/ValidationException.html#children\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ValidationException\"},{\"id\":7,\"kind\":1024,\"name\":\"bullet\",\"url\":\"classes/ValidationException.html#bullet\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ValidationException\"},{\"id\":8,\"kind\":2048,\"name\":\"withBullet\",\"url\":\"classes/ValidationException.html#withBullet\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ValidationException\"},{\"id\":9,\"kind\":2048,\"name\":\"simplify\",\"url\":\"classes/ValidationException.html#simplify\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ValidationException\"},{\"id\":10,\"kind\":2048,\"name\":\"summary\",\"url\":\"classes/ValidationException.html#summary\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ValidationException\"},{\"id\":11,\"kind\":2048,\"name\":\"prettyStr\",\"url\":\"classes/ValidationException.html#prettyStr\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ValidationException\"},{\"id\":12,\"kind\":2048,\"name\":\"toString\",\"url\":\"classes/ValidationException.html#toString\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ValidationException\"},{\"id\":13,\"kind\":64,\"name\":\"shortname\",\"url\":\"modules.html#shortname\",\"classes\":\"tsd-kind-function\"},{\"id\":14,\"kind\":8,\"name\":\"Any\",\"url\":\"enums/Any.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":15,\"kind\":16,\"name\":\"ANY\",\"url\":\"enums/Any.html#ANY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Any\"},{\"id\":16,\"kind\":128,\"name\":\"ArraySchema\",\"url\":\"classes/ArraySchema.html\",\"classes\":\"tsd-kind-class\"},{\"id\":17,\"kind\":2048,\"name\":\"fromDoc\",\"url\":\"classes/ArraySchema.html#fromDoc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static\",\"parent\":\"ArraySchema\"},{\"id\":18,\"kind\":1024,\"name\":\"attr\",\"url\":\"classes/ArraySchema.html#attr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"ArraySchema\"},{\"id\":19,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ArraySchema.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"ArraySchema\"},{\"id\":20,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"classes/ArraySchema.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ArraySchema\"},{\"id\":21,\"kind\":1024,\"name\":\"items\",\"url\":\"classes/ArraySchema.html#items\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ArraySchema\"},{\"id\":22,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/ArraySchema.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ArraySchema\"},{\"id\":23,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/ArraySchema.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"ArraySchema\"},{\"id\":24,\"kind\":1024,\"name\":\"loadingOptions\",\"url\":\"classes/ArraySchema.html#loadingOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"ArraySchema\"},{\"id\":25,\"kind\":256,\"name\":\"ArraySchemaProperties\",\"url\":\"interfaces/ArraySchemaProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":26,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"interfaces/ArraySchemaProperties.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ArraySchemaProperties\"},{\"id\":27,\"kind\":1024,\"name\":\"items\",\"url\":\"interfaces/ArraySchemaProperties.html#items\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ArraySchemaProperties\"},{\"id\":28,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/ArraySchemaProperties.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ArraySchemaProperties\"},{\"id\":29,\"kind\":256,\"name\":\"DocumentedProperties\",\"url\":\"interfaces/DocumentedProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":30,\"kind\":1024,\"name\":\"doc\",\"url\":\"interfaces/DocumentedProperties.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DocumentedProperties\"},{\"id\":31,\"kind\":128,\"name\":\"EnumSchema\",\"url\":\"classes/EnumSchema.html\",\"classes\":\"tsd-kind-class\"},{\"id\":32,\"kind\":2048,\"name\":\"fromDoc\",\"url\":\"classes/EnumSchema.html#fromDoc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static\",\"parent\":\"EnumSchema\"},{\"id\":33,\"kind\":1024,\"name\":\"attr\",\"url\":\"classes/EnumSchema.html#attr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"EnumSchema\"},{\"id\":34,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/EnumSchema.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"EnumSchema\"},{\"id\":35,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"classes/EnumSchema.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EnumSchema\"},{\"id\":36,\"kind\":1024,\"name\":\"symbols\",\"url\":\"classes/EnumSchema.html#symbols\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EnumSchema\"},{\"id\":37,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/EnumSchema.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EnumSchema\"},{\"id\":38,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/EnumSchema.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"EnumSchema\"},{\"id\":39,\"kind\":1024,\"name\":\"loadingOptions\",\"url\":\"classes/EnumSchema.html#loadingOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"EnumSchema\"},{\"id\":40,\"kind\":256,\"name\":\"EnumSchemaProperties\",\"url\":\"interfaces/EnumSchemaProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":41,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"interfaces/EnumSchemaProperties.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"EnumSchemaProperties\"},{\"id\":42,\"kind\":1024,\"name\":\"symbols\",\"url\":\"interfaces/EnumSchemaProperties.html#symbols\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"EnumSchemaProperties\"},{\"id\":43,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/EnumSchemaProperties.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"EnumSchemaProperties\"},{\"id\":44,\"kind\":8,\"name\":\"GalaxyType\",\"url\":\"enums/GalaxyType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":45,\"kind\":16,\"name\":\"NULL\",\"url\":\"enums/GalaxyType.html#NULL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"GalaxyType\"},{\"id\":46,\"kind\":16,\"name\":\"BOOLEAN\",\"url\":\"enums/GalaxyType.html#BOOLEAN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"GalaxyType\"},{\"id\":47,\"kind\":16,\"name\":\"INT\",\"url\":\"enums/GalaxyType.html#INT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"GalaxyType\"},{\"id\":48,\"kind\":16,\"name\":\"LONG\",\"url\":\"enums/GalaxyType.html#LONG\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"GalaxyType\"},{\"id\":49,\"kind\":16,\"name\":\"FLOAT\",\"url\":\"enums/GalaxyType.html#FLOAT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"GalaxyType\"},{\"id\":50,\"kind\":16,\"name\":\"DOUBLE\",\"url\":\"enums/GalaxyType.html#DOUBLE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"GalaxyType\"},{\"id\":51,\"kind\":16,\"name\":\"STRING\",\"url\":\"enums/GalaxyType.html#STRING\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"GalaxyType\"},{\"id\":52,\"kind\":16,\"name\":\"INTEGER\",\"url\":\"enums/GalaxyType.html#INTEGER\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"GalaxyType\"},{\"id\":53,\"kind\":16,\"name\":\"TEXT\",\"url\":\"enums/GalaxyType.html#TEXT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"GalaxyType\"},{\"id\":54,\"kind\":16,\"name\":\"FILE\",\"url\":\"enums/GalaxyType.html#FILE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"GalaxyType\"},{\"id\":55,\"kind\":16,\"name\":\"DATA\",\"url\":\"enums/GalaxyType.html#DATA\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"GalaxyType\"},{\"id\":56,\"kind\":16,\"name\":\"COLLECTION\",\"url\":\"enums/GalaxyType.html#COLLECTION\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"GalaxyType\"},{\"id\":57,\"kind\":128,\"name\":\"GalaxyWorkflow\",\"url\":\"classes/GalaxyWorkflow.html\",\"classes\":\"tsd-kind-class\"},{\"id\":58,\"kind\":2048,\"name\":\"fromDoc\",\"url\":\"classes/GalaxyWorkflow.html#fromDoc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static\",\"parent\":\"GalaxyWorkflow\"},{\"id\":59,\"kind\":1024,\"name\":\"attr\",\"url\":\"classes/GalaxyWorkflow.html#attr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"GalaxyWorkflow\"},{\"id\":60,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/GalaxyWorkflow.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"GalaxyWorkflow\"},{\"id\":61,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"classes/GalaxyWorkflow.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":62,\"kind\":1024,\"name\":\"id\",\"url\":\"classes/GalaxyWorkflow.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":63,\"kind\":1024,\"name\":\"class_\",\"url\":\"classes/GalaxyWorkflow.html#class_\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":64,\"kind\":1024,\"name\":\"label\",\"url\":\"classes/GalaxyWorkflow.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":65,\"kind\":1024,\"name\":\"doc\",\"url\":\"classes/GalaxyWorkflow.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":66,\"kind\":1024,\"name\":\"inputs\",\"url\":\"classes/GalaxyWorkflow.html#inputs\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":67,\"kind\":1024,\"name\":\"outputs\",\"url\":\"classes/GalaxyWorkflow.html#outputs\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":68,\"kind\":1024,\"name\":\"uuid\",\"url\":\"classes/GalaxyWorkflow.html#uuid\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":69,\"kind\":1024,\"name\":\"steps\",\"url\":\"classes/GalaxyWorkflow.html#steps\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":70,\"kind\":1024,\"name\":\"report\",\"url\":\"classes/GalaxyWorkflow.html#report\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":71,\"kind\":1024,\"name\":\"tags\",\"url\":\"classes/GalaxyWorkflow.html#tags\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":72,\"kind\":1024,\"name\":\"creator\",\"url\":\"classes/GalaxyWorkflow.html#creator\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":73,\"kind\":1024,\"name\":\"license\",\"url\":\"classes/GalaxyWorkflow.html#license\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":74,\"kind\":1024,\"name\":\"release\",\"url\":\"classes/GalaxyWorkflow.html#release\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GalaxyWorkflow\"},{\"id\":75,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/GalaxyWorkflow.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"GalaxyWorkflow\"},{\"id\":76,\"kind\":1024,\"name\":\"loadingOptions\",\"url\":\"classes/GalaxyWorkflow.html#loadingOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"GalaxyWorkflow\"},{\"id\":77,\"kind\":256,\"name\":\"GalaxyWorkflowProperties\",\"url\":\"interfaces/GalaxyWorkflowProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":78,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":79,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":80,\"kind\":1024,\"name\":\"class_\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#class_\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":81,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":82,\"kind\":1024,\"name\":\"doc\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":83,\"kind\":1024,\"name\":\"inputs\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#inputs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":84,\"kind\":1024,\"name\":\"outputs\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#outputs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":85,\"kind\":1024,\"name\":\"uuid\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#uuid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":86,\"kind\":1024,\"name\":\"steps\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#steps\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":87,\"kind\":1024,\"name\":\"report\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#report\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":88,\"kind\":1024,\"name\":\"tags\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#tags\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":89,\"kind\":1024,\"name\":\"creator\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#creator\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":90,\"kind\":1024,\"name\":\"license\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#license\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":91,\"kind\":1024,\"name\":\"release\",\"url\":\"interfaces/GalaxyWorkflowProperties.html#release\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GalaxyWorkflowProperties\"},{\"id\":92,\"kind\":8,\"name\":\"GalaxyWorkflow_class\",\"url\":\"enums/GalaxyWorkflow_class.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":93,\"kind\":16,\"name\":\"GALAXYWORKFLOW\",\"url\":\"enums/GalaxyWorkflow_class.html#GALAXYWORKFLOW\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"GalaxyWorkflow_class\"},{\"id\":94,\"kind\":256,\"name\":\"HasStepErrorsProperties\",\"url\":\"interfaces/HasStepErrorsProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":95,\"kind\":1024,\"name\":\"errors\",\"url\":\"interfaces/HasStepErrorsProperties.html#errors\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HasStepErrorsProperties\"},{\"id\":96,\"kind\":256,\"name\":\"HasStepPositionProperties\",\"url\":\"interfaces/HasStepPositionProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":97,\"kind\":1024,\"name\":\"position\",\"url\":\"interfaces/HasStepPositionProperties.html#position\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HasStepPositionProperties\"},{\"id\":98,\"kind\":256,\"name\":\"HasUUIDProperties\",\"url\":\"interfaces/HasUUIDProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":99,\"kind\":1024,\"name\":\"uuid\",\"url\":\"interfaces/HasUUIDProperties.html#uuid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HasUUIDProperties\"},{\"id\":100,\"kind\":256,\"name\":\"IdentifiedProperties\",\"url\":\"interfaces/IdentifiedProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":101,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/IdentifiedProperties.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IdentifiedProperties\"},{\"id\":102,\"kind\":256,\"name\":\"InputParameterProperties\",\"url\":\"interfaces/InputParameterProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":103,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/InputParameterProperties.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"InputParameterProperties\"},{\"id\":104,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/InputParameterProperties.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"InputParameterProperties\"},{\"id\":105,\"kind\":1024,\"name\":\"doc\",\"url\":\"interfaces/InputParameterProperties.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"InputParameterProperties\"},{\"id\":106,\"kind\":1024,\"name\":\"default_\",\"url\":\"interfaces/InputParameterProperties.html#default_\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"InputParameterProperties\"},{\"id\":107,\"kind\":256,\"name\":\"LabeledProperties\",\"url\":\"interfaces/LabeledProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":108,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/LabeledProperties.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LabeledProperties\"},{\"id\":109,\"kind\":256,\"name\":\"OutputParameterProperties\",\"url\":\"interfaces/OutputParameterProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":110,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/OutputParameterProperties.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"OutputParameterProperties\"},{\"id\":111,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/OutputParameterProperties.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"OutputParameterProperties\"},{\"id\":112,\"kind\":1024,\"name\":\"doc\",\"url\":\"interfaces/OutputParameterProperties.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"OutputParameterProperties\"},{\"id\":113,\"kind\":256,\"name\":\"ParameterProperties\",\"url\":\"interfaces/ParameterProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":114,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/ParameterProperties.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"ParameterProperties\"},{\"id\":115,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/ParameterProperties.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"ParameterProperties\"},{\"id\":116,\"kind\":1024,\"name\":\"doc\",\"url\":\"interfaces/ParameterProperties.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"ParameterProperties\"},{\"id\":117,\"kind\":8,\"name\":\"PrimitiveType\",\"url\":\"enums/PrimitiveType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":118,\"kind\":16,\"name\":\"NULL\",\"url\":\"enums/PrimitiveType.html#NULL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"PrimitiveType\"},{\"id\":119,\"kind\":16,\"name\":\"BOOLEAN\",\"url\":\"enums/PrimitiveType.html#BOOLEAN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"PrimitiveType\"},{\"id\":120,\"kind\":16,\"name\":\"INT\",\"url\":\"enums/PrimitiveType.html#INT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"PrimitiveType\"},{\"id\":121,\"kind\":16,\"name\":\"LONG\",\"url\":\"enums/PrimitiveType.html#LONG\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"PrimitiveType\"},{\"id\":122,\"kind\":16,\"name\":\"FLOAT\",\"url\":\"enums/PrimitiveType.html#FLOAT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"PrimitiveType\"},{\"id\":123,\"kind\":16,\"name\":\"DOUBLE\",\"url\":\"enums/PrimitiveType.html#DOUBLE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"PrimitiveType\"},{\"id\":124,\"kind\":16,\"name\":\"STRING\",\"url\":\"enums/PrimitiveType.html#STRING\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"PrimitiveType\"},{\"id\":125,\"kind\":256,\"name\":\"ProcessProperties\",\"url\":\"interfaces/ProcessProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":126,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/ProcessProperties.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"ProcessProperties\"},{\"id\":127,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/ProcessProperties.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"ProcessProperties\"},{\"id\":128,\"kind\":1024,\"name\":\"doc\",\"url\":\"interfaces/ProcessProperties.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"ProcessProperties\"},{\"id\":129,\"kind\":1024,\"name\":\"inputs\",\"url\":\"interfaces/ProcessProperties.html#inputs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ProcessProperties\"},{\"id\":130,\"kind\":1024,\"name\":\"outputs\",\"url\":\"interfaces/ProcessProperties.html#outputs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ProcessProperties\"},{\"id\":131,\"kind\":128,\"name\":\"RecordField\",\"url\":\"classes/RecordField.html\",\"classes\":\"tsd-kind-class\"},{\"id\":132,\"kind\":2048,\"name\":\"fromDoc\",\"url\":\"classes/RecordField.html#fromDoc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static\",\"parent\":\"RecordField\"},{\"id\":133,\"kind\":1024,\"name\":\"attr\",\"url\":\"classes/RecordField.html#attr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"RecordField\"},{\"id\":134,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/RecordField.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"RecordField\"},{\"id\":135,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"classes/RecordField.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"RecordField\"},{\"id\":136,\"kind\":1024,\"name\":\"name\",\"url\":\"classes/RecordField.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"RecordField\"},{\"id\":137,\"kind\":1024,\"name\":\"doc\",\"url\":\"classes/RecordField.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"RecordField\"},{\"id\":138,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/RecordField.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"RecordField\"},{\"id\":139,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/RecordField.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"RecordField\"},{\"id\":140,\"kind\":1024,\"name\":\"loadingOptions\",\"url\":\"classes/RecordField.html#loadingOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RecordField\"},{\"id\":141,\"kind\":256,\"name\":\"RecordFieldProperties\",\"url\":\"interfaces/RecordFieldProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":142,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"interfaces/RecordFieldProperties.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"RecordFieldProperties\"},{\"id\":143,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/RecordFieldProperties.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"RecordFieldProperties\"},{\"id\":144,\"kind\":1024,\"name\":\"doc\",\"url\":\"interfaces/RecordFieldProperties.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"RecordFieldProperties\"},{\"id\":145,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/RecordFieldProperties.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"RecordFieldProperties\"},{\"id\":146,\"kind\":128,\"name\":\"RecordSchema\",\"url\":\"classes/RecordSchema.html\",\"classes\":\"tsd-kind-class\"},{\"id\":147,\"kind\":2048,\"name\":\"fromDoc\",\"url\":\"classes/RecordSchema.html#fromDoc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static\",\"parent\":\"RecordSchema\"},{\"id\":148,\"kind\":1024,\"name\":\"attr\",\"url\":\"classes/RecordSchema.html#attr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"RecordSchema\"},{\"id\":149,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/RecordSchema.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"RecordSchema\"},{\"id\":150,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"classes/RecordSchema.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"RecordSchema\"},{\"id\":151,\"kind\":1024,\"name\":\"fields\",\"url\":\"classes/RecordSchema.html#fields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"RecordSchema\"},{\"id\":152,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/RecordSchema.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"RecordSchema\"},{\"id\":153,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/RecordSchema.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"RecordSchema\"},{\"id\":154,\"kind\":1024,\"name\":\"loadingOptions\",\"url\":\"classes/RecordSchema.html#loadingOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RecordSchema\"},{\"id\":155,\"kind\":256,\"name\":\"RecordSchemaProperties\",\"url\":\"interfaces/RecordSchemaProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":156,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"interfaces/RecordSchemaProperties.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"RecordSchemaProperties\"},{\"id\":157,\"kind\":1024,\"name\":\"fields\",\"url\":\"interfaces/RecordSchemaProperties.html#fields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"RecordSchemaProperties\"},{\"id\":158,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/RecordSchemaProperties.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"RecordSchemaProperties\"},{\"id\":159,\"kind\":256,\"name\":\"ReferencesToolProperties\",\"url\":\"interfaces/ReferencesToolProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":160,\"kind\":1024,\"name\":\"tool_id\",\"url\":\"interfaces/ReferencesToolProperties.html#tool_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ReferencesToolProperties\"},{\"id\":161,\"kind\":1024,\"name\":\"tool_shed_repository\",\"url\":\"interfaces/ReferencesToolProperties.html#tool_shed_repository\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ReferencesToolProperties\"},{\"id\":162,\"kind\":1024,\"name\":\"tool_version\",\"url\":\"interfaces/ReferencesToolProperties.html#tool_version\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ReferencesToolProperties\"},{\"id\":163,\"kind\":128,\"name\":\"Report\",\"url\":\"classes/Report.html\",\"classes\":\"tsd-kind-class\"},{\"id\":164,\"kind\":2048,\"name\":\"fromDoc\",\"url\":\"classes/Report.html#fromDoc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static\",\"parent\":\"Report\"},{\"id\":165,\"kind\":1024,\"name\":\"attr\",\"url\":\"classes/Report.html#attr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"Report\"},{\"id\":166,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Report.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Report\"},{\"id\":167,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"classes/Report.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Report\"},{\"id\":168,\"kind\":1024,\"name\":\"markdown\",\"url\":\"classes/Report.html#markdown\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Report\"},{\"id\":169,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/Report.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Report\"},{\"id\":170,\"kind\":1024,\"name\":\"loadingOptions\",\"url\":\"classes/Report.html#loadingOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"Report\"},{\"id\":171,\"kind\":256,\"name\":\"ReportProperties\",\"url\":\"interfaces/ReportProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":172,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"interfaces/ReportProperties.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ReportProperties\"},{\"id\":173,\"kind\":1024,\"name\":\"markdown\",\"url\":\"interfaces/ReportProperties.html#markdown\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ReportProperties\"},{\"id\":174,\"kind\":256,\"name\":\"SinkProperties\",\"url\":\"interfaces/SinkProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":175,\"kind\":1024,\"name\":\"source\",\"url\":\"interfaces/SinkProperties.html#source\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"SinkProperties\"},{\"id\":176,\"kind\":128,\"name\":\"StepPosition\",\"url\":\"classes/StepPosition.html\",\"classes\":\"tsd-kind-class\"},{\"id\":177,\"kind\":2048,\"name\":\"fromDoc\",\"url\":\"classes/StepPosition.html#fromDoc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static\",\"parent\":\"StepPosition\"},{\"id\":178,\"kind\":1024,\"name\":\"attr\",\"url\":\"classes/StepPosition.html#attr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"StepPosition\"},{\"id\":179,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/StepPosition.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"StepPosition\"},{\"id\":180,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"classes/StepPosition.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StepPosition\"},{\"id\":181,\"kind\":1024,\"name\":\"top\",\"url\":\"classes/StepPosition.html#top\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StepPosition\"},{\"id\":182,\"kind\":1024,\"name\":\"left\",\"url\":\"classes/StepPosition.html#left\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StepPosition\"},{\"id\":183,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/StepPosition.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"StepPosition\"},{\"id\":184,\"kind\":1024,\"name\":\"loadingOptions\",\"url\":\"classes/StepPosition.html#loadingOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StepPosition\"},{\"id\":185,\"kind\":256,\"name\":\"StepPositionProperties\",\"url\":\"interfaces/StepPositionProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":186,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"interfaces/StepPositionProperties.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StepPositionProperties\"},{\"id\":187,\"kind\":1024,\"name\":\"top\",\"url\":\"interfaces/StepPositionProperties.html#top\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StepPositionProperties\"},{\"id\":188,\"kind\":1024,\"name\":\"left\",\"url\":\"interfaces/StepPositionProperties.html#left\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StepPositionProperties\"},{\"id\":189,\"kind\":128,\"name\":\"ToolShedRepository\",\"url\":\"classes/ToolShedRepository.html\",\"classes\":\"tsd-kind-class\"},{\"id\":190,\"kind\":2048,\"name\":\"fromDoc\",\"url\":\"classes/ToolShedRepository.html#fromDoc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static\",\"parent\":\"ToolShedRepository\"},{\"id\":191,\"kind\":1024,\"name\":\"attr\",\"url\":\"classes/ToolShedRepository.html#attr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"ToolShedRepository\"},{\"id\":192,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ToolShedRepository.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"ToolShedRepository\"},{\"id\":193,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"classes/ToolShedRepository.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ToolShedRepository\"},{\"id\":194,\"kind\":1024,\"name\":\"name\",\"url\":\"classes/ToolShedRepository.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ToolShedRepository\"},{\"id\":195,\"kind\":1024,\"name\":\"changeset_revision\",\"url\":\"classes/ToolShedRepository.html#changeset_revision\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ToolShedRepository\"},{\"id\":196,\"kind\":1024,\"name\":\"owner\",\"url\":\"classes/ToolShedRepository.html#owner\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ToolShedRepository\"},{\"id\":197,\"kind\":1024,\"name\":\"tool_shed\",\"url\":\"classes/ToolShedRepository.html#tool_shed\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ToolShedRepository\"},{\"id\":198,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/ToolShedRepository.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"ToolShedRepository\"},{\"id\":199,\"kind\":1024,\"name\":\"loadingOptions\",\"url\":\"classes/ToolShedRepository.html#loadingOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"ToolShedRepository\"},{\"id\":200,\"kind\":256,\"name\":\"ToolShedRepositoryProperties\",\"url\":\"interfaces/ToolShedRepositoryProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":201,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"interfaces/ToolShedRepositoryProperties.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ToolShedRepositoryProperties\"},{\"id\":202,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/ToolShedRepositoryProperties.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ToolShedRepositoryProperties\"},{\"id\":203,\"kind\":1024,\"name\":\"changeset_revision\",\"url\":\"interfaces/ToolShedRepositoryProperties.html#changeset_revision\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ToolShedRepositoryProperties\"},{\"id\":204,\"kind\":1024,\"name\":\"owner\",\"url\":\"interfaces/ToolShedRepositoryProperties.html#owner\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ToolShedRepositoryProperties\"},{\"id\":205,\"kind\":1024,\"name\":\"tool_shed\",\"url\":\"interfaces/ToolShedRepositoryProperties.html#tool_shed\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ToolShedRepositoryProperties\"},{\"id\":206,\"kind\":128,\"name\":\"WorkflowInputParameter\",\"url\":\"classes/WorkflowInputParameter.html\",\"classes\":\"tsd-kind-class\"},{\"id\":207,\"kind\":2048,\"name\":\"fromDoc\",\"url\":\"classes/WorkflowInputParameter.html#fromDoc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static\",\"parent\":\"WorkflowInputParameter\"},{\"id\":208,\"kind\":1024,\"name\":\"attr\",\"url\":\"classes/WorkflowInputParameter.html#attr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"WorkflowInputParameter\"},{\"id\":209,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/WorkflowInputParameter.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"WorkflowInputParameter\"},{\"id\":210,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"classes/WorkflowInputParameter.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowInputParameter\"},{\"id\":211,\"kind\":1024,\"name\":\"id\",\"url\":\"classes/WorkflowInputParameter.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowInputParameter\"},{\"id\":212,\"kind\":1024,\"name\":\"label\",\"url\":\"classes/WorkflowInputParameter.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowInputParameter\"},{\"id\":213,\"kind\":1024,\"name\":\"doc\",\"url\":\"classes/WorkflowInputParameter.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowInputParameter\"},{\"id\":214,\"kind\":1024,\"name\":\"default_\",\"url\":\"classes/WorkflowInputParameter.html#default_\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowInputParameter\"},{\"id\":215,\"kind\":1024,\"name\":\"position\",\"url\":\"classes/WorkflowInputParameter.html#position\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowInputParameter\"},{\"id\":216,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/WorkflowInputParameter.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowInputParameter\"},{\"id\":217,\"kind\":1024,\"name\":\"optional\",\"url\":\"classes/WorkflowInputParameter.html#optional\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowInputParameter\"},{\"id\":218,\"kind\":1024,\"name\":\"format\",\"url\":\"classes/WorkflowInputParameter.html#format\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowInputParameter\"},{\"id\":219,\"kind\":1024,\"name\":\"collection_type\",\"url\":\"classes/WorkflowInputParameter.html#collection_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowInputParameter\"},{\"id\":220,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/WorkflowInputParameter.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"WorkflowInputParameter\"},{\"id\":221,\"kind\":1024,\"name\":\"loadingOptions\",\"url\":\"classes/WorkflowInputParameter.html#loadingOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"WorkflowInputParameter\"},{\"id\":222,\"kind\":256,\"name\":\"WorkflowInputParameterProperties\",\"url\":\"interfaces/WorkflowInputParameterProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":223,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"interfaces/WorkflowInputParameterProperties.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowInputParameterProperties\"},{\"id\":224,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/WorkflowInputParameterProperties.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowInputParameterProperties\"},{\"id\":225,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/WorkflowInputParameterProperties.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowInputParameterProperties\"},{\"id\":226,\"kind\":1024,\"name\":\"doc\",\"url\":\"interfaces/WorkflowInputParameterProperties.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowInputParameterProperties\"},{\"id\":227,\"kind\":1024,\"name\":\"default_\",\"url\":\"interfaces/WorkflowInputParameterProperties.html#default_\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowInputParameterProperties\"},{\"id\":228,\"kind\":1024,\"name\":\"position\",\"url\":\"interfaces/WorkflowInputParameterProperties.html#position\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowInputParameterProperties\"},{\"id\":229,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/WorkflowInputParameterProperties.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowInputParameterProperties\"},{\"id\":230,\"kind\":1024,\"name\":\"optional\",\"url\":\"interfaces/WorkflowInputParameterProperties.html#optional\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowInputParameterProperties\"},{\"id\":231,\"kind\":1024,\"name\":\"format\",\"url\":\"interfaces/WorkflowInputParameterProperties.html#format\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowInputParameterProperties\"},{\"id\":232,\"kind\":1024,\"name\":\"collection_type\",\"url\":\"interfaces/WorkflowInputParameterProperties.html#collection_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowInputParameterProperties\"},{\"id\":233,\"kind\":128,\"name\":\"WorkflowOutputParameter\",\"url\":\"classes/WorkflowOutputParameter.html\",\"classes\":\"tsd-kind-class\"},{\"id\":234,\"kind\":2048,\"name\":\"fromDoc\",\"url\":\"classes/WorkflowOutputParameter.html#fromDoc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static\",\"parent\":\"WorkflowOutputParameter\"},{\"id\":235,\"kind\":1024,\"name\":\"attr\",\"url\":\"classes/WorkflowOutputParameter.html#attr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"WorkflowOutputParameter\"},{\"id\":236,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/WorkflowOutputParameter.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"WorkflowOutputParameter\"},{\"id\":237,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"classes/WorkflowOutputParameter.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowOutputParameter\"},{\"id\":238,\"kind\":1024,\"name\":\"id\",\"url\":\"classes/WorkflowOutputParameter.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowOutputParameter\"},{\"id\":239,\"kind\":1024,\"name\":\"label\",\"url\":\"classes/WorkflowOutputParameter.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowOutputParameter\"},{\"id\":240,\"kind\":1024,\"name\":\"doc\",\"url\":\"classes/WorkflowOutputParameter.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowOutputParameter\"},{\"id\":241,\"kind\":1024,\"name\":\"outputSource\",\"url\":\"classes/WorkflowOutputParameter.html#outputSource\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowOutputParameter\"},{\"id\":242,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/WorkflowOutputParameter.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowOutputParameter\"},{\"id\":243,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/WorkflowOutputParameter.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"WorkflowOutputParameter\"},{\"id\":244,\"kind\":1024,\"name\":\"loadingOptions\",\"url\":\"classes/WorkflowOutputParameter.html#loadingOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"WorkflowOutputParameter\"},{\"id\":245,\"kind\":256,\"name\":\"WorkflowOutputParameterProperties\",\"url\":\"interfaces/WorkflowOutputParameterProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":246,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"interfaces/WorkflowOutputParameterProperties.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowOutputParameterProperties\"},{\"id\":247,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/WorkflowOutputParameterProperties.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowOutputParameterProperties\"},{\"id\":248,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/WorkflowOutputParameterProperties.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowOutputParameterProperties\"},{\"id\":249,\"kind\":1024,\"name\":\"doc\",\"url\":\"interfaces/WorkflowOutputParameterProperties.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowOutputParameterProperties\"},{\"id\":250,\"kind\":1024,\"name\":\"outputSource\",\"url\":\"interfaces/WorkflowOutputParameterProperties.html#outputSource\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowOutputParameterProperties\"},{\"id\":251,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/WorkflowOutputParameterProperties.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowOutputParameterProperties\"},{\"id\":252,\"kind\":128,\"name\":\"WorkflowStep\",\"url\":\"classes/WorkflowStep.html\",\"classes\":\"tsd-kind-class\"},{\"id\":253,\"kind\":2048,\"name\":\"fromDoc\",\"url\":\"classes/WorkflowStep.html#fromDoc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static\",\"parent\":\"WorkflowStep\"},{\"id\":254,\"kind\":1024,\"name\":\"attr\",\"url\":\"classes/WorkflowStep.html#attr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"WorkflowStep\"},{\"id\":255,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/WorkflowStep.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"WorkflowStep\"},{\"id\":256,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"classes/WorkflowStep.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":257,\"kind\":1024,\"name\":\"id\",\"url\":\"classes/WorkflowStep.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":258,\"kind\":1024,\"name\":\"label\",\"url\":\"classes/WorkflowStep.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":259,\"kind\":1024,\"name\":\"doc\",\"url\":\"classes/WorkflowStep.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":260,\"kind\":1024,\"name\":\"position\",\"url\":\"classes/WorkflowStep.html#position\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":261,\"kind\":1024,\"name\":\"tool_id\",\"url\":\"classes/WorkflowStep.html#tool_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":262,\"kind\":1024,\"name\":\"tool_shed_repository\",\"url\":\"classes/WorkflowStep.html#tool_shed_repository\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":263,\"kind\":1024,\"name\":\"tool_version\",\"url\":\"classes/WorkflowStep.html#tool_version\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":264,\"kind\":1024,\"name\":\"errors\",\"url\":\"classes/WorkflowStep.html#errors\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":265,\"kind\":1024,\"name\":\"uuid\",\"url\":\"classes/WorkflowStep.html#uuid\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":266,\"kind\":1024,\"name\":\"in_\",\"url\":\"classes/WorkflowStep.html#in_\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":267,\"kind\":1024,\"name\":\"out\",\"url\":\"classes/WorkflowStep.html#out\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":268,\"kind\":1024,\"name\":\"state\",\"url\":\"classes/WorkflowStep.html#state\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":269,\"kind\":1024,\"name\":\"tool_state\",\"url\":\"classes/WorkflowStep.html#tool_state\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":270,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/WorkflowStep.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":271,\"kind\":1024,\"name\":\"run\",\"url\":\"classes/WorkflowStep.html#run\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":272,\"kind\":1024,\"name\":\"runtime_inputs\",\"url\":\"classes/WorkflowStep.html#runtime_inputs\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":273,\"kind\":1024,\"name\":\"when\",\"url\":\"classes/WorkflowStep.html#when\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStep\"},{\"id\":274,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/WorkflowStep.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"WorkflowStep\"},{\"id\":275,\"kind\":1024,\"name\":\"loadingOptions\",\"url\":\"classes/WorkflowStep.html#loadingOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"WorkflowStep\"},{\"id\":276,\"kind\":128,\"name\":\"WorkflowStepInput\",\"url\":\"classes/WorkflowStepInput.html\",\"classes\":\"tsd-kind-class\"},{\"id\":277,\"kind\":2048,\"name\":\"fromDoc\",\"url\":\"classes/WorkflowStepInput.html#fromDoc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static\",\"parent\":\"WorkflowStepInput\"},{\"id\":278,\"kind\":1024,\"name\":\"attr\",\"url\":\"classes/WorkflowStepInput.html#attr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"WorkflowStepInput\"},{\"id\":279,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/WorkflowStepInput.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"WorkflowStepInput\"},{\"id\":280,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"classes/WorkflowStepInput.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepInput\"},{\"id\":281,\"kind\":1024,\"name\":\"id\",\"url\":\"classes/WorkflowStepInput.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepInput\"},{\"id\":282,\"kind\":1024,\"name\":\"source\",\"url\":\"classes/WorkflowStepInput.html#source\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepInput\"},{\"id\":283,\"kind\":1024,\"name\":\"label\",\"url\":\"classes/WorkflowStepInput.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepInput\"},{\"id\":284,\"kind\":1024,\"name\":\"default_\",\"url\":\"classes/WorkflowStepInput.html#default_\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepInput\"},{\"id\":285,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/WorkflowStepInput.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"WorkflowStepInput\"},{\"id\":286,\"kind\":1024,\"name\":\"loadingOptions\",\"url\":\"classes/WorkflowStepInput.html#loadingOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"WorkflowStepInput\"},{\"id\":287,\"kind\":256,\"name\":\"WorkflowStepInputProperties\",\"url\":\"interfaces/WorkflowStepInputProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":288,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"interfaces/WorkflowStepInputProperties.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepInputProperties\"},{\"id\":289,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/WorkflowStepInputProperties.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowStepInputProperties\"},{\"id\":290,\"kind\":1024,\"name\":\"source\",\"url\":\"interfaces/WorkflowStepInputProperties.html#source\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowStepInputProperties\"},{\"id\":291,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/WorkflowStepInputProperties.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowStepInputProperties\"},{\"id\":292,\"kind\":1024,\"name\":\"default_\",\"url\":\"interfaces/WorkflowStepInputProperties.html#default_\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepInputProperties\"},{\"id\":293,\"kind\":128,\"name\":\"WorkflowStepOutput\",\"url\":\"classes/WorkflowStepOutput.html\",\"classes\":\"tsd-kind-class\"},{\"id\":294,\"kind\":2048,\"name\":\"fromDoc\",\"url\":\"classes/WorkflowStepOutput.html#fromDoc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static\",\"parent\":\"WorkflowStepOutput\"},{\"id\":295,\"kind\":1024,\"name\":\"attr\",\"url\":\"classes/WorkflowStepOutput.html#attr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"WorkflowStepOutput\"},{\"id\":296,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/WorkflowStepOutput.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"WorkflowStepOutput\"},{\"id\":297,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"classes/WorkflowStepOutput.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepOutput\"},{\"id\":298,\"kind\":1024,\"name\":\"id\",\"url\":\"classes/WorkflowStepOutput.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepOutput\"},{\"id\":299,\"kind\":1024,\"name\":\"add_tags\",\"url\":\"classes/WorkflowStepOutput.html#add_tags\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepOutput\"},{\"id\":300,\"kind\":1024,\"name\":\"change_datatype\",\"url\":\"classes/WorkflowStepOutput.html#change_datatype\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepOutput\"},{\"id\":301,\"kind\":1024,\"name\":\"delete_intermediate_datasets\",\"url\":\"classes/WorkflowStepOutput.html#delete_intermediate_datasets\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepOutput\"},{\"id\":302,\"kind\":1024,\"name\":\"hide\",\"url\":\"classes/WorkflowStepOutput.html#hide\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepOutput\"},{\"id\":303,\"kind\":1024,\"name\":\"remove_tags\",\"url\":\"classes/WorkflowStepOutput.html#remove_tags\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepOutput\"},{\"id\":304,\"kind\":1024,\"name\":\"rename\",\"url\":\"classes/WorkflowStepOutput.html#rename\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepOutput\"},{\"id\":305,\"kind\":1024,\"name\":\"set_columns\",\"url\":\"classes/WorkflowStepOutput.html#set_columns\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"WorkflowStepOutput\"},{\"id\":306,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/WorkflowStepOutput.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"WorkflowStepOutput\"},{\"id\":307,\"kind\":1024,\"name\":\"loadingOptions\",\"url\":\"classes/WorkflowStepOutput.html#loadingOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"WorkflowStepOutput\"},{\"id\":308,\"kind\":256,\"name\":\"WorkflowStepOutputProperties\",\"url\":\"interfaces/WorkflowStepOutputProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":309,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"interfaces/WorkflowStepOutputProperties.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepOutputProperties\"},{\"id\":310,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/WorkflowStepOutputProperties.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowStepOutputProperties\"},{\"id\":311,\"kind\":1024,\"name\":\"add_tags\",\"url\":\"interfaces/WorkflowStepOutputProperties.html#add_tags\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepOutputProperties\"},{\"id\":312,\"kind\":1024,\"name\":\"change_datatype\",\"url\":\"interfaces/WorkflowStepOutputProperties.html#change_datatype\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepOutputProperties\"},{\"id\":313,\"kind\":1024,\"name\":\"delete_intermediate_datasets\",\"url\":\"interfaces/WorkflowStepOutputProperties.html#delete_intermediate_datasets\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepOutputProperties\"},{\"id\":314,\"kind\":1024,\"name\":\"hide\",\"url\":\"interfaces/WorkflowStepOutputProperties.html#hide\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepOutputProperties\"},{\"id\":315,\"kind\":1024,\"name\":\"remove_tags\",\"url\":\"interfaces/WorkflowStepOutputProperties.html#remove_tags\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepOutputProperties\"},{\"id\":316,\"kind\":1024,\"name\":\"rename\",\"url\":\"interfaces/WorkflowStepOutputProperties.html#rename\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepOutputProperties\"},{\"id\":317,\"kind\":1024,\"name\":\"set_columns\",\"url\":\"interfaces/WorkflowStepOutputProperties.html#set_columns\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepOutputProperties\"},{\"id\":318,\"kind\":256,\"name\":\"WorkflowStepProperties\",\"url\":\"interfaces/WorkflowStepProperties.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":319,\"kind\":1024,\"name\":\"extensionFields\",\"url\":\"interfaces/WorkflowStepProperties.html#extensionFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepProperties\"},{\"id\":320,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/WorkflowStepProperties.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowStepProperties\"},{\"id\":321,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/WorkflowStepProperties.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowStepProperties\"},{\"id\":322,\"kind\":1024,\"name\":\"doc\",\"url\":\"interfaces/WorkflowStepProperties.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowStepProperties\"},{\"id\":323,\"kind\":1024,\"name\":\"position\",\"url\":\"interfaces/WorkflowStepProperties.html#position\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowStepProperties\"},{\"id\":324,\"kind\":1024,\"name\":\"tool_id\",\"url\":\"interfaces/WorkflowStepProperties.html#tool_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowStepProperties\"},{\"id\":325,\"kind\":1024,\"name\":\"tool_shed_repository\",\"url\":\"interfaces/WorkflowStepProperties.html#tool_shed_repository\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowStepProperties\"},{\"id\":326,\"kind\":1024,\"name\":\"tool_version\",\"url\":\"interfaces/WorkflowStepProperties.html#tool_version\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowStepProperties\"},{\"id\":327,\"kind\":1024,\"name\":\"errors\",\"url\":\"interfaces/WorkflowStepProperties.html#errors\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowStepProperties\"},{\"id\":328,\"kind\":1024,\"name\":\"uuid\",\"url\":\"interfaces/WorkflowStepProperties.html#uuid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"WorkflowStepProperties\"},{\"id\":329,\"kind\":1024,\"name\":\"in_\",\"url\":\"interfaces/WorkflowStepProperties.html#in_\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepProperties\"},{\"id\":330,\"kind\":1024,\"name\":\"out\",\"url\":\"interfaces/WorkflowStepProperties.html#out\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepProperties\"},{\"id\":331,\"kind\":1024,\"name\":\"state\",\"url\":\"interfaces/WorkflowStepProperties.html#state\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepProperties\"},{\"id\":332,\"kind\":1024,\"name\":\"tool_state\",\"url\":\"interfaces/WorkflowStepProperties.html#tool_state\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepProperties\"},{\"id\":333,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/WorkflowStepProperties.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepProperties\"},{\"id\":334,\"kind\":1024,\"name\":\"run\",\"url\":\"interfaces/WorkflowStepProperties.html#run\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepProperties\"},{\"id\":335,\"kind\":1024,\"name\":\"runtime_inputs\",\"url\":\"interfaces/WorkflowStepProperties.html#runtime_inputs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepProperties\"},{\"id\":336,\"kind\":1024,\"name\":\"when\",\"url\":\"interfaces/WorkflowStepProperties.html#when\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WorkflowStepProperties\"},{\"id\":337,\"kind\":8,\"name\":\"WorkflowStepType\",\"url\":\"enums/WorkflowStepType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":338,\"kind\":16,\"name\":\"TOOL\",\"url\":\"enums/WorkflowStepType.html#TOOL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"WorkflowStepType\"},{\"id\":339,\"kind\":16,\"name\":\"SUBWORKFLOW\",\"url\":\"enums/WorkflowStepType.html#SUBWORKFLOW\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"WorkflowStepType\"},{\"id\":340,\"kind\":16,\"name\":\"PAUSE\",\"url\":\"enums/WorkflowStepType.html#PAUSE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"WorkflowStepType\"},{\"id\":341,\"kind\":8,\"name\":\"enum_d062602be0b4b8fd33e69e29a841317b6ab665bc\",\"url\":\"enums/enum_d062602be0b4b8fd33e69e29a841317b6ab665bc.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":342,\"kind\":16,\"name\":\"ARRAY\",\"url\":\"enums/enum_d062602be0b4b8fd33e69e29a841317b6ab665bc.html#ARRAY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"enum_d062602be0b4b8fd33e69e29a841317b6ab665bc\"},{\"id\":343,\"kind\":8,\"name\":\"enum_d961d79c225752b9fadb617367615ab176b47d77\",\"url\":\"enums/enum_d961d79c225752b9fadb617367615ab176b47d77.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":344,\"kind\":16,\"name\":\"ENUM\",\"url\":\"enums/enum_d961d79c225752b9fadb617367615ab176b47d77.html#ENUM\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"enum_d961d79c225752b9fadb617367615ab176b47d77\"},{\"id\":345,\"kind\":8,\"name\":\"enum_d9cba076fca539106791a4f46d198c7fcfbdb779\",\"url\":\"enums/enum_d9cba076fca539106791a4f46d198c7fcfbdb779.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":346,\"kind\":16,\"name\":\"RECORD\",\"url\":\"enums/enum_d9cba076fca539106791a4f46d198c7fcfbdb779.html#RECORD\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"enum_d9cba076fca539106791a4f46d198c7fcfbdb779\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"parent\"],\"fieldVectors\":[[\"name/0\",[0,54.467]],[\"parent/0\",[]],[\"name/1\",[1,54.467]],[\"parent/1\",[]],[\"name/2\",[2,34.099]],[\"parent/2\",[]],[\"name/3\",[3,54.467]],[\"parent/3\",[2,3.19]],[\"name/4\",[4,54.467]],[\"parent/4\",[2,3.19]],[\"name/5\",[5,31.781]],[\"parent/5\",[2,3.19]],[\"name/6\",[6,54.467]],[\"parent/6\",[2,3.19]],[\"name/7\",[7,54.467]],[\"parent/7\",[2,3.19]],[\"name/8\",[8,54.467]],[\"parent/8\",[2,3.19]],[\"name/9\",[9,54.467]],[\"parent/9\",[2,3.19]],[\"name/10\",[10,54.467]],[\"parent/10\",[2,3.19]],[\"name/11\",[11,54.467]],[\"parent/11\",[2,3.19]],[\"name/12\",[12,54.467]],[\"parent/12\",[2,3.19]],[\"name/13\",[13,54.467]],[\"parent/13\",[]],[\"name/14\",[14,45.994]],[\"parent/14\",[]],[\"name/15\",[14,45.994]],[\"parent/15\",[14,4.303]],[\"name/16\",[15,36.009]],[\"parent/16\",[]],[\"name/17\",[16,32.495]],[\"parent/17\",[15,3.369]],[\"name/18\",[17,32.495]],[\"parent/18\",[15,3.369]],[\"name/19\",[5,31.781]],[\"parent/19\",[15,3.369]],[\"name/20\",[18,25.751]],[\"parent/20\",[15,3.369]],[\"name/21\",[19,49.359]],[\"parent/21\",[15,3.369]],[\"name/22\",[20,31.781]],[\"parent/22\",[15,3.369]],[\"name/23\",[21,32.495]],[\"parent/23\",[15,3.369]],[\"name/24\",[22,32.495]],[\"parent/24\",[15,3.369]],[\"name/25\",[23,43.481]],[\"parent/25\",[]],[\"name/26\",[18,25.751]],[\"parent/26\",[23,4.068]],[\"name/27\",[19,49.359]],[\"parent/27\",[23,4.068]],[\"name/28\",[20,31.781]],[\"parent/28\",[23,4.068]],[\"name/29\",[24,49.359]],[\"parent/29\",[]],[\"name/30\",[25,31.114]],[\"parent/30\",[24,4.618]],[\"name/31\",[26,36.009]],[\"parent/31\",[]],[\"name/32\",[16,32.495]],[\"parent/32\",[26,3.369]],[\"name/33\",[17,32.495]],[\"parent/33\",[26,3.369]],[\"name/34\",[5,31.781]],[\"parent/34\",[26,3.369]],[\"name/35\",[18,25.751]],[\"parent/35\",[26,3.369]],[\"name/36\",[27,49.359]],[\"parent/36\",[26,3.369]],[\"name/37\",[20,31.781]],[\"parent/37\",[26,3.369]],[\"name/38\",[21,32.495]],[\"parent/38\",[26,3.369]],[\"name/39\",[22,32.495]],[\"parent/39\",[26,3.369]],[\"name/40\",[28,43.481]],[\"parent/40\",[]],[\"name/41\",[18,25.751]],[\"parent/41\",[28,4.068]],[\"name/42\",[27,49.359]],[\"parent/42\",[28,4.068]],[\"name/43\",[20,31.781]],[\"parent/43\",[28,4.068]],[\"name/44\",[29,32.495]],[\"parent/44\",[]],[\"name/45\",[30,49.359]],[\"parent/45\",[29,3.04]],[\"name/46\",[31,49.359]],[\"parent/46\",[29,3.04]],[\"name/47\",[32,49.359]],[\"parent/47\",[29,3.04]],[\"name/48\",[33,49.359]],[\"parent/48\",[29,3.04]],[\"name/49\",[34,49.359]],[\"parent/49\",[29,3.04]],[\"name/50\",[35,49.359]],[\"parent/50\",[29,3.04]],[\"name/51\",[36,49.359]],[\"parent/51\",[29,3.04]],[\"name/52\",[37,54.467]],[\"parent/52\",[29,3.04]],[\"name/53\",[38,54.467]],[\"parent/53\",[29,3.04]],[\"name/54\",[39,54.467]],[\"parent/54\",[29,3.04]],[\"name/55\",[40,54.467]],[\"parent/55\",[29,3.04]],[\"name/56\",[41,54.467]],[\"parent/56\",[29,3.04]],[\"name/57\",[42,27.841]],[\"parent/57\",[]],[\"name/58\",[16,32.495]],[\"parent/58\",[42,2.605]],[\"name/59\",[17,32.495]],[\"parent/59\",[42,2.605]],[\"name/60\",[5,31.781]],[\"parent/60\",[42,2.605]],[\"name/61\",[18,25.751]],[\"parent/61\",[42,2.605]],[\"name/62\",[43,29.9]],[\"parent/62\",[42,2.605]],[\"name/63\",[44,49.359]],[\"parent/63\",[42,2.605]],[\"name/64\",[45,31.114]],[\"parent/64\",[42,2.605]],[\"name/65\",[25,31.114]],[\"parent/65\",[42,2.605]],[\"name/66\",[46,45.994]],[\"parent/66\",[42,2.605]],[\"name/67\",[47,45.994]],[\"parent/67\",[42,2.605]],[\"name/68\",[48,41.475]],[\"parent/68\",[42,2.605]],[\"name/69\",[49,49.359]],[\"parent/69\",[42,2.605]],[\"name/70\",[50,35.008]],[\"parent/70\",[42,2.605]],[\"name/71\",[51,49.359]],[\"parent/71\",[42,2.605]],[\"name/72\",[52,49.359]],[\"parent/72\",[42,2.605]],[\"name/73\",[53,49.359]],[\"parent/73\",[42,2.605]],[\"name/74\",[54,49.359]],[\"parent/74\",[42,2.605]],[\"name/75\",[21,32.495]],[\"parent/75\",[42,2.605]],[\"name/76\",[22,32.495]],[\"parent/76\",[42,2.605]],[\"name/77\",[55,31.114]],[\"parent/77\",[]],[\"name/78\",[18,25.751]],[\"parent/78\",[55,2.911]],[\"name/79\",[43,29.9]],[\"parent/79\",[55,2.911]],[\"name/80\",[44,49.359]],[\"parent/80\",[55,2.911]],[\"name/81\",[45,31.114]],[\"parent/81\",[55,2.911]],[\"name/82\",[25,31.114]],[\"parent/82\",[55,2.911]],[\"name/83\",[46,45.994]],[\"parent/83\",[55,2.911]],[\"name/84\",[47,45.994]],[\"parent/84\",[55,2.911]],[\"name/85\",[48,41.475]],[\"parent/85\",[55,2.911]],[\"name/86\",[49,49.359]],[\"parent/86\",[55,2.911]],[\"name/87\",[50,35.008]],[\"parent/87\",[55,2.911]],[\"name/88\",[51,49.359]],[\"parent/88\",[55,2.911]],[\"name/89\",[52,49.359]],[\"parent/89\",[55,2.911]],[\"name/90\",[53,49.359]],[\"parent/90\",[55,2.911]],[\"name/91\",[54,49.359]],[\"parent/91\",[55,2.911]],[\"name/92\",[56,49.359]],[\"parent/92\",[]],[\"name/93\",[42,27.841]],[\"parent/93\",[56,4.618]],[\"name/94\",[57,49.359]],[\"parent/94\",[]],[\"name/95\",[58,45.994]],[\"parent/95\",[57,4.618]],[\"name/96\",[59,49.359]],[\"parent/96\",[]],[\"name/97\",[60,41.475]],[\"parent/97\",[59,4.618]],[\"name/98\",[61,49.359]],[\"parent/98\",[]],[\"name/99\",[48,41.475]],[\"parent/99\",[61,4.618]],[\"name/100\",[62,49.359]],[\"parent/100\",[]],[\"name/101\",[43,29.9]],[\"parent/101\",[62,4.618]],[\"name/102\",[63,41.475]],[\"parent/102\",[]],[\"name/103\",[43,29.9]],[\"parent/103\",[63,3.88]],[\"name/104\",[45,31.114]],[\"parent/104\",[63,3.88]],[\"name/105\",[25,31.114]],[\"parent/105\",[63,3.88]],[\"name/106\",[64,41.475]],[\"parent/106\",[63,3.88]],[\"name/107\",[65,49.359]],[\"parent/107\",[]],[\"name/108\",[45,31.114]],[\"parent/108\",[65,4.618]],[\"name/109\",[66,43.481]],[\"parent/109\",[]],[\"name/110\",[43,29.9]],[\"parent/110\",[66,4.068]],[\"name/111\",[45,31.114]],[\"parent/111\",[66,4.068]],[\"name/112\",[25,31.114]],[\"parent/112\",[66,4.068]],[\"name/113\",[67,43.481]],[\"parent/113\",[]],[\"name/114\",[43,29.9]],[\"parent/114\",[67,4.068]],[\"name/115\",[45,31.114]],[\"parent/115\",[67,4.068]],[\"name/116\",[25,31.114]],[\"parent/116\",[67,4.068]],[\"name/117\",[68,37.121]],[\"parent/117\",[]],[\"name/118\",[30,49.359]],[\"parent/118\",[68,3.473]],[\"name/119\",[31,49.359]],[\"parent/119\",[68,3.473]],[\"name/120\",[32,49.359]],[\"parent/120\",[68,3.473]],[\"name/121\",[33,49.359]],[\"parent/121\",[68,3.473]],[\"name/122\",[34,49.359]],[\"parent/122\",[68,3.473]],[\"name/123\",[35,49.359]],[\"parent/123\",[68,3.473]],[\"name/124\",[36,49.359]],[\"parent/124\",[68,3.473]],[\"name/125\",[69,39.804]],[\"parent/125\",[]],[\"name/126\",[43,29.9]],[\"parent/126\",[69,3.724]],[\"name/127\",[45,31.114]],[\"parent/127\",[69,3.724]],[\"name/128\",[25,31.114]],[\"parent/128\",[69,3.724]],[\"name/129\",[46,45.994]],[\"parent/129\",[69,3.724]],[\"name/130\",[47,45.994]],[\"parent/130\",[69,3.724]],[\"name/131\",[70,35.008]],[\"parent/131\",[]],[\"name/132\",[16,32.495]],[\"parent/132\",[70,3.275]],[\"name/133\",[17,32.495]],[\"parent/133\",[70,3.275]],[\"name/134\",[5,31.781]],[\"parent/134\",[70,3.275]],[\"name/135\",[18,25.751]],[\"parent/135\",[70,3.275]],[\"name/136\",[71,43.481]],[\"parent/136\",[70,3.275]],[\"name/137\",[25,31.114]],[\"parent/137\",[70,3.275]],[\"name/138\",[20,31.781]],[\"parent/138\",[70,3.275]],[\"name/139\",[21,32.495]],[\"parent/139\",[70,3.275]],[\"name/140\",[22,32.495]],[\"parent/140\",[70,3.275]],[\"name/141\",[72,41.475]],[\"parent/141\",[]],[\"name/142\",[18,25.751]],[\"parent/142\",[72,3.88]],[\"name/143\",[71,43.481]],[\"parent/143\",[72,3.88]],[\"name/144\",[25,31.114]],[\"parent/144\",[72,3.88]],[\"name/145\",[20,31.781]],[\"parent/145\",[72,3.88]],[\"name/146\",[73,36.009]],[\"parent/146\",[]],[\"name/147\",[16,32.495]],[\"parent/147\",[73,3.369]],[\"name/148\",[17,32.495]],[\"parent/148\",[73,3.369]],[\"name/149\",[5,31.781]],[\"parent/149\",[73,3.369]],[\"name/150\",[18,25.751]],[\"parent/150\",[73,3.369]],[\"name/151\",[74,49.359]],[\"parent/151\",[73,3.369]],[\"name/152\",[20,31.781]],[\"parent/152\",[73,3.369]],[\"name/153\",[21,32.495]],[\"parent/153\",[73,3.369]],[\"name/154\",[22,32.495]],[\"parent/154\",[73,3.369]],[\"name/155\",[75,43.481]],[\"parent/155\",[]],[\"name/156\",[18,25.751]],[\"parent/156\",[75,4.068]],[\"name/157\",[74,49.359]],[\"parent/157\",[75,4.068]],[\"name/158\",[20,31.781]],[\"parent/158\",[75,4.068]],[\"name/159\",[76,43.481]],[\"parent/159\",[]],[\"name/160\",[77,45.994]],[\"parent/160\",[76,4.068]],[\"name/161\",[78,45.994]],[\"parent/161\",[76,4.068]],[\"name/162\",[79,45.994]],[\"parent/162\",[76,4.068]],[\"name/163\",[50,35.008]],[\"parent/163\",[]],[\"name/164\",[16,32.495]],[\"parent/164\",[50,3.275]],[\"name/165\",[17,32.495]],[\"parent/165\",[50,3.275]],[\"name/166\",[5,31.781]],[\"parent/166\",[50,3.275]],[\"name/167\",[18,25.751]],[\"parent/167\",[50,3.275]],[\"name/168\",[80,49.359]],[\"parent/168\",[50,3.275]],[\"name/169\",[21,32.495]],[\"parent/169\",[50,3.275]],[\"name/170\",[22,32.495]],[\"parent/170\",[50,3.275]],[\"name/171\",[81,45.994]],[\"parent/171\",[]],[\"name/172\",[18,25.751]],[\"parent/172\",[81,4.303]],[\"name/173\",[80,49.359]],[\"parent/173\",[81,4.303]],[\"name/174\",[82,49.359]],[\"parent/174\",[]],[\"name/175\",[83,45.994]],[\"parent/175\",[82,4.618]],[\"name/176\",[84,36.009]],[\"parent/176\",[]],[\"name/177\",[16,32.495]],[\"parent/177\",[84,3.369]],[\"name/178\",[17,32.495]],[\"parent/178\",[84,3.369]],[\"name/179\",[5,31.781]],[\"parent/179\",[84,3.369]],[\"name/180\",[18,25.751]],[\"parent/180\",[84,3.369]],[\"name/181\",[85,49.359]],[\"parent/181\",[84,3.369]],[\"name/182\",[86,49.359]],[\"parent/182\",[84,3.369]],[\"name/183\",[21,32.495]],[\"parent/183\",[84,3.369]],[\"name/184\",[22,32.495]],[\"parent/184\",[84,3.369]],[\"name/185\",[87,43.481]],[\"parent/185\",[]],[\"name/186\",[18,25.751]],[\"parent/186\",[87,4.068]],[\"name/187\",[85,49.359]],[\"parent/187\",[87,4.068]],[\"name/188\",[86,49.359]],[\"parent/188\",[87,4.068]],[\"name/189\",[88,34.099]],[\"parent/189\",[]],[\"name/190\",[16,32.495]],[\"parent/190\",[88,3.19]],[\"name/191\",[17,32.495]],[\"parent/191\",[88,3.19]],[\"name/192\",[5,31.781]],[\"parent/192\",[88,3.19]],[\"name/193\",[18,25.751]],[\"parent/193\",[88,3.19]],[\"name/194\",[71,43.481]],[\"parent/194\",[88,3.19]],[\"name/195\",[89,49.359]],[\"parent/195\",[88,3.19]],[\"name/196\",[90,49.359]],[\"parent/196\",[88,3.19]],[\"name/197\",[91,49.359]],[\"parent/197\",[88,3.19]],[\"name/198\",[21,32.495]],[\"parent/198\",[88,3.19]],[\"name/199\",[22,32.495]],[\"parent/199\",[88,3.19]],[\"name/200\",[92,39.804]],[\"parent/200\",[]],[\"name/201\",[18,25.751]],[\"parent/201\",[92,3.724]],[\"name/202\",[71,43.481]],[\"parent/202\",[92,3.724]],[\"name/203\",[89,49.359]],[\"parent/203\",[92,3.724]],[\"name/204\",[90,49.359]],[\"parent/204\",[92,3.724]],[\"name/205\",[91,49.359]],[\"parent/205\",[92,3.724]],[\"name/206\",[93,30.488]],[\"parent/206\",[]],[\"name/207\",[16,32.495]],[\"parent/207\",[93,2.852]],[\"name/208\",[17,32.495]],[\"parent/208\",[93,2.852]],[\"name/209\",[5,31.781]],[\"parent/209\",[93,2.852]],[\"name/210\",[18,25.751]],[\"parent/210\",[93,2.852]],[\"name/211\",[43,29.9]],[\"parent/211\",[93,2.852]],[\"name/212\",[45,31.114]],[\"parent/212\",[93,2.852]],[\"name/213\",[25,31.114]],[\"parent/213\",[93,2.852]],[\"name/214\",[64,41.475]],[\"parent/214\",[93,2.852]],[\"name/215\",[60,41.475]],[\"parent/215\",[93,2.852]],[\"name/216\",[20,31.781]],[\"parent/216\",[93,2.852]],[\"name/217\",[94,49.359]],[\"parent/217\",[93,2.852]],[\"name/218\",[95,49.359]],[\"parent/218\",[93,2.852]],[\"name/219\",[96,49.359]],[\"parent/219\",[93,2.852]],[\"name/220\",[21,32.495]],[\"parent/220\",[93,2.852]],[\"name/221\",[22,32.495]],[\"parent/221\",[93,2.852]],[\"name/222\",[97,34.099]],[\"parent/222\",[]],[\"name/223\",[18,25.751]],[\"parent/223\",[97,3.19]],[\"name/224\",[43,29.9]],[\"parent/224\",[97,3.19]],[\"name/225\",[45,31.114]],[\"parent/225\",[97,3.19]],[\"name/226\",[25,31.114]],[\"parent/226\",[97,3.19]],[\"name/227\",[64,41.475]],[\"parent/227\",[97,3.19]],[\"name/228\",[60,41.475]],[\"parent/228\",[97,3.19]],[\"name/229\",[20,31.781]],[\"parent/229\",[97,3.19]],[\"name/230\",[94,49.359]],[\"parent/230\",[97,3.19]],[\"name/231\",[95,49.359]],[\"parent/231\",[97,3.19]],[\"name/232\",[96,49.359]],[\"parent/232\",[97,3.19]],[\"name/233\",[98,33.265]],[\"parent/233\",[]],[\"name/234\",[16,32.495]],[\"parent/234\",[98,3.112]],[\"name/235\",[17,32.495]],[\"parent/235\",[98,3.112]],[\"name/236\",[5,31.781]],[\"parent/236\",[98,3.112]],[\"name/237\",[18,25.751]],[\"parent/237\",[98,3.112]],[\"name/238\",[43,29.9]],[\"parent/238\",[98,3.112]],[\"name/239\",[45,31.114]],[\"parent/239\",[98,3.112]],[\"name/240\",[25,31.114]],[\"parent/240\",[98,3.112]],[\"name/241\",[99,49.359]],[\"parent/241\",[98,3.112]],[\"name/242\",[20,31.781]],[\"parent/242\",[98,3.112]],[\"name/243\",[21,32.495]],[\"parent/243\",[98,3.112]],[\"name/244\",[22,32.495]],[\"parent/244\",[98,3.112]],[\"name/245\",[100,38.373]],[\"parent/245\",[]],[\"name/246\",[18,25.751]],[\"parent/246\",[100,3.59]],[\"name/247\",[43,29.9]],[\"parent/247\",[100,3.59]],[\"name/248\",[45,31.114]],[\"parent/248\",[100,3.59]],[\"name/249\",[25,31.114]],[\"parent/249\",[100,3.59]],[\"name/250\",[99,49.359]],[\"parent/250\",[100,3.59]],[\"name/251\",[20,31.781]],[\"parent/251\",[100,3.59]],[\"name/252\",[101,26.535]],[\"parent/252\",[]],[\"name/253\",[16,32.495]],[\"parent/253\",[101,2.483]],[\"name/254\",[17,32.495]],[\"parent/254\",[101,2.483]],[\"name/255\",[5,31.781]],[\"parent/255\",[101,2.483]],[\"name/256\",[18,25.751]],[\"parent/256\",[101,2.483]],[\"name/257\",[43,29.9]],[\"parent/257\",[101,2.483]],[\"name/258\",[45,31.114]],[\"parent/258\",[101,2.483]],[\"name/259\",[25,31.114]],[\"parent/259\",[101,2.483]],[\"name/260\",[60,41.475]],[\"parent/260\",[101,2.483]],[\"name/261\",[77,45.994]],[\"parent/261\",[101,2.483]],[\"name/262\",[78,45.994]],[\"parent/262\",[101,2.483]],[\"name/263\",[79,45.994]],[\"parent/263\",[101,2.483]],[\"name/264\",[58,45.994]],[\"parent/264\",[101,2.483]],[\"name/265\",[48,41.475]],[\"parent/265\",[101,2.483]],[\"name/266\",[102,49.359]],[\"parent/266\",[101,2.483]],[\"name/267\",[103,49.359]],[\"parent/267\",[101,2.483]],[\"name/268\",[104,49.359]],[\"parent/268\",[101,2.483]],[\"name/269\",[105,49.359]],[\"parent/269\",[101,2.483]],[\"name/270\",[20,31.781]],[\"parent/270\",[101,2.483]],[\"name/271\",[106,49.359]],[\"parent/271\",[101,2.483]],[\"name/272\",[107,49.359]],[\"parent/272\",[101,2.483]],[\"name/273\",[108,49.359]],[\"parent/273\",[101,2.483]],[\"name/274\",[21,32.495]],[\"parent/274\",[101,2.483]],[\"name/275\",[22,32.495]],[\"parent/275\",[101,2.483]],[\"name/276\",[109,34.099]],[\"parent/276\",[]],[\"name/277\",[16,32.495]],[\"parent/277\",[109,3.19]],[\"name/278\",[17,32.495]],[\"parent/278\",[109,3.19]],[\"name/279\",[5,31.781]],[\"parent/279\",[109,3.19]],[\"name/280\",[18,25.751]],[\"parent/280\",[109,3.19]],[\"name/281\",[43,29.9]],[\"parent/281\",[109,3.19]],[\"name/282\",[83,45.994]],[\"parent/282\",[109,3.19]],[\"name/283\",[45,31.114]],[\"parent/283\",[109,3.19]],[\"name/284\",[64,41.475]],[\"parent/284\",[109,3.19]],[\"name/285\",[21,32.495]],[\"parent/285\",[109,3.19]],[\"name/286\",[22,32.495]],[\"parent/286\",[109,3.19]],[\"name/287\",[110,39.804]],[\"parent/287\",[]],[\"name/288\",[18,25.751]],[\"parent/288\",[110,3.724]],[\"name/289\",[43,29.9]],[\"parent/289\",[110,3.724]],[\"name/290\",[83,45.994]],[\"parent/290\",[110,3.724]],[\"name/291\",[45,31.114]],[\"parent/291\",[110,3.724]],[\"name/292\",[64,41.475]],[\"parent/292\",[110,3.724]],[\"name/293\",[111,31.114]],[\"parent/293\",[]],[\"name/294\",[16,32.495]],[\"parent/294\",[111,2.911]],[\"name/295\",[17,32.495]],[\"parent/295\",[111,2.911]],[\"name/296\",[5,31.781]],[\"parent/296\",[111,2.911]],[\"name/297\",[18,25.751]],[\"parent/297\",[111,2.911]],[\"name/298\",[43,29.9]],[\"parent/298\",[111,2.911]],[\"name/299\",[112,49.359]],[\"parent/299\",[111,2.911]],[\"name/300\",[113,49.359]],[\"parent/300\",[111,2.911]],[\"name/301\",[114,49.359]],[\"parent/301\",[111,2.911]],[\"name/302\",[115,49.359]],[\"parent/302\",[111,2.911]],[\"name/303\",[116,49.359]],[\"parent/303\",[111,2.911]],[\"name/304\",[117,49.359]],[\"parent/304\",[111,2.911]],[\"name/305\",[118,49.359]],[\"parent/305\",[111,2.911]],[\"name/306\",[21,32.495]],[\"parent/306\",[111,2.911]],[\"name/307\",[22,32.495]],[\"parent/307\",[111,2.911]],[\"name/308\",[119,35.008]],[\"parent/308\",[]],[\"name/309\",[18,25.751]],[\"parent/309\",[119,3.275]],[\"name/310\",[43,29.9]],[\"parent/310\",[119,3.275]],[\"name/311\",[112,49.359]],[\"parent/311\",[119,3.275]],[\"name/312\",[113,49.359]],[\"parent/312\",[119,3.275]],[\"name/313\",[114,49.359]],[\"parent/313\",[119,3.275]],[\"name/314\",[115,49.359]],[\"parent/314\",[119,3.275]],[\"name/315\",[116,49.359]],[\"parent/315\",[119,3.275]],[\"name/316\",[117,49.359]],[\"parent/316\",[119,3.275]],[\"name/317\",[118,49.359]],[\"parent/317\",[119,3.275]],[\"name/318\",[120,28.818]],[\"parent/318\",[]],[\"name/319\",[18,25.751]],[\"parent/319\",[120,2.696]],[\"name/320\",[43,29.9]],[\"parent/320\",[120,2.696]],[\"name/321\",[45,31.114]],[\"parent/321\",[120,2.696]],[\"name/322\",[25,31.114]],[\"parent/322\",[120,2.696]],[\"name/323\",[60,41.475]],[\"parent/323\",[120,2.696]],[\"name/324\",[77,45.994]],[\"parent/324\",[120,2.696]],[\"name/325\",[78,45.994]],[\"parent/325\",[120,2.696]],[\"name/326\",[79,45.994]],[\"parent/326\",[120,2.696]],[\"name/327\",[58,45.994]],[\"parent/327\",[120,2.696]],[\"name/328\",[48,41.475]],[\"parent/328\",[120,2.696]],[\"name/329\",[102,49.359]],[\"parent/329\",[120,2.696]],[\"name/330\",[103,49.359]],[\"parent/330\",[120,2.696]],[\"name/331\",[104,49.359]],[\"parent/331\",[120,2.696]],[\"name/332\",[105,49.359]],[\"parent/332\",[120,2.696]],[\"name/333\",[20,31.781]],[\"parent/333\",[120,2.696]],[\"name/334\",[106,49.359]],[\"parent/334\",[120,2.696]],[\"name/335\",[107,49.359]],[\"parent/335\",[120,2.696]],[\"name/336\",[108,49.359]],[\"parent/336\",[120,2.696]],[\"name/337\",[121,43.481]],[\"parent/337\",[]],[\"name/338\",[122,54.467]],[\"parent/338\",[121,4.068]],[\"name/339\",[123,54.467]],[\"parent/339\",[121,4.068]],[\"name/340\",[124,54.467]],[\"parent/340\",[121,4.068]],[\"name/341\",[125,49.359]],[\"parent/341\",[]],[\"name/342\",[126,54.467]],[\"parent/342\",[125,4.618]],[\"name/343\",[127,49.359]],[\"parent/343\",[]],[\"name/344\",[128,54.467]],[\"parent/344\",[127,4.618]],[\"name/345\",[129,49.359]],[\"parent/345\",[]],[\"name/346\",[130,54.467]],[\"parent/346\",[129,4.618]]],\"invertedIndex\":[[\"__type\",{\"_index\":4,\"name\":{\"4\":{}},\"parent\":{}}],[\"add_tags\",{\"_index\":112,\"name\":{\"299\":{},\"311\":{}},\"parent\":{}}],[\"any\",{\"_index\":14,\"name\":{\"14\":{},\"15\":{}},\"parent\":{\"15\":{}}}],[\"array\",{\"_index\":126,\"name\":{\"342\":{}},\"parent\":{}}],[\"arrayschema\",{\"_index\":15,\"name\":{\"16\":{}},\"parent\":{\"17\":{},\"18\":{},\"19\":{},\"20\":{},\"21\":{},\"22\":{},\"23\":{},\"24\":{}}}],[\"arrayschemaproperties\",{\"_index\":23,\"name\":{\"25\":{}},\"parent\":{\"26\":{},\"27\":{},\"28\":{}}}],[\"attr\",{\"_index\":17,\"name\":{\"18\":{},\"33\":{},\"59\":{},\"133\":{},\"148\":{},\"165\":{},\"178\":{},\"191\":{},\"208\":{},\"235\":{},\"254\":{},\"278\":{},\"295\":{}},\"parent\":{}}],[\"boolean\",{\"_index\":31,\"name\":{\"46\":{},\"119\":{}},\"parent\":{}}],[\"bullet\",{\"_index\":7,\"name\":{\"7\":{}},\"parent\":{}}],[\"change_datatype\",{\"_index\":113,\"name\":{\"300\":{},\"312\":{}},\"parent\":{}}],[\"changeset_revision\",{\"_index\":89,\"name\":{\"195\":{},\"203\":{}},\"parent\":{}}],[\"children\",{\"_index\":6,\"name\":{\"6\":{}},\"parent\":{}}],[\"class_\",{\"_index\":44,\"name\":{\"63\":{},\"80\":{}},\"parent\":{}}],[\"collection\",{\"_index\":41,\"name\":{\"56\":{}},\"parent\":{}}],[\"collection_type\",{\"_index\":96,\"name\":{\"219\":{},\"232\":{}},\"parent\":{}}],[\"constructor\",{\"_index\":5,\"name\":{\"5\":{},\"19\":{},\"34\":{},\"60\":{},\"134\":{},\"149\":{},\"166\":{},\"179\":{},\"192\":{},\"209\":{},\"236\":{},\"255\":{},\"279\":{},\"296\":{}},\"parent\":{}}],[\"creator\",{\"_index\":52,\"name\":{\"72\":{},\"89\":{}},\"parent\":{}}],[\"data\",{\"_index\":40,\"name\":{\"55\":{}},\"parent\":{}}],[\"default_\",{\"_index\":64,\"name\":{\"106\":{},\"214\":{},\"227\":{},\"284\":{},\"292\":{}},\"parent\":{}}],[\"delete_intermediate_datasets\",{\"_index\":114,\"name\":{\"301\":{},\"313\":{}},\"parent\":{}}],[\"doc\",{\"_index\":25,\"name\":{\"30\":{},\"65\":{},\"82\":{},\"105\":{},\"112\":{},\"116\":{},\"128\":{},\"137\":{},\"144\":{},\"213\":{},\"226\":{},\"240\":{},\"249\":{},\"259\":{},\"322\":{}},\"parent\":{}}],[\"documentedproperties\",{\"_index\":24,\"name\":{\"29\":{}},\"parent\":{\"30\":{}}}],[\"double\",{\"_index\":35,\"name\":{\"50\":{},\"123\":{}},\"parent\":{}}],[\"enum\",{\"_index\":128,\"name\":{\"344\":{}},\"parent\":{}}],[\"enum_d062602be0b4b8fd33e69e29a841317b6ab665bc\",{\"_index\":125,\"name\":{\"341\":{}},\"parent\":{\"342\":{}}}],[\"enum_d961d79c225752b9fadb617367615ab176b47d77\",{\"_index\":127,\"name\":{\"343\":{}},\"parent\":{\"344\":{}}}],[\"enum_d9cba076fca539106791a4f46d198c7fcfbdb779\",{\"_index\":129,\"name\":{\"345\":{}},\"parent\":{\"346\":{}}}],[\"enumschema\",{\"_index\":26,\"name\":{\"31\":{}},\"parent\":{\"32\":{},\"33\":{},\"34\":{},\"35\":{},\"36\":{},\"37\":{},\"38\":{},\"39\":{}}}],[\"enumschemaproperties\",{\"_index\":28,\"name\":{\"40\":{}},\"parent\":{\"41\":{},\"42\":{},\"43\":{}}}],[\"errors\",{\"_index\":58,\"name\":{\"95\":{},\"264\":{},\"327\":{}},\"parent\":{}}],[\"extensionfields\",{\"_index\":18,\"name\":{\"20\":{},\"26\":{},\"35\":{},\"41\":{},\"61\":{},\"78\":{},\"135\":{},\"142\":{},\"150\":{},\"156\":{},\"167\":{},\"172\":{},\"180\":{},\"186\":{},\"193\":{},\"201\":{},\"210\":{},\"223\":{},\"237\":{},\"246\":{},\"256\":{},\"280\":{},\"288\":{},\"297\":{},\"309\":{},\"319\":{}},\"parent\":{}}],[\"fields\",{\"_index\":74,\"name\":{\"151\":{},\"157\":{}},\"parent\":{}}],[\"file\",{\"_index\":39,\"name\":{\"54\":{}},\"parent\":{}}],[\"float\",{\"_index\":34,\"name\":{\"49\":{},\"122\":{}},\"parent\":{}}],[\"format\",{\"_index\":95,\"name\":{\"218\":{},\"231\":{}},\"parent\":{}}],[\"fromdoc\",{\"_index\":16,\"name\":{\"17\":{},\"32\":{},\"58\":{},\"132\":{},\"147\":{},\"164\":{},\"177\":{},\"190\":{},\"207\":{},\"234\":{},\"253\":{},\"277\":{},\"294\":{}},\"parent\":{}}],[\"galaxytype\",{\"_index\":29,\"name\":{\"44\":{}},\"parent\":{\"45\":{},\"46\":{},\"47\":{},\"48\":{},\"49\":{},\"50\":{},\"51\":{},\"52\":{},\"53\":{},\"54\":{},\"55\":{},\"56\":{}}}],[\"galaxyworkflow\",{\"_index\":42,\"name\":{\"57\":{},\"93\":{}},\"parent\":{\"58\":{},\"59\":{},\"60\":{},\"61\":{},\"62\":{},\"63\":{},\"64\":{},\"65\":{},\"66\":{},\"67\":{},\"68\":{},\"69\":{},\"70\":{},\"71\":{},\"72\":{},\"73\":{},\"74\":{},\"75\":{},\"76\":{}}}],[\"galaxyworkflow_class\",{\"_index\":56,\"name\":{\"92\":{}},\"parent\":{\"93\":{}}}],[\"galaxyworkflowproperties\",{\"_index\":55,\"name\":{\"77\":{}},\"parent\":{\"78\":{},\"79\":{},\"80\":{},\"81\":{},\"82\":{},\"83\":{},\"84\":{},\"85\":{},\"86\":{},\"87\":{},\"88\":{},\"89\":{},\"90\":{},\"91\":{}}}],[\"hassteperrorsproperties\",{\"_index\":57,\"name\":{\"94\":{}},\"parent\":{\"95\":{}}}],[\"hassteppositionproperties\",{\"_index\":59,\"name\":{\"96\":{}},\"parent\":{\"97\":{}}}],[\"hasuuidproperties\",{\"_index\":61,\"name\":{\"98\":{}},\"parent\":{\"99\":{}}}],[\"hide\",{\"_index\":115,\"name\":{\"302\":{},\"314\":{}},\"parent\":{}}],[\"id\",{\"_index\":43,\"name\":{\"62\":{},\"79\":{},\"101\":{},\"103\":{},\"110\":{},\"114\":{},\"126\":{},\"211\":{},\"224\":{},\"238\":{},\"247\":{},\"257\":{},\"281\":{},\"289\":{},\"298\":{},\"310\":{},\"320\":{}},\"parent\":{}}],[\"identifiedproperties\",{\"_index\":62,\"name\":{\"100\":{}},\"parent\":{\"101\":{}}}],[\"in_\",{\"_index\":102,\"name\":{\"266\":{},\"329\":{}},\"parent\":{}}],[\"indentperlevel\",{\"_index\":3,\"name\":{\"3\":{}},\"parent\":{}}],[\"inputparameterproperties\",{\"_index\":63,\"name\":{\"102\":{}},\"parent\":{\"103\":{},\"104\":{},\"105\":{},\"106\":{}}}],[\"inputs\",{\"_index\":46,\"name\":{\"66\":{},\"83\":{},\"129\":{}},\"parent\":{}}],[\"int\",{\"_index\":32,\"name\":{\"47\":{},\"120\":{}},\"parent\":{}}],[\"integer\",{\"_index\":37,\"name\":{\"52\":{}},\"parent\":{}}],[\"items\",{\"_index\":19,\"name\":{\"21\":{},\"27\":{}},\"parent\":{}}],[\"label\",{\"_index\":45,\"name\":{\"64\":{},\"81\":{},\"104\":{},\"108\":{},\"111\":{},\"115\":{},\"127\":{},\"212\":{},\"225\":{},\"239\":{},\"248\":{},\"258\":{},\"283\":{},\"291\":{},\"321\":{}},\"parent\":{}}],[\"labeledproperties\",{\"_index\":65,\"name\":{\"107\":{}},\"parent\":{\"108\":{}}}],[\"left\",{\"_index\":86,\"name\":{\"182\":{},\"188\":{}},\"parent\":{}}],[\"license\",{\"_index\":53,\"name\":{\"73\":{},\"90\":{}},\"parent\":{}}],[\"loaddocument\",{\"_index\":0,\"name\":{\"0\":{}},\"parent\":{}}],[\"loaddocumentbystring\",{\"_index\":1,\"name\":{\"1\":{}},\"parent\":{}}],[\"loadingoptions\",{\"_index\":22,\"name\":{\"24\":{},\"39\":{},\"76\":{},\"140\":{},\"154\":{},\"170\":{},\"184\":{},\"199\":{},\"221\":{},\"244\":{},\"275\":{},\"286\":{},\"307\":{}},\"parent\":{}}],[\"long\",{\"_index\":33,\"name\":{\"48\":{},\"121\":{}},\"parent\":{}}],[\"markdown\",{\"_index\":80,\"name\":{\"168\":{},\"173\":{}},\"parent\":{}}],[\"name\",{\"_index\":71,\"name\":{\"136\":{},\"143\":{},\"194\":{},\"202\":{}},\"parent\":{}}],[\"null\",{\"_index\":30,\"name\":{\"45\":{},\"118\":{}},\"parent\":{}}],[\"optional\",{\"_index\":94,\"name\":{\"217\":{},\"230\":{}},\"parent\":{}}],[\"out\",{\"_index\":103,\"name\":{\"267\":{},\"330\":{}},\"parent\":{}}],[\"outputparameterproperties\",{\"_index\":66,\"name\":{\"109\":{}},\"parent\":{\"110\":{},\"111\":{},\"112\":{}}}],[\"outputs\",{\"_index\":47,\"name\":{\"67\":{},\"84\":{},\"130\":{}},\"parent\":{}}],[\"outputsource\",{\"_index\":99,\"name\":{\"241\":{},\"250\":{}},\"parent\":{}}],[\"owner\",{\"_index\":90,\"name\":{\"196\":{},\"204\":{}},\"parent\":{}}],[\"parameterproperties\",{\"_index\":67,\"name\":{\"113\":{}},\"parent\":{\"114\":{},\"115\":{},\"116\":{}}}],[\"pause\",{\"_index\":124,\"name\":{\"340\":{}},\"parent\":{}}],[\"position\",{\"_index\":60,\"name\":{\"97\":{},\"215\":{},\"228\":{},\"260\":{},\"323\":{}},\"parent\":{}}],[\"prettystr\",{\"_index\":11,\"name\":{\"11\":{}},\"parent\":{}}],[\"primitivetype\",{\"_index\":68,\"name\":{\"117\":{}},\"parent\":{\"118\":{},\"119\":{},\"120\":{},\"121\":{},\"122\":{},\"123\":{},\"124\":{}}}],[\"processproperties\",{\"_index\":69,\"name\":{\"125\":{}},\"parent\":{\"126\":{},\"127\":{},\"128\":{},\"129\":{},\"130\":{}}}],[\"record\",{\"_index\":130,\"name\":{\"346\":{}},\"parent\":{}}],[\"recordfield\",{\"_index\":70,\"name\":{\"131\":{}},\"parent\":{\"132\":{},\"133\":{},\"134\":{},\"135\":{},\"136\":{},\"137\":{},\"138\":{},\"139\":{},\"140\":{}}}],[\"recordfieldproperties\",{\"_index\":72,\"name\":{\"141\":{}},\"parent\":{\"142\":{},\"143\":{},\"144\":{},\"145\":{}}}],[\"recordschema\",{\"_index\":73,\"name\":{\"146\":{}},\"parent\":{\"147\":{},\"148\":{},\"149\":{},\"150\":{},\"151\":{},\"152\":{},\"153\":{},\"154\":{}}}],[\"recordschemaproperties\",{\"_index\":75,\"name\":{\"155\":{}},\"parent\":{\"156\":{},\"157\":{},\"158\":{}}}],[\"referencestoolproperties\",{\"_index\":76,\"name\":{\"159\":{}},\"parent\":{\"160\":{},\"161\":{},\"162\":{}}}],[\"release\",{\"_index\":54,\"name\":{\"74\":{},\"91\":{}},\"parent\":{}}],[\"remove_tags\",{\"_index\":116,\"name\":{\"303\":{},\"315\":{}},\"parent\":{}}],[\"rename\",{\"_index\":117,\"name\":{\"304\":{},\"316\":{}},\"parent\":{}}],[\"report\",{\"_index\":50,\"name\":{\"70\":{},\"87\":{},\"163\":{}},\"parent\":{\"164\":{},\"165\":{},\"166\":{},\"167\":{},\"168\":{},\"169\":{},\"170\":{}}}],[\"reportproperties\",{\"_index\":81,\"name\":{\"171\":{}},\"parent\":{\"172\":{},\"173\":{}}}],[\"run\",{\"_index\":106,\"name\":{\"271\":{},\"334\":{}},\"parent\":{}}],[\"runtime_inputs\",{\"_index\":107,\"name\":{\"272\":{},\"335\":{}},\"parent\":{}}],[\"save\",{\"_index\":21,\"name\":{\"23\":{},\"38\":{},\"75\":{},\"139\":{},\"153\":{},\"169\":{},\"183\":{},\"198\":{},\"220\":{},\"243\":{},\"274\":{},\"285\":{},\"306\":{}},\"parent\":{}}],[\"set_columns\",{\"_index\":118,\"name\":{\"305\":{},\"317\":{}},\"parent\":{}}],[\"shortname\",{\"_index\":13,\"name\":{\"13\":{}},\"parent\":{}}],[\"simplify\",{\"_index\":9,\"name\":{\"9\":{}},\"parent\":{}}],[\"sinkproperties\",{\"_index\":82,\"name\":{\"174\":{}},\"parent\":{\"175\":{}}}],[\"source\",{\"_index\":83,\"name\":{\"175\":{},\"282\":{},\"290\":{}},\"parent\":{}}],[\"state\",{\"_index\":104,\"name\":{\"268\":{},\"331\":{}},\"parent\":{}}],[\"stepposition\",{\"_index\":84,\"name\":{\"176\":{}},\"parent\":{\"177\":{},\"178\":{},\"179\":{},\"180\":{},\"181\":{},\"182\":{},\"183\":{},\"184\":{}}}],[\"steppositionproperties\",{\"_index\":87,\"name\":{\"185\":{}},\"parent\":{\"186\":{},\"187\":{},\"188\":{}}}],[\"steps\",{\"_index\":49,\"name\":{\"69\":{},\"86\":{}},\"parent\":{}}],[\"string\",{\"_index\":36,\"name\":{\"51\":{},\"124\":{}},\"parent\":{}}],[\"subworkflow\",{\"_index\":123,\"name\":{\"339\":{}},\"parent\":{}}],[\"summary\",{\"_index\":10,\"name\":{\"10\":{}},\"parent\":{}}],[\"symbols\",{\"_index\":27,\"name\":{\"36\":{},\"42\":{}},\"parent\":{}}],[\"tags\",{\"_index\":51,\"name\":{\"71\":{},\"88\":{}},\"parent\":{}}],[\"text\",{\"_index\":38,\"name\":{\"53\":{}},\"parent\":{}}],[\"tool\",{\"_index\":122,\"name\":{\"338\":{}},\"parent\":{}}],[\"tool_id\",{\"_index\":77,\"name\":{\"160\":{},\"261\":{},\"324\":{}},\"parent\":{}}],[\"tool_shed\",{\"_index\":91,\"name\":{\"197\":{},\"205\":{}},\"parent\":{}}],[\"tool_shed_repository\",{\"_index\":78,\"name\":{\"161\":{},\"262\":{},\"325\":{}},\"parent\":{}}],[\"tool_state\",{\"_index\":105,\"name\":{\"269\":{},\"332\":{}},\"parent\":{}}],[\"tool_version\",{\"_index\":79,\"name\":{\"162\":{},\"263\":{},\"326\":{}},\"parent\":{}}],[\"toolshedrepository\",{\"_index\":88,\"name\":{\"189\":{}},\"parent\":{\"190\":{},\"191\":{},\"192\":{},\"193\":{},\"194\":{},\"195\":{},\"196\":{},\"197\":{},\"198\":{},\"199\":{}}}],[\"toolshedrepositoryproperties\",{\"_index\":92,\"name\":{\"200\":{}},\"parent\":{\"201\":{},\"202\":{},\"203\":{},\"204\":{},\"205\":{}}}],[\"top\",{\"_index\":85,\"name\":{\"181\":{},\"187\":{}},\"parent\":{}}],[\"tostring\",{\"_index\":12,\"name\":{\"12\":{}},\"parent\":{}}],[\"type\",{\"_index\":20,\"name\":{\"22\":{},\"28\":{},\"37\":{},\"43\":{},\"138\":{},\"145\":{},\"152\":{},\"158\":{},\"216\":{},\"229\":{},\"242\":{},\"251\":{},\"270\":{},\"333\":{}},\"parent\":{}}],[\"uuid\",{\"_index\":48,\"name\":{\"68\":{},\"85\":{},\"99\":{},\"265\":{},\"328\":{}},\"parent\":{}}],[\"validationexception\",{\"_index\":2,\"name\":{\"2\":{}},\"parent\":{\"3\":{},\"4\":{},\"5\":{},\"6\":{},\"7\":{},\"8\":{},\"9\":{},\"10\":{},\"11\":{},\"12\":{}}}],[\"when\",{\"_index\":108,\"name\":{\"273\":{},\"336\":{}},\"parent\":{}}],[\"withbullet\",{\"_index\":8,\"name\":{\"8\":{}},\"parent\":{}}],[\"workflowinputparameter\",{\"_index\":93,\"name\":{\"206\":{}},\"parent\":{\"207\":{},\"208\":{},\"209\":{},\"210\":{},\"211\":{},\"212\":{},\"213\":{},\"214\":{},\"215\":{},\"216\":{},\"217\":{},\"218\":{},\"219\":{},\"220\":{},\"221\":{}}}],[\"workflowinputparameterproperties\",{\"_index\":97,\"name\":{\"222\":{}},\"parent\":{\"223\":{},\"224\":{},\"225\":{},\"226\":{},\"227\":{},\"228\":{},\"229\":{},\"230\":{},\"231\":{},\"232\":{}}}],[\"workflowoutputparameter\",{\"_index\":98,\"name\":{\"233\":{}},\"parent\":{\"234\":{},\"235\":{},\"236\":{},\"237\":{},\"238\":{},\"239\":{},\"240\":{},\"241\":{},\"242\":{},\"243\":{},\"244\":{}}}],[\"workflowoutputparameterproperties\",{\"_index\":100,\"name\":{\"245\":{}},\"parent\":{\"246\":{},\"247\":{},\"248\":{},\"249\":{},\"250\":{},\"251\":{}}}],[\"workflowstep\",{\"_index\":101,\"name\":{\"252\":{}},\"parent\":{\"253\":{},\"254\":{},\"255\":{},\"256\":{},\"257\":{},\"258\":{},\"259\":{},\"260\":{},\"261\":{},\"262\":{},\"263\":{},\"264\":{},\"265\":{},\"266\":{},\"267\":{},\"268\":{},\"269\":{},\"270\":{},\"271\":{},\"272\":{},\"273\":{},\"274\":{},\"275\":{}}}],[\"workflowstepinput\",{\"_index\":109,\"name\":{\"276\":{}},\"parent\":{\"277\":{},\"278\":{},\"279\":{},\"280\":{},\"281\":{},\"282\":{},\"283\":{},\"284\":{},\"285\":{},\"286\":{}}}],[\"workflowstepinputproperties\",{\"_index\":110,\"name\":{\"287\":{}},\"parent\":{\"288\":{},\"289\":{},\"290\":{},\"291\":{},\"292\":{}}}],[\"workflowstepoutput\",{\"_index\":111,\"name\":{\"293\":{}},\"parent\":{\"294\":{},\"295\":{},\"296\":{},\"297\":{},\"298\":{},\"299\":{},\"300\":{},\"301\":{},\"302\":{},\"303\":{},\"304\":{},\"305\":{},\"306\":{},\"307\":{}}}],[\"workflowstepoutputproperties\",{\"_index\":119,\"name\":{\"308\":{}},\"parent\":{\"309\":{},\"310\":{},\"311\":{},\"312\":{},\"313\":{},\"314\":{},\"315\":{},\"316\":{},\"317\":{}}}],[\"workflowstepproperties\",{\"_index\":120,\"name\":{\"318\":{}},\"parent\":{\"319\":{},\"320\":{},\"321\":{},\"322\":{},\"323\":{},\"324\":{},\"325\":{},\"326\":{},\"327\":{},\"328\":{},\"329\":{},\"330\":{},\"331\":{},\"332\":{},\"333\":{},\"334\":{},\"335\":{},\"336\":{}}}],[\"workflowsteptype\",{\"_index\":121,\"name\":{\"337\":{}},\"parent\":{\"338\":{},\"339\":{},\"340\":{}}}]],\"pipeline\":[]}}"); \ No newline at end of file diff --git a/typescript/docs/classes/ArraySchema.html b/typescript/docs/classes/ArraySchema.html index b17fcad..5fb71c6 100644 --- a/typescript/docs/classes/ArraySchema.html +++ b/typescript/docs/classes/ArraySchema.html @@ -1,10 +1,10 @@ ArraySchema | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09ArraySchemaClass ArraySchema Auto-generated class implementation for https://w3id.org/cwl/salad#ArraySchema -HierarchySaveableArraySchemaImplementsArraySchemaPropertiesIndexConstructorsconstructorPropertiesextensionFieldsitemsloadingOptionstypeattrMethodssavefromDocConstructorsconstructornew ArraySchema(__namedParameters: { loadingOptions?: LoadingOptions } & ArraySchemaProperties): ArraySchemaParameters__namedParameters: { loadingOptions?: LoadingOptions } & ArraySchemaPropertiesReturns ArraySchemaPropertiesOptional extensionFieldsextensionFields?: Dictionary<any>itemsitems: string | ArraySchema | RecordSchema | EnumSchema | (string | ArraySchema | RecordSchema | EnumSchema)[] +HierarchySaveableArraySchemaImplementsArraySchemaPropertiesIndexConstructorsconstructorPropertiesextensionFieldsitemsloadingOptionstypeattrMethodssavefromDocConstructorsconstructornew ArraySchema(__namedParameters: { loadingOptions?: LoadingOptions } & ArraySchemaProperties): ArraySchemaParameters__namedParameters: { loadingOptions?: LoadingOptions } & ArraySchemaPropertiesReturns ArraySchemaPropertiesOptional extensionFieldsextensionFields?: Dictionary<any>itemsitems: string | ArraySchema | RecordSchema | EnumSchema | (string | ArraySchema | RecordSchema | EnumSchema)[] Defines the type of the array elements. -loadingOptionsloadingOptions: LoadingOptionstypetype: ARRAY +loadingOptionsloadingOptions: LoadingOptionstypetype: ARRAY Must be array -Static attrattr: Set<string> = ...Methodssavesave(top?: boolean, baseUrl?: string, relativeUris?: boolean): Dictionary<any>Parameterstop: boolean = falsebaseUrl: string = ''relativeUris: boolean = trueReturns Dictionary<any>Static fromDocfromDoc(__doc: any, baseuri: string, loadingOptions: LoadingOptions, docRoot?: string): Promise<Saveable> +Static attrattr: Set<string> = ...Methodssavesave(top?: boolean, baseUrl?: string, relativeUris?: boolean): Dictionary<any>Parameterstop: boolean = falsebaseUrl: string = ''relativeUris: boolean = trueReturns Dictionary<any>Static fromDocfromDoc(__doc: any, baseuri: string, loadingOptions: LoadingOptions, docRoot?: string): Promise<Saveable> Used to construct instances of . throwsValidationException If the document fragment is not a {@link Dictionary} or validation of fields fails. diff --git a/typescript/docs/classes/EnumSchema.html b/typescript/docs/classes/EnumSchema.html index 390e90a..5f5b97a 100644 --- a/typescript/docs/classes/EnumSchema.html +++ b/typescript/docs/classes/EnumSchema.html @@ -1,11 +1,11 @@ EnumSchema | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09EnumSchemaClass EnumSchema Auto-generated class implementation for https://w3id.org/cwl/salad#EnumSchema Define an enumerated type. -HierarchySaveableEnumSchemaImplementsEnumSchemaPropertiesIndexConstructorsconstructorPropertiesextensionFieldsloadingOptionssymbolstypeattrMethodssavefromDocConstructorsconstructornew EnumSchema(__namedParameters: { loadingOptions?: LoadingOptions } & EnumSchemaProperties): EnumSchemaParameters__namedParameters: { loadingOptions?: LoadingOptions } & EnumSchemaPropertiesReturns EnumSchemaPropertiesOptional extensionFieldsextensionFields?: Dictionary<any>loadingOptionsloadingOptions: LoadingOptionssymbolssymbols: string[] +HierarchySaveableEnumSchemaImplementsEnumSchemaPropertiesIndexConstructorsconstructorPropertiesextensionFieldsloadingOptionssymbolstypeattrMethodssavefromDocConstructorsconstructornew EnumSchema(__namedParameters: { loadingOptions?: LoadingOptions } & EnumSchemaProperties): EnumSchemaParameters__namedParameters: { loadingOptions?: LoadingOptions } & EnumSchemaPropertiesReturns EnumSchemaPropertiesOptional extensionFieldsextensionFields?: Dictionary<any>loadingOptionsloadingOptions: LoadingOptionssymbolssymbols: string[] Defines the set of valid symbols. -typetype: ENUM +typetype: ENUM Must be enum -Static attrattr: Set<string> = ...Methodssavesave(top?: boolean, baseUrl?: string, relativeUris?: boolean): Dictionary<any>Parameterstop: boolean = falsebaseUrl: string = ''relativeUris: boolean = trueReturns Dictionary<any>Static fromDocfromDoc(__doc: any, baseuri: string, loadingOptions: LoadingOptions, docRoot?: string): Promise<Saveable> +Static attrattr: Set<string> = ...Methodssavesave(top?: boolean, baseUrl?: string, relativeUris?: boolean): Dictionary<any>Parameterstop: boolean = falsebaseUrl: string = ''relativeUris: boolean = trueReturns Dictionary<any>Static fromDocfromDoc(__doc: any, baseuri: string, loadingOptions: LoadingOptions, docRoot?: string): Promise<Saveable> Used to construct instances of . throwsValidationException If the document fragment is not a {@link Dictionary} or validation of fields fails. diff --git a/typescript/docs/classes/GalaxyWorkflow.html b/typescript/docs/classes/GalaxyWorkflow.html index 47f61d1..be1f7d6 100644 --- a/typescript/docs/classes/GalaxyWorkflow.html +++ b/typescript/docs/classes/GalaxyWorkflow.html @@ -12,13 +12,13 @@ A note about label field. users will primarily identify the workflow using. Legacy support - this may also be called 'name' and Galaxy will consume the workflow document fine and treat this attribute correctly - however in order to validate against this workflow definition schema the attribute should be called label. -HierarchySaveableGalaxyWorkflowImplementsGalaxyWorkflowPropertiesIndexConstructorsconstructorPropertiesclass_creatordocextensionFieldsidinputslabellicenseloadingOptionsoutputsreleasereportstepstagsuuidattrMethodssavefromDocConstructorsconstructornew GalaxyWorkflow(__namedParameters: { loadingOptions?: LoadingOptions } & GalaxyWorkflowProperties): GalaxyWorkflowParameters__namedParameters: { loadingOptions?: LoadingOptions } & GalaxyWorkflowPropertiesReturns GalaxyWorkflowPropertiesclass_class_: stringOptional creatorcreator?: any +HierarchySaveableGalaxyWorkflowImplementsGalaxyWorkflowPropertiesIndexConstructorsconstructorPropertiesclass_creatordocextensionFieldsidinputslabellicenseloadingOptionsoutputsreleasereportstepstagsuuidattrMethodssavefromDocConstructorsconstructornew GalaxyWorkflow(__namedParameters: { loadingOptions?: LoadingOptions } & GalaxyWorkflowProperties): GalaxyWorkflowParameters__namedParameters: { loadingOptions?: LoadingOptions } & GalaxyWorkflowPropertiesReturns GalaxyWorkflowPropertiesclass_class_: GALAXYWORKFLOWOptional creatorcreator?: any Can be a schema.org Person (https://schema.org/Person) or Organization (https://schema.org/Organization) entity -Optional docdoc?: string | string[] +Optional docdoc?: string | string[] A documentation string for this object, or an array of strings which should be concatenated. -Optional extensionFieldsextensionFields?: Dictionary<any>Optional idid?: string +Optional extensionFieldsextensionFields?: Dictionary<any>Optional idid?: string The unique identifier for this object. -inputsinputs: WorkflowInputParameter[] +inputsinputs: WorkflowInputParameter[] Defines the input parameters of the process. The process is ready to run when all required input parameters are associated with concrete values. Input parameters include a schema for each parameter which is @@ -29,25 +29,25 @@ A note about label field. assigned a value of null (or the value of default for that parameter, if provided) for the purposes of validation and evaluation of expressions. -Optional labellabel?: string +Optional labellabel?: string A short, human-readable label of this object. -Optional licenselicense?: string +Optional licenselicense?: string Must be a valid license listed at https://spdx.org/licenses/ -loadingOptionsloadingOptions: LoadingOptionsoutputsoutputs: WorkflowOutputParameter[] +loadingOptionsloadingOptions: LoadingOptionsoutputsoutputs: WorkflowOutputParameter[] Defines the parameters representing the output of the process. May be used to generate and/or validate the output object. -Optional releaserelease?: string +Optional releaserelease?: string If listed should correspond to the release of the workflow in its source reposiory. -Optional reportreport?: Report +Optional reportreport?: Report Workflow invocation report template. -stepssteps: WorkflowStep[] +stepssteps: WorkflowStep[] The individual steps that make up the workflow. Each step is executed when all of its input data links are fulfilled. -Optional tagstags?: string[] +Optional tagstags?: string[] Tags for the workflow. -Optional uuiduuid?: string +Optional uuiduuid?: string UUID uniquely representing this element. -Static attrattr: Set<string> = ...Methodssavesave(top?: boolean, baseUrl?: string, relativeUris?: boolean): Dictionary<any>Parameterstop: boolean = falsebaseUrl: string = ''relativeUris: boolean = trueReturns Dictionary<any>Static fromDocfromDoc(__doc: any, baseuri: string, loadingOptions: LoadingOptions, docRoot?: string): Promise<Saveable> +Static attrattr: Set<string> = ...Methodssavesave(top?: boolean, baseUrl?: string, relativeUris?: boolean): Dictionary<any>Parameterstop: boolean = falsebaseUrl: string = ''relativeUris: boolean = trueReturns Dictionary<any>Static fromDocfromDoc(__doc: any, baseuri: string, loadingOptions: LoadingOptions, docRoot?: string): Promise<Saveable> Used to construct instances of . throwsValidationException If the document fragment is not a {@link Dictionary} or validation of fields fails. diff --git a/typescript/docs/classes/RecordField.html b/typescript/docs/classes/RecordField.html index 86c9dcf..dfc8d6f 100644 --- a/typescript/docs/classes/RecordField.html +++ b/typescript/docs/classes/RecordField.html @@ -1,13 +1,13 @@ RecordField | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09RecordFieldClass RecordField Auto-generated class implementation for https://w3id.org/cwl/salad#RecordField A field of a record. -HierarchySaveableRecordFieldImplementsRecordFieldPropertiesIndexConstructorsconstructorPropertiesdocextensionFieldsloadingOptionsnametypeattrMethodssavefromDocConstructorsconstructornew RecordField(__namedParameters: { loadingOptions?: LoadingOptions } & RecordFieldProperties): RecordFieldParameters__namedParameters: { loadingOptions?: LoadingOptions } & RecordFieldPropertiesReturns RecordFieldPropertiesOptional docdoc?: string | string[] +HierarchySaveableRecordFieldImplementsRecordFieldPropertiesIndexConstructorsconstructorPropertiesdocextensionFieldsloadingOptionsnametypeattrMethodssavefromDocConstructorsconstructornew RecordField(__namedParameters: { loadingOptions?: LoadingOptions } & RecordFieldProperties): RecordFieldParameters__namedParameters: { loadingOptions?: LoadingOptions } & RecordFieldPropertiesReturns RecordFieldPropertiesOptional docdoc?: string | string[] A documentation string for this object, or an array of strings which should be concatenated. -Optional extensionFieldsextensionFields?: Dictionary<any>loadingOptionsloadingOptions: LoadingOptionsnamename: string +Optional extensionFieldsextensionFields?: Dictionary<any>loadingOptionsloadingOptions: LoadingOptionsnamename: string The name of the field -typetype: string | ArraySchema | RecordSchema | EnumSchema | (string | ArraySchema | RecordSchema | EnumSchema)[] +typetype: string | ArraySchema | RecordSchema | EnumSchema | (string | ArraySchema | RecordSchema | EnumSchema)[] The field type -Static attrattr: Set<string> = ...Methodssavesave(top?: boolean, baseUrl?: string, relativeUris?: boolean): Dictionary<any>Parameterstop: boolean = falsebaseUrl: string = ''relativeUris: boolean = trueReturns Dictionary<any>Static fromDocfromDoc(__doc: any, baseuri: string, loadingOptions: LoadingOptions, docRoot?: string): Promise<Saveable> +Static attrattr: Set<string> = ...Methodssavesave(top?: boolean, baseUrl?: string, relativeUris?: boolean): Dictionary<any>Parameterstop: boolean = falsebaseUrl: string = ''relativeUris: boolean = trueReturns Dictionary<any>Static fromDocfromDoc(__doc: any, baseuri: string, loadingOptions: LoadingOptions, docRoot?: string): Promise<Saveable> Used to construct instances of . throwsValidationException If the document fragment is not a {@link Dictionary} or validation of fields fails. diff --git a/typescript/docs/classes/RecordSchema.html b/typescript/docs/classes/RecordSchema.html index 78b3983..9eb1384 100644 --- a/typescript/docs/classes/RecordSchema.html +++ b/typescript/docs/classes/RecordSchema.html @@ -1,10 +1,10 @@ RecordSchema | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09RecordSchemaClass RecordSchema Auto-generated class implementation for https://w3id.org/cwl/salad#RecordSchema -HierarchySaveableRecordSchemaImplementsRecordSchemaPropertiesIndexConstructorsconstructorPropertiesextensionFieldsfieldsloadingOptionstypeattrMethodssavefromDocConstructorsconstructornew RecordSchema(__namedParameters: { loadingOptions?: LoadingOptions } & RecordSchemaProperties): RecordSchemaParameters__namedParameters: { loadingOptions?: LoadingOptions } & RecordSchemaPropertiesReturns RecordSchemaPropertiesOptional extensionFieldsextensionFields?: Dictionary<any>Optional fieldsfields?: RecordField[] +HierarchySaveableRecordSchemaImplementsRecordSchemaPropertiesIndexConstructorsconstructorPropertiesextensionFieldsfieldsloadingOptionstypeattrMethodssavefromDocConstructorsconstructornew RecordSchema(__namedParameters: { loadingOptions?: LoadingOptions } & RecordSchemaProperties): RecordSchemaParameters__namedParameters: { loadingOptions?: LoadingOptions } & RecordSchemaPropertiesReturns RecordSchemaPropertiesOptional extensionFieldsextensionFields?: Dictionary<any>Optional fieldsfields?: RecordField[] Defines the fields of the record. -loadingOptionsloadingOptions: LoadingOptionstypetype: RECORD +loadingOptionsloadingOptions: LoadingOptionstypetype: RECORD Must be record -Static attrattr: Set<string> = ...Methodssavesave(top?: boolean, baseUrl?: string, relativeUris?: boolean): Dictionary<any>Parameterstop: boolean = falsebaseUrl: string = ''relativeUris: boolean = trueReturns Dictionary<any>Static fromDocfromDoc(__doc: any, baseuri: string, loadingOptions: LoadingOptions, docRoot?: string): Promise<Saveable> +Static attrattr: Set<string> = ...Methodssavesave(top?: boolean, baseUrl?: string, relativeUris?: boolean): Dictionary<any>Parameterstop: boolean = falsebaseUrl: string = ''relativeUris: boolean = trueReturns Dictionary<any>Static fromDocfromDoc(__doc: any, baseuri: string, loadingOptions: LoadingOptions, docRoot?: string): Promise<Saveable> Used to construct instances of . throwsValidationException If the document fragment is not a {@link Dictionary} or validation of fields fails. diff --git a/typescript/docs/classes/Report.html b/typescript/docs/classes/Report.html index 13e7188..96cb48a 100644 --- a/typescript/docs/classes/Report.html +++ b/typescript/docs/classes/Report.html @@ -2,9 +2,9 @@ Auto-generated class implementation for https://galaxyproject.org/gxformat2/v19_09#Report Definition of an invocation report for this workflow. Currently the only field is 'markdown'. -HierarchySaveableReportImplementsReportPropertiesIndexConstructorsconstructorPropertiesextensionFieldsloadingOptionsmarkdownattrMethodssavefromDocConstructorsconstructornew Report(__namedParameters: { loadingOptions?: LoadingOptions } & ReportProperties): ReportParameters__namedParameters: { loadingOptions?: LoadingOptions } & ReportPropertiesReturns ReportPropertiesOptional extensionFieldsextensionFields?: Dictionary<any>loadingOptionsloadingOptions: LoadingOptionsmarkdownmarkdown: string +HierarchySaveableReportImplementsReportPropertiesIndexConstructorsconstructorPropertiesextensionFieldsloadingOptionsmarkdownattrMethodssavefromDocConstructorsconstructornew Report(__namedParameters: { loadingOptions?: LoadingOptions } & ReportProperties): ReportParameters__namedParameters: { loadingOptions?: LoadingOptions } & ReportPropertiesReturns ReportPropertiesOptional extensionFieldsextensionFields?: Dictionary<any>loadingOptionsloadingOptions: LoadingOptionsmarkdownmarkdown: string Galaxy flavored Markdown to define an invocation report. -Static attrattr: Set<string> = ...Methodssavesave(top?: boolean, baseUrl?: string, relativeUris?: boolean): Dictionary<any>Parameterstop: boolean = falsebaseUrl: string = ''relativeUris: boolean = trueReturns Dictionary<any>Static fromDocfromDoc(__doc: any, baseuri: string, loadingOptions: LoadingOptions, docRoot?: string): Promise<Saveable> +Static attrattr: Set<string> = ...Methodssavesave(top?: boolean, baseUrl?: string, relativeUris?: boolean): Dictionary<any>Parameterstop: boolean = falsebaseUrl: string = ''relativeUris: boolean = trueReturns Dictionary<any>Static fromDocfromDoc(__doc: any, baseuri: string, loadingOptions: LoadingOptions, docRoot?: string): Promise<Saveable> Used to construct instances of . throwsValidationException If the document fragment is not a {@link Dictionary} or validation of fields fails. diff --git a/typescript/docs/classes/StepPosition.html b/typescript/docs/classes/StepPosition.html index 94abb3c..903322f 100644 --- a/typescript/docs/classes/StepPosition.html +++ b/typescript/docs/classes/StepPosition.html @@ -1,11 +1,11 @@ StepPosition | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09StepPositionClass StepPosition Auto-generated class implementation for https://galaxyproject.org/gxformat2/gxformat2common#StepPosition This field specifies the location of the step's node when rendered in the workflow editor. -HierarchySaveableStepPositionImplementsStepPositionPropertiesIndexConstructorsconstructorPropertiesextensionFieldsleftloadingOptionstopattrMethodssavefromDocConstructorsconstructornew StepPosition(__namedParameters: { loadingOptions?: LoadingOptions } & StepPositionProperties): StepPositionParameters__namedParameters: { loadingOptions?: LoadingOptions } & StepPositionPropertiesReturns StepPositionPropertiesOptional extensionFieldsextensionFields?: Dictionary<any>leftleft: number +HierarchySaveableStepPositionImplementsStepPositionPropertiesIndexConstructorsconstructorPropertiesextensionFieldsleftloadingOptionstopattrMethodssavefromDocConstructorsconstructornew StepPosition(__namedParameters: { loadingOptions?: LoadingOptions } & StepPositionProperties): StepPositionParameters__namedParameters: { loadingOptions?: LoadingOptions } & StepPositionPropertiesReturns StepPositionPropertiesOptional extensionFieldsextensionFields?: Dictionary<any>leftleft: number Relative horizontal position of the step's node when rendered in the workflow editor. -loadingOptionsloadingOptions: LoadingOptionstoptop: number +loadingOptionsloadingOptions: LoadingOptionstoptop: number Relative vertical position of the step's node when rendered in the workflow editor. -Static attrattr: Set<string> = ...Methodssavesave(top?: boolean, baseUrl?: string, relativeUris?: boolean): Dictionary<any>Parameterstop: boolean = falsebaseUrl: string = ''relativeUris: boolean = trueReturns Dictionary<any>Static fromDocfromDoc(__doc: any, baseuri: string, loadingOptions: LoadingOptions, docRoot?: string): Promise<Saveable> +Static attrattr: Set<string> = ...Methodssavesave(top?: boolean, baseUrl?: string, relativeUris?: boolean): Dictionary<any>Parameterstop: boolean = falsebaseUrl: string = ''relativeUris: boolean = trueReturns Dictionary<any>Static fromDocfromDoc(__doc: any, baseuri: string, loadingOptions: LoadingOptions, docRoot?: string): Promise<Saveable> Used to construct instances of . throwsValidationException If the document fragment is not a {@link Dictionary} or validation of fields fails. diff --git a/typescript/docs/classes/ToolShedRepository.html b/typescript/docs/classes/ToolShedRepository.html index a28429c..4158304 100644 --- a/typescript/docs/classes/ToolShedRepository.html +++ b/typescript/docs/classes/ToolShedRepository.html @@ -1,14 +1,14 @@ ToolShedRepository | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09ToolShedRepositoryClass ToolShedRepository Auto-generated class implementation for https://galaxyproject.org/gxformat2/gxformat2common#ToolShedRepository -HierarchySaveableToolShedRepositoryImplementsToolShedRepositoryPropertiesIndexConstructorsconstructorPropertieschangeset_revisionextensionFieldsloadingOptionsnameownertool_shedattrMethodssavefromDocConstructorsconstructornew ToolShedRepository(__namedParameters: { loadingOptions?: LoadingOptions } & ToolShedRepositoryProperties): ToolShedRepositoryParameters__namedParameters: { loadingOptions?: LoadingOptions } & ToolShedRepositoryPropertiesReturns ToolShedRepositoryPropertieschangeset_revisionchangeset_revision: string +HierarchySaveableToolShedRepositoryImplementsToolShedRepositoryPropertiesIndexConstructorsconstructorPropertieschangeset_revisionextensionFieldsloadingOptionsnameownertool_shedattrMethodssavefromDocConstructorsconstructornew ToolShedRepository(__namedParameters: { loadingOptions?: LoadingOptions } & ToolShedRepositoryProperties): ToolShedRepositoryParameters__namedParameters: { loadingOptions?: LoadingOptions } & ToolShedRepositoryPropertiesReturns ToolShedRepositoryPropertieschangeset_revisionchangeset_revision: string The revision of the tool shed repository this tool can be found in. -Optional extensionFieldsextensionFields?: Dictionary<any>loadingOptionsloadingOptions: LoadingOptionsnamename: string +Optional extensionFieldsextensionFields?: Dictionary<any>loadingOptionsloadingOptions: LoadingOptionsnamename: string The name of the tool shed repository this tool can be found in. -ownerowner: string +ownerowner: string The owner of the tool shed repository this tool can be found in. -tool_shedtool_shed: string +tool_shedtool_shed: string The URI of the tool shed containing the repository this tool can be found in - typically this should be toolshed.g2.bx.psu.edu. -Static attrattr: Set<string> = ...Methodssavesave(top?: boolean, baseUrl?: string, relativeUris?: boolean): Dictionary<any>Parameterstop: boolean = falsebaseUrl: string = ''relativeUris: boolean = trueReturns Dictionary<any>Static fromDocfromDoc(__doc: any, baseuri: string, loadingOptions: LoadingOptions, docRoot?: string): Promise<Saveable> +Static attrattr: Set<string> = ...Methodssavesave(top?: boolean, baseUrl?: string, relativeUris?: boolean): Dictionary<any>Parameterstop: boolean = falsebaseUrl: string = ''relativeUris: boolean = trueReturns Dictionary<any>Static fromDocfromDoc(__doc: any, baseuri: string, loadingOptions: LoadingOptions, docRoot?: string): Promise<Saveable> Used to construct instances of . throwsValidationException If the document fragment is not a {@link Dictionary} or validation of fields fails. diff --git a/typescript/docs/classes/ValidationException.html b/typescript/docs/classes/ValidationException.html index 1d5780e..7b6a013 100644 --- a/typescript/docs/classes/ValidationException.html +++ b/typescript/docs/classes/ValidationException.html @@ -1,6 +1,6 @@ -ValidationException | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09ValidationExceptionClass ValidationException HierarchyErrorValidationExceptionIndexConstructorsconstructorPropertiesbulletchildrenmessagenamestackindentPerLevelprepareStackTracestackTraceLimitMethodsprettyStrsimplifysummarytoStringwithBulletcaptureStackTraceConstructorsconstructornew ValidationException(message: string): ValidationExceptionnew ValidationException(message: string, _children: ValidationException[]): ValidationExceptionParametersmessage: stringReturns ValidationExceptionParametersmessage: string_children: ValidationException[]Returns ValidationExceptionPropertiesbulletbullet: string = ''childrenchildren: ValidationException[]messagemessage: stringnamename: stringOptional stackstack?: stringStatic indentPerLevelindentPerLevel: number = 2Static Optional prepareStackTraceprepareStackTrace?: (err: Error, stackTraces: CallSite[]) => anyType declaration(err: Error, stackTraces: CallSite[]): any +ValidationException | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09ValidationExceptionClass ValidationException HierarchyErrorValidationExceptionIndexConstructorsconstructorPropertiesbulletchildrenmessagenamestackindentPerLevelprepareStackTracestackTraceLimitMethodsprettyStrsimplifysummarytoStringwithBulletcaptureStackTraceConstructorsconstructornew ValidationException(message: string): ValidationExceptionnew ValidationException(message: string, _children: ValidationException[]): ValidationExceptionParametersmessage: stringReturns ValidationExceptionParametersmessage: string_children: ValidationException[]Returns ValidationExceptionPropertiesbulletbullet: string = ''childrenchildren: ValidationException[]messagemessage: stringnamename: stringOptional stackstack?: stringStatic indentPerLevelindentPerLevel: number = 2Static Optional prepareStackTraceprepareStackTrace?: (err: Error, stackTraces: CallSite[]) => anyType declaration(err: Error, stackTraces: CallSite[]): any Optional override for formatting stack traces seehttps://v8.dev/docs/stack-trace-api#customizing-stack-traces -Parameterserr: ErrorstackTraces: CallSite[]Returns anyStatic stackTraceLimitstackTraceLimit: numberMethodsprettyStrprettyStr(level?: number): stringParameterslevel: number = 0Returns stringsimplifysimplify(): ValidationException[]Returns ValidationException[]summarysummary(level: number): stringParameterslevel: numberReturns stringtoStringtoString(): stringReturns stringwithBulletwithBullet(bullet: string): ValidationExceptionParametersbullet: stringReturns ValidationExceptionStatic captureStackTracecaptureStackTrace(targetObject: object, constructorOpt?: Function): void +Parameterserr: ErrorstackTraces: CallSite[]Returns anyStatic stackTraceLimitstackTraceLimit: numberMethodsprettyStrprettyStr(level?: number): stringParameterslevel: number = 0Returns stringsimplifysimplify(): ValidationException[]Returns ValidationException[]summarysummary(level: number): stringParameterslevel: numberReturns stringtoStringtoString(): stringReturns stringwithBulletwithBullet(bullet: string): ValidationExceptionParametersbullet: stringReturns ValidationExceptionStatic captureStackTracecaptureStackTrace(targetObject: object, constructorOpt?: Function): void Create .stack property on a target object ParameterstargetObject: objectOptional constructorOpt: FunctionReturns voidExportsValidationExceptionconstructorbulletchildrenmessagenamestackindentPerLevelprepareStackTracestackTraceLimitprettyStrsimplifysummarytoStringwithBulletcaptureStackTraceGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/classes/WorkflowInputParameter.html b/typescript/docs/classes/WorkflowInputParameter.html index e0c723e..9f7c46a 100644 --- a/typescript/docs/classes/WorkflowInputParameter.html +++ b/typescript/docs/classes/WorkflowInputParameter.html @@ -1,26 +1,26 @@ WorkflowInputParameter | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09WorkflowInputParameterClass WorkflowInputParameter Auto-generated class implementation for https://galaxyproject.org/gxformat2/v19_09#WorkflowInputParameter -HierarchySaveableWorkflowInputParameterImplementsWorkflowInputParameterPropertiesIndexConstructorsconstructorPropertiescollection_typedefault_docextensionFieldsformatidlabelloadingOptionsoptionalpositiontypeattrMethodssavefromDocConstructorsconstructornew WorkflowInputParameter(__namedParameters: { loadingOptions?: LoadingOptions } & WorkflowInputParameterProperties): WorkflowInputParameterParameters__namedParameters: { loadingOptions?: LoadingOptions } & WorkflowInputParameterPropertiesReturns WorkflowInputParameterPropertiesOptional collection_typecollection_type?: string +HierarchySaveableWorkflowInputParameterImplementsWorkflowInputParameterPropertiesIndexConstructorsconstructorPropertiescollection_typedefault_docextensionFieldsformatidlabelloadingOptionsoptionalpositiontypeattrMethodssavefromDocConstructorsconstructornew WorkflowInputParameter(__namedParameters: { loadingOptions?: LoadingOptions } & WorkflowInputParameterProperties): WorkflowInputParameterParameters__namedParameters: { loadingOptions?: LoadingOptions } & WorkflowInputParameterPropertiesReturns WorkflowInputParameterPropertiesOptional collection_typecollection_type?: string Collection type (defaults to list if type is collection). Nested collection types are separated with colons, e.g. list:list:paired. -Optional default_default_?: any +Optional default_default_?: any The default value to use for this parameter if the parameter is missing from the input object, or if the value of the parameter in the input object is null. Default values are applied before evaluating expressions (e.g. dependent valueFrom fields). -Optional docdoc?: string | string[] +Optional docdoc?: string | string[] A documentation string for this object, or an array of strings which should be concatenated. -Optional extensionFieldsextensionFields?: Dictionary<any>Optional formatformat?: string[] +Optional extensionFieldsextensionFields?: Dictionary<any>Optional formatformat?: string[] Specify datatype extension for valid input datasets. -Optional idid?: string +Optional idid?: string The unique identifier for this object. -Optional labellabel?: string +Optional labellabel?: string A short, human-readable label of this object. -loadingOptionsloadingOptions: LoadingOptionsOptional optionaloptional?: boolean +loadingOptionsloadingOptions: LoadingOptionsOptional optionaloptional?: boolean If set to true, WorkflowInputParameter is not required to submit the workflow. -Optional positionposition?: StepPositionOptional typetype?: GalaxyType | GalaxyType[] +Optional positionposition?: StepPositionOptional typetype?: GalaxyType | GalaxyType[] Specify valid types of data that may be assigned to this parameter. -Static attrattr: Set<string> = ...Methodssavesave(top?: boolean, baseUrl?: string, relativeUris?: boolean): Dictionary<any>Parameterstop: boolean = falsebaseUrl: string = ''relativeUris: boolean = trueReturns Dictionary<any>Static fromDocfromDoc(__doc: any, baseuri: string, loadingOptions: LoadingOptions, docRoot?: string): Promise<Saveable> +Static attrattr: Set<string> = ...Methodssavesave(top?: boolean, baseUrl?: string, relativeUris?: boolean): Dictionary<any>Parameterstop: boolean = falsebaseUrl: string = ''relativeUris: boolean = trueReturns Dictionary<any>Static fromDocfromDoc(__doc: any, baseuri: string, loadingOptions: LoadingOptions, docRoot?: string): Promise<Saveable> Used to construct instances of . throwsValidationException If the document fragment is not a {@link Dictionary} or validation of fields fails. diff --git a/typescript/docs/classes/WorkflowOutputParameter.html b/typescript/docs/classes/WorkflowOutputParameter.html index 1bdb6fc..327bec8 100644 --- a/typescript/docs/classes/WorkflowOutputParameter.html +++ b/typescript/docs/classes/WorkflowOutputParameter.html @@ -4,18 +4,18 @@ connected to one parameter defined in the workflow that will provide the value of the output parameter. It is legal to connect a WorkflowInputParameter to a WorkflowOutputParameter. -HierarchySaveableWorkflowOutputParameterImplementsWorkflowOutputParameterPropertiesIndexConstructorsconstructorPropertiesdocextensionFieldsidlabelloadingOptionsoutputSourcetypeattrMethodssavefromDocConstructorsconstructornew WorkflowOutputParameter(__namedParameters: { loadingOptions?: LoadingOptions } & WorkflowOutputParameterProperties): WorkflowOutputParameterParameters__namedParameters: { loadingOptions?: LoadingOptions } & WorkflowOutputParameterPropertiesReturns WorkflowOutputParameterPropertiesOptional docdoc?: string | string[] +HierarchySaveableWorkflowOutputParameterImplementsWorkflowOutputParameterPropertiesIndexConstructorsconstructorPropertiesdocextensionFieldsidlabelloadingOptionsoutputSourcetypeattrMethodssavefromDocConstructorsconstructornew WorkflowOutputParameter(__namedParameters: { loadingOptions?: LoadingOptions } & WorkflowOutputParameterProperties): WorkflowOutputParameterParameters__namedParameters: { loadingOptions?: LoadingOptions } & WorkflowOutputParameterPropertiesReturns WorkflowOutputParameterPropertiesOptional docdoc?: string | string[] A documentation string for this object, or an array of strings which should be concatenated. -Optional extensionFieldsextensionFields?: Dictionary<any>Optional idid?: string +Optional extensionFieldsextensionFields?: Dictionary<any>Optional idid?: string The unique identifier for this object. -Optional labellabel?: string +Optional labellabel?: string A short, human-readable label of this object. -loadingOptionsloadingOptions: LoadingOptionsOptional outputSourceoutputSource?: string +loadingOptionsloadingOptions: LoadingOptionsOptional outputSourceoutputSource?: string Specifies workflow parameter that supply the value of to the output parameter. -Optional typetype?: GalaxyType +Optional typetype?: GalaxyType Specify valid types of data that may be assigned to this parameter. -Static attrattr: Set<string> = ...Methodssavesave(top?: boolean, baseUrl?: string, relativeUris?: boolean): Dictionary<any>Parameterstop: boolean = falsebaseUrl: string = ''relativeUris: boolean = trueReturns Dictionary<any>Static fromDocfromDoc(__doc: any, baseuri: string, loadingOptions: LoadingOptions, docRoot?: string): Promise<Saveable> +Static attrattr: Set<string> = ...Methodssavesave(top?: boolean, baseUrl?: string, relativeUris?: boolean): Dictionary<any>Parameterstop: boolean = falsebaseUrl: string = ''relativeUris: boolean = trueReturns Dictionary<any>Static fromDocfromDoc(__doc: any, baseuri: string, loadingOptions: LoadingOptions, docRoot?: string): Promise<Saveable> Used to construct instances of . throwsValidationException If the document fragment is not a {@link Dictionary} or validation of fields fails. diff --git a/typescript/docs/classes/WorkflowStep.html b/typescript/docs/classes/WorkflowStep.html index 4689ab6..13b482c 100644 --- a/typescript/docs/classes/WorkflowStep.html +++ b/typescript/docs/classes/WorkflowStep.html @@ -14,53 +14,53 @@ A note about state and tool_state fields. Galaxy but shouldn't be written by humans. state can contained a typed map. Repeat values can be represented as YAML arrays. An alternative to representing state this way is defining inputs with default values. -HierarchySaveableWorkflowStepImplementsWorkflowStepPropertiesIndexConstructorsconstructorPropertiesdocerrorsextensionFieldsidin_labelloadingOptionsoutpositionrunruntime_inputsstatetool_idtool_shed_repositorytool_statetool_versiontypeuuidwhenattrMethodssavefromDocConstructorsconstructornew WorkflowStep(__namedParameters: { loadingOptions?: LoadingOptions } & WorkflowStepProperties): WorkflowStepParameters__namedParameters: { loadingOptions?: LoadingOptions } & WorkflowStepPropertiesReturns WorkflowStepPropertiesOptional docdoc?: string | string[] +HierarchySaveableWorkflowStepImplementsWorkflowStepPropertiesIndexConstructorsconstructorPropertiesdocerrorsextensionFieldsidin_labelloadingOptionsoutpositionrunruntime_inputsstatetool_idtool_shed_repositorytool_statetool_versiontypeuuidwhenattrMethodssavefromDocConstructorsconstructornew WorkflowStep(__namedParameters: { loadingOptions?: LoadingOptions } & WorkflowStepProperties): WorkflowStepParameters__namedParameters: { loadingOptions?: LoadingOptions } & WorkflowStepPropertiesReturns WorkflowStepPropertiesOptional docdoc?: string | string[] A documentation string for this object, or an array of strings which should be concatenated. -Optional errorserrors?: string +Optional errorserrors?: string During Galaxy export there may be some problem validating the tool state, tool used, etc.. that will be indicated by this field. The Galaxy user should be warned of these problems before the workflow can be used in Galaxy. This field should not be used in human written Galaxy workflow files. A typical problem is the referenced tool is not installed, this can be fixed by installed the tool and re-saving the workflow and then re-exporting it. -Optional extensionFieldsextensionFields?: Dictionary<any>Optional idid?: string +Optional extensionFieldsextensionFields?: Dictionary<any>Optional idid?: string The unique identifier for this object. -Optional in_in_?: WorkflowStepInput[] +Optional in_in_?: WorkflowStepInput[] Defines the input parameters of the workflow step. The process is ready to run when all required input parameters are associated with concrete values. Input parameters include a schema for each parameter which is used to validate the input object. It may also be used build a user interface for constructing the input object. -Optional labellabel?: string +Optional labellabel?: string A short, human-readable label of this object. -loadingOptionsloadingOptions: LoadingOptionsOptional outout?: (string | WorkflowStepOutput)[] +loadingOptionsloadingOptions: LoadingOptionsOptional outout?: (string | WorkflowStepOutput)[] Defines the parameters representing the output of the process. May be used to generate and/or validate the output object. This can also be called 'outputs' for legacy reasons - but the resulting workflow document is not a valid instance of this schema. -Optional positionposition?: StepPositionOptional runrun?: GalaxyWorkflow +Optional positionposition?: StepPositionOptional runrun?: GalaxyWorkflow Specifies a subworkflow to run. -Optional runtime_inputsruntime_inputs?: string[]Optional statestate?: any +Optional runtime_inputsruntime_inputs?: string[]Optional statestate?: any Structured tool state. -Optional tool_idtool_id?: string +Optional tool_idtool_id?: string The tool ID used to run this step of the workflow (e.g. 'cat1' or 'toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.0'). -Optional tool_shed_repositorytool_shed_repository?: ToolShedRepository +Optional tool_shed_repositorytool_shed_repository?: ToolShedRepository The Galaxy Tool Shed repository that should be installed in order to use this tool. -Optional tool_statetool_state?: any +Optional tool_statetool_state?: any Unstructured tool state. -Optional tool_versiontool_version?: string +Optional tool_versiontool_version?: string The tool version corresponding used to run this step of the workflow. For tool shed installed tools, the ID generally uniquely specifies a version and this field is optional. -Optional typetype?: WorkflowStepType +Optional typetype?: WorkflowStepType Workflow step module's type (defaults to 'tool'). -Optional uuiduuid?: string +Optional uuiduuid?: string UUID uniquely representing this element. -Optional whenwhen?: string +Optional whenwhen?: string If defined, only run the step when the expression evaluates to true. If false the step is skipped. A skipped step produces a null on each output. Expression should be an ecma5.1 expression. -Static attrattr: Set<string> = ...Methodssavesave(top?: boolean, baseUrl?: string, relativeUris?: boolean): Dictionary<any>Parameterstop: boolean = falsebaseUrl: string = ''relativeUris: boolean = trueReturns Dictionary<any>Static fromDocfromDoc(__doc: any, baseuri: string, loadingOptions: LoadingOptions, docRoot?: string): Promise<Saveable> +Static attrattr: Set<string> = ...Methodssavesave(top?: boolean, baseUrl?: string, relativeUris?: boolean): Dictionary<any>Parameterstop: boolean = falsebaseUrl: string = ''relativeUris: boolean = trueReturns Dictionary<any>Static fromDocfromDoc(__doc: any, baseuri: string, loadingOptions: LoadingOptions, docRoot?: string): Promise<Saveable> Used to construct instances of . throwsValidationException If the document fragment is not a {@link Dictionary} or validation of fields fails. diff --git a/typescript/docs/classes/WorkflowStepInput.html b/typescript/docs/classes/WorkflowStepInput.html index 8e0acf9..7e8588a 100644 --- a/typescript/docs/classes/WorkflowStepInput.html +++ b/typescript/docs/classes/WorkflowStepInput.html @@ -1,18 +1,18 @@ WorkflowStepInput | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09WorkflowStepInputClass WorkflowStepInput Auto-generated class implementation for https://galaxyproject.org/gxformat2/v19_09#WorkflowStepInput TODO: -HierarchySaveableWorkflowStepInputImplementsWorkflowStepInputPropertiesIndexConstructorsconstructorPropertiesdefault_extensionFieldsidlabelloadingOptionssourceattrMethodssavefromDocConstructorsconstructornew WorkflowStepInput(__namedParameters: { loadingOptions?: LoadingOptions } & WorkflowStepInputProperties): WorkflowStepInputParameters__namedParameters: { loadingOptions?: LoadingOptions } & WorkflowStepInputPropertiesReturns WorkflowStepInputPropertiesOptional default_default_?: any +HierarchySaveableWorkflowStepInputImplementsWorkflowStepInputPropertiesIndexConstructorsconstructorPropertiesdefault_extensionFieldsidlabelloadingOptionssourceattrMethodssavefromDocConstructorsconstructornew WorkflowStepInput(__namedParameters: { loadingOptions?: LoadingOptions } & WorkflowStepInputProperties): WorkflowStepInputParameters__namedParameters: { loadingOptions?: LoadingOptions } & WorkflowStepInputPropertiesReturns WorkflowStepInputPropertiesOptional default_default_?: any The default value for this parameter to use if either there is no source field, or the value produced by the source is null. The default must be applied prior to scattering or evaluating valueFrom. -Optional extensionFieldsextensionFields?: Dictionary<any>Optional idid?: string +Optional extensionFieldsextensionFields?: Dictionary<any>Optional idid?: string The unique identifier for this object. -Optional labellabel?: string +Optional labellabel?: string A short, human-readable label of this object. -loadingOptionsloadingOptions: LoadingOptionsOptional sourcesource?: string | string[] +loadingOptionsloadingOptions: LoadingOptionsOptional sourcesource?: string | string[] Specifies one or more workflow parameters that will provide input to the underlying step parameter. -Static attrattr: Set<string> = ...Methodssavesave(top?: boolean, baseUrl?: string, relativeUris?: boolean): Dictionary<any>Parameterstop: boolean = falsebaseUrl: string = ''relativeUris: boolean = trueReturns Dictionary<any>Static fromDocfromDoc(__doc: any, baseuri: string, loadingOptions: LoadingOptions, docRoot?: string): Promise<Saveable> +Static attrattr: Set<string> = ...Methodssavesave(top?: boolean, baseUrl?: string, relativeUris?: boolean): Dictionary<any>Parameterstop: boolean = falsebaseUrl: string = ''relativeUris: boolean = trueReturns Dictionary<any>Static fromDocfromDoc(__doc: any, baseuri: string, loadingOptions: LoadingOptions, docRoot?: string): Promise<Saveable> Used to construct instances of . throwsValidationException If the document fragment is not a {@link Dictionary} or validation of fields fails. diff --git a/typescript/docs/classes/WorkflowStepOutput.html b/typescript/docs/classes/WorkflowStepOutput.html index 1f54c76..29981a4 100644 --- a/typescript/docs/classes/WorkflowStepOutput.html +++ b/typescript/docs/classes/WorkflowStepOutput.html @@ -7,9 +7,9 @@ A unique identifier for this workflow output parameter. This is the identifier to use in the source field of WorkflowStepInput to connect the output value to downstream parameters. -HierarchySaveableWorkflowStepOutputImplementsWorkflowStepOutputPropertiesIndexConstructorsconstructorPropertiesadd_tagschange_datatypedelete_intermediate_datasetsextensionFieldshideidloadingOptionsremove_tagsrenameset_columnsattrMethodssavefromDocConstructorsconstructornew WorkflowStepOutput(__namedParameters: { loadingOptions?: LoadingOptions } & WorkflowStepOutputProperties): WorkflowStepOutputParameters__namedParameters: { loadingOptions?: LoadingOptions } & WorkflowStepOutputPropertiesReturns WorkflowStepOutputPropertiesOptional add_tagsadd_tags?: string[]Optional change_datatypechange_datatype?: stringOptional delete_intermediate_datasetsdelete_intermediate_datasets?: booleanOptional extensionFieldsextensionFields?: Dictionary<any>Optional hidehide?: booleanOptional idid?: string +HierarchySaveableWorkflowStepOutputImplementsWorkflowStepOutputPropertiesIndexConstructorsconstructorPropertiesadd_tagschange_datatypedelete_intermediate_datasetsextensionFieldshideidloadingOptionsremove_tagsrenameset_columnsattrMethodssavefromDocConstructorsconstructornew WorkflowStepOutput(__namedParameters: { loadingOptions?: LoadingOptions } & WorkflowStepOutputProperties): WorkflowStepOutputParameters__namedParameters: { loadingOptions?: LoadingOptions } & WorkflowStepOutputPropertiesReturns WorkflowStepOutputPropertiesOptional add_tagsadd_tags?: string[]Optional change_datatypechange_datatype?: stringOptional delete_intermediate_datasetsdelete_intermediate_datasets?: booleanOptional extensionFieldsextensionFields?: Dictionary<any>Optional hidehide?: booleanOptional idid?: string The unique identifier for this object. -loadingOptionsloadingOptions: LoadingOptionsOptional remove_tagsremove_tags?: string[]Optional renamerename?: stringOptional set_columnsset_columns?: string[]Static attrattr: Set<string> = ...Methodssavesave(top?: boolean, baseUrl?: string, relativeUris?: boolean): Dictionary<any>Parameterstop: boolean = falsebaseUrl: string = ''relativeUris: boolean = trueReturns Dictionary<any>Static fromDocfromDoc(__doc: any, baseuri: string, loadingOptions: LoadingOptions, docRoot?: string): Promise<Saveable> +loadingOptionsloadingOptions: LoadingOptionsOptional remove_tagsremove_tags?: string[]Optional renamerename?: stringOptional set_columnsset_columns?: string[]Static attrattr: Set<string> = ...Methodssavesave(top?: boolean, baseUrl?: string, relativeUris?: boolean): Dictionary<any>Parameterstop: boolean = falsebaseUrl: string = ''relativeUris: boolean = trueReturns Dictionary<any>Static fromDocfromDoc(__doc: any, baseuri: string, loadingOptions: LoadingOptions, docRoot?: string): Promise<Saveable> Used to construct instances of . throwsValidationException If the document fragment is not a {@link Dictionary} or validation of fields fails. diff --git a/typescript/docs/enums/Any.html b/typescript/docs/enums/Any.html index 8f12e21..95c3c7f 100644 --- a/typescript/docs/enums/Any.html +++ b/typescript/docs/enums/Any.html @@ -1 +1 @@ -Any | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09AnyEnumeration Any IndexEnumeration membersANYEnumeration membersANYANY = "Any"ExportsAnyANYGenerated using TypeDoc \ No newline at end of file +Any | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09AnyEnumeration Any IndexEnumeration membersANYEnumeration membersANYANY = "Any"ExportsAnyANYGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/enums/GalaxyType.html b/typescript/docs/enums/GalaxyType.html index 5913a20..3302beb 100644 --- a/typescript/docs/enums/GalaxyType.html +++ b/typescript/docs/enums/GalaxyType.html @@ -1 +1 @@ -GalaxyType | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09GalaxyTypeEnumeration GalaxyType IndexEnumeration membersBOOLEANCOLLECTIONDATADOUBLEFILEFLOATINTINTEGERLONGNULLSTRINGTEXTEnumeration membersBOOLEANBOOLEAN = "boolean"COLLECTIONCOLLECTION = "collection"DATADATA = "data"DOUBLEDOUBLE = "double"FILEFILE = "File"FLOATFLOAT = "float"INTINT = "int"INTEGERINTEGER = "integer"LONGLONG = "long"NULLNULL = "null"STRINGSTRING = "string"TEXTTEXT = "text"ExportsGalaxyTypeBOOLEANCOLLECTIONDATADOUBLEFILEFLOATINTINTEGERLONGNULLSTRINGTEXTGenerated using TypeDoc \ No newline at end of file +GalaxyType | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09GalaxyTypeEnumeration GalaxyType IndexEnumeration membersBOOLEANCOLLECTIONDATADOUBLEFILEFLOATINTINTEGERLONGNULLSTRINGTEXTEnumeration membersBOOLEANBOOLEAN = "boolean"COLLECTIONCOLLECTION = "collection"DATADATA = "data"DOUBLEDOUBLE = "double"FILEFILE = "File"FLOATFLOAT = "float"INTINT = "int"INTEGERINTEGER = "integer"LONGLONG = "long"NULLNULL = "null"STRINGSTRING = "string"TEXTTEXT = "text"ExportsGalaxyTypeBOOLEANCOLLECTIONDATADOUBLEFILEFLOATINTINTEGERLONGNULLSTRINGTEXTGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/enums/PrimitiveType.html b/typescript/docs/enums/PrimitiveType.html index 67d15b7..413ef53 100644 --- a/typescript/docs/enums/PrimitiveType.html +++ b/typescript/docs/enums/PrimitiveType.html @@ -1 +1 @@ -PrimitiveType | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09PrimitiveTypeEnumeration PrimitiveType IndexEnumeration membersBOOLEANDOUBLEFLOATINTLONGNULLSTRINGEnumeration membersBOOLEANBOOLEAN = "boolean"DOUBLEDOUBLE = "double"FLOATFLOAT = "float"INTINT = "int"LONGLONG = "long"NULLNULL = "null"STRINGSTRING = "string"ExportsPrimitiveTypeBOOLEANDOUBLEFLOATINTLONGNULLSTRINGGenerated using TypeDoc \ No newline at end of file +PrimitiveType | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09PrimitiveTypeEnumeration PrimitiveType IndexEnumeration membersBOOLEANDOUBLEFLOATINTLONGNULLSTRINGEnumeration membersBOOLEANBOOLEAN = "boolean"DOUBLEDOUBLE = "double"FLOATFLOAT = "float"INTINT = "int"LONGLONG = "long"NULLNULL = "null"STRINGSTRING = "string"ExportsPrimitiveTypeBOOLEANDOUBLEFLOATINTLONGNULLSTRINGGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/enums/WorkflowStepType.html b/typescript/docs/enums/WorkflowStepType.html index 7565f7e..7248407 100644 --- a/typescript/docs/enums/WorkflowStepType.html +++ b/typescript/docs/enums/WorkflowStepType.html @@ -1 +1 @@ -WorkflowStepType | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09WorkflowStepTypeEnumeration WorkflowStepType IndexEnumeration membersPAUSESUBWORKFLOWTOOLEnumeration membersPAUSEPAUSE = "pause"SUBWORKFLOWSUBWORKFLOW = "subworkflow"TOOLTOOL = "tool"ExportsWorkflowStepTypePAUSESUBWORKFLOWTOOLGenerated using TypeDoc \ No newline at end of file +WorkflowStepType | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09WorkflowStepTypeEnumeration WorkflowStepType IndexEnumeration membersPAUSESUBWORKFLOWTOOLEnumeration membersPAUSEPAUSE = "pause"SUBWORKFLOWSUBWORKFLOW = "subworkflow"TOOLTOOL = "tool"ExportsWorkflowStepTypePAUSESUBWORKFLOWTOOLGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/enums/enum_d062602be0b4b8fd33e69e29a841317b6ab665bc.html b/typescript/docs/enums/enum_d062602be0b4b8fd33e69e29a841317b6ab665bc.html index 08fbdb3..182b472 100644 --- a/typescript/docs/enums/enum_d062602be0b4b8fd33e69e29a841317b6ab665bc.html +++ b/typescript/docs/enums/enum_d062602be0b4b8fd33e69e29a841317b6ab665bc.html @@ -1 +1 @@ -enum_d062602be0b4b8fd33e69e29a841317b6ab665bc | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09enum_d062602be0b4b8fd33e69e29a841317b6ab665bcEnumeration enum_d062602be0b4b8fd33e69e29a841317b6ab665bc IndexEnumeration membersARRAYEnumeration membersARRAYARRAY = "array"Exportsenum_d062602be0b4b8fd33e69e29a841317b6ab665bcARRAYGenerated using TypeDoc \ No newline at end of file +enum_d062602be0b4b8fd33e69e29a841317b6ab665bc | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09enum_d062602be0b4b8fd33e69e29a841317b6ab665bcEnumeration enum_d062602be0b4b8fd33e69e29a841317b6ab665bc IndexEnumeration membersARRAYEnumeration membersARRAYARRAY = "array"Exportsenum_d062602be0b4b8fd33e69e29a841317b6ab665bcARRAYGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/enums/enum_d961d79c225752b9fadb617367615ab176b47d77.html b/typescript/docs/enums/enum_d961d79c225752b9fadb617367615ab176b47d77.html index 505ae6a..2351f6f 100644 --- a/typescript/docs/enums/enum_d961d79c225752b9fadb617367615ab176b47d77.html +++ b/typescript/docs/enums/enum_d961d79c225752b9fadb617367615ab176b47d77.html @@ -1 +1 @@ -enum_d961d79c225752b9fadb617367615ab176b47d77 | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09enum_d961d79c225752b9fadb617367615ab176b47d77Enumeration enum_d961d79c225752b9fadb617367615ab176b47d77 IndexEnumeration membersENUMEnumeration membersENUMENUM = "enum"Exportsenum_d961d79c225752b9fadb617367615ab176b47d77ENUMGenerated using TypeDoc \ No newline at end of file +enum_d961d79c225752b9fadb617367615ab176b47d77 | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09enum_d961d79c225752b9fadb617367615ab176b47d77Enumeration enum_d961d79c225752b9fadb617367615ab176b47d77 IndexEnumeration membersENUMEnumeration membersENUMENUM = "enum"Exportsenum_d961d79c225752b9fadb617367615ab176b47d77ENUMGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/enums/enum_d9cba076fca539106791a4f46d198c7fcfbdb779.html b/typescript/docs/enums/enum_d9cba076fca539106791a4f46d198c7fcfbdb779.html index 4b2d8a1..7b48f13 100644 --- a/typescript/docs/enums/enum_d9cba076fca539106791a4f46d198c7fcfbdb779.html +++ b/typescript/docs/enums/enum_d9cba076fca539106791a4f46d198c7fcfbdb779.html @@ -1 +1 @@ -enum_d9cba076fca539106791a4f46d198c7fcfbdb779 | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09enum_d9cba076fca539106791a4f46d198c7fcfbdb779Enumeration enum_d9cba076fca539106791a4f46d198c7fcfbdb779 IndexEnumeration membersRECORDEnumeration membersRECORDRECORD = "record"Exportsenum_d9cba076fca539106791a4f46d198c7fcfbdb779RECORDGenerated using TypeDoc \ No newline at end of file +enum_d9cba076fca539106791a4f46d198c7fcfbdb779 | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09enum_d9cba076fca539106791a4f46d198c7fcfbdb779Enumeration enum_d9cba076fca539106791a4f46d198c7fcfbdb779 IndexEnumeration membersRECORDEnumeration membersRECORDRECORD = "record"Exportsenum_d9cba076fca539106791a4f46d198c7fcfbdb779RECORDGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/index.html b/typescript/docs/index.html index 3165d5f..48357f9 100644 --- a/typescript/docs/index.html +++ b/typescript/docs/index.html @@ -1 +1 @@ -org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09 ExportsAnyGalaxyTypePrimitiveTypeWorkflowStepTypeenum_d062602be0b4b8fd33e69e29a841317b6ab665bcenum_d961d79c225752b9fadb617367615ab176b47d77enum_d9cba076fca539106791a4f46d198c7fcfbdb779ArraySchemaEnumSchemaGalaxyWorkflowRecordFieldRecordSchemaReportStepPositionToolShedRepositoryValidationExceptionWorkflowInputParameterWorkflowOutputParameterWorkflowStepWorkflowStepInputWorkflowStepOutputArraySchemaPropertiesDocumentedPropertiesEnumSchemaPropertiesGalaxyWorkflowPropertiesHasStepErrorsPropertiesHasStepPositionPropertiesHasUUIDPropertiesIdentifiedPropertiesInputParameterPropertiesLabeledPropertiesOutputParameterPropertiesParameterPropertiesProcessPropertiesRecordFieldPropertiesRecordSchemaPropertiesReferencesToolPropertiesReportPropertiesSinkPropertiesStepPositionPropertiesToolShedRepositoryPropertiesWorkflowInputParameterPropertiesWorkflowOutputParameterPropertiesWorkflowStepInputPropertiesWorkflowStepOutputPropertiesWorkflowStepPropertiesloadDocumentloadDocumentByStringshortnameGenerated using TypeDoc \ No newline at end of file +org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09 ExportsAnyGalaxyTypeGalaxyWorkflow_classPrimitiveTypeWorkflowStepTypeenum_d062602be0b4b8fd33e69e29a841317b6ab665bcenum_d961d79c225752b9fadb617367615ab176b47d77enum_d9cba076fca539106791a4f46d198c7fcfbdb779ArraySchemaEnumSchemaGalaxyWorkflowRecordFieldRecordSchemaReportStepPositionToolShedRepositoryValidationExceptionWorkflowInputParameterWorkflowOutputParameterWorkflowStepWorkflowStepInputWorkflowStepOutputArraySchemaPropertiesDocumentedPropertiesEnumSchemaPropertiesGalaxyWorkflowPropertiesHasStepErrorsPropertiesHasStepPositionPropertiesHasUUIDPropertiesIdentifiedPropertiesInputParameterPropertiesLabeledPropertiesOutputParameterPropertiesParameterPropertiesProcessPropertiesRecordFieldPropertiesRecordSchemaPropertiesReferencesToolPropertiesReportPropertiesSinkPropertiesStepPositionPropertiesToolShedRepositoryPropertiesWorkflowInputParameterPropertiesWorkflowOutputParameterPropertiesWorkflowStepInputPropertiesWorkflowStepOutputPropertiesWorkflowStepPropertiesloadDocumentloadDocumentByStringshortnameGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/interfaces/ArraySchemaProperties.html b/typescript/docs/interfaces/ArraySchemaProperties.html index b05b42e..3f6ade6 100644 --- a/typescript/docs/interfaces/ArraySchemaProperties.html +++ b/typescript/docs/interfaces/ArraySchemaProperties.html @@ -1,7 +1,7 @@ ArraySchemaProperties | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09ArraySchemaPropertiesInterface ArraySchemaProperties Auto-generated interface for https://w3id.org/cwl/salad#ArraySchema -HierarchyArraySchemaPropertiesImplemented byArraySchemaIndexPropertiesextensionFieldsitemstypePropertiesOptional extensionFieldsextensionFields?: Dictionary<any>itemsitems: string | ArraySchema | RecordSchema | EnumSchema | (string | ArraySchema | RecordSchema | EnumSchema)[] +HierarchyArraySchemaPropertiesImplemented byArraySchemaIndexPropertiesextensionFieldsitemstypePropertiesOptional extensionFieldsextensionFields?: Dictionary<any>itemsitems: string | ArraySchema | RecordSchema | EnumSchema | (string | ArraySchema | RecordSchema | EnumSchema)[] Defines the type of the array elements. -typetype: ARRAY +typetype: ARRAY Must be array ExportsArraySchemaPropertiesextensionFieldsitemstypeGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/interfaces/DocumentedProperties.html b/typescript/docs/interfaces/DocumentedProperties.html index f91ad6c..3dfcf4c 100644 --- a/typescript/docs/interfaces/DocumentedProperties.html +++ b/typescript/docs/interfaces/DocumentedProperties.html @@ -1,5 +1,5 @@ DocumentedProperties | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09DocumentedPropertiesInterface DocumentedProperties Auto-generated interface for https://w3id.org/cwl/salad#Documented -HierarchyDocumentedPropertiesParameterPropertiesProcessPropertiesRecordFieldPropertiesWorkflowStepPropertiesIndexPropertiesdocPropertiesOptional docdoc?: string | string[] +HierarchyDocumentedPropertiesParameterPropertiesProcessPropertiesRecordFieldPropertiesWorkflowStepPropertiesIndexPropertiesdocPropertiesOptional docdoc?: string | string[] A documentation string for this object, or an array of strings which should be concatenated. ExportsDocumentedPropertiesdocGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/interfaces/EnumSchemaProperties.html b/typescript/docs/interfaces/EnumSchemaProperties.html index 8ef5edb..391b451 100644 --- a/typescript/docs/interfaces/EnumSchemaProperties.html +++ b/typescript/docs/interfaces/EnumSchemaProperties.html @@ -1,8 +1,8 @@ EnumSchemaProperties | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09EnumSchemaPropertiesInterface EnumSchemaProperties Auto-generated interface for https://w3id.org/cwl/salad#EnumSchema Define an enumerated type. -HierarchyEnumSchemaPropertiesImplemented byEnumSchemaIndexPropertiesextensionFieldssymbolstypePropertiesOptional extensionFieldsextensionFields?: Dictionary<any>symbolssymbols: string[] +HierarchyEnumSchemaPropertiesImplemented byEnumSchemaIndexPropertiesextensionFieldssymbolstypePropertiesOptional extensionFieldsextensionFields?: Dictionary<any>symbolssymbols: string[] Defines the set of valid symbols. -typetype: ENUM +typetype: ENUM Must be enum ExportsEnumSchemaPropertiesextensionFieldssymbolstypeGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/interfaces/GalaxyWorkflowProperties.html b/typescript/docs/interfaces/GalaxyWorkflowProperties.html index 9cfca7b..581977a 100644 --- a/typescript/docs/interfaces/GalaxyWorkflowProperties.html +++ b/typescript/docs/interfaces/GalaxyWorkflowProperties.html @@ -12,13 +12,13 @@ A note about label field. users will primarily identify the workflow using. Legacy support - this may also be called 'name' and Galaxy will consume the workflow document fine and treat this attribute correctly - however in order to validate against this workflow definition schema the attribute should be called label. -HierarchyProcessPropertiesHasUUIDPropertiesGalaxyWorkflowPropertiesImplemented byGalaxyWorkflowIndexPropertiesclass_creatordocextensionFieldsidinputslabellicenseoutputsreleasereportstepstagsuuidPropertiesOptional class_class_?: stringOptional creatorcreator?: any +HierarchyProcessPropertiesHasUUIDPropertiesGalaxyWorkflowPropertiesImplemented byGalaxyWorkflowIndexPropertiesclass_creatordocextensionFieldsidinputslabellicenseoutputsreleasereportstepstagsuuidPropertiesOptional class_class_?: GALAXYWORKFLOWOptional creatorcreator?: any Can be a schema.org Person (https://schema.org/Person) or Organization (https://schema.org/Organization) entity -Optional docdoc?: string | string[] +Optional docdoc?: string | string[] A documentation string for this object, or an array of strings which should be concatenated. -Optional extensionFieldsextensionFields?: Dictionary<any>Optional idid?: string +Optional extensionFieldsextensionFields?: Dictionary<any>Optional idid?: string The unique identifier for this object. -inputsinputs: WorkflowInputParameter[] +inputsinputs: WorkflowInputParameter[] Defines the input parameters of the process. The process is ready to run when all required input parameters are associated with concrete values. Input parameters include a schema for each parameter which is @@ -29,22 +29,22 @@ A note about label field. assigned a value of null (or the value of default for that parameter, if provided) for the purposes of validation and evaluation of expressions. -Optional labellabel?: string +Optional labellabel?: string A short, human-readable label of this object. -Optional licenselicense?: string +Optional licenselicense?: string Must be a valid license listed at https://spdx.org/licenses/ -outputsoutputs: WorkflowOutputParameter[] +outputsoutputs: WorkflowOutputParameter[] Defines the parameters representing the output of the process. May be used to generate and/or validate the output object. -Optional releaserelease?: string +Optional releaserelease?: string If listed should correspond to the release of the workflow in its source reposiory. -Optional reportreport?: Report +Optional reportreport?: Report Workflow invocation report template. -stepssteps: WorkflowStep[] +stepssteps: WorkflowStep[] The individual steps that make up the workflow. Each step is executed when all of its input data links are fulfilled. -Optional tagstags?: string[] +Optional tagstags?: string[] Tags for the workflow. -Optional uuiduuid?: string +Optional uuiduuid?: string UUID uniquely representing this element. ExportsGalaxyWorkflowPropertiesclass_creatordocextensionFieldsidinputslabellicenseoutputsreleasereportstepstagsuuidGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/interfaces/HasStepErrorsProperties.html b/typescript/docs/interfaces/HasStepErrorsProperties.html index ca20449..293b104 100644 --- a/typescript/docs/interfaces/HasStepErrorsProperties.html +++ b/typescript/docs/interfaces/HasStepErrorsProperties.html @@ -1,6 +1,6 @@ HasStepErrorsProperties | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09HasStepErrorsPropertiesInterface HasStepErrorsProperties Auto-generated interface for https://galaxyproject.org/gxformat2/gxformat2common#HasStepErrors -HierarchyHasStepErrorsPropertiesWorkflowStepPropertiesIndexPropertieserrorsPropertiesOptional errorserrors?: string +HierarchyHasStepErrorsPropertiesWorkflowStepPropertiesIndexPropertieserrorsPropertiesOptional errorserrors?: string During Galaxy export there may be some problem validating the tool state, tool used, etc.. that will be indicated by this field. The Galaxy user should be warned of these problems before the workflow can be used in Galaxy. diff --git a/typescript/docs/interfaces/HasStepPositionProperties.html b/typescript/docs/interfaces/HasStepPositionProperties.html index 532e645..c326e4d 100644 --- a/typescript/docs/interfaces/HasStepPositionProperties.html +++ b/typescript/docs/interfaces/HasStepPositionProperties.html @@ -1,3 +1,3 @@ HasStepPositionProperties | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09HasStepPositionPropertiesInterface HasStepPositionProperties Auto-generated interface for https://galaxyproject.org/gxformat2/gxformat2common#HasStepPosition -HierarchyHasStepPositionPropertiesWorkflowInputParameterPropertiesWorkflowStepPropertiesIndexPropertiespositionPropertiesOptional positionposition?: StepPositionExportsHasStepPositionPropertiespositionGenerated using TypeDoc \ No newline at end of file +HierarchyHasStepPositionPropertiesWorkflowInputParameterPropertiesWorkflowStepPropertiesIndexPropertiespositionPropertiesOptional positionposition?: StepPositionExportsHasStepPositionPropertiespositionGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/interfaces/HasUUIDProperties.html b/typescript/docs/interfaces/HasUUIDProperties.html index 5cda86f..4ae4b4f 100644 --- a/typescript/docs/interfaces/HasUUIDProperties.html +++ b/typescript/docs/interfaces/HasUUIDProperties.html @@ -1,5 +1,5 @@ HasUUIDProperties | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09HasUUIDPropertiesInterface HasUUIDProperties Auto-generated interface for https://galaxyproject.org/gxformat2/gxformat2common#HasUUID -HierarchyHasUUIDPropertiesGalaxyWorkflowPropertiesWorkflowStepPropertiesIndexPropertiesuuidPropertiesOptional uuiduuid?: string +HierarchyHasUUIDPropertiesGalaxyWorkflowPropertiesWorkflowStepPropertiesIndexPropertiesuuidPropertiesOptional uuiduuid?: string UUID uniquely representing this element. ExportsHasUUIDPropertiesuuidGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/interfaces/IdentifiedProperties.html b/typescript/docs/interfaces/IdentifiedProperties.html index 3fc5cc2..7506f35 100644 --- a/typescript/docs/interfaces/IdentifiedProperties.html +++ b/typescript/docs/interfaces/IdentifiedProperties.html @@ -1,5 +1,5 @@ IdentifiedProperties | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09IdentifiedPropertiesInterface IdentifiedProperties Auto-generated interface for https://w3id.org/cwl/cwl#Identified -HierarchyIdentifiedPropertiesParameterPropertiesProcessPropertiesWorkflowStepInputPropertiesWorkflowStepOutputPropertiesWorkflowStepPropertiesIndexPropertiesidPropertiesOptional idid?: string +HierarchyIdentifiedPropertiesParameterPropertiesProcessPropertiesWorkflowStepInputPropertiesWorkflowStepOutputPropertiesWorkflowStepPropertiesIndexPropertiesidPropertiesOptional idid?: string The unique identifier for this object. ExportsIdentifiedPropertiesidGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/interfaces/InputParameterProperties.html b/typescript/docs/interfaces/InputParameterProperties.html index 77bea12..200625d 100644 --- a/typescript/docs/interfaces/InputParameterProperties.html +++ b/typescript/docs/interfaces/InputParameterProperties.html @@ -1,14 +1,14 @@ InputParameterProperties | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09InputParameterPropertiesInterface InputParameterProperties Auto-generated interface for https://w3id.org/cwl/cwl#InputParameter -HierarchyParameterPropertiesInputParameterPropertiesWorkflowInputParameterPropertiesIndexPropertiesdefault_docidlabelPropertiesOptional default_default_?: any +HierarchyParameterPropertiesInputParameterPropertiesWorkflowInputParameterPropertiesIndexPropertiesdefault_docidlabelPropertiesOptional default_default_?: any The default value to use for this parameter if the parameter is missing from the input object, or if the value of the parameter in the input object is null. Default values are applied before evaluating expressions (e.g. dependent valueFrom fields). -Optional docdoc?: string | string[] +Optional docdoc?: string | string[] A documentation string for this object, or an array of strings which should be concatenated. -Optional idid?: string +Optional idid?: string The unique identifier for this object. -Optional labellabel?: string +Optional labellabel?: string A short, human-readable label of this object. ExportsInputParameterPropertiesdefault_docidlabelGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/interfaces/LabeledProperties.html b/typescript/docs/interfaces/LabeledProperties.html index 8d8c25b..fe4ef14 100644 --- a/typescript/docs/interfaces/LabeledProperties.html +++ b/typescript/docs/interfaces/LabeledProperties.html @@ -1,5 +1,5 @@ LabeledProperties | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09LabeledPropertiesInterface LabeledProperties Auto-generated interface for https://w3id.org/cwl/cwl#Labeled -HierarchyLabeledPropertiesParameterPropertiesProcessPropertiesWorkflowStepInputPropertiesWorkflowStepPropertiesIndexPropertieslabelPropertiesOptional labellabel?: string +HierarchyLabeledPropertiesParameterPropertiesProcessPropertiesWorkflowStepInputPropertiesWorkflowStepPropertiesIndexPropertieslabelPropertiesOptional labellabel?: string A short, human-readable label of this object. ExportsLabeledPropertieslabelGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/interfaces/OutputParameterProperties.html b/typescript/docs/interfaces/OutputParameterProperties.html index 68a2689..ff3757c 100644 --- a/typescript/docs/interfaces/OutputParameterProperties.html +++ b/typescript/docs/interfaces/OutputParameterProperties.html @@ -1,9 +1,9 @@ OutputParameterProperties | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09OutputParameterPropertiesInterface OutputParameterProperties Auto-generated interface for https://w3id.org/cwl/cwl#OutputParameter -HierarchyParameterPropertiesOutputParameterPropertiesWorkflowOutputParameterPropertiesIndexPropertiesdocidlabelPropertiesOptional docdoc?: string | string[] +HierarchyParameterPropertiesOutputParameterPropertiesWorkflowOutputParameterPropertiesIndexPropertiesdocidlabelPropertiesOptional docdoc?: string | string[] A documentation string for this object, or an array of strings which should be concatenated. -Optional idid?: string +Optional idid?: string The unique identifier for this object. -Optional labellabel?: string +Optional labellabel?: string A short, human-readable label of this object. ExportsOutputParameterPropertiesdocidlabelGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/interfaces/ParameterProperties.html b/typescript/docs/interfaces/ParameterProperties.html index 7f118b5..3d1dc23 100644 --- a/typescript/docs/interfaces/ParameterProperties.html +++ b/typescript/docs/interfaces/ParameterProperties.html @@ -1,10 +1,10 @@ ParameterProperties | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09ParameterPropertiesInterface ParameterProperties Auto-generated interface for https://w3id.org/cwl/cwl#Parameter Define an input or output parameter to a process. -HierarchyLabeledPropertiesDocumentedPropertiesIdentifiedPropertiesParameterPropertiesInputParameterPropertiesOutputParameterPropertiesIndexPropertiesdocidlabelPropertiesOptional docdoc?: string | string[] +HierarchyLabeledPropertiesDocumentedPropertiesIdentifiedPropertiesParameterPropertiesInputParameterPropertiesOutputParameterPropertiesIndexPropertiesdocidlabelPropertiesOptional docdoc?: string | string[] A documentation string for this object, or an array of strings which should be concatenated. -Optional idid?: string +Optional idid?: string The unique identifier for this object. -Optional labellabel?: string +Optional labellabel?: string A short, human-readable label of this object. ExportsParameterPropertiesdocidlabelGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/interfaces/ProcessProperties.html b/typescript/docs/interfaces/ProcessProperties.html index 590e9e8..5614050 100644 --- a/typescript/docs/interfaces/ProcessProperties.html +++ b/typescript/docs/interfaces/ProcessProperties.html @@ -3,11 +3,11 @@ The base executable type in CWL is the Process object defined by the document. Note that the Process object is abstract and cannot be directly executed. -HierarchyIdentifiedPropertiesLabeledPropertiesDocumentedPropertiesProcessPropertiesGalaxyWorkflowPropertiesIndexPropertiesdocidinputslabeloutputsPropertiesOptional docdoc?: string | string[] +HierarchyIdentifiedPropertiesLabeledPropertiesDocumentedPropertiesProcessPropertiesGalaxyWorkflowPropertiesIndexPropertiesdocidinputslabeloutputsPropertiesOptional docdoc?: string | string[] A documentation string for this object, or an array of strings which should be concatenated. -Optional idid?: string +Optional idid?: string The unique identifier for this object. -inputsinputs: WorkflowInputParameter[] +inputsinputs: WorkflowInputParameter[] Defines the input parameters of the process. The process is ready to run when all required input parameters are associated with concrete values. Input parameters include a schema for each parameter which is @@ -18,9 +18,9 @@ assigned a value of null (or the value of default for that parameter, if provided) for the purposes of validation and evaluation of expressions. -Optional labellabel?: string +Optional labellabel?: string A short, human-readable label of this object. -outputsoutputs: WorkflowOutputParameter[] +outputsoutputs: WorkflowOutputParameter[] Defines the parameters representing the output of the process. May be used to generate and/or validate the output object. ExportsProcessPropertiesdocidinputslabeloutputsGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/interfaces/RecordFieldProperties.html b/typescript/docs/interfaces/RecordFieldProperties.html index e7b8994..866cf6a 100644 --- a/typescript/docs/interfaces/RecordFieldProperties.html +++ b/typescript/docs/interfaces/RecordFieldProperties.html @@ -1,10 +1,10 @@ RecordFieldProperties | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09RecordFieldPropertiesInterface RecordFieldProperties Auto-generated interface for https://w3id.org/cwl/salad#RecordField A field of a record. -HierarchyDocumentedPropertiesRecordFieldPropertiesImplemented byRecordFieldIndexPropertiesdocextensionFieldsnametypePropertiesOptional docdoc?: string | string[] +HierarchyDocumentedPropertiesRecordFieldPropertiesImplemented byRecordFieldIndexPropertiesdocextensionFieldsnametypePropertiesOptional docdoc?: string | string[] A documentation string for this object, or an array of strings which should be concatenated. -Optional extensionFieldsextensionFields?: Dictionary<any>namename: string +Optional extensionFieldsextensionFields?: Dictionary<any>namename: string The name of the field -typetype: string | ArraySchema | RecordSchema | EnumSchema | (string | ArraySchema | RecordSchema | EnumSchema)[] +typetype: string | ArraySchema | RecordSchema | EnumSchema | (string | ArraySchema | RecordSchema | EnumSchema)[] The field type ExportsRecordFieldPropertiesdocextensionFieldsnametypeGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/interfaces/RecordSchemaProperties.html b/typescript/docs/interfaces/RecordSchemaProperties.html index 94c443b..71b3a23 100644 --- a/typescript/docs/interfaces/RecordSchemaProperties.html +++ b/typescript/docs/interfaces/RecordSchemaProperties.html @@ -1,7 +1,7 @@ RecordSchemaProperties | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09RecordSchemaPropertiesInterface RecordSchemaProperties Auto-generated interface for https://w3id.org/cwl/salad#RecordSchema -HierarchyRecordSchemaPropertiesImplemented byRecordSchemaIndexPropertiesextensionFieldsfieldstypePropertiesOptional extensionFieldsextensionFields?: Dictionary<any>Optional fieldsfields?: RecordField[] +HierarchyRecordSchemaPropertiesImplemented byRecordSchemaIndexPropertiesextensionFieldsfieldstypePropertiesOptional extensionFieldsextensionFields?: Dictionary<any>Optional fieldsfields?: RecordField[] Defines the fields of the record. -typetype: RECORD +typetype: RECORD Must be record ExportsRecordSchemaPropertiesextensionFieldsfieldstypeGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/interfaces/ReferencesToolProperties.html b/typescript/docs/interfaces/ReferencesToolProperties.html index f35706c..9476965 100644 --- a/typescript/docs/interfaces/ReferencesToolProperties.html +++ b/typescript/docs/interfaces/ReferencesToolProperties.html @@ -1,10 +1,10 @@ ReferencesToolProperties | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09ReferencesToolPropertiesInterface ReferencesToolProperties Auto-generated interface for https://galaxyproject.org/gxformat2/gxformat2common#ReferencesTool -HierarchyReferencesToolPropertiesWorkflowStepPropertiesIndexPropertiestool_idtool_shed_repositorytool_versionPropertiesOptional tool_idtool_id?: string +HierarchyReferencesToolPropertiesWorkflowStepPropertiesIndexPropertiestool_idtool_shed_repositorytool_versionPropertiesOptional tool_idtool_id?: string The tool ID used to run this step of the workflow (e.g. 'cat1' or 'toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.0'). -Optional tool_shed_repositorytool_shed_repository?: ToolShedRepository +Optional tool_shed_repositorytool_shed_repository?: ToolShedRepository The Galaxy Tool Shed repository that should be installed in order to use this tool. -Optional tool_versiontool_version?: string +Optional tool_versiontool_version?: string The tool version corresponding used to run this step of the workflow. For tool shed installed tools, the ID generally uniquely specifies a version and this field is optional. ExportsReferencesToolPropertiestool_idtool_shed_repositorytool_versionGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/interfaces/ReportProperties.html b/typescript/docs/interfaces/ReportProperties.html index 22170f5..4c977ea 100644 --- a/typescript/docs/interfaces/ReportProperties.html +++ b/typescript/docs/interfaces/ReportProperties.html @@ -2,6 +2,6 @@ Auto-generated interface for https://galaxyproject.org/gxformat2/v19_09#Report Definition of an invocation report for this workflow. Currently the only field is 'markdown'. -HierarchyReportPropertiesImplemented byReportIndexPropertiesextensionFieldsmarkdownPropertiesOptional extensionFieldsextensionFields?: Dictionary<any>markdownmarkdown: string +HierarchyReportPropertiesImplemented byReportIndexPropertiesextensionFieldsmarkdownPropertiesOptional extensionFieldsextensionFields?: Dictionary<any>markdownmarkdown: string Galaxy flavored Markdown to define an invocation report. ExportsReportPropertiesextensionFieldsmarkdownGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/interfaces/SinkProperties.html b/typescript/docs/interfaces/SinkProperties.html index 447dbd8..07fa198 100644 --- a/typescript/docs/interfaces/SinkProperties.html +++ b/typescript/docs/interfaces/SinkProperties.html @@ -1,6 +1,6 @@ SinkProperties | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09SinkPropertiesInterface SinkProperties Auto-generated interface for https://galaxyproject.org/gxformat2/v19_09#Sink -HierarchySinkPropertiesWorkflowStepInputPropertiesIndexPropertiessourcePropertiesOptional sourcesource?: string | string[] +HierarchySinkPropertiesWorkflowStepInputPropertiesIndexPropertiessourcePropertiesOptional sourcesource?: string | string[] Specifies one or more workflow parameters that will provide input to the underlying step parameter. ExportsSinkPropertiessourceGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/interfaces/StepPositionProperties.html b/typescript/docs/interfaces/StepPositionProperties.html index 7425e0c..1215ee6 100644 --- a/typescript/docs/interfaces/StepPositionProperties.html +++ b/typescript/docs/interfaces/StepPositionProperties.html @@ -1,8 +1,8 @@ StepPositionProperties | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09StepPositionPropertiesInterface StepPositionProperties Auto-generated interface for https://galaxyproject.org/gxformat2/gxformat2common#StepPosition This field specifies the location of the step's node when rendered in the workflow editor. -HierarchyStepPositionPropertiesImplemented byStepPositionIndexPropertiesextensionFieldslefttopPropertiesOptional extensionFieldsextensionFields?: Dictionary<any>leftleft: number +HierarchyStepPositionPropertiesImplemented byStepPositionIndexPropertiesextensionFieldslefttopPropertiesOptional extensionFieldsextensionFields?: Dictionary<any>leftleft: number Relative horizontal position of the step's node when rendered in the workflow editor. -toptop: number +toptop: number Relative vertical position of the step's node when rendered in the workflow editor. ExportsStepPositionPropertiesextensionFieldslefttopGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/interfaces/ToolShedRepositoryProperties.html b/typescript/docs/interfaces/ToolShedRepositoryProperties.html index 251cdb5..2a0873d 100644 --- a/typescript/docs/interfaces/ToolShedRepositoryProperties.html +++ b/typescript/docs/interfaces/ToolShedRepositoryProperties.html @@ -1,11 +1,11 @@ ToolShedRepositoryProperties | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09ToolShedRepositoryPropertiesInterface ToolShedRepositoryProperties Auto-generated interface for https://galaxyproject.org/gxformat2/gxformat2common#ToolShedRepository -HierarchyToolShedRepositoryPropertiesImplemented byToolShedRepositoryIndexPropertieschangeset_revisionextensionFieldsnameownertool_shedPropertieschangeset_revisionchangeset_revision: string +HierarchyToolShedRepositoryPropertiesImplemented byToolShedRepositoryIndexPropertieschangeset_revisionextensionFieldsnameownertool_shedPropertieschangeset_revisionchangeset_revision: string The revision of the tool shed repository this tool can be found in. -Optional extensionFieldsextensionFields?: Dictionary<any>namename: string +Optional extensionFieldsextensionFields?: Dictionary<any>namename: string The name of the tool shed repository this tool can be found in. -ownerowner: string +ownerowner: string The owner of the tool shed repository this tool can be found in. -tool_shedtool_shed: string +tool_shedtool_shed: string The URI of the tool shed containing the repository this tool can be found in - typically this should be toolshed.g2.bx.psu.edu. ExportsToolShedRepositoryPropertieschangeset_revisionextensionFieldsnameownertool_shedGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/interfaces/WorkflowInputParameterProperties.html b/typescript/docs/interfaces/WorkflowInputParameterProperties.html index 4a4fd17..6aac54c 100644 --- a/typescript/docs/interfaces/WorkflowInputParameterProperties.html +++ b/typescript/docs/interfaces/WorkflowInputParameterProperties.html @@ -1,23 +1,23 @@ WorkflowInputParameterProperties | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09WorkflowInputParameterPropertiesInterface WorkflowInputParameterProperties Auto-generated interface for https://galaxyproject.org/gxformat2/v19_09#WorkflowInputParameter -HierarchyInputParameterPropertiesHasStepPositionPropertiesWorkflowInputParameterPropertiesImplemented byWorkflowInputParameterIndexPropertiescollection_typedefault_docextensionFieldsformatidlabeloptionalpositiontypePropertiesOptional collection_typecollection_type?: string +HierarchyInputParameterPropertiesHasStepPositionPropertiesWorkflowInputParameterPropertiesImplemented byWorkflowInputParameterIndexPropertiescollection_typedefault_docextensionFieldsformatidlabeloptionalpositiontypePropertiesOptional collection_typecollection_type?: string Collection type (defaults to list if type is collection). Nested collection types are separated with colons, e.g. list:list:paired. -Optional default_default_?: any +Optional default_default_?: any The default value to use for this parameter if the parameter is missing from the input object, or if the value of the parameter in the input object is null. Default values are applied before evaluating expressions (e.g. dependent valueFrom fields). -Optional docdoc?: string | string[] +Optional docdoc?: string | string[] A documentation string for this object, or an array of strings which should be concatenated. -Optional extensionFieldsextensionFields?: Dictionary<any>Optional formatformat?: string[] +Optional extensionFieldsextensionFields?: Dictionary<any>Optional formatformat?: string[] Specify datatype extension for valid input datasets. -Optional idid?: string +Optional idid?: string The unique identifier for this object. -Optional labellabel?: string +Optional labellabel?: string A short, human-readable label of this object. -Optional optionaloptional?: boolean +Optional optionaloptional?: boolean If set to true, WorkflowInputParameter is not required to submit the workflow. -Optional positionposition?: StepPositionOptional typetype?: GalaxyType | GalaxyType[] +Optional positionposition?: StepPositionOptional typetype?: GalaxyType | GalaxyType[] Specify valid types of data that may be assigned to this parameter. ExportsWorkflowInputParameterPropertiescollection_typedefault_docextensionFieldsformatidlabeloptionalpositiontypeGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/interfaces/WorkflowOutputParameterProperties.html b/typescript/docs/interfaces/WorkflowOutputParameterProperties.html index 63bc05d..d6ba916 100644 --- a/typescript/docs/interfaces/WorkflowOutputParameterProperties.html +++ b/typescript/docs/interfaces/WorkflowOutputParameterProperties.html @@ -4,15 +4,15 @@ connected to one parameter defined in the workflow that will provide the value of the output parameter. It is legal to connect a WorkflowInputParameter to a WorkflowOutputParameter. -HierarchyOutputParameterPropertiesWorkflowOutputParameterPropertiesImplemented byWorkflowOutputParameterIndexPropertiesdocextensionFieldsidlabeloutputSourcetypePropertiesOptional docdoc?: string | string[] +HierarchyOutputParameterPropertiesWorkflowOutputParameterPropertiesImplemented byWorkflowOutputParameterIndexPropertiesdocextensionFieldsidlabeloutputSourcetypePropertiesOptional docdoc?: string | string[] A documentation string for this object, or an array of strings which should be concatenated. -Optional extensionFieldsextensionFields?: Dictionary<any>Optional idid?: string +Optional extensionFieldsextensionFields?: Dictionary<any>Optional idid?: string The unique identifier for this object. -Optional labellabel?: string +Optional labellabel?: string A short, human-readable label of this object. -Optional outputSourceoutputSource?: string +Optional outputSourceoutputSource?: string Specifies workflow parameter that supply the value of to the output parameter. -Optional typetype?: GalaxyType +Optional typetype?: GalaxyType Specify valid types of data that may be assigned to this parameter. ExportsWorkflowOutputParameterPropertiesdocextensionFieldsidlabeloutputSourcetypeGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/interfaces/WorkflowStepInputProperties.html b/typescript/docs/interfaces/WorkflowStepInputProperties.html index 8e8854e..d029a0e 100644 --- a/typescript/docs/interfaces/WorkflowStepInputProperties.html +++ b/typescript/docs/interfaces/WorkflowStepInputProperties.html @@ -1,15 +1,15 @@ WorkflowStepInputProperties | org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09WorkflowStepInputPropertiesInterface WorkflowStepInputProperties Auto-generated interface for https://galaxyproject.org/gxformat2/v19_09#WorkflowStepInput TODO: -HierarchyIdentifiedPropertiesSinkPropertiesLabeledPropertiesWorkflowStepInputPropertiesImplemented byWorkflowStepInputIndexPropertiesdefault_extensionFieldsidlabelsourcePropertiesOptional default_default_?: any +HierarchyIdentifiedPropertiesSinkPropertiesLabeledPropertiesWorkflowStepInputPropertiesImplemented byWorkflowStepInputIndexPropertiesdefault_extensionFieldsidlabelsourcePropertiesOptional default_default_?: any The default value for this parameter to use if either there is no source field, or the value produced by the source is null. The default must be applied prior to scattering or evaluating valueFrom. -Optional extensionFieldsextensionFields?: Dictionary<any>Optional idid?: string +Optional extensionFieldsextensionFields?: Dictionary<any>Optional idid?: string The unique identifier for this object. -Optional labellabel?: string +Optional labellabel?: string A short, human-readable label of this object. -Optional sourcesource?: string | string[] +Optional sourcesource?: string | string[] Specifies one or more workflow parameters that will provide input to the underlying step parameter. ExportsWorkflowStepInputPropertiesdefault_extensionFieldsidlabelsourceGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/interfaces/WorkflowStepOutputProperties.html b/typescript/docs/interfaces/WorkflowStepOutputProperties.html index 53330a3..fc38483 100644 --- a/typescript/docs/interfaces/WorkflowStepOutputProperties.html +++ b/typescript/docs/interfaces/WorkflowStepOutputProperties.html @@ -7,6 +7,6 @@ A unique identifier for this workflow output parameter. This is the identifier to use in the source field of WorkflowStepInput to connect the output value to downstream parameters. -HierarchyIdentifiedPropertiesWorkflowStepOutputPropertiesImplemented byWorkflowStepOutputIndexPropertiesadd_tagschange_datatypedelete_intermediate_datasetsextensionFieldshideidremove_tagsrenameset_columnsPropertiesOptional add_tagsadd_tags?: string[]Optional change_datatypechange_datatype?: stringOptional delete_intermediate_datasetsdelete_intermediate_datasets?: booleanOptional extensionFieldsextensionFields?: Dictionary<any>Optional hidehide?: booleanOptional idid?: string +HierarchyIdentifiedPropertiesWorkflowStepOutputPropertiesImplemented byWorkflowStepOutputIndexPropertiesadd_tagschange_datatypedelete_intermediate_datasetsextensionFieldshideidremove_tagsrenameset_columnsPropertiesOptional add_tagsadd_tags?: string[]Optional change_datatypechange_datatype?: stringOptional delete_intermediate_datasetsdelete_intermediate_datasets?: booleanOptional extensionFieldsextensionFields?: Dictionary<any>Optional hidehide?: booleanOptional idid?: string The unique identifier for this object. -Optional remove_tagsremove_tags?: string[]Optional renamerename?: stringOptional set_columnsset_columns?: string[]ExportsWorkflowStepOutputPropertiesadd_tagschange_datatypedelete_intermediate_datasetsextensionFieldshideidremove_tagsrenameset_columnsGenerated using TypeDoc \ No newline at end of file +Optional remove_tagsremove_tags?: string[]Optional renamerename?: stringOptional set_columnsset_columns?: string[]ExportsWorkflowStepOutputPropertiesadd_tagschange_datatypedelete_intermediate_datasetsextensionFieldshideidremove_tagsrenameset_columnsGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/docs/interfaces/WorkflowStepProperties.html b/typescript/docs/interfaces/WorkflowStepProperties.html index 79e2920..f733f2b 100644 --- a/typescript/docs/interfaces/WorkflowStepProperties.html +++ b/typescript/docs/interfaces/WorkflowStepProperties.html @@ -14,48 +14,48 @@ A note about state and tool_state fields. Galaxy but shouldn't be written by humans. state can contained a typed map. Repeat values can be represented as YAML arrays. An alternative to representing state this way is defining inputs with default values. -HierarchyIdentifiedPropertiesLabeledPropertiesDocumentedPropertiesHasStepPositionPropertiesReferencesToolPropertiesHasStepErrorsPropertiesHasUUIDPropertiesWorkflowStepPropertiesImplemented byWorkflowStepIndexPropertiesdocerrorsextensionFieldsidin_labeloutpositionrunruntime_inputsstatetool_idtool_shed_repositorytool_statetool_versiontypeuuidwhenPropertiesOptional docdoc?: string | string[] +HierarchyIdentifiedPropertiesLabeledPropertiesDocumentedPropertiesHasStepPositionPropertiesReferencesToolPropertiesHasStepErrorsPropertiesHasUUIDPropertiesWorkflowStepPropertiesImplemented byWorkflowStepIndexPropertiesdocerrorsextensionFieldsidin_labeloutpositionrunruntime_inputsstatetool_idtool_shed_repositorytool_statetool_versiontypeuuidwhenPropertiesOptional docdoc?: string | string[] A documentation string for this object, or an array of strings which should be concatenated. -Optional errorserrors?: string +Optional errorserrors?: string During Galaxy export there may be some problem validating the tool state, tool used, etc.. that will be indicated by this field. The Galaxy user should be warned of these problems before the workflow can be used in Galaxy. This field should not be used in human written Galaxy workflow files. A typical problem is the referenced tool is not installed, this can be fixed by installed the tool and re-saving the workflow and then re-exporting it. -Optional extensionFieldsextensionFields?: Dictionary<any>Optional idid?: string +Optional extensionFieldsextensionFields?: Dictionary<any>Optional idid?: string The unique identifier for this object. -Optional in_in_?: WorkflowStepInput[] +Optional in_in_?: WorkflowStepInput[] Defines the input parameters of the workflow step. The process is ready to run when all required input parameters are associated with concrete values. Input parameters include a schema for each parameter which is used to validate the input object. It may also be used build a user interface for constructing the input object. -Optional labellabel?: string +Optional labellabel?: string A short, human-readable label of this object. -Optional outout?: (string | WorkflowStepOutput)[] +Optional outout?: (string | WorkflowStepOutput)[] Defines the parameters representing the output of the process. May be used to generate and/or validate the output object. This can also be called 'outputs' for legacy reasons - but the resulting workflow document is not a valid instance of this schema. -Optional positionposition?: StepPositionOptional runrun?: GalaxyWorkflow +Optional positionposition?: StepPositionOptional runrun?: GalaxyWorkflow Specifies a subworkflow to run. -Optional runtime_inputsruntime_inputs?: string[]Optional statestate?: any +Optional runtime_inputsruntime_inputs?: string[]Optional statestate?: any Structured tool state. -Optional tool_idtool_id?: string +Optional tool_idtool_id?: string The tool ID used to run this step of the workflow (e.g. 'cat1' or 'toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.0'). -Optional tool_shed_repositorytool_shed_repository?: ToolShedRepository +Optional tool_shed_repositorytool_shed_repository?: ToolShedRepository The Galaxy Tool Shed repository that should be installed in order to use this tool. -Optional tool_statetool_state?: any +Optional tool_statetool_state?: any Unstructured tool state. -Optional tool_versiontool_version?: string +Optional tool_versiontool_version?: string The tool version corresponding used to run this step of the workflow. For tool shed installed tools, the ID generally uniquely specifies a version and this field is optional. -Optional typetype?: WorkflowStepType +Optional typetype?: WorkflowStepType Workflow step module's type (defaults to 'tool'). -Optional uuiduuid?: string +Optional uuiduuid?: string UUID uniquely representing this element. -Optional whenwhen?: string +Optional whenwhen?: string If defined, only run the step when the expression evaluates to true. If false the step is skipped. A skipped step produces a null on each output. diff --git a/typescript/docs/modules.html b/typescript/docs/modules.html index 2430719..d7857c9 100644 --- a/typescript/docs/modules.html +++ b/typescript/docs/modules.html @@ -1,4 +1,4 @@ -org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09 IndexEnumerationsAnyGalaxyTypePrimitiveTypeWorkflowStepTypeenum_d062602be0b4b8fd33e69e29a841317b6ab665bcenum_d961d79c225752b9fadb617367615ab176b47d77enum_d9cba076fca539106791a4f46d198c7fcfbdb779ClassesArraySchemaEnumSchemaGalaxyWorkflowRecordFieldRecordSchemaReportStepPositionToolShedRepositoryValidationExceptionWorkflowInputParameterWorkflowOutputParameterWorkflowStepWorkflowStepInputWorkflowStepOutputInterfacesArraySchemaPropertiesDocumentedPropertiesEnumSchemaPropertiesGalaxyWorkflowPropertiesHasStepErrorsPropertiesHasStepPositionPropertiesHasUUIDPropertiesIdentifiedPropertiesInputParameterPropertiesLabeledPropertiesOutputParameterPropertiesParameterPropertiesProcessPropertiesRecordFieldPropertiesRecordSchemaPropertiesReferencesToolPropertiesReportPropertiesSinkPropertiesStepPositionPropertiesToolShedRepositoryPropertiesWorkflowInputParameterPropertiesWorkflowOutputParameterPropertiesWorkflowStepInputPropertiesWorkflowStepOutputPropertiesWorkflowStepPropertiesFunctionsloadDocumentloadDocumentByStringshortnameFunctionsloadDocumentloadDocument(doc: any, baseuri?: string, loadingOptions?: LoadingOptions): Promise<GalaxyWorkflow | GalaxyWorkflow[]>Parametersdoc: anyOptional baseuri: stringOptional loadingOptions: LoadingOptionsReturns Promise<GalaxyWorkflow | GalaxyWorkflow[]>loadDocumentByStringloadDocumentByString(doc: string, uri: string, loadingOptions?: LoadingOptions): Promise<GalaxyWorkflow | GalaxyWorkflow[]>Parametersdoc: stringuri: stringOptional loadingOptions: LoadingOptionsReturns Promise<GalaxyWorkflow | GalaxyWorkflow[]>shortnameshortname(inputId: string): string +org.galaxyproject.gxformat2.v19_09SearchPreparing search index...The search index is not availableorg.galaxyproject.gxformat2.v19_09OptionsAllPublicPublic/ProtectedAll InheritedExternalsMenuorg.galaxyproject.gxformat2.v19_09 IndexEnumerationsAnyGalaxyTypeGalaxyWorkflow_classPrimitiveTypeWorkflowStepTypeenum_d062602be0b4b8fd33e69e29a841317b6ab665bcenum_d961d79c225752b9fadb617367615ab176b47d77enum_d9cba076fca539106791a4f46d198c7fcfbdb779ClassesArraySchemaEnumSchemaGalaxyWorkflowRecordFieldRecordSchemaReportStepPositionToolShedRepositoryValidationExceptionWorkflowInputParameterWorkflowOutputParameterWorkflowStepWorkflowStepInputWorkflowStepOutputInterfacesArraySchemaPropertiesDocumentedPropertiesEnumSchemaPropertiesGalaxyWorkflowPropertiesHasStepErrorsPropertiesHasStepPositionPropertiesHasUUIDPropertiesIdentifiedPropertiesInputParameterPropertiesLabeledPropertiesOutputParameterPropertiesParameterPropertiesProcessPropertiesRecordFieldPropertiesRecordSchemaPropertiesReferencesToolPropertiesReportPropertiesSinkPropertiesStepPositionPropertiesToolShedRepositoryPropertiesWorkflowInputParameterPropertiesWorkflowOutputParameterPropertiesWorkflowStepInputPropertiesWorkflowStepOutputPropertiesWorkflowStepPropertiesFunctionsloadDocumentloadDocumentByStringshortnameFunctionsloadDocumentloadDocument(doc: any, baseuri?: string, loadingOptions?: LoadingOptions): Promise<GalaxyWorkflow | GalaxyWorkflow[]>Parametersdoc: anyOptional baseuri: stringOptional loadingOptions: LoadingOptionsReturns Promise<GalaxyWorkflow | GalaxyWorkflow[]>loadDocumentByStringloadDocumentByString(doc: string, uri: string, loadingOptions?: LoadingOptions): Promise<GalaxyWorkflow | GalaxyWorkflow[]>Parametersdoc: stringuri: stringOptional loadingOptions: LoadingOptionsReturns Promise<GalaxyWorkflow | GalaxyWorkflow[]>shortnameshortname(inputId: string): string Compute the shortname of a fully qualified identifier. See https://w3id.org/cwl/v1.2/SchemaSalad.html#Short_names. -ParametersinputId: stringReturns stringExportsAnyGalaxyTypePrimitiveTypeWorkflowStepTypeenum_d062602be0b4b8fd33e69e29a841317b6ab665bcenum_d961d79c225752b9fadb617367615ab176b47d77enum_d9cba076fca539106791a4f46d198c7fcfbdb779ArraySchemaEnumSchemaGalaxyWorkflowRecordFieldRecordSchemaReportStepPositionToolShedRepositoryValidationExceptionWorkflowInputParameterWorkflowOutputParameterWorkflowStepWorkflowStepInputWorkflowStepOutputArraySchemaPropertiesDocumentedPropertiesEnumSchemaPropertiesGalaxyWorkflowPropertiesHasStepErrorsPropertiesHasStepPositionPropertiesHasUUIDPropertiesIdentifiedPropertiesInputParameterPropertiesLabeledPropertiesOutputParameterPropertiesParameterPropertiesProcessPropertiesRecordFieldPropertiesRecordSchemaPropertiesReferencesToolPropertiesReportPropertiesSinkPropertiesStepPositionPropertiesToolShedRepositoryPropertiesWorkflowInputParameterPropertiesWorkflowOutputParameterPropertiesWorkflowStepInputPropertiesWorkflowStepOutputPropertiesWorkflowStepPropertiesloadDocumentloadDocumentByStringshortnameGenerated using TypeDoc \ No newline at end of file +ParametersinputId: stringReturns stringExportsAnyGalaxyTypeGalaxyWorkflow_classPrimitiveTypeWorkflowStepTypeenum_d062602be0b4b8fd33e69e29a841317b6ab665bcenum_d961d79c225752b9fadb617367615ab176b47d77enum_d9cba076fca539106791a4f46d198c7fcfbdb779ArraySchemaEnumSchemaGalaxyWorkflowRecordFieldRecordSchemaReportStepPositionToolShedRepositoryValidationExceptionWorkflowInputParameterWorkflowOutputParameterWorkflowStepWorkflowStepInputWorkflowStepOutputArraySchemaPropertiesDocumentedPropertiesEnumSchemaPropertiesGalaxyWorkflowPropertiesHasStepErrorsPropertiesHasStepPositionPropertiesHasUUIDPropertiesIdentifiedPropertiesInputParameterPropertiesLabeledPropertiesOutputParameterPropertiesParameterPropertiesProcessPropertiesRecordFieldPropertiesRecordSchemaPropertiesReferencesToolPropertiesReportPropertiesSinkPropertiesStepPositionPropertiesToolShedRepositoryPropertiesWorkflowInputParameterPropertiesWorkflowOutputParameterPropertiesWorkflowStepInputPropertiesWorkflowStepOutputPropertiesWorkflowStepPropertiesloadDocumentloadDocumentByStringshortnameGenerated using TypeDoc \ No newline at end of file diff --git a/typescript/src/GalaxyWorkflow.ts b/typescript/src/GalaxyWorkflow.ts index ac67084..cd1defe 100644 --- a/typescript/src/GalaxyWorkflow.ts +++ b/typescript/src/GalaxyWorkflow.ts @@ -39,7 +39,7 @@ export class GalaxyWorkflow extends Saveable implements Internal.GalaxyWorkflowP * The unique identifier for this object. */ id?: undefined | string - class_: string + class_: Internal.GalaxyWorkflow_class /** * A short, human-readable label of this object. @@ -114,7 +114,7 @@ export class GalaxyWorkflow extends Saveable implements Internal.GalaxyWorkflowP release?: undefined | string - constructor ({loadingOptions, extensionFields, id, class_ = 'GalaxyWorkflow', label, doc, inputs, outputs, uuid, steps, report, tags, creator, license, release} : {loadingOptions?: LoadingOptions} & Internal.GalaxyWorkflowProperties) { + constructor ({loadingOptions, extensionFields, id, class_ = Internal.GalaxyWorkflow_class.GALAXYWORKFLOW, label, doc, inputs, outputs, uuid, steps, report, tags, creator, license, release} : {loadingOptions?: LoadingOptions} & Internal.GalaxyWorkflowProperties) { super(loadingOptions) this.extensionFields = extensionFields ?? {} this.id = id @@ -177,7 +177,7 @@ export class GalaxyWorkflow extends Saveable implements Internal.GalaxyWorkflowP let class_ try { - class_ = await loadField(_doc.class, LoaderInstances.uristrtypeFalseTrueNoneNone, + class_ = await loadField(_doc.class, LoaderInstances.uriGalaxyWorkflow_classLoaderFalseTrueNoneNone, baseuri, loadingOptions) } catch (e) { if (e instanceof ValidationException) { diff --git a/typescript/src/GalaxyWorkflowProperties.ts b/typescript/src/GalaxyWorkflowProperties.ts index 75b4796..18ddc1a 100644 --- a/typescript/src/GalaxyWorkflowProperties.ts +++ b/typescript/src/GalaxyWorkflowProperties.ts @@ -27,7 +27,7 @@ export interface GalaxyWorkflowProperties extends Internal.ProcessProperties, In * The unique identifier for this object. */ id?: undefined | string - class_?: string + class_?: Internal.GalaxyWorkflow_class /** * A short, human-readable label of this object. diff --git a/typescript/src/index.ts b/typescript/src/index.ts index d18be8d..ffbeed8 100644 --- a/typescript/src/index.ts +++ b/typescript/src/index.ts @@ -12,6 +12,7 @@ export { GalaxyType, GalaxyWorkflow, GalaxyWorkflowProperties, + GalaxyWorkflow_class, HasStepErrorsProperties, HasStepPositionProperties, HasUUIDProperties, diff --git a/typescript/src/util/Internal.ts b/typescript/src/util/Internal.ts index 27e966e..7d092c9 100644 --- a/typescript/src/util/Internal.ts +++ b/typescript/src/util/Internal.ts @@ -29,6 +29,7 @@ export * from '../EnumSchemaProperties' export * from '../GalaxyType' export * from '../GalaxyWorkflow' export * from '../GalaxyWorkflowProperties' +export * from '../GalaxyWorkflow_class' export * from '../HasStepErrorsProperties' export * from '../HasStepPositionProperties' export * from '../HasUUIDProperties' diff --git a/typescript/src/util/LoaderInstances.ts b/typescript/src/util/LoaderInstances.ts index 413f2b7..737e78b 100644 --- a/typescript/src/util/LoaderInstances.ts +++ b/typescript/src/util/LoaderInstances.ts @@ -21,6 +21,7 @@ import { GalaxyType, GalaxyWorkflow, GalaxyWorkflowProperties, + GalaxyWorkflow_class, HasStepErrorsProperties, HasStepPositionProperties, HasUUIDProperties, @@ -133,7 +134,8 @@ export const unionOfundefinedtypeOrGalaxyWorkflowLoader = new _UnionLoader([unde export const uriunionOfundefinedtypeOrGalaxyWorkflowLoaderFalseFalseNoneNone = new _URILoader(unionOfundefinedtypeOrGalaxyWorkflowLoader, false, false, undefined, undefined); export const uriunionOfundefinedtypeOrstrtypeOrarrayOfstrtypeFalseFalse2None = new _URILoader(unionOfundefinedtypeOrstrtypeOrarrayOfstrtype, false, false, 2, undefined); export const unionOfundefinedtypeOrbooltype = new _UnionLoader([undefinedtype, booltype]); -export const uristrtypeFalseTrueNoneNone = new _URILoader(strtype, false, true, undefined, undefined); +export const GalaxyWorkflow_classLoader = new _EnumLoader((Object.keys(GalaxyWorkflow_class) as Array).map(key => GalaxyWorkflow_class[key])); +export const uriGalaxyWorkflow_classLoaderFalseTrueNoneNone = new _URILoader(GalaxyWorkflow_classLoader, false, true, undefined, undefined); export const arrayOfWorkflowInputParameterLoader = new _ArrayLoader([WorkflowInputParameterLoader]); export const idmapinputsarrayOfWorkflowInputParameterLoader = new _IdMapLoader(arrayOfWorkflowInputParameterLoader, 'id', 'type'); export const arrayOfWorkflowOutputParameterLoader = new _ArrayLoader([WorkflowOutputParameterLoader]);
Auto-generated class implementation for https://w3id.org/cwl/salad#ArraySchema
Defines the type of the array elements.
Must be array
array
Used to construct instances of .
ValidationException If the document fragment is not a {@link Dictionary} or validation of fields fails.
Auto-generated class implementation for https://w3id.org/cwl/salad#EnumSchema
Define an enumerated type.
Defines the set of valid symbols.
Must be enum
enum
label
Can be a schema.org Person (https://schema.org/Person) or Organization (https://schema.org/Organization) entity
A documentation string for this object, or an array of strings which should be concatenated.
The unique identifier for this object.
Defines the input parameters of the process. The process is ready to run when all required input parameters are associated with concrete values. Input parameters include a schema for each parameter which is @@ -29,25 +29,25 @@
null
default
A short, human-readable label of this object.
Must be a valid license listed at https://spdx.org/licenses/
Defines the parameters representing the output of the process. May be used to generate and/or validate the output object.
If listed should correspond to the release of the workflow in its source reposiory.
Workflow invocation report template.
The individual steps that make up the workflow. Each step is executed when all of its input data links are fulfilled.
Tags for the workflow.
UUID uniquely representing this element.
Auto-generated class implementation for https://w3id.org/cwl/salad#RecordField
A field of a record.
The name of the field
The field type
Auto-generated class implementation for https://w3id.org/cwl/salad#RecordSchema
Defines the fields of the record.
Must be record
record
Auto-generated class implementation for https://galaxyproject.org/gxformat2/v19_09#Report
Definition of an invocation report for this workflow. Currently the only field is 'markdown'.
Galaxy flavored Markdown to define an invocation report.
Auto-generated class implementation for https://galaxyproject.org/gxformat2/gxformat2common#StepPosition
This field specifies the location of the step's node when rendered in the workflow editor.
Relative horizontal position of the step's node when rendered in the workflow editor.
Relative vertical position of the step's node when rendered in the workflow editor.
Auto-generated class implementation for https://galaxyproject.org/gxformat2/gxformat2common#ToolShedRepository
The revision of the tool shed repository this tool can be found in.
The name of the tool shed repository this tool can be found in.
The owner of the tool shed repository this tool can be found in.
The URI of the tool shed containing the repository this tool can be found in - typically this should be toolshed.g2.bx.psu.edu.
Optional override for formatting stack traces
https://v8.dev/docs/stack-trace-api#customizing-stack-traces
Create .stack property on a target object
Generated using TypeDoc
Auto-generated class implementation for https://galaxyproject.org/gxformat2/v19_09#WorkflowInputParameter
Collection type (defaults to list if type is collection). Nested collection types are separated with colons, e.g. list:list:paired.
list
type
collection
list:list:paired
The default value to use for this parameter if the parameter is missing from the input object, or if the value of the parameter in the input object is null. Default values are applied before evaluating expressions (e.g. dependent valueFrom fields).
valueFrom
Specify datatype extension for valid input datasets.
If set to true, WorkflowInputParameter is not required to submit the workflow.
WorkflowInputParameter
Specify valid types of data that may be assigned to this parameter.
Specifies workflow parameter that supply the value of to the output parameter.
state
tool_state
state can contained a typed map. Repeat values can be represented as YAML arrays. An alternative to representing state this way is defining inputs with default values.
During Galaxy export there may be some problem validating the tool state, tool used, etc.. that will be indicated by this field. The Galaxy user should be warned of these problems before the workflow can be used in Galaxy.
This field should not be used in human written Galaxy workflow files.
A typical problem is the referenced tool is not installed, this can be fixed by installed the tool and re-saving the workflow and then re-exporting it.
Defines the input parameters of the workflow step. The process is ready to run when all required input parameters are associated with concrete values. Input parameters include a schema for each parameter which is used to validate the input object. It may also be used build a user interface for constructing the input object.
This can also be called 'outputs' for legacy reasons - but the resulting workflow document is not a valid instance of this schema.
Specifies a subworkflow to run.
Structured tool state.
The tool ID used to run this step of the workflow (e.g. 'cat1' or 'toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.0').
The Galaxy Tool Shed repository that should be installed in order to use this tool.
Unstructured tool state.
The tool version corresponding used to run this step of the workflow. For tool shed installed tools, the ID generally uniquely specifies a version and this field is optional.
Workflow step module's type (defaults to 'tool').
If defined, only run the step when the expression evaluates to true. If false the step is skipped. A skipped step produces a null on each output.
true
false
Expression should be an ecma5.1 expression.
Auto-generated class implementation for https://galaxyproject.org/gxformat2/v19_09#WorkflowStepInput
TODO:
The default value for this parameter to use if either there is no source field, or the value produced by the source is null. The default must be applied prior to scattering or evaluating valueFrom.
source
Specifies one or more workflow parameters that will provide input to the underlying step parameter.
A unique identifier for this workflow output parameter. This is the identifier to use in the source field of WorkflowStepInput to connect the output value to downstream parameters.
WorkflowStepInput
Auto-generated interface for https://w3id.org/cwl/salad#ArraySchema
Auto-generated interface for https://w3id.org/cwl/salad#Documented
Auto-generated interface for https://w3id.org/cwl/salad#EnumSchema
Defines the input parameters of the process. The process is ready to run when all required input parameters are associated with concrete values. Input parameters include a schema for each parameter which is @@ -29,22 +29,22 @@
Auto-generated interface for https://galaxyproject.org/gxformat2/gxformat2common#HasStepErrors
Auto-generated interface for https://galaxyproject.org/gxformat2/gxformat2common#HasStepPosition
Auto-generated interface for https://galaxyproject.org/gxformat2/gxformat2common#HasUUID
Auto-generated interface for https://w3id.org/cwl/cwl#Identified
Auto-generated interface for https://w3id.org/cwl/cwl#InputParameter
Auto-generated interface for https://w3id.org/cwl/cwl#Labeled
Auto-generated interface for https://w3id.org/cwl/cwl#OutputParameter
Auto-generated interface for https://w3id.org/cwl/cwl#Parameter
Define an input or output parameter to a process.
The base executable type in CWL is the Process object defined by the document. Note that the Process object is abstract and cannot be directly executed.
Process
Defines the input parameters of the process. The process is ready to run when all required input parameters are associated with concrete values. Input parameters include a schema for each parameter which is @@ -18,9 +18,9 @@ assigned a value of null (or the value of default for that parameter, if provided) for the purposes of validation and evaluation of expressions.
Auto-generated interface for https://w3id.org/cwl/salad#RecordField
Auto-generated interface for https://w3id.org/cwl/salad#RecordSchema
Auto-generated interface for https://galaxyproject.org/gxformat2/gxformat2common#ReferencesTool
Auto-generated interface for https://galaxyproject.org/gxformat2/v19_09#Report
Auto-generated interface for https://galaxyproject.org/gxformat2/v19_09#Sink
Auto-generated interface for https://galaxyproject.org/gxformat2/gxformat2common#StepPosition
Auto-generated interface for https://galaxyproject.org/gxformat2/gxformat2common#ToolShedRepository
Auto-generated interface for https://galaxyproject.org/gxformat2/v19_09#WorkflowInputParameter
Auto-generated interface for https://galaxyproject.org/gxformat2/v19_09#WorkflowStepInput
Compute the shortname of a fully qualified identifier. See https://w3id.org/cwl/v1.2/SchemaSalad.html#Short_names.