@nfdi4plants/arctrl 3.0.0-beta.9 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +30 -3
- package/dist/ts/index.d.ts +54 -16
- package/dist/ts/index.d.ts.map +1 -1
- package/dist/ts/index.js +56 -18
- package/dist/ts/ts/ARC.d.ts +26 -9
- package/dist/ts/ts/ARC.d.ts.map +1 -1
- package/dist/ts/ts/ARC.js +148 -63
- package/dist/ts/ts/CWL/CWLProcessingUnit.d.ts +62 -0
- package/dist/ts/ts/CWL/CWLProcessingUnit.d.ts.map +1 -0
- package/dist/ts/ts/CWL/CWLProcessingUnit.js +250 -0
- package/dist/ts/ts/CWL/CWLTypes.d.ts +148 -0
- package/dist/ts/ts/CWL/CWLTypes.d.ts.map +1 -0
- package/dist/ts/ts/CWL/CWLTypes.js +384 -0
- package/dist/ts/ts/CWL/Decode.d.ts +214 -0
- package/dist/ts/ts/CWL/Decode.d.ts.map +1 -0
- package/dist/ts/ts/CWL/Decode.js +2667 -0
- package/dist/ts/ts/CWL/Encode.d.ts +103 -0
- package/dist/ts/ts/CWL/Encode.d.ts.map +1 -0
- package/dist/ts/ts/CWL/Encode.js +1513 -0
- package/dist/ts/ts/CWL/ExpressionToolDescription.d.ts +50 -0
- package/dist/ts/ts/CWL/ExpressionToolDescription.d.ts.map +1 -0
- package/dist/ts/ts/CWL/ExpressionToolDescription.js +152 -0
- package/dist/ts/ts/CWL/HashHelpers.d.ts +9 -0
- package/dist/ts/ts/CWL/HashHelpers.d.ts.map +1 -0
- package/dist/ts/ts/CWL/HashHelpers.js +35 -0
- package/dist/ts/ts/CWL/Inputs.d.ts +31 -0
- package/dist/ts/ts/CWL/Inputs.d.ts.map +1 -0
- package/dist/ts/ts/CWL/Inputs.js +86 -0
- package/dist/ts/ts/CWL/OperationDescription.d.ts +46 -0
- package/dist/ts/ts/CWL/OperationDescription.d.ts.map +1 -0
- package/dist/ts/ts/CWL/OperationDescription.js +133 -0
- package/dist/ts/ts/CWL/Outputs.d.ts +44 -0
- package/dist/ts/ts/CWL/Outputs.d.ts.map +1 -0
- package/dist/ts/ts/CWL/Outputs.js +143 -0
- package/dist/ts/ts/CWL/ParameterReference.d.ts +23 -0
- package/dist/ts/ts/CWL/ParameterReference.d.ts.map +1 -0
- package/dist/ts/ts/CWL/ParameterReference.js +60 -0
- package/dist/ts/ts/CWL/Requirements.d.ts +206 -0
- package/dist/ts/ts/CWL/Requirements.d.ts.map +1 -0
- package/dist/ts/ts/CWL/Requirements.js +384 -0
- package/dist/ts/ts/CWL/ToolDescription.d.ts +50 -0
- package/dist/ts/ts/CWL/ToolDescription.d.ts.map +1 -0
- package/dist/ts/ts/CWL/ToolDescription.js +152 -0
- package/dist/ts/ts/CWL/WorkflowDescription.d.ts +50 -0
- package/dist/ts/ts/CWL/WorkflowDescription.d.ts.map +1 -0
- package/dist/ts/ts/CWL/WorkflowDescription.js +142 -0
- package/dist/ts/ts/CWL/WorkflowSteps.d.ts +160 -0
- package/dist/ts/ts/CWL/WorkflowSteps.d.ts.map +1 -0
- package/dist/ts/ts/CWL/WorkflowSteps.js +317 -0
- package/dist/ts/ts/CWLRunResolver.d.ts +45 -0
- package/dist/ts/ts/CWLRunResolver.d.ts.map +1 -0
- package/dist/ts/ts/CWLRunResolver.js +181 -0
- package/dist/ts/ts/Contract/ARC.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ARC.js +27 -9
- package/dist/ts/ts/Contract/ArcRun.d.ts +6 -0
- package/dist/ts/ts/Contract/ArcRun.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcRun.js +131 -4
- package/dist/ts/ts/Contract/ArcWorkflow.d.ts +3 -0
- package/dist/ts/ts/Contract/ArcWorkflow.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcWorkflow.js +70 -4
- package/dist/ts/ts/Contract/Datamap.d.ts +25 -25
- package/dist/ts/ts/Contract/Datamap.js +34 -34
- package/dist/ts/ts/ContractIO/ContractIO.d.ts.map +1 -1
- package/dist/ts/ts/ContractIO/ContractIO.js +3 -1
- package/dist/ts/ts/Conversion/Assay.d.ts +13 -0
- package/dist/ts/ts/Conversion/Assay.d.ts.map +1 -0
- package/dist/ts/ts/Conversion/Assay.js +69 -0
- package/dist/ts/ts/Conversion/Basic.d.ts +105 -0
- package/dist/ts/ts/Conversion/Basic.d.ts.map +1 -0
- package/dist/ts/ts/Conversion/Basic.js +452 -0
- package/dist/ts/ts/Conversion/ColumnIndex.d.ts +11 -0
- package/dist/ts/ts/Conversion/ColumnIndex.d.ts.map +1 -0
- package/dist/ts/ts/Conversion/ColumnIndex.js +71 -0
- package/dist/ts/ts/Conversion/Datamap.d.ts +11 -0
- package/dist/ts/ts/Conversion/Datamap.d.ts.map +1 -0
- package/dist/ts/ts/Conversion/Datamap.js +21 -0
- package/dist/ts/ts/Conversion/DateTime.d.ts +4 -0
- package/dist/ts/ts/Conversion/DateTime.d.ts.map +1 -0
- package/dist/ts/ts/Conversion/DateTime.js +23 -0
- package/dist/ts/ts/Conversion/Investigation.d.ts +12 -0
- package/dist/ts/ts/Conversion/Investigation.d.ts.map +1 -0
- package/dist/ts/ts/Conversion/Investigation.js +79 -0
- package/dist/ts/ts/Conversion/Person.d.ts +16 -0
- package/dist/ts/ts/Conversion/Person.d.ts.map +1 -0
- package/dist/ts/ts/Conversion/Person.js +100 -0
- package/dist/ts/ts/Conversion/Process.d.ts +84 -0
- package/dist/ts/ts/Conversion/Process.d.ts.map +1 -0
- package/dist/ts/ts/Conversion/Process.js +455 -0
- package/dist/ts/ts/Conversion/Run.d.ts +35 -0
- package/dist/ts/ts/Conversion/Run.d.ts.map +1 -0
- package/dist/ts/ts/Conversion/Run.js +254 -0
- package/dist/ts/ts/Conversion/ScholarlyArticle.d.ts +16 -0
- package/dist/ts/ts/Conversion/ScholarlyArticle.d.ts.map +1 -0
- package/dist/ts/ts/Conversion/ScholarlyArticle.js +116 -0
- package/dist/ts/ts/Conversion/Study.d.ts +12 -0
- package/dist/ts/ts/Conversion/Study.d.ts.map +1 -0
- package/dist/ts/ts/Conversion/Study.js +51 -0
- package/dist/ts/ts/Conversion/Table.d.ts +45 -0
- package/dist/ts/ts/Conversion/Table.d.ts.map +1 -0
- package/dist/ts/ts/Conversion/Table.js +203 -0
- package/dist/ts/ts/Conversion/Workflow.d.ts +91 -0
- package/dist/ts/ts/Conversion/Workflow.d.ts.map +1 -0
- package/dist/ts/ts/Conversion/Workflow.js +455 -0
- package/dist/ts/ts/Conversion.d.ts +25 -276
- package/dist/ts/ts/Conversion.d.ts.map +1 -1
- package/dist/ts/ts/Conversion.js +64 -1477
- package/dist/ts/ts/Core/ArcTypes.d.ts +69 -59
- package/dist/ts/ts/Core/ArcTypes.d.ts.map +1 -1
- package/dist/ts/ts/Core/ArcTypes.js +222 -142
- package/dist/ts/ts/Core/{DataMap.d.ts → Datamap.d.ts} +24 -24
- package/dist/ts/ts/Core/{DataMap.d.ts.map → Datamap.d.ts.map} +1 -1
- package/dist/ts/ts/Core/{DataMap.js → Datamap.js} +36 -36
- package/dist/ts/ts/Core/Helper/Identifier.d.ts +24 -0
- package/dist/ts/ts/Core/Helper/Identifier.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/Identifier.js +35 -2
- package/dist/ts/ts/Core/Table/ArcTable.d.ts +8 -8
- package/dist/ts/ts/Core/Table/ArcTable.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/ArcTable.js +20 -20
- package/dist/ts/ts/FileSystem/FileSystemTree.d.ts +4 -4
- package/dist/ts/ts/FileSystem/FileSystemTree.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/FileSystemTree.js +20 -27
- package/dist/ts/ts/FileSystem/Path.d.ts +22 -0
- package/dist/ts/ts/FileSystem/Path.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/Path.js +173 -3
- package/dist/ts/ts/Json/Assay.js +5 -5
- package/dist/ts/ts/Json/{DataMap → Datamap}/DataContext.d.ts.map +1 -1
- package/dist/ts/ts/Json/{DataMap/DataMap.d.ts → Datamap/Datamap.d.ts} +6 -6
- package/dist/ts/ts/Json/{DataMap/DataMap.d.ts.map → Datamap/Datamap.d.ts.map} +1 -1
- package/dist/ts/ts/Json/{DataMap/DataMap.js → Datamap/Datamap.js} +2 -2
- package/dist/ts/ts/Json/ROCrate/LDContext.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDContext.js +21 -11
- package/dist/ts/ts/Json/ROCrate/LDNode.d.ts +1 -0
- package/dist/ts/ts/Json/ROCrate/LDNode.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDNode.js +18 -7
- package/dist/ts/ts/Json/Run.js +5 -5
- package/dist/ts/ts/Json/Study.js +5 -5
- package/dist/ts/ts/Json/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/Json/Workflow.js +10 -11
- package/dist/ts/ts/Json.d.ts +3 -5
- package/dist/ts/ts/Json.d.ts.map +1 -1
- package/dist/ts/ts/Json.js +4 -10
- package/dist/ts/ts/JsonIO/Datamap.d.ts +4 -4
- package/dist/ts/ts/JsonIO/Datamap.js +6 -6
- package/dist/ts/ts/JsonIO/Investigation.d.ts +0 -6
- package/dist/ts/ts/JsonIO/Investigation.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Investigation.js +2 -21
- package/dist/ts/ts/License.js +1 -1
- package/dist/ts/ts/ROCrate/LDContext.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDContext.js +35 -31
- package/dist/ts/ts/ROCrate/LDObject.d.ts +2 -2
- package/dist/ts/ts/ROCrate/LDObject.js +2 -2
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Comment.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.d.ts +63 -0
- package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.js +361 -0
- package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.d.ts +39 -0
- package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.js +219 -0
- package/dist/ts/ts/ROCrate/LDTypes/CreateAction.d.ts +43 -0
- package/dist/ts/ts/ROCrate/LDTypes/CreateAction.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/LDTypes/CreateAction.js +224 -0
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/CreativeWork.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/CreativeWork.js +1 -1
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Dataset.d.ts +34 -22
- package/dist/ts/ts/ROCrate/LDTypes/Dataset.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Dataset.js +59 -2
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/DefinedTerm.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/File.d.ts +10 -4
- package/dist/ts/ts/ROCrate/LDTypes/File.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/File.js +34 -1
- package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.d.ts +59 -0
- package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.js +344 -0
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/LabProcess.d.ts +2 -0
- package/dist/ts/ts/ROCrate/LDTypes/LabProcess.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/LabProcess.js +31 -5
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/LabProtocol.d.ts +6 -2
- package/dist/ts/ts/ROCrate/LDTypes/LabProtocol.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/LabProtocol.js +66 -15
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Organization.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Person.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/PostalAddress.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/PropertyValue.d.ts +35 -11
- package/dist/ts/ts/ROCrate/LDTypes/PropertyValue.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/PropertyValue.js +191 -1
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Sample.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/ScholarlyArticle.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.d.ts +46 -0
- package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.js +247 -0
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.d.ts +12 -0
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.js +40 -0
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.d.ts +11 -0
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.js +46 -0
- package/dist/ts/ts/ROCrate/ROCrateContext.d.ts +2 -2
- package/dist/ts/ts/ROCrate/ROCrateContext.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/ROCrateContext.js +6 -6
- package/dist/ts/ts/ROCrateIO.d.ts +7 -3
- package/dist/ts/ts/ROCrateIO.d.ts.map +1 -1
- package/dist/ts/ts/ROCrateIO.js +82 -13
- package/dist/ts/ts/Spreadsheet/ArcAssay.js +3 -3
- package/dist/ts/ts/Spreadsheet/ArcRun.js +2 -2
- package/dist/ts/ts/Spreadsheet/ArcStudy.js +3 -3
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.js +2 -2
- package/dist/ts/ts/Spreadsheet/Datamap.d.ts +8 -0
- package/dist/ts/ts/Spreadsheet/{DataMap.d.ts.map → Datamap.d.ts.map} +1 -1
- package/dist/ts/ts/Spreadsheet/{DataMap.js → Datamap.js} +9 -9
- package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapColumn.d.ts → DatamapTable/DatamapColumn.d.ts} +1 -1
- package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapColumn.d.ts.map → DatamapTable/DatamapColumn.d.ts.map} +1 -1
- package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapColumn.js → DatamapTable/DatamapColumn.js} +1 -1
- package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapHeader.d.ts → DatamapTable/DatamapHeader.d.ts} +1 -1
- package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapHeader.d.ts.map → DatamapTable/DatamapHeader.d.ts.map} +1 -1
- package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapTable.d.ts → DatamapTable/DatamapTable.d.ts} +5 -5
- package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapTable.d.ts.map → DatamapTable/DatamapTable.d.ts.map} +1 -1
- package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapTable.js → DatamapTable/DatamapTable.js} +6 -6
- package/dist/ts/ts/Spreadsheet/Metadata/Run.js +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.js +4 -4
- package/dist/ts/ts/WorkflowGraph/Adapters.d.ts +36 -0
- package/dist/ts/ts/WorkflowGraph/Adapters.d.ts.map +1 -0
- package/dist/ts/ts/WorkflowGraph/Adapters.js +94 -0
- package/dist/ts/ts/WorkflowGraph/BuildOptions.d.ts +37 -0
- package/dist/ts/ts/WorkflowGraph/BuildOptions.d.ts.map +1 -0
- package/dist/ts/ts/WorkflowGraph/BuildOptions.js +35 -0
- package/dist/ts/ts/WorkflowGraph/Builder.d.ts +160 -0
- package/dist/ts/ts/WorkflowGraph/Builder.d.ts.map +1 -0
- package/dist/ts/ts/WorkflowGraph/Builder.js +556 -0
- package/dist/ts/ts/WorkflowGraph/GraphTypes.d.ts +182 -0
- package/dist/ts/ts/WorkflowGraph/GraphTypes.d.ts.map +1 -0
- package/dist/ts/ts/WorkflowGraph/GraphTypes.js +281 -0
- package/dist/ts/ts/WorkflowGraph/ReferenceParsing.d.ts +27 -0
- package/dist/ts/ts/WorkflowGraph/ReferenceParsing.d.ts.map +1 -0
- package/dist/ts/ts/WorkflowGraph/ReferenceParsing.js +49 -0
- package/dist/ts/ts/Xlsx.d.ts +5 -5
- package/dist/ts/ts/Xlsx.js +1 -1
- package/dist/ts/ts/Yaml/ValidationPackage.d.ts +1 -1
- package/dist/ts/ts/Yaml/ValidationPackage.d.ts.map +1 -1
- package/dist/ts/ts/Yaml/ValidationPackage.js +6 -6
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts +1 -1
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts.map +1 -1
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.js +6 -6
- package/dist/ts/ts/Yaml.d.ts +24 -0
- package/dist/ts/ts/Yaml.d.ts.map +1 -0
- package/dist/ts/ts/Yaml.js +56 -0
- package/dist/ts/ts/fable_modules/DynamicObj.7.1.0/DynObj.fs.js +109 -0
- package/dist/ts/ts/fable_modules/{YAMLicious.0.0.3 → YAMLicious.1.0.0-alpha.4}/Encode.fs.js +9 -9
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.4/Escapes.fs.js +313 -0
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.4/FlowToBlock.fs.js +956 -0
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.4/Interop/JsInterop.fs.js +10 -0
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.4/Persil.fs.js +562 -0
- package/dist/ts/ts/fable_modules/{YAMLicious.0.0.3 → YAMLicious.1.0.0-alpha.4}/Preprocessing.fs.js +52 -12
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.4/Reader.fs.js +1314 -0
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.4/Regex.fs.js +21 -0
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.4/RegexActivePatterns.fs.js +313 -0
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.4/StringBuffer.fs.js +60 -0
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.4/Writer.fs.js +391 -0
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.4/YAMLiciousTypes.fs.js +317 -0
- package/package.json +1 -1
- package/dist/ts/ts/ROCrate/Generic/Dataset.d.ts.map +0 -1
- package/dist/ts/ts/ROCrate/Generic/File.d.ts.map +0 -1
- package/dist/ts/ts/ROCrate/Generic/LabProcess.d.ts.map +0 -1
- package/dist/ts/ts/ROCrate/Generic/LabProtocol.d.ts.map +0 -1
- package/dist/ts/ts/ROCrate/Generic/PropertyValue.d.ts.map +0 -1
- package/dist/ts/ts/Spreadsheet/DataMap.d.ts +0 -8
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +0 -10
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +0 -45
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +0 -483
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.js +0 -11
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +0 -212
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +0 -164
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +0 -152
- /package/dist/ts/ts/Json/{DataMap → Datamap}/DataContext.d.ts +0 -0
- /package/dist/ts/ts/Json/{DataMap → Datamap}/DataContext.js +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Comment.d.ts +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Comment.js +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/CreativeWork.d.ts +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/DefinedTerm.d.ts +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/DefinedTerm.js +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Organization.d.ts +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Organization.js +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Person.d.ts +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Person.js +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/PostalAddress.d.ts +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/PostalAddress.js +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Sample.d.ts +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Sample.js +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/ScholarlyArticle.d.ts +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/ScholarlyArticle.js +0 -0
- /package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapHeader.js → DatamapTable/DatamapHeader.js} +0 -0
- /package/dist/ts/ts/fable_modules/{DynamicObj.7.0.1 → DynamicObj.7.1.0}/DynamicObj.fs.js +0 -0
- /package/dist/ts/ts/fable_modules/{DynamicObj.7.0.1 → DynamicObj.7.1.0}/FableJS.fs.js +0 -0
- /package/dist/ts/ts/fable_modules/{DynamicObj.7.0.1 → DynamicObj.7.1.0}/HashCodes.fs.js +0 -0
- /package/dist/ts/ts/fable_modules/{DynamicObj.7.0.1 → DynamicObj.7.1.0}/PropertyHelper.fs.js +0 -0
- /package/dist/ts/ts/fable_modules/{DynamicObj.7.0.1 → DynamicObj.7.1.0}/ReflectionUtils.fs.js +0 -0
- /package/dist/ts/ts/fable_modules/{YAMLicious.0.0.3 → YAMLicious.1.0.0-alpha.4}/Decode.fs.js +0 -0
package/dist/ts/ts/ARC.js
CHANGED
|
@@ -10,39 +10,42 @@ import { promise } from './fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js';
|
|
|
10
10
|
import { getAllFilePathsAsync } from './ContractIO/FileSystemHelper.js';
|
|
11
11
|
import { toArray, contains, delay, append, singleton, iterate, tryFind, find, empty, collect, toList } from '../node_modules/@fable-org/fable-library-js/Seq.js';
|
|
12
12
|
import { defaultOf, stringHash, comparePrimitives, curry2, safeHash, getEnumerator, disposeSafe, equals } from '../node_modules/@fable-org/fable-library-js/Util.js';
|
|
13
|
-
import { getAssayFolderPath, getRunFolderPath, getWorkflowFolderPath, getStudyFolderPath } from './FileSystem/Path.js';
|
|
13
|
+
import { getAssayFolderPath, getRunFolderPath, getWorkflowFolderPath, getStudyFolderPath, normalizePathKey } from './FileSystem/Path.js';
|
|
14
14
|
import { ARCtrl_ArcAssay__ArcAssay_ToDeleteContract, ARCtrl_ArcAssay__ArcAssay_ToCreateContract_6FCE9E49, ARCtrl_ArcAssay__ArcAssay_ToUpdateContract, ARCtrl_ArcAssay__ArcAssay_tryFromReadContract_Static_7570923F } from './Contract/ArcAssay.js';
|
|
15
|
-
import { ARCtrl_ArcRun__ArcRun_ToDeleteContract, ARCtrl_ArcRun__ArcRun_ToCreateContract_6FCE9E49, ARCtrl_ArcRun__ArcRun_ToUpdateContract, ARCtrl_ArcRun__ArcRun_tryFromReadContract_Static_7570923F } from './Contract/ArcRun.js';
|
|
16
|
-
import { ARCtrl_ArcWorkflow__ArcWorkflow_ToDeleteContract, ARCtrl_ArcWorkflow__ArcWorkflow_ToCreateContract_6FCE9E49, ARCtrl_ArcWorkflow__ArcWorkflow_ToUpdateContract, ARCtrl_ArcWorkflow__ArcWorkflow_tryFromReadContract_Static_7570923F } from './Contract/ArcWorkflow.js';
|
|
15
|
+
import { ARCtrl_ArcRun__ArcRun_ToDeleteContract, ARCtrl_ArcRun__ArcRun_ToCreateContract_6FCE9E49, ARCtrl_ArcRun__ArcRun_ToUpdateContract, ARCtrl_ArcRun__ArcRun_tryFromReadContract_Static_7570923F, ARCtrl_ArcRun__ArcRun_tryCWLFromReadContract_Static, ARCtrl_ArcRun__ArcRun_tryYMLFromReadContract_Static } from './Contract/ArcRun.js';
|
|
16
|
+
import { ARCtrl_ArcWorkflow__ArcWorkflow_ToDeleteContract, ARCtrl_ArcWorkflow__ArcWorkflow_ToCreateContract_6FCE9E49, ARCtrl_ArcWorkflow__ArcWorkflow_ToUpdateContract, ARCtrl_ArcWorkflow__ArcWorkflow_tryFromReadContract_Static_7570923F, ARCtrl_ArcWorkflow__ArcWorkflow_tryCWLFromReadContract_Static } from './Contract/ArcWorkflow.js';
|
|
17
17
|
import { join, toFail, printf, replace, toText } from '../node_modules/@fable-org/fable-library-js/String.js';
|
|
18
18
|
import { map, choose, fold, concat, contains as contains$2, append as append$1, tryPick, equalsWith, item } from '../node_modules/@fable-org/fable-library-js/Array.js';
|
|
19
19
|
import { ARCtrl_ArcInvestigation__ArcInvestigation_ToUpdateContract, ARCtrl_ArcInvestigation__ArcInvestigation_tryFromReadContract_Static_7570923F } from './Contract/ArcInvestigation.js';
|
|
20
|
-
import { createMissingIdentifier, Study_fileNameFromIdentifier, Study_datamapFileNameFromIdentifier, Assay_fileNameFromIdentifier, Assay_datamapFileNameFromIdentifier, Workflow_fileNameFromIdentifier, Workflow_datamapFileNameFromIdentifier, Run_fileNameFromIdentifier, Run_datamapFileNameFromIdentifier } from './Core/Helper/Identifier.js';
|
|
20
|
+
import { createMissingIdentifier, Workflow_cwlFileNameFromIdentifier, Run_cwlFileNameFromIdentifier, Study_fileNameFromIdentifier, Study_datamapFileNameFromIdentifier, Assay_fileNameFromIdentifier, Assay_datamapFileNameFromIdentifier, Workflow_fileNameFromIdentifier, Workflow_datamapFileNameFromIdentifier, Run_fileNameFromIdentifier, Run_datamapFileNameFromIdentifier } from './Core/Helper/Identifier.js';
|
|
21
21
|
import { ofSeq, contains as contains$1, unionMany, FSharpSet__Contains } from '../node_modules/@fable-org/fable-library-js/Set.js';
|
|
22
22
|
import { ResizeArray_iter, ResizeArray_map } from './Core/Helper/Collections.js';
|
|
23
23
|
import { FileSystemTree_Folder, FileSystemTree, FileSystemTree_File } from './FileSystem/FileSystemTree.js';
|
|
24
24
|
import { tryISAReadContractFromPath } from './Contract/ARC.js';
|
|
25
25
|
import { setInvestigationIdentifier } from './Core/IdentifierSetters.js';
|
|
26
|
+
import { ofSeq as ofSeq$1, ofArray, tryFind as tryFind$1 } from '../node_modules/@fable-org/fable-library-js/Map.js';
|
|
26
27
|
import { ArcTables } from './Core/Table/ArcTables.js';
|
|
28
|
+
import { resolveRunReferencesFromLookup } from './CWLRunResolver.js';
|
|
27
29
|
import { addToDict } from '../node_modules/@fable-org/fable-library-js/MapUtil.js';
|
|
28
30
|
import { ARCtrl_ArcInvestigation__ArcInvestigation_toFsWorkbook_Static_Z720BD3FF } from './Spreadsheet/ArcInvestigation.js';
|
|
29
31
|
import { ARCtrl_ArcStudy__ArcStudy_toFsWorkbook_Static_Z4CEFA522 } from './Spreadsheet/ArcStudy.js';
|
|
30
|
-
import { toFsWorkbook } from './Spreadsheet/
|
|
32
|
+
import { toFsWorkbook } from './Spreadsheet/Datamap.js';
|
|
31
33
|
import { ARCtrl_ArcAssay__ArcAssay_toFsWorkbook_Static_Z2508BE4F } from './Spreadsheet/ArcAssay.js';
|
|
32
34
|
import { ARCtrl_ArcWorkflow__ArcWorkflow_toFsWorkbook_Static_Z1C75CB0E } from './Spreadsheet/ArcWorkflow.js';
|
|
33
35
|
import { ARCtrl_ArcRun__ArcRun_toFsWorkbook_Static_Z3EFAF6F8 } from './Spreadsheet/ArcRun.js';
|
|
34
36
|
import { Dictionary_tryGet } from './fable_modules/FsSpreadsheet.7.0.0-alpha.1/Cells/FsCellsCollection.fs.js';
|
|
35
37
|
import { ARCtrl_ArcStudy__ArcStudy_ToCreateContract_6FCE9E49, ARCtrl_ArcStudy__ArcStudy_ToUpdateContract, ARCtrl_ArcStudy__ArcStudy_tryFromReadContract_Static_7570923F } from './Contract/ArcStudy.js';
|
|
36
|
-
import {
|
|
38
|
+
import { ARCtrl_Datamap__Datamap_ToUpdateContractForStudy_Z721C83C5, ARCtrl_Datamap__Datamap_ToCreateContractForStudy_Z721C83C5, ARCtrl_Datamap__Datamap_ToUpdateContractForAssay_Z721C83C5, ARCtrl_Datamap__Datamap_ToCreateContractForAssay_Z721C83C5, ARCtrl_Datamap__Datamap_ToUpdateContractForWorkflow_Z721C83C5, ARCtrl_Datamap__Datamap_ToCreateContractForWorkflow_Z721C83C5, ARCtrl_Datamap__Datamap_ToUpdateContractForRun_Z721C83C5, ARCtrl_Datamap__Datamap_ToCreateContractForRun_Z721C83C5, ARCtrl_Datamap__Datamap_tryFromReadContractForAssay_Static, ARCtrl_Datamap__Datamap_tryFromReadContractForStudy_Static, ARCtrl_Datamap__Datamap_tryFromReadContractForWorkflow_Static, ARCtrl_Datamap__Datamap_tryFromReadContractForRun_Static } from './Contract/Datamap.js';
|
|
37
39
|
import { Init_createInitContract_6DFDD678, gitignoreContract, gitattributesContract, Init_createAddRemoteContract_Z721C83C5, Clone_createCloneContract_5000466F } from './Contract/Git.js';
|
|
38
|
-
import { ofSeq as ofSeq$1 } from '../node_modules/@fable-org/fable-library-js/Map.js';
|
|
39
40
|
import { fromString } from './fable_modules/Thoth.Json.JavaScript.0.4.1/Decode.fs.js';
|
|
40
|
-
import { ROCrate_get_decoderDeprecated, ROCrate_get_decoder,
|
|
41
|
+
import { ROCrate_get_decoderDeprecated, ROCrate_get_decoder, ROCrate_encoder_Z7FE34C43 } from './ROCrateIO.js';
|
|
41
42
|
import { toString } from './fable_modules/Thoth.Json.JavaScript.0.4.1/Encode.fs.js';
|
|
42
43
|
import { defaultSpaces } from './Json/Encode.js';
|
|
43
44
|
import { ValidationPackagesConfigHelper_ConfigFilePath, ARCtrl_ValidationPackages_ValidationPackagesConfig__ValidationPackagesConfig_toCreateContract_Static_724DAE55, ARCtrl_ValidationPackages_ValidationPackagesConfig__ValidationPackagesConfig_toDeleteContract_Static_724DAE55, ValidationPackagesConfigHelper_ReadContract, ARCtrl_ValidationPackages_ValidationPackagesConfig__ValidationPackagesConfig_tryFromReadContract_Static_7570923F } from './Contract/ValidationPackagesConfig.js';
|
|
45
|
+
import { ofInvestigation } from './WorkflowGraph/Adapters.js';
|
|
44
46
|
import { FSharpRef } from '../node_modules/@fable-org/fable-library-js/Types.js';
|
|
45
47
|
import { class_type } from '../node_modules/@fable-org/fable-library-js/Reflection.js';
|
|
48
|
+
import { Decode_decodeCWLProcessingUnit } from './CWL/Decode.js';
|
|
46
49
|
|
|
47
50
|
class ARC extends ArcInvestigation {
|
|
48
51
|
constructor(identifier, title, description, submissionDate, publicReleaseDate, ontologySourceReferences, publications, contacts, assays, studies, workflows, runs, registeredStudyIdentifiers, comments, remarks, fs, license) {
|
|
@@ -54,7 +57,7 @@ class ARC extends ArcInvestigation {
|
|
|
54
57
|
this._fs = (fs_1 = defaultArg(fs, FileSystem.create({
|
|
55
58
|
tree: FileSystemTree_Folder("", [])
|
|
56
59
|
})), ARCAux_updateFSByARC(this$.contents, license, fs_1));
|
|
57
|
-
this["init@
|
|
60
|
+
this["init@133"] = 1;
|
|
58
61
|
}
|
|
59
62
|
get FileSystem() {
|
|
60
63
|
const this$ = this;
|
|
@@ -465,7 +468,7 @@ class ARC extends ArcInvestigation {
|
|
|
465
468
|
updateColumnOption(dataNameFunction_1, t.TryGetInputColumn());
|
|
466
469
|
updateColumnOption(dataNameFunction_1, t.TryGetOutputColumn());
|
|
467
470
|
};
|
|
468
|
-
const
|
|
471
|
+
const updateDatamap = (dataNameFunction_2, dm) => {
|
|
469
472
|
iterate((c_1) => {
|
|
470
473
|
if (c_1.FilePath != null) {
|
|
471
474
|
const newFilePath_1 = dataNameFunction_2(c_1);
|
|
@@ -477,16 +480,16 @@ class ARC extends ArcInvestigation {
|
|
|
477
480
|
const f_1 = (d) => d.GetAbsolutePathForStudy(s.Identifier, checkExistenceFromRoot);
|
|
478
481
|
const source_1 = s.Tables;
|
|
479
482
|
iterate(curry2(updateTable)(f_1), source_1);
|
|
480
|
-
if (s.
|
|
481
|
-
|
|
483
|
+
if (s.Datamap != null) {
|
|
484
|
+
updateDatamap(f_1, value(s.Datamap));
|
|
482
485
|
}
|
|
483
486
|
}, this$.Studies);
|
|
484
487
|
iterate((a_1) => {
|
|
485
488
|
const f_2 = (d_1) => d_1.GetAbsolutePathForAssay(a_1.Identifier, checkExistenceFromRoot);
|
|
486
489
|
const source_3 = a_1.Tables;
|
|
487
490
|
iterate(curry2(updateTable)(f_2), source_3);
|
|
488
|
-
if (a_1.
|
|
489
|
-
|
|
491
|
+
if (a_1.Datamap != null) {
|
|
492
|
+
updateDatamap(f_2, value(a_1.Datamap));
|
|
490
493
|
}
|
|
491
494
|
}, this$.Assays);
|
|
492
495
|
}
|
|
@@ -522,6 +525,8 @@ class ARC extends ArcInvestigation {
|
|
|
522
525
|
const workflows = ARCAux_getArcWorkflowsFromContracts(contracts);
|
|
523
526
|
const runs = ARCAux_getArcRunsFromContracts(contracts);
|
|
524
527
|
const license = ARCAux_getLicenseFromContracts(contracts);
|
|
528
|
+
const cwlByPath = ARCAux_getCWLByPathFromContracts(contracts);
|
|
529
|
+
const tryGetCWLByPath = (path) => ARCAux_tryGetCWLByPath(cwlByPath, path);
|
|
525
530
|
const array_2 = this$.AssayIdentifiers;
|
|
526
531
|
array_2.forEach((ai) => {
|
|
527
532
|
if (!assays.some((a) => a.Identifier === ai)) {
|
|
@@ -542,9 +547,9 @@ class ARC extends ArcInvestigation {
|
|
|
542
547
|
const registeredStudy = value(registeredStudyOpt);
|
|
543
548
|
registeredStudy.UpdateReferenceByStudyFile(study, true);
|
|
544
549
|
}
|
|
545
|
-
const datamap =
|
|
546
|
-
if (study.
|
|
547
|
-
study.
|
|
550
|
+
const datamap = ARCAux_getStudyDatamapFromContracts(study.Identifier, contracts);
|
|
551
|
+
if (study.Datamap == null) {
|
|
552
|
+
study.Datamap = datamap;
|
|
548
553
|
}
|
|
549
554
|
study.StaticHash = study.GetLightHashCode() | 0;
|
|
550
555
|
});
|
|
@@ -560,25 +565,35 @@ class ARC extends ArcInvestigation {
|
|
|
560
565
|
let updatedTables;
|
|
561
566
|
const array_6 = assay_1.StudiesRegisteredIn;
|
|
562
567
|
updatedTables = fold((tables, study_1) => ArcTables.updateReferenceTablesBySheets(new ArcTables(study_1.Tables), tables, false), new ArcTables(assay_1.Tables), array_6);
|
|
563
|
-
const datamap_1 =
|
|
564
|
-
if (assay_1.
|
|
565
|
-
assay_1.
|
|
568
|
+
const datamap_1 = ARCAux_getAssayDatamapFromContracts(assay_1.Identifier, contracts);
|
|
569
|
+
if (assay_1.Datamap == null) {
|
|
570
|
+
assay_1.Datamap = datamap_1;
|
|
566
571
|
}
|
|
567
572
|
assay_1.Tables = updatedTables.Tables;
|
|
568
573
|
});
|
|
569
574
|
workflows.forEach((workflow) => {
|
|
570
|
-
const datamap_2 =
|
|
571
|
-
|
|
572
|
-
|
|
575
|
+
const datamap_2 = ARCAux_getWorkflowDatamapFromContracts(workflow.Identifier, contracts);
|
|
576
|
+
const cwl = ARCAux_getWorkflowCWLFromContracts(workflow.Identifier, contracts);
|
|
577
|
+
const cwlFilePath = Workflow_cwlFileNameFromIdentifier(workflow.Identifier);
|
|
578
|
+
const resolvedCwl = map$1((processingUnit) => resolveRunReferencesFromLookup(cwlFilePath, processingUnit, tryGetCWLByPath), cwl);
|
|
579
|
+
if (workflow.Datamap == null) {
|
|
580
|
+
workflow.Datamap = datamap_2;
|
|
573
581
|
}
|
|
582
|
+
workflow.CWLDescription = resolvedCwl;
|
|
574
583
|
this$.AddWorkflow(workflow);
|
|
575
584
|
workflow.StaticHash = workflow.GetLightHashCode() | 0;
|
|
576
585
|
});
|
|
577
586
|
runs.forEach((run) => {
|
|
578
|
-
const datamap_3 =
|
|
579
|
-
|
|
580
|
-
|
|
587
|
+
const datamap_3 = ARCAux_getRunDatamapFromContracts(run.Identifier, contracts);
|
|
588
|
+
const cwl_1 = ARCAux_getRunCWLFromContracts(run.Identifier, contracts);
|
|
589
|
+
const yml = ARCAux_getRunYMLFromContracts(run.Identifier, contracts);
|
|
590
|
+
const cwlFilePath_1 = Run_cwlFileNameFromIdentifier(run.Identifier);
|
|
591
|
+
const resolvedCwl_1 = map$1((processingUnit_1) => resolveRunReferencesFromLookup(cwlFilePath_1, processingUnit_1, tryGetCWLByPath), cwl_1);
|
|
592
|
+
if (run.Datamap == null) {
|
|
593
|
+
run.Datamap = datamap_3;
|
|
581
594
|
}
|
|
595
|
+
run.CWLInput = defaultArg(yml, []);
|
|
596
|
+
run.CWLDescription = resolvedCwl_1;
|
|
582
597
|
this$.AddRun(run);
|
|
583
598
|
run.StaticHash = run.GetLightHashCode() | 0;
|
|
584
599
|
});
|
|
@@ -607,8 +622,8 @@ class ARC extends ArcInvestigation {
|
|
|
607
622
|
iterate((s) => {
|
|
608
623
|
s.StaticHash = s.GetLightHashCode() | 0;
|
|
609
624
|
addToDict(filemap, Study_fileNameFromIdentifier(s.Identifier), ["ISA_Study", ARCtrl_ArcStudy__ArcStudy_toFsWorkbook_Static_Z4CEFA522(s)]);
|
|
610
|
-
if (s.
|
|
611
|
-
const dm = value(s.
|
|
625
|
+
if (s.Datamap != null) {
|
|
626
|
+
const dm = value(s.Datamap);
|
|
612
627
|
dm.StaticHash = safeHash(dm) | 0;
|
|
613
628
|
addToDict(filemap, Study_datamapFileNameFromIdentifier(s.Identifier), ["ISA_Datamap", toFsWorkbook(dm)]);
|
|
614
629
|
}
|
|
@@ -616,8 +631,8 @@ class ARC extends ArcInvestigation {
|
|
|
616
631
|
iterate((a) => {
|
|
617
632
|
a.StaticHash = a.GetLightHashCode() | 0;
|
|
618
633
|
addToDict(filemap, Assay_fileNameFromIdentifier(a.Identifier), ["ISA_Assay", ARCtrl_ArcAssay__ArcAssay_toFsWorkbook_Static_Z2508BE4F(a)]);
|
|
619
|
-
if (a.
|
|
620
|
-
const dm_1 = value(a.
|
|
634
|
+
if (a.Datamap != null) {
|
|
635
|
+
const dm_1 = value(a.Datamap);
|
|
621
636
|
dm_1.StaticHash = safeHash(dm_1) | 0;
|
|
622
637
|
addToDict(filemap, Assay_datamapFileNameFromIdentifier(a.Identifier), ["ISA_Datamap", toFsWorkbook(dm_1)]);
|
|
623
638
|
}
|
|
@@ -625,8 +640,11 @@ class ARC extends ArcInvestigation {
|
|
|
625
640
|
iterate((w) => {
|
|
626
641
|
w.StaticHash = w.GetLightHashCode() | 0;
|
|
627
642
|
addToDict(filemap, Workflow_fileNameFromIdentifier(w.Identifier), ["ISA_Workflow", ARCtrl_ArcWorkflow__ArcWorkflow_toFsWorkbook_Static_Z1C75CB0E(w)]);
|
|
628
|
-
if (w.
|
|
629
|
-
|
|
643
|
+
if (w.CWLDescription != null) {
|
|
644
|
+
throw new Error("Not implemented yet: CWL description in ARC.GetWriteContracts");
|
|
645
|
+
}
|
|
646
|
+
if (w.Datamap != null) {
|
|
647
|
+
const dm_2 = value(w.Datamap);
|
|
630
648
|
dm_2.StaticHash = safeHash(dm_2) | 0;
|
|
631
649
|
addToDict(filemap, Workflow_datamapFileNameFromIdentifier(w.Identifier), ["ISA_Datamap", toFsWorkbook(dm_2)]);
|
|
632
650
|
}
|
|
@@ -634,8 +652,14 @@ class ARC extends ArcInvestigation {
|
|
|
634
652
|
iterate((r) => {
|
|
635
653
|
r.StaticHash = r.GetLightHashCode() | 0;
|
|
636
654
|
addToDict(filemap, Run_fileNameFromIdentifier(r.Identifier), ["ISA_Run", ARCtrl_ArcRun__ArcRun_toFsWorkbook_Static_Z3EFAF6F8(r)]);
|
|
637
|
-
if (r.
|
|
638
|
-
|
|
655
|
+
if (r.CWLDescription != null) {
|
|
656
|
+
throw new Error("Not implemented yet: CWL description in ARC.GetWriteContracts");
|
|
657
|
+
}
|
|
658
|
+
if (r.CWLInput.length > 0) {
|
|
659
|
+
throw new Error("Not implemented yet: CWL YAML input in ARC.GetWriteContracts");
|
|
660
|
+
}
|
|
661
|
+
if (r.Datamap != null) {
|
|
662
|
+
const dm_3 = value(r.Datamap);
|
|
639
663
|
dm_3.StaticHash = safeHash(dm_3) | 0;
|
|
640
664
|
addToDict(filemap, Run_datamapFileNameFromIdentifier(r.Identifier), ["ISA_Datamap", toFsWorkbook(dm_3)]);
|
|
641
665
|
}
|
|
@@ -674,7 +698,7 @@ class ARC extends ArcInvestigation {
|
|
|
674
698
|
return append(s.StaticHash === 0 ? ARCtrl_ArcStudy__ArcStudy_ToCreateContract_6FCE9E49(s, true) : s.StaticHash !== hash_1 ? singleton(ARCtrl_ArcStudy__ArcStudy_ToUpdateContract(s)) : empty(), delay(() => {
|
|
675
699
|
let dm, dm_1;
|
|
676
700
|
s.StaticHash = hash_1 | 0;
|
|
677
|
-
const matchValue = s.
|
|
701
|
+
const matchValue = s.Datamap;
|
|
678
702
|
let matchResult, dm_2, dm_3;
|
|
679
703
|
if (matchValue != null) {
|
|
680
704
|
if (dm = value(matchValue), dm.StaticHash === 0) {
|
|
@@ -691,12 +715,12 @@ class ARC extends ArcInvestigation {
|
|
|
691
715
|
}
|
|
692
716
|
switch (matchResult) {
|
|
693
717
|
case 0:
|
|
694
|
-
return append(singleton(
|
|
718
|
+
return append(singleton(ARCtrl_Datamap__Datamap_ToCreateContractForStudy_Z721C83C5(dm_2, s.Identifier)), delay(() => {
|
|
695
719
|
dm_2.StaticHash = safeHash(dm_2) | 0;
|
|
696
720
|
return empty();
|
|
697
721
|
}));
|
|
698
722
|
case 1:
|
|
699
|
-
return append(singleton(
|
|
723
|
+
return append(singleton(ARCtrl_Datamap__Datamap_ToUpdateContractForStudy_Z721C83C5(dm_3, s.Identifier)), delay(() => {
|
|
700
724
|
dm_3.StaticHash = safeHash(dm_3) | 0;
|
|
701
725
|
return empty();
|
|
702
726
|
}));
|
|
@@ -710,7 +734,7 @@ class ARC extends ArcInvestigation {
|
|
|
710
734
|
return append(a.StaticHash === 0 ? ARCtrl_ArcAssay__ArcAssay_ToCreateContract_6FCE9E49(a, true) : a.StaticHash !== hash_2 ? singleton(ARCtrl_ArcAssay__ArcAssay_ToUpdateContract(a)) : empty(), delay(() => {
|
|
711
735
|
let dm_4, dm_5;
|
|
712
736
|
a.StaticHash = hash_2 | 0;
|
|
713
|
-
const matchValue_1 = a.
|
|
737
|
+
const matchValue_1 = a.Datamap;
|
|
714
738
|
let matchResult_1, dm_6, dm_7;
|
|
715
739
|
if (matchValue_1 != null) {
|
|
716
740
|
if (dm_4 = value(matchValue_1), dm_4.StaticHash === 0) {
|
|
@@ -727,12 +751,12 @@ class ARC extends ArcInvestigation {
|
|
|
727
751
|
}
|
|
728
752
|
switch (matchResult_1) {
|
|
729
753
|
case 0:
|
|
730
|
-
return append(singleton(
|
|
754
|
+
return append(singleton(ARCtrl_Datamap__Datamap_ToCreateContractForAssay_Z721C83C5(dm_6, a.Identifier)), delay(() => {
|
|
731
755
|
dm_6.StaticHash = safeHash(dm_6) | 0;
|
|
732
756
|
return empty();
|
|
733
757
|
}));
|
|
734
758
|
case 1:
|
|
735
|
-
return append(singleton(
|
|
759
|
+
return append(singleton(ARCtrl_Datamap__Datamap_ToUpdateContractForAssay_Z721C83C5(dm_7, a.Identifier)), delay(() => {
|
|
736
760
|
dm_7.StaticHash = safeHash(dm_7) | 0;
|
|
737
761
|
return empty();
|
|
738
762
|
}));
|
|
@@ -746,7 +770,7 @@ class ARC extends ArcInvestigation {
|
|
|
746
770
|
return append(w.StaticHash === 0 ? ARCtrl_ArcWorkflow__ArcWorkflow_ToCreateContract_6FCE9E49(w, true) : w.StaticHash !== hash_3 ? singleton(ARCtrl_ArcWorkflow__ArcWorkflow_ToUpdateContract(w)) : empty(), delay(() => {
|
|
747
771
|
let dm_8, dm_9;
|
|
748
772
|
w.StaticHash = hash_3 | 0;
|
|
749
|
-
const matchValue_2 = w.
|
|
773
|
+
const matchValue_2 = w.Datamap;
|
|
750
774
|
let matchResult_2, dm_10, dm_11;
|
|
751
775
|
if (matchValue_2 != null) {
|
|
752
776
|
if (dm_8 = value(matchValue_2), dm_8.StaticHash === 0) {
|
|
@@ -763,12 +787,12 @@ class ARC extends ArcInvestigation {
|
|
|
763
787
|
}
|
|
764
788
|
switch (matchResult_2) {
|
|
765
789
|
case 0:
|
|
766
|
-
return append(singleton(
|
|
790
|
+
return append(singleton(ARCtrl_Datamap__Datamap_ToCreateContractForWorkflow_Z721C83C5(dm_10, w.Identifier)), delay(() => {
|
|
767
791
|
dm_10.StaticHash = safeHash(dm_10) | 0;
|
|
768
792
|
return empty();
|
|
769
793
|
}));
|
|
770
794
|
case 1:
|
|
771
|
-
return append(singleton(
|
|
795
|
+
return append(singleton(ARCtrl_Datamap__Datamap_ToUpdateContractForWorkflow_Z721C83C5(dm_11, w.Identifier)), delay(() => {
|
|
772
796
|
dm_11.StaticHash = safeHash(dm_11) | 0;
|
|
773
797
|
return empty();
|
|
774
798
|
}));
|
|
@@ -782,7 +806,7 @@ class ARC extends ArcInvestigation {
|
|
|
782
806
|
return append(r.StaticHash === 0 ? ARCtrl_ArcRun__ArcRun_ToCreateContract_6FCE9E49(r, true) : r.StaticHash !== hash_4 ? singleton(ARCtrl_ArcRun__ArcRun_ToUpdateContract(r)) : empty(), delay(() => {
|
|
783
807
|
let dm_12, dm_13;
|
|
784
808
|
r.StaticHash = hash_4 | 0;
|
|
785
|
-
const matchValue_3 = r.
|
|
809
|
+
const matchValue_3 = r.Datamap;
|
|
786
810
|
let matchResult_3, dm_14, dm_15;
|
|
787
811
|
if (matchValue_3 != null) {
|
|
788
812
|
if (dm_12 = value(matchValue_3), dm_12.StaticHash === 0) {
|
|
@@ -799,12 +823,12 @@ class ARC extends ArcInvestigation {
|
|
|
799
823
|
}
|
|
800
824
|
switch (matchResult_3) {
|
|
801
825
|
case 0:
|
|
802
|
-
return append(singleton(
|
|
826
|
+
return append(singleton(ARCtrl_Datamap__Datamap_ToCreateContractForRun_Z721C83C5(dm_14, r.Identifier)), delay(() => {
|
|
803
827
|
dm_14.StaticHash = safeHash(dm_14) | 0;
|
|
804
828
|
return empty();
|
|
805
829
|
}));
|
|
806
830
|
case 1:
|
|
807
|
-
return append(singleton(
|
|
831
|
+
return append(singleton(ARCtrl_Datamap__Datamap_ToUpdateContractForRun_Z721C83C5(dm_15, r.Identifier)), delay(() => {
|
|
808
832
|
dm_15.StaticHash = safeHash(dm_15) | 0;
|
|
809
833
|
return empty();
|
|
810
834
|
}));
|
|
@@ -999,14 +1023,14 @@ class ARC extends ArcInvestigation {
|
|
|
999
1023
|
return toFail(printf("Could not parse ARC-RO-Crate metadata: \n%s"))(arg_1);
|
|
1000
1024
|
}
|
|
1001
1025
|
}
|
|
1002
|
-
ToROCrateJsonString(spaces) {
|
|
1026
|
+
ToROCrateJsonString(spaces, ignoreBrokenWR) {
|
|
1003
1027
|
const this$ = this;
|
|
1004
1028
|
this$.MakeDataFilesAbsolute();
|
|
1005
|
-
const value =
|
|
1029
|
+
const value = ROCrate_encoder_Z7FE34C43(this$, unwrap(this$._license), this$._fs, unwrap(ignoreBrokenWR));
|
|
1006
1030
|
return toString(defaultSpaces(spaces), value);
|
|
1007
1031
|
}
|
|
1008
|
-
static toROCrateJsonString(spaces) {
|
|
1009
|
-
return (obj) => obj.ToROCrateJsonString(unwrap(spaces));
|
|
1032
|
+
static toROCrateJsonString(spaces, ignoreBrokenWR) {
|
|
1033
|
+
return (obj) => obj.ToROCrateJsonString(unwrap(spaces), unwrap(ignoreBrokenWR));
|
|
1010
1034
|
}
|
|
1011
1035
|
GetLicenseWriteContract() {
|
|
1012
1036
|
const this$ = this;
|
|
@@ -1050,6 +1074,18 @@ class ARC extends ArcInvestigation {
|
|
|
1050
1074
|
}
|
|
1051
1075
|
return this$.FileSystem.Tree.ToFilePaths(unwrap(removeRoot));
|
|
1052
1076
|
}
|
|
1077
|
+
BuildWorkflowGraphs() {
|
|
1078
|
+
const this$ = this;
|
|
1079
|
+
return ofInvestigation(this$).WorkflowGraphs;
|
|
1080
|
+
}
|
|
1081
|
+
BuildRunGraphs() {
|
|
1082
|
+
const this$ = this;
|
|
1083
|
+
return ofInvestigation(this$).RunGraphs;
|
|
1084
|
+
}
|
|
1085
|
+
BuildAllProcessingUnitGraphs() {
|
|
1086
|
+
const this$ = this;
|
|
1087
|
+
return ofInvestigation(this$);
|
|
1088
|
+
}
|
|
1053
1089
|
}
|
|
1054
1090
|
function ARC_$reflection() {
|
|
1055
1091
|
return class_type("ARCtrl.ARC", void 0, ARC, ArcInvestigation_$reflection());
|
|
@@ -1069,17 +1105,66 @@ function ARCAux_getArcWorkflowsFromContracts(contracts) {
|
|
|
1069
1105
|
function ARCAux_getArcRunsFromContracts(contracts) {
|
|
1070
1106
|
return choose(ARCtrl_ArcRun__ArcRun_tryFromReadContract_Static_7570923F, contracts);
|
|
1071
1107
|
}
|
|
1072
|
-
function
|
|
1073
|
-
return tryPick((c) =>
|
|
1108
|
+
function ARCAux_getAssayDatamapFromContracts(assayIdentifier, contracts) {
|
|
1109
|
+
return tryPick((c) => ARCtrl_Datamap__Datamap_tryFromReadContractForAssay_Static(assayIdentifier, c), contracts);
|
|
1110
|
+
}
|
|
1111
|
+
function ARCAux_getStudyDatamapFromContracts(studyIdentifier, contracts) {
|
|
1112
|
+
return tryPick((c) => ARCtrl_Datamap__Datamap_tryFromReadContractForStudy_Static(studyIdentifier, c), contracts);
|
|
1113
|
+
}
|
|
1114
|
+
function ARCAux_getWorkflowDatamapFromContracts(workflowIdentifier, contracts) {
|
|
1115
|
+
return tryPick((c) => ARCtrl_Datamap__Datamap_tryFromReadContractForWorkflow_Static(workflowIdentifier, c), contracts);
|
|
1116
|
+
}
|
|
1117
|
+
function ARCAux_getRunDatamapFromContracts(runIdentifier, contracts) {
|
|
1118
|
+
return tryPick((c) => ARCtrl_Datamap__Datamap_tryFromReadContractForRun_Static(runIdentifier, c), contracts);
|
|
1119
|
+
}
|
|
1120
|
+
function ARCAux_getWorkflowCWLFromContracts(workflowIdentifier, contracts) {
|
|
1121
|
+
return tryPick((c) => ARCtrl_ArcWorkflow__ArcWorkflow_tryCWLFromReadContract_Static(workflowIdentifier, c), contracts);
|
|
1122
|
+
}
|
|
1123
|
+
function ARCAux_getRunCWLFromContracts(runIdentifier, contracts) {
|
|
1124
|
+
return tryPick((c) => ARCtrl_ArcRun__ArcRun_tryCWLFromReadContract_Static(runIdentifier, c), contracts);
|
|
1074
1125
|
}
|
|
1075
|
-
function
|
|
1076
|
-
return tryPick((c) =>
|
|
1126
|
+
function ARCAux_getRunYMLFromContracts(runIdentifier, contracts) {
|
|
1127
|
+
return tryPick((c) => ARCtrl_ArcRun__ArcRun_tryYMLFromReadContract_Static(runIdentifier, c), contracts);
|
|
1077
1128
|
}
|
|
1078
|
-
function
|
|
1079
|
-
return
|
|
1129
|
+
function ARCAux_getCWLByPathFromContracts(contracts) {
|
|
1130
|
+
return ofArray(choose((c) => {
|
|
1131
|
+
let matchResult, text;
|
|
1132
|
+
if (c.Operation === "READ") {
|
|
1133
|
+
if (c.DTOType != null) {
|
|
1134
|
+
if (value(c.DTOType) === "CWL") {
|
|
1135
|
+
if (c.DTO != null) {
|
|
1136
|
+
if (typeof value(c.DTO) === "string") {
|
|
1137
|
+
matchResult = 0;
|
|
1138
|
+
text = value(c.DTO);
|
|
1139
|
+
} else {
|
|
1140
|
+
matchResult = 1;
|
|
1141
|
+
}
|
|
1142
|
+
} else {
|
|
1143
|
+
matchResult = 1;
|
|
1144
|
+
}
|
|
1145
|
+
} else {
|
|
1146
|
+
matchResult = 1;
|
|
1147
|
+
}
|
|
1148
|
+
} else {
|
|
1149
|
+
matchResult = 1;
|
|
1150
|
+
}
|
|
1151
|
+
} else {
|
|
1152
|
+
matchResult = 1;
|
|
1153
|
+
}
|
|
1154
|
+
switch (matchResult) {
|
|
1155
|
+
case 0: {
|
|
1156
|
+
const cwl = Decode_decodeCWLProcessingUnit(text);
|
|
1157
|
+
return [normalizePathKey(c.Path), cwl];
|
|
1158
|
+
}
|
|
1159
|
+
default:
|
|
1160
|
+
return void 0;
|
|
1161
|
+
}
|
|
1162
|
+
}, contracts), {
|
|
1163
|
+
Compare: comparePrimitives
|
|
1164
|
+
});
|
|
1080
1165
|
}
|
|
1081
|
-
function
|
|
1082
|
-
return
|
|
1166
|
+
function ARCAux_tryGetCWLByPath(cwlByPath, path) {
|
|
1167
|
+
return tryFind$1(normalizePathKey(path), cwlByPath);
|
|
1083
1168
|
}
|
|
1084
1169
|
function ARCAux_getArcInvestigationFromContracts(contracts) {
|
|
1085
1170
|
const matchValue = choose(ARCtrl_ArcInvestigation__ArcInvestigation_tryFromReadContract_Static_7570923F, contracts);
|
|
@@ -1095,16 +1180,16 @@ function ARCAux_getLicenseFromContracts(contracts) {
|
|
|
1095
1180
|
}
|
|
1096
1181
|
function ARCAux_updateFSByARC(isa, license, fs) {
|
|
1097
1182
|
let assaysFolder;
|
|
1098
|
-
const assays = map((a) => FileSystemTree.createAssayFolder(a.Identifier, a.
|
|
1183
|
+
const assays = map((a) => FileSystemTree.createAssayFolder(a.Identifier, a.Datamap != null), toArray(isa.Assays));
|
|
1099
1184
|
assaysFolder = FileSystemTree.createAssaysFolder(assays);
|
|
1100
1185
|
let studiesFolder;
|
|
1101
|
-
const studies = map((s) => FileSystemTree.createStudyFolder(s.Identifier, s.
|
|
1186
|
+
const studies = map((s) => FileSystemTree.createStudyFolder(s.Identifier, s.Datamap != null), toArray(isa.Studies));
|
|
1102
1187
|
studiesFolder = FileSystemTree.createStudiesFolder(studies);
|
|
1103
1188
|
let workflowsFolder;
|
|
1104
|
-
const workflows = map((w) => FileSystemTree.createWorkflowFolder(w.Identifier, w.
|
|
1189
|
+
const workflows = map((w) => FileSystemTree.createWorkflowFolder(w.Identifier, w.CWLDescription != null, w.Datamap != null), toArray(isa.Workflows));
|
|
1105
1190
|
workflowsFolder = FileSystemTree.createWorkflowsFolder(workflows);
|
|
1106
1191
|
let runsFolder;
|
|
1107
|
-
const runs = map((r) => FileSystemTree.createRunFolder(r.Identifier, r.
|
|
1192
|
+
const runs = map((r) => FileSystemTree.createRunFolder(r.Identifier, r.CWLDescription != null, r.CWLInput.length > 0, r.Datamap != null), toArray(isa.Runs));
|
|
1108
1193
|
runsFolder = FileSystemTree.createRunsFolder(runs);
|
|
1109
1194
|
const investigation = FileSystemTree.createInvestigationFile();
|
|
1110
1195
|
let tree_1;
|
|
@@ -1115,4 +1200,4 @@ function ARCAux_updateFSByARC(isa, license, fs) {
|
|
|
1115
1200
|
return fs.Union(tree_1);
|
|
1116
1201
|
}
|
|
1117
1202
|
|
|
1118
|
-
export { ARC, ARCAux_getArcAssaysFromContracts, ARCAux_getArcInvestigationFromContracts, ARCAux_getArcRunsFromContracts, ARCAux_getArcStudiesFromContracts, ARCAux_getArcWorkflowsFromContracts,
|
|
1203
|
+
export { ARC, ARCAux_getArcAssaysFromContracts, ARCAux_getArcInvestigationFromContracts, ARCAux_getArcRunsFromContracts, ARCAux_getArcStudiesFromContracts, ARCAux_getArcWorkflowsFromContracts, ARCAux_getAssayDatamapFromContracts, ARCAux_getCWLByPathFromContracts, ARCAux_getLicenseFromContracts, ARCAux_getRunCWLFromContracts, ARCAux_getRunDatamapFromContracts, ARCAux_getRunYMLFromContracts, ARCAux_getStudyDatamapFromContracts, ARCAux_getWorkflowCWLFromContracts, ARCAux_getWorkflowDatamapFromContracts, ARCAux_tryGetCWLByPath, ARCAux_updateFSByARC, ARC_$ctor_Z443FB9BF, ARC_$reflection };
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { Union } from '@fable-org/fable-library-js/Types.js';
|
|
2
|
+
import { CWLToolDescription } from './ToolDescription.js';
|
|
3
|
+
import { CWLWorkflowDescription } from './WorkflowDescription.js';
|
|
4
|
+
import { CWLExpressionToolDescription } from './ExpressionToolDescription.js';
|
|
5
|
+
import { CWLOperationDescription } from './OperationDescription.js';
|
|
6
|
+
import { TypeInfo } from '@fable-org/fable-library-js/Reflection.js';
|
|
7
|
+
import { CWLInput } from './Inputs.js';
|
|
8
|
+
import { CWLOutput } from './Outputs.js';
|
|
9
|
+
import { HintEntry_$union, Requirement_$union } from './Requirements.js';
|
|
10
|
+
import { WorkflowStepRun_$union } from './WorkflowSteps.js';
|
|
11
|
+
import { Option } from '@fable-org/fable-library-js/Option.js';
|
|
12
|
+
export type CWLProcessingUnit_$union = CWLProcessingUnit<0> | CWLProcessingUnit<1> | CWLProcessingUnit<2> | CWLProcessingUnit<3>;
|
|
13
|
+
export type CWLProcessingUnit_$cases = {
|
|
14
|
+
0: ["CommandLineTool", [CWLToolDescription]];
|
|
15
|
+
1: ["Workflow", [CWLWorkflowDescription]];
|
|
16
|
+
2: ["ExpressionTool", [CWLExpressionToolDescription]];
|
|
17
|
+
3: ["Operation", [CWLOperationDescription]];
|
|
18
|
+
};
|
|
19
|
+
export declare function CWLProcessingUnit_CommandLineTool(Item: CWLToolDescription): CWLProcessingUnit<0>;
|
|
20
|
+
export declare function CWLProcessingUnit_Workflow(Item: CWLWorkflowDescription): CWLProcessingUnit<1>;
|
|
21
|
+
export declare function CWLProcessingUnit_ExpressionTool(Item: CWLExpressionToolDescription): CWLProcessingUnit<2>;
|
|
22
|
+
export declare function CWLProcessingUnit_Operation(Item: CWLOperationDescription): CWLProcessingUnit<3>;
|
|
23
|
+
export declare class CWLProcessingUnit<Tag extends keyof CWLProcessingUnit_$cases> extends Union<Tag, CWLProcessingUnit_$cases[Tag][0]> {
|
|
24
|
+
readonly tag: Tag;
|
|
25
|
+
readonly fields: CWLProcessingUnit_$cases[Tag][1];
|
|
26
|
+
constructor(tag: Tag, fields: CWLProcessingUnit_$cases[Tag][1]);
|
|
27
|
+
cases(): string[];
|
|
28
|
+
}
|
|
29
|
+
export declare function CWLProcessingUnit_$reflection(): TypeInfo;
|
|
30
|
+
/**
|
|
31
|
+
* Returns normalized inputs for all CWL processing unit variants.
|
|
32
|
+
*/
|
|
33
|
+
export declare function CWLProcessingUnit_getInputs_30922B92(processingUnit: CWLProcessingUnit_$union): CWLInput[];
|
|
34
|
+
/**
|
|
35
|
+
* Returns outputs for all CWL processing unit variants.
|
|
36
|
+
*/
|
|
37
|
+
export declare function CWLProcessingUnit_getOutputs_30922B92(processingUnit: CWLProcessingUnit_$union): CWLOutput[];
|
|
38
|
+
/**
|
|
39
|
+
* Returns requirements for all CWL processing unit variants.
|
|
40
|
+
*/
|
|
41
|
+
export declare function CWLProcessingUnit_getRequirements_30922B92(processingUnit: CWLProcessingUnit_$union): Requirement_$union[];
|
|
42
|
+
/**
|
|
43
|
+
* Returns hints for all CWL processing unit variants.
|
|
44
|
+
*/
|
|
45
|
+
export declare function CWLProcessingUnit_getHints_30922B92(processingUnit: CWLProcessingUnit_$union): HintEntry_$union[];
|
|
46
|
+
/**
|
|
47
|
+
* Returns intent for all CWL processing unit variants.
|
|
48
|
+
*/
|
|
49
|
+
export declare function CWLProcessingUnit_getIntent_30922B92(processingUnit: CWLProcessingUnit_$union): string[];
|
|
50
|
+
/**
|
|
51
|
+
* Returns known requirement hints only, dropping unknown extension hints.
|
|
52
|
+
*/
|
|
53
|
+
export declare function CWLProcessingUnit_getKnownHints_30922B92(processingUnit: CWLProcessingUnit_$union): Requirement_$union[];
|
|
54
|
+
export declare function WorkflowStepRunOps_fromTool(tool: CWLToolDescription): WorkflowStepRun_$union;
|
|
55
|
+
export declare function WorkflowStepRunOps_fromWorkflow(workflow: CWLWorkflowDescription): WorkflowStepRun_$union;
|
|
56
|
+
export declare function WorkflowStepRunOps_fromExpressionTool(expressionTool: CWLExpressionToolDescription): WorkflowStepRun_$union;
|
|
57
|
+
export declare function WorkflowStepRunOps_fromOperation(operation: CWLOperationDescription): WorkflowStepRun_$union;
|
|
58
|
+
export declare function WorkflowStepRunOps_tryGetTool(run: WorkflowStepRun_$union): Option<CWLToolDescription>;
|
|
59
|
+
export declare function WorkflowStepRunOps_tryGetWorkflow(run: WorkflowStepRun_$union): Option<CWLWorkflowDescription>;
|
|
60
|
+
export declare function WorkflowStepRunOps_tryGetExpressionTool(run: WorkflowStepRun_$union): Option<CWLExpressionToolDescription>;
|
|
61
|
+
export declare function WorkflowStepRunOps_tryGetOperation(run: WorkflowStepRun_$union): Option<CWLOperationDescription>;
|
|
62
|
+
//# sourceMappingURL=CWLProcessingUnit.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CWLProcessingUnit.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/CWL/CWLProcessingUnit.ts"],"names":[],"mappings":"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"}
|