@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
|
@@ -25,7 +25,7 @@ class ArcAssay extends ArcTables {
|
|
|
25
25
|
this["measurementType@136"] = measurementType;
|
|
26
26
|
this["technologyType@137"] = technologyType;
|
|
27
27
|
this["technologyPlatform@138"] = technologyPlatform;
|
|
28
|
-
this
|
|
28
|
+
this["datamap@139"] = datamap;
|
|
29
29
|
this["performers@140-1"] = performers_1;
|
|
30
30
|
this["comments@141-1"] = comments_1;
|
|
31
31
|
this.staticHash = 0;
|
|
@@ -86,13 +86,13 @@ class ArcAssay extends ArcTables {
|
|
|
86
86
|
const this$ = this;
|
|
87
87
|
this$["technologyPlatform@138"] = n;
|
|
88
88
|
}
|
|
89
|
-
get
|
|
89
|
+
get Datamap() {
|
|
90
90
|
const this$ = this;
|
|
91
|
-
return unwrap(this
|
|
91
|
+
return unwrap(this$["datamap@139"]);
|
|
92
92
|
}
|
|
93
|
-
set
|
|
93
|
+
set Datamap(n) {
|
|
94
94
|
const this$ = this;
|
|
95
|
-
this
|
|
95
|
+
this$["datamap@139"] = n;
|
|
96
96
|
}
|
|
97
97
|
get Performers() {
|
|
98
98
|
const this$ = this;
|
|
@@ -371,7 +371,7 @@ class ArcAssay extends ArcTables {
|
|
|
371
371
|
const this$ = this;
|
|
372
372
|
const nextTables = ResizeArray_map((c) => c.Copy(), this$.Tables);
|
|
373
373
|
const nextComments = ResizeArray_map((c_1) => c_1.Copy(), this$.Comments);
|
|
374
|
-
const
|
|
374
|
+
const nextDatamap = map((d) => d.Copy(), this$.Datamap);
|
|
375
375
|
const nextPerformers = ResizeArray_map((c_2) => c_2.Copy(), this$.Performers);
|
|
376
376
|
const identifier = this$.Identifier;
|
|
377
377
|
const title = this$.Title;
|
|
@@ -379,7 +379,7 @@ class ArcAssay extends ArcTables {
|
|
|
379
379
|
const measurementType = this$.MeasurementType;
|
|
380
380
|
const technologyType = this$.TechnologyType;
|
|
381
381
|
const technologyPlatform = this$.TechnologyPlatform;
|
|
382
|
-
return ArcAssay.make(identifier, title, description, measurementType, technologyType, technologyPlatform, nextTables,
|
|
382
|
+
return ArcAssay.make(identifier, title, description, measurementType, technologyType, technologyPlatform, nextTables, nextDatamap, nextPerformers, nextComments);
|
|
383
383
|
}
|
|
384
384
|
UpdateBy(assay, onlyReplaceExisting, appendSequences) {
|
|
385
385
|
const this$ = this;
|
|
@@ -567,7 +567,7 @@ class ArcAssay extends ArcTables {
|
|
|
567
567
|
if (assay.Comments.length !== 0 ? true : updateAlways) {
|
|
568
568
|
this$.Comments = assay.Comments;
|
|
569
569
|
}
|
|
570
|
-
this$.
|
|
570
|
+
this$.Datamap = assay.Datamap;
|
|
571
571
|
if (assay.Performers.length !== 0 ? true : updateAlways) {
|
|
572
572
|
this$.Performers = assay.Performers;
|
|
573
573
|
}
|
|
@@ -575,7 +575,7 @@ class ArcAssay extends ArcTables {
|
|
|
575
575
|
StructurallyEquals(other) {
|
|
576
576
|
let a, b, a_1, b_1, a_2, b_2;
|
|
577
577
|
const this$ = this;
|
|
578
|
-
return forAll((x) => x === true, [this$.Identifier === other.Identifier, equals(this$.Title, other.Title), equals(this$.Description, other.Description), equals(this$.MeasurementType, other.MeasurementType), equals(this$.TechnologyType, other.TechnologyType), equals(this$.TechnologyPlatform, other.TechnologyPlatform), equals(this$.
|
|
578
|
+
return forAll((x) => x === true, [this$.Identifier === other.Identifier, equals(this$.Title, other.Title), equals(this$.Description, other.Description), equals(this$.MeasurementType, other.MeasurementType), equals(this$.TechnologyType, other.TechnologyType), equals(this$.TechnologyPlatform, other.TechnologyPlatform), equals(this$.Datamap, other.Datamap), (a = this$.Tables, b = other.Tables, length(a) === length(b) && fold((acc, e) => {
|
|
579
579
|
if (acc) {
|
|
580
580
|
return e;
|
|
581
581
|
} else {
|
|
@@ -610,13 +610,13 @@ class ArcAssay extends ArcTables {
|
|
|
610
610
|
}
|
|
611
611
|
GetHashCode() {
|
|
612
612
|
const this$ = this;
|
|
613
|
-
return boxHashArray([this$.Identifier, boxHashOption(this$.Title), boxHashOption(this$.Description), boxHashOption(this$.MeasurementType), boxHashOption(this$.TechnologyType), boxHashOption(this$.TechnologyPlatform), boxHashOption(this$.
|
|
613
|
+
return boxHashArray([this$.Identifier, boxHashOption(this$.Title), boxHashOption(this$.Description), boxHashOption(this$.MeasurementType), boxHashOption(this$.TechnologyType), boxHashOption(this$.TechnologyPlatform), boxHashOption(this$.Datamap), boxHashSeq(this$.Tables), boxHashSeq(this$.Performers), boxHashSeq(this$.Comments)]) | 0;
|
|
614
614
|
}
|
|
615
615
|
}
|
|
616
616
|
function ArcAssay_$reflection() {
|
|
617
617
|
return class_type("ARCtrl.ArcAssay", void 0, ArcAssay, ArcTables_$reflection());
|
|
618
618
|
}
|
|
619
|
-
function ArcAssay_$
|
|
619
|
+
function ArcAssay_$ctor_Z69B192EC(identifier, title, description, measurementType, technologyType, technologyPlatform, tables, datamap, performers, comments) {
|
|
620
620
|
return new ArcAssay(identifier, title, description, measurementType, technologyType, technologyPlatform, tables, datamap, performers, comments);
|
|
621
621
|
}
|
|
622
622
|
class ArcStudy extends ArcTables {
|
|
@@ -714,11 +714,11 @@ class ArcStudy extends ArcTables {
|
|
|
714
714
|
const this$ = this;
|
|
715
715
|
this$["studyDesignDescriptors@590-1"] = n;
|
|
716
716
|
}
|
|
717
|
-
get
|
|
717
|
+
get Datamap() {
|
|
718
718
|
const this$ = this;
|
|
719
719
|
return unwrap(this$["datamap@591"]);
|
|
720
720
|
}
|
|
721
|
-
set
|
|
721
|
+
set Datamap(n) {
|
|
722
722
|
const this$ = this;
|
|
723
723
|
this$["datamap@591"] = n;
|
|
724
724
|
}
|
|
@@ -1152,14 +1152,14 @@ class ArcStudy extends ArcTables {
|
|
|
1152
1152
|
const nextContacts = ResizeArray_map((c_1) => c_1.Copy(), this$.Contacts);
|
|
1153
1153
|
const nextPublications = ResizeArray_map((c_2) => c_2.Copy(), this$.Publications);
|
|
1154
1154
|
const nextStudyDesignDescriptors = ResizeArray_map((c_3) => c_3.Copy(), this$.StudyDesignDescriptors);
|
|
1155
|
-
const
|
|
1155
|
+
const nextDatamap = map((d) => d.Copy(), this$.Datamap);
|
|
1156
1156
|
let study;
|
|
1157
1157
|
const identifier = this$.Identifier;
|
|
1158
1158
|
const title = this$.Title;
|
|
1159
1159
|
const description = this$.Description;
|
|
1160
1160
|
const submissionDate = this$.SubmissionDate;
|
|
1161
1161
|
const publicReleaseDate = this$.PublicReleaseDate;
|
|
1162
|
-
study = ArcStudy.make(identifier, title, description, submissionDate, publicReleaseDate, nextPublications, nextContacts, nextStudyDesignDescriptors, nextTables,
|
|
1162
|
+
study = ArcStudy.make(identifier, title, description, submissionDate, publicReleaseDate, nextPublications, nextContacts, nextStudyDesignDescriptors, nextTables, nextDatamap, nextAssayIdentifiers, nextComments);
|
|
1163
1163
|
if (copyInvestigationRef_1) {
|
|
1164
1164
|
study.Investigation = this$.Investigation;
|
|
1165
1165
|
}
|
|
@@ -1193,7 +1193,7 @@ class ArcStudy extends ArcTables {
|
|
|
1193
1193
|
const tables = ArcTables.updateReferenceTablesBySheets(new ArcTables(this$.Tables), new ArcTables(study.Tables), unwrap(keepUnusedRefTables));
|
|
1194
1194
|
this$.Tables = tables.Tables;
|
|
1195
1195
|
}
|
|
1196
|
-
this$.
|
|
1196
|
+
this$.Datamap = study.Datamap;
|
|
1197
1197
|
if (study.RegisteredAssayIdentifiers.length !== 0 ? true : updateAlways) {
|
|
1198
1198
|
this$.RegisteredAssayIdentifiers = study.RegisteredAssayIdentifiers;
|
|
1199
1199
|
}
|
|
@@ -1204,7 +1204,7 @@ class ArcStudy extends ArcTables {
|
|
|
1204
1204
|
StructurallyEquals(other) {
|
|
1205
1205
|
let a, b, a_1, b_1, a_2, b_2, a_3, b_3, a_4, b_4, a_5, b_5;
|
|
1206
1206
|
const this$ = this;
|
|
1207
|
-
return forAll((x) => x === true, [this$.Identifier === other.Identifier, equals(this$.Title, other.Title), equals(this$.Description, other.Description), equals(this$.SubmissionDate, other.SubmissionDate), equals(this$.PublicReleaseDate, other.PublicReleaseDate), equals(this$.
|
|
1207
|
+
return forAll((x) => x === true, [this$.Identifier === other.Identifier, equals(this$.Title, other.Title), equals(this$.Description, other.Description), equals(this$.SubmissionDate, other.SubmissionDate), equals(this$.PublicReleaseDate, other.PublicReleaseDate), equals(this$.Datamap, other.Datamap), (a = this$.Publications, b = other.Publications, length(a) === length(b) && fold((acc, e) => {
|
|
1208
1208
|
if (acc) {
|
|
1209
1209
|
return e;
|
|
1210
1210
|
} else {
|
|
@@ -1268,7 +1268,7 @@ class ArcStudy extends ArcTables {
|
|
|
1268
1268
|
}
|
|
1269
1269
|
GetHashCode() {
|
|
1270
1270
|
const this$ = this;
|
|
1271
|
-
return boxHashArray([this$.Identifier, boxHashOption(this$.Title), boxHashOption(this$.Description), boxHashOption(this$.SubmissionDate), boxHashOption(this$.PublicReleaseDate), boxHashOption(this$.
|
|
1271
|
+
return boxHashArray([this$.Identifier, boxHashOption(this$.Title), boxHashOption(this$.Description), boxHashOption(this$.SubmissionDate), boxHashOption(this$.PublicReleaseDate), boxHashOption(this$.Datamap), boxHashSeq(this$.Publications), boxHashSeq(this$.Contacts), boxHashSeq(this$.StudyDesignDescriptors), boxHashSeq(this$.Tables), boxHashSeq(this$.RegisteredAssayIdentifiers), boxHashSeq(this$.Comments)]) | 0;
|
|
1272
1272
|
}
|
|
1273
1273
|
GetLightHashCode() {
|
|
1274
1274
|
const this$ = this;
|
|
@@ -1278,11 +1278,11 @@ class ArcStudy extends ArcTables {
|
|
|
1278
1278
|
function ArcStudy_$reflection() {
|
|
1279
1279
|
return class_type("ARCtrl.ArcStudy", void 0, ArcStudy, ArcTables_$reflection());
|
|
1280
1280
|
}
|
|
1281
|
-
function ArcStudy_$
|
|
1281
|
+
function ArcStudy_$ctor_Z273F64C5(identifier, title, description, submissionDate, publicReleaseDate, publications, contacts, studyDesignDescriptors, tables, datamap, registeredAssayIdentifiers, comments) {
|
|
1282
1282
|
return new ArcStudy(identifier, title, description, submissionDate, publicReleaseDate, publications, contacts, studyDesignDescriptors, tables, datamap, registeredAssayIdentifiers, comments);
|
|
1283
1283
|
}
|
|
1284
1284
|
class ArcWorkflow {
|
|
1285
|
-
constructor(identifier, title, description, workflowType, uri, version, subWorkflowIdentifiers, parameters, components, datamap, contacts, comments) {
|
|
1285
|
+
constructor(identifier, title, description, workflowType, uri, version, subWorkflowIdentifiers, parameters, components, datamap, contacts, cwlDescription, comments) {
|
|
1286
1286
|
let identifier_1;
|
|
1287
1287
|
this["identifier@1151"] = (identifier_1 = identifier.trim(), checkValidCharacters(identifier_1), identifier_1);
|
|
1288
1288
|
this.investigation = void 0;
|
|
@@ -1294,9 +1294,10 @@ class ArcWorkflow {
|
|
|
1294
1294
|
this["version@1161"] = version;
|
|
1295
1295
|
this["parameters@1162"] = defaultArg(parameters, []);
|
|
1296
1296
|
this["components@1163"] = defaultArg(components, []);
|
|
1297
|
-
this
|
|
1297
|
+
this["datamap@1164"] = datamap;
|
|
1298
1298
|
this["contacts@1165"] = defaultArg(contacts, []);
|
|
1299
|
-
this["
|
|
1299
|
+
this["cwlDescription@1166"] = cwlDescription;
|
|
1300
|
+
this["comments@1167"] = defaultArg(comments, []);
|
|
1300
1301
|
this.staticHash = 0;
|
|
1301
1302
|
}
|
|
1302
1303
|
get Identifier() {
|
|
@@ -1379,13 +1380,13 @@ class ArcWorkflow {
|
|
|
1379
1380
|
const this$ = this;
|
|
1380
1381
|
this$["components@1163"] = c;
|
|
1381
1382
|
}
|
|
1382
|
-
get
|
|
1383
|
+
get Datamap() {
|
|
1383
1384
|
const this$ = this;
|
|
1384
|
-
return unwrap(this
|
|
1385
|
+
return unwrap(this$["datamap@1164"]);
|
|
1385
1386
|
}
|
|
1386
|
-
set
|
|
1387
|
+
set Datamap(dm) {
|
|
1387
1388
|
const this$ = this;
|
|
1388
|
-
this
|
|
1389
|
+
this$["datamap@1164"] = dm;
|
|
1389
1390
|
}
|
|
1390
1391
|
get Contacts() {
|
|
1391
1392
|
const this$ = this;
|
|
@@ -1395,13 +1396,21 @@ class ArcWorkflow {
|
|
|
1395
1396
|
const this$ = this;
|
|
1396
1397
|
this$["contacts@1165"] = c;
|
|
1397
1398
|
}
|
|
1399
|
+
get CWLDescription() {
|
|
1400
|
+
const this$ = this;
|
|
1401
|
+
return unwrap(this$["cwlDescription@1166"]);
|
|
1402
|
+
}
|
|
1403
|
+
set CWLDescription(c) {
|
|
1404
|
+
const this$ = this;
|
|
1405
|
+
this$["cwlDescription@1166"] = c;
|
|
1406
|
+
}
|
|
1398
1407
|
get Comments() {
|
|
1399
1408
|
const this$ = this;
|
|
1400
|
-
return this$["comments@
|
|
1409
|
+
return this$["comments@1167"];
|
|
1401
1410
|
}
|
|
1402
1411
|
set Comments(c) {
|
|
1403
1412
|
const this$ = this;
|
|
1404
|
-
this$["comments@
|
|
1413
|
+
this$["comments@1167"] = c;
|
|
1405
1414
|
}
|
|
1406
1415
|
get StaticHash() {
|
|
1407
1416
|
const this$ = this;
|
|
@@ -1414,11 +1423,11 @@ class ArcWorkflow {
|
|
|
1414
1423
|
static init(identifier) {
|
|
1415
1424
|
return new ArcWorkflow(identifier);
|
|
1416
1425
|
}
|
|
1417
|
-
static create(identifier, title, description, workflowType, uri, version, subWorkflowIdentifiers, parameters, components, datamap, contacts, comments) {
|
|
1418
|
-
return new ArcWorkflow(identifier, unwrap(title), unwrap(description), unwrap(workflowType), unwrap(uri), unwrap(version), unwrap(subWorkflowIdentifiers), unwrap(parameters), unwrap(components), unwrap(datamap), unwrap(contacts), unwrap(comments));
|
|
1426
|
+
static create(identifier, title, description, workflowType, uri, version, subWorkflowIdentifiers, parameters, components, datamap, contacts, cwlDescription, comments) {
|
|
1427
|
+
return new ArcWorkflow(identifier, unwrap(title), unwrap(description), unwrap(workflowType), unwrap(uri), unwrap(version), unwrap(subWorkflowIdentifiers), unwrap(parameters), unwrap(components), unwrap(datamap), unwrap(contacts), unwrap(cwlDescription), unwrap(comments));
|
|
1419
1428
|
}
|
|
1420
|
-
static make(identifier, title, description, workflowType, uri, version, subWorkflowIdentifiers, parameters, components, datamap, contacts, comments) {
|
|
1421
|
-
return new ArcWorkflow(identifier, unwrap(title), unwrap(description), unwrap(workflowType), unwrap(uri), unwrap(version), subWorkflowIdentifiers, parameters, components, unwrap(datamap), contacts, comments);
|
|
1429
|
+
static make(identifier, title, description, workflowType, uri, version, subWorkflowIdentifiers, parameters, components, datamap, contacts, cwlDescription, comments) {
|
|
1430
|
+
return new ArcWorkflow(identifier, unwrap(title), unwrap(description), unwrap(workflowType), unwrap(uri), unwrap(version), subWorkflowIdentifiers, parameters, components, unwrap(datamap), contacts, unwrap(cwlDescription), comments);
|
|
1422
1431
|
}
|
|
1423
1432
|
static get FileName() {
|
|
1424
1433
|
return "isa.run.xlsx";
|
|
@@ -1575,7 +1584,7 @@ class ArcWorkflow {
|
|
|
1575
1584
|
const nextSubWorkflowIdentifiers = Array.from(this$.SubWorkflowIdentifiers);
|
|
1576
1585
|
const nextParameters = ResizeArray_map((x) => x, this$.Parameters);
|
|
1577
1586
|
const nextComponents = ResizeArray_map((x_1) => x_1, this$.Components);
|
|
1578
|
-
const
|
|
1587
|
+
const nextDatamap = map((d) => d.Copy(), this$.Datamap);
|
|
1579
1588
|
const nextContacts = ResizeArray_map((c) => c.Copy(), this$.Contacts);
|
|
1580
1589
|
const nextComments = ResizeArray_map((c_1) => c_1.Copy(), this$.Comments);
|
|
1581
1590
|
let workflow;
|
|
@@ -1584,7 +1593,8 @@ class ArcWorkflow {
|
|
|
1584
1593
|
const description = this$.Description;
|
|
1585
1594
|
const uri = this$.URI;
|
|
1586
1595
|
const version = this$.Version;
|
|
1587
|
-
|
|
1596
|
+
const cwlDescription = this$.CWLDescription;
|
|
1597
|
+
workflow = ArcWorkflow.make(identifier, title, description, nextWorkFlowType, uri, version, nextSubWorkflowIdentifiers, nextParameters, nextComponents, nextDatamap, nextContacts, cwlDescription, nextComments);
|
|
1588
1598
|
if (copyInvestigationRef_1) {
|
|
1589
1599
|
workflow.Investigation = this$.Investigation;
|
|
1590
1600
|
}
|
|
@@ -1611,13 +1621,13 @@ class ArcWorkflow {
|
|
|
1611
1621
|
} else {
|
|
1612
1622
|
return false;
|
|
1613
1623
|
}
|
|
1614
|
-
}, true, toList(delay(() => map$1((i_3) => equals(item(i_3, a_2), item(i_3, b_2)), rangeDouble(0, 1, length(a_2) - 1)))))), equals(this$.
|
|
1624
|
+
}, true, toList(delay(() => map$1((i_3) => equals(item(i_3, a_2), item(i_3, b_2)), rangeDouble(0, 1, length(a_2) - 1)))))), equals(this$.Datamap, other.Datamap), (a_3 = this$.Contacts, b_3 = other.Contacts, length(a_3) === length(b_3) && fold((acc_3, e_3) => {
|
|
1615
1625
|
if (acc_3) {
|
|
1616
1626
|
return e_3;
|
|
1617
1627
|
} else {
|
|
1618
1628
|
return false;
|
|
1619
1629
|
}
|
|
1620
|
-
}, true, toList(delay(() => map$1((i_4) => equals(item(i_4, a_3), item(i_4, b_3)), rangeDouble(0, 1, length(a_3) - 1)))))), (a_4 = this$.Comments, b_4 = other.Comments, length(a_4) === length(b_4) && fold((acc_4, e_4) => {
|
|
1630
|
+
}, true, toList(delay(() => map$1((i_4) => equals(item(i_4, a_3), item(i_4, b_3)), rangeDouble(0, 1, length(a_3) - 1)))))), equals(this$.CWLDescription, other.CWLDescription), (a_4 = this$.Comments, b_4 = other.Comments, length(a_4) === length(b_4) && fold((acc_4, e_4) => {
|
|
1621
1631
|
if (acc_4) {
|
|
1622
1632
|
return e_4;
|
|
1623
1633
|
} else {
|
|
@@ -1640,10 +1650,10 @@ class ArcWorkflow {
|
|
|
1640
1650
|
const arg_6 = this$.SubWorkflowIdentifiers;
|
|
1641
1651
|
const arg_7 = this$.Parameters;
|
|
1642
1652
|
const arg_8 = this$.Components;
|
|
1643
|
-
const arg_9 = this$.
|
|
1653
|
+
const arg_9 = this$.Datamap;
|
|
1644
1654
|
const arg_10 = this$.Contacts;
|
|
1645
1655
|
const arg_11 = this$.Comments;
|
|
1646
|
-
return toText(printf("ArcWorkflow {\r\n Identifier = %A,\r\n Title = %A,\r\n Description = %A,\r\n WorkflowType = %A,\r\n URI = %A,\r\n Version = %A,\r\n SubWorkflowIdentifiers = %A,\r\n Parameters = %A,\r\n Components = %A,\r\n
|
|
1656
|
+
return toText(printf("ArcWorkflow {\r\n Identifier = %A,\r\n Title = %A,\r\n Description = %A,\r\n WorkflowType = %A,\r\n URI = %A,\r\n Version = %A,\r\n SubWorkflowIdentifiers = %A,\r\n Parameters = %A,\r\n Components = %A,\r\n Datamap = %A,\r\n Contacts = %A,\r\n Comments = %A}"))(arg)(arg_1)(arg_2)(arg_3)(arg_4)(arg_5)(arg_6)(arg_7)(arg_8)(arg_9)(arg_10)(arg_11);
|
|
1647
1657
|
}
|
|
1648
1658
|
Equals(other) {
|
|
1649
1659
|
let s;
|
|
@@ -1652,7 +1662,7 @@ class ArcWorkflow {
|
|
|
1652
1662
|
}
|
|
1653
1663
|
GetHashCode() {
|
|
1654
1664
|
const this$ = this;
|
|
1655
|
-
return boxHashArray([this$.Identifier, boxHashOption(this$.Title), boxHashOption(this$.Description), boxHashOption(this$.WorkflowType), boxHashOption(this$.URI), boxHashOption(this$.Version), boxHashSeq(this$.SubWorkflowIdentifiers), boxHashSeq(this$.Parameters), boxHashSeq(this$.Components), boxHashOption(this$.
|
|
1665
|
+
return boxHashArray([this$.Identifier, boxHashOption(this$.Title), boxHashOption(this$.Description), boxHashOption(this$.WorkflowType), boxHashOption(this$.URI), boxHashOption(this$.Version), boxHashSeq(this$.SubWorkflowIdentifiers), boxHashSeq(this$.Parameters), boxHashSeq(this$.Components), boxHashOption(this$.Datamap), boxHashSeq(this$.Contacts), boxHashOption(this$.CWLDescription), boxHashSeq(this$.Comments)]) | 0;
|
|
1656
1666
|
}
|
|
1657
1667
|
GetLightHashCode() {
|
|
1658
1668
|
const this$ = this;
|
|
@@ -1662,36 +1672,39 @@ class ArcWorkflow {
|
|
|
1662
1672
|
function ArcWorkflow_$reflection() {
|
|
1663
1673
|
return class_type("ARCtrl.ArcWorkflow", void 0, ArcWorkflow);
|
|
1664
1674
|
}
|
|
1665
|
-
function ArcWorkflow_$
|
|
1666
|
-
return new ArcWorkflow(identifier, title, description, workflowType, uri, version, subWorkflowIdentifiers, parameters, components, datamap, contacts, comments);
|
|
1675
|
+
function ArcWorkflow_$ctor_Z5FF2D3D5(identifier, title, description, workflowType, uri, version, subWorkflowIdentifiers, parameters, components, datamap, contacts, cwlDescription, comments) {
|
|
1676
|
+
return new ArcWorkflow(identifier, title, description, workflowType, uri, version, subWorkflowIdentifiers, parameters, components, datamap, contacts, cwlDescription, comments);
|
|
1667
1677
|
}
|
|
1668
1678
|
class ArcRun extends ArcTables {
|
|
1669
|
-
constructor(identifier, title, description, measurementType, technologyType, technologyPlatform, workflowIdentifiers, tables, datamap, performers, comments) {
|
|
1679
|
+
constructor(identifier, title, description, measurementType, technologyType, technologyPlatform, workflowIdentifiers, tables, datamap, performers, cwlDescription, cwlInput, comments) {
|
|
1670
1680
|
super(defaultArg(tables, []));
|
|
1671
1681
|
let identifier_1;
|
|
1672
1682
|
const performers_1 = defaultArg(performers, []);
|
|
1673
1683
|
const comments_1 = defaultArg(comments, []);
|
|
1674
1684
|
const workflowIdentifiers_1 = defaultArg(workflowIdentifiers, []);
|
|
1675
|
-
|
|
1676
|
-
this["
|
|
1677
|
-
this["
|
|
1685
|
+
const cwlInput_1 = defaultArg(cwlInput, []);
|
|
1686
|
+
this["identifier@1453"] = (identifier_1 = identifier.trim(), checkValidCharacters(identifier_1), identifier_1);
|
|
1687
|
+
this["title@1457"] = title;
|
|
1688
|
+
this["description@1458"] = description;
|
|
1678
1689
|
this.investigation = void 0;
|
|
1679
|
-
this["measurementType@
|
|
1680
|
-
this["technologyType@
|
|
1681
|
-
this["technologyPlatform@
|
|
1682
|
-
this["workflowIdentifiers@
|
|
1683
|
-
this
|
|
1684
|
-
this["performers@
|
|
1685
|
-
this["
|
|
1690
|
+
this["measurementType@1460"] = measurementType;
|
|
1691
|
+
this["technologyType@1461"] = technologyType;
|
|
1692
|
+
this["technologyPlatform@1462"] = technologyPlatform;
|
|
1693
|
+
this["workflowIdentifiers@1463-1"] = workflowIdentifiers_1;
|
|
1694
|
+
this["datamap@1464"] = datamap;
|
|
1695
|
+
this["performers@1465-1"] = performers_1;
|
|
1696
|
+
this["cwlDescription@1466"] = cwlDescription;
|
|
1697
|
+
this["cwlInput@1467-1"] = cwlInput_1;
|
|
1698
|
+
this["comments@1468-1"] = comments_1;
|
|
1686
1699
|
this.staticHash = 0;
|
|
1687
1700
|
}
|
|
1688
1701
|
get Identifier() {
|
|
1689
1702
|
const this$ = this;
|
|
1690
|
-
return this$["identifier@
|
|
1703
|
+
return this$["identifier@1453"];
|
|
1691
1704
|
}
|
|
1692
1705
|
set Identifier(i) {
|
|
1693
1706
|
const this$ = this;
|
|
1694
|
-
this$["identifier@
|
|
1707
|
+
this$["identifier@1453"] = i;
|
|
1695
1708
|
}
|
|
1696
1709
|
get Investigation() {
|
|
1697
1710
|
const this$ = this;
|
|
@@ -1703,75 +1716,91 @@ class ArcRun extends ArcTables {
|
|
|
1703
1716
|
}
|
|
1704
1717
|
get Title() {
|
|
1705
1718
|
const this$ = this;
|
|
1706
|
-
return unwrap(this$["title@
|
|
1719
|
+
return unwrap(this$["title@1457"]);
|
|
1707
1720
|
}
|
|
1708
1721
|
set Title(t) {
|
|
1709
1722
|
const this$ = this;
|
|
1710
|
-
this$["title@
|
|
1723
|
+
this$["title@1457"] = t;
|
|
1711
1724
|
}
|
|
1712
1725
|
get Description() {
|
|
1713
1726
|
const this$ = this;
|
|
1714
|
-
return unwrap(this$["description@
|
|
1727
|
+
return unwrap(this$["description@1458"]);
|
|
1715
1728
|
}
|
|
1716
1729
|
set Description(d) {
|
|
1717
1730
|
const this$ = this;
|
|
1718
|
-
this$["description@
|
|
1731
|
+
this$["description@1458"] = d;
|
|
1719
1732
|
}
|
|
1720
1733
|
get MeasurementType() {
|
|
1721
1734
|
const this$ = this;
|
|
1722
|
-
return unwrap(this$["measurementType@
|
|
1735
|
+
return unwrap(this$["measurementType@1460"]);
|
|
1723
1736
|
}
|
|
1724
1737
|
set MeasurementType(n) {
|
|
1725
1738
|
const this$ = this;
|
|
1726
|
-
this$["measurementType@
|
|
1739
|
+
this$["measurementType@1460"] = n;
|
|
1727
1740
|
}
|
|
1728
1741
|
get TechnologyType() {
|
|
1729
1742
|
const this$ = this;
|
|
1730
|
-
return unwrap(this$["technologyType@
|
|
1743
|
+
return unwrap(this$["technologyType@1461"]);
|
|
1731
1744
|
}
|
|
1732
1745
|
set TechnologyType(n) {
|
|
1733
1746
|
const this$ = this;
|
|
1734
|
-
this$["technologyType@
|
|
1747
|
+
this$["technologyType@1461"] = n;
|
|
1735
1748
|
}
|
|
1736
1749
|
get TechnologyPlatform() {
|
|
1737
1750
|
const this$ = this;
|
|
1738
|
-
return unwrap(this$["technologyPlatform@
|
|
1751
|
+
return unwrap(this$["technologyPlatform@1462"]);
|
|
1739
1752
|
}
|
|
1740
1753
|
set TechnologyPlatform(n) {
|
|
1741
1754
|
const this$ = this;
|
|
1742
|
-
this$["technologyPlatform@
|
|
1755
|
+
this$["technologyPlatform@1462"] = n;
|
|
1743
1756
|
}
|
|
1744
1757
|
get WorkflowIdentifiers() {
|
|
1745
1758
|
const this$ = this;
|
|
1746
|
-
return this$["workflowIdentifiers@
|
|
1759
|
+
return this$["workflowIdentifiers@1463-1"];
|
|
1747
1760
|
}
|
|
1748
1761
|
set WorkflowIdentifiers(w) {
|
|
1749
1762
|
const this$ = this;
|
|
1750
|
-
this$["workflowIdentifiers@
|
|
1763
|
+
this$["workflowIdentifiers@1463-1"] = w;
|
|
1751
1764
|
}
|
|
1752
|
-
get
|
|
1765
|
+
get Datamap() {
|
|
1753
1766
|
const this$ = this;
|
|
1754
|
-
return unwrap(this
|
|
1767
|
+
return unwrap(this$["datamap@1464"]);
|
|
1755
1768
|
}
|
|
1756
|
-
set
|
|
1769
|
+
set Datamap(n) {
|
|
1757
1770
|
const this$ = this;
|
|
1758
|
-
this
|
|
1771
|
+
this$["datamap@1464"] = n;
|
|
1759
1772
|
}
|
|
1760
1773
|
get Performers() {
|
|
1761
1774
|
const this$ = this;
|
|
1762
|
-
return this$["performers@
|
|
1775
|
+
return this$["performers@1465-1"];
|
|
1763
1776
|
}
|
|
1764
1777
|
set Performers(n) {
|
|
1765
1778
|
const this$ = this;
|
|
1766
|
-
this$["performers@
|
|
1779
|
+
this$["performers@1465-1"] = n;
|
|
1780
|
+
}
|
|
1781
|
+
get CWLDescription() {
|
|
1782
|
+
const this$ = this;
|
|
1783
|
+
return unwrap(this$["cwlDescription@1466"]);
|
|
1784
|
+
}
|
|
1785
|
+
set CWLDescription(n) {
|
|
1786
|
+
const this$ = this;
|
|
1787
|
+
this$["cwlDescription@1466"] = n;
|
|
1788
|
+
}
|
|
1789
|
+
get CWLInput() {
|
|
1790
|
+
const this$ = this;
|
|
1791
|
+
return this$["cwlInput@1467-1"];
|
|
1792
|
+
}
|
|
1793
|
+
set CWLInput(n) {
|
|
1794
|
+
const this$ = this;
|
|
1795
|
+
this$["cwlInput@1467-1"] = n;
|
|
1767
1796
|
}
|
|
1768
1797
|
get Comments() {
|
|
1769
1798
|
const this$ = this;
|
|
1770
|
-
return this$["comments@
|
|
1799
|
+
return this$["comments@1468-1"];
|
|
1771
1800
|
}
|
|
1772
1801
|
set Comments(n) {
|
|
1773
1802
|
const this$ = this;
|
|
1774
|
-
this$["comments@
|
|
1803
|
+
this$["comments@1468-1"] = n;
|
|
1775
1804
|
}
|
|
1776
1805
|
get StaticHash() {
|
|
1777
1806
|
const this$ = this;
|
|
@@ -1784,11 +1813,11 @@ class ArcRun extends ArcTables {
|
|
|
1784
1813
|
static init(identifier) {
|
|
1785
1814
|
return new ArcRun(identifier);
|
|
1786
1815
|
}
|
|
1787
|
-
static create(identifier, title, description, measurementType, technologyType, technologyPlatform, workflowIdentifiers, tables, datamap, performers, comments) {
|
|
1788
|
-
return new ArcRun(identifier, unwrap(title), unwrap(description), unwrap(measurementType), unwrap(technologyType), unwrap(technologyPlatform), unwrap(workflowIdentifiers), unwrap(tables), unwrap(datamap), unwrap(performers), unwrap(comments));
|
|
1816
|
+
static create(identifier, title, description, measurementType, technologyType, technologyPlatform, workflowIdentifiers, tables, datamap, performers, cwlDescription, cwlInput, comments) {
|
|
1817
|
+
return new ArcRun(identifier, unwrap(title), unwrap(description), unwrap(measurementType), unwrap(technologyType), unwrap(technologyPlatform), unwrap(workflowIdentifiers), unwrap(tables), unwrap(datamap), unwrap(performers), unwrap(cwlDescription), unwrap(cwlInput), unwrap(comments));
|
|
1789
1818
|
}
|
|
1790
|
-
static make(identifier, title, description, measurementType, technologyType, technologyPlatform, workflowIdentifiers, tables, datamap, performers, comments) {
|
|
1791
|
-
return new ArcRun(identifier, unwrap(title), unwrap(description), unwrap(measurementType), unwrap(technologyType), unwrap(technologyPlatform), workflowIdentifiers, tables, unwrap(datamap), performers, comments);
|
|
1819
|
+
static make(identifier, title, description, measurementType, technologyType, technologyPlatform, workflowIdentifiers, tables, datamap, performers, cwlDescription, cwlInput, comments) {
|
|
1820
|
+
return new ArcRun(identifier, unwrap(title), unwrap(description), unwrap(measurementType), unwrap(technologyType), unwrap(technologyPlatform), workflowIdentifiers, tables, unwrap(datamap), performers, unwrap(cwlDescription), cwlInput, comments);
|
|
1792
1821
|
}
|
|
1793
1822
|
static get FileName() {
|
|
1794
1823
|
return "isa.run.xlsx";
|
|
@@ -2050,7 +2079,7 @@ class ArcRun extends ArcTables {
|
|
|
2050
2079
|
const this$ = this;
|
|
2051
2080
|
const nextTables = ResizeArray_map((c) => c.Copy(), this$.Tables);
|
|
2052
2081
|
const nextComments = ResizeArray_map((c_1) => c_1.Copy(), this$.Comments);
|
|
2053
|
-
const
|
|
2082
|
+
const nextDatamap = map((d) => d.Copy(), this$.Datamap);
|
|
2054
2083
|
const nextPerformers = ResizeArray_map((c_2) => c_2.Copy(), this$.Performers);
|
|
2055
2084
|
const nextWorkflowIdentifiers = ResizeArray_map((c_3) => c_3, this$.WorkflowIdentifiers);
|
|
2056
2085
|
const identifier = this$.Identifier;
|
|
@@ -2059,7 +2088,9 @@ class ArcRun extends ArcTables {
|
|
|
2059
2088
|
const measurementType = this$.MeasurementType;
|
|
2060
2089
|
const technologyType = this$.TechnologyType;
|
|
2061
2090
|
const technologyPlatform = this$.TechnologyPlatform;
|
|
2062
|
-
|
|
2091
|
+
const cwlDescription = this$.CWLDescription;
|
|
2092
|
+
const cwlInput = this$.CWLInput;
|
|
2093
|
+
return ArcRun.make(identifier, title, description, measurementType, technologyType, technologyPlatform, nextWorkflowIdentifiers, nextTables, nextDatamap, nextPerformers, cwlDescription, cwlInput, nextComments);
|
|
2063
2094
|
}
|
|
2064
2095
|
UpdateBy(run, onlyReplaceExisting, appendSequences) {
|
|
2065
2096
|
const this$ = this;
|
|
@@ -2121,8 +2152,8 @@ class ArcRun extends ArcTables {
|
|
|
2121
2152
|
}
|
|
2122
2153
|
this$.WorkflowIdentifiers = s;
|
|
2123
2154
|
}
|
|
2124
|
-
if (run.
|
|
2125
|
-
this$.
|
|
2155
|
+
if (run.Datamap != null ? true : updateAlways) {
|
|
2156
|
+
this$.Datamap = run.Datamap;
|
|
2126
2157
|
}
|
|
2127
2158
|
if (run.Tables.length !== 0 ? true : updateAlways) {
|
|
2128
2159
|
let s_1;
|
|
@@ -2204,10 +2235,13 @@ class ArcRun extends ArcTables {
|
|
|
2204
2235
|
}
|
|
2205
2236
|
this$.Performers = s_2;
|
|
2206
2237
|
}
|
|
2207
|
-
if (run.
|
|
2238
|
+
if (run.CWLDescription != null ? true : updateAlways) {
|
|
2239
|
+
this$.CWLDescription = run.CWLDescription;
|
|
2240
|
+
}
|
|
2241
|
+
if (run.CWLInput.length !== 0 ? true : updateAlways) {
|
|
2208
2242
|
let s_3;
|
|
2209
|
-
const origin_3 = this$.
|
|
2210
|
-
const next_3 = run.
|
|
2243
|
+
const origin_3 = this$.CWLInput;
|
|
2244
|
+
const next_3 = run.CWLInput;
|
|
2211
2245
|
if (!appendSequences_1) {
|
|
2212
2246
|
s_3 = ResizeArray_map((x_9) => x_9, next_3);
|
|
2213
2247
|
} else {
|
|
@@ -2242,7 +2276,47 @@ class ArcRun extends ArcTables {
|
|
|
2242
2276
|
}
|
|
2243
2277
|
s_3 = combined_3;
|
|
2244
2278
|
}
|
|
2245
|
-
this$.
|
|
2279
|
+
this$.CWLInput = s_3;
|
|
2280
|
+
}
|
|
2281
|
+
if (run.Comments.length !== 0 ? true : updateAlways) {
|
|
2282
|
+
let s_4;
|
|
2283
|
+
const origin_4 = this$.Comments;
|
|
2284
|
+
const next_4 = run.Comments;
|
|
2285
|
+
if (!appendSequences_1) {
|
|
2286
|
+
s_4 = ResizeArray_map((x_12) => x_12, next_4);
|
|
2287
|
+
} else {
|
|
2288
|
+
const combined_4 = [];
|
|
2289
|
+
let enumerator_5 = getEnumerator(origin_4);
|
|
2290
|
+
try {
|
|
2291
|
+
while (enumerator_5["System.Collections.IEnumerator.MoveNext"]()) {
|
|
2292
|
+
const e_5 = enumerator_5["System.Collections.Generic.IEnumerator`1.get_Current"]();
|
|
2293
|
+
if (!contains$1(e_5, combined_4, {
|
|
2294
|
+
Equals: equals,
|
|
2295
|
+
GetHashCode: safeHash
|
|
2296
|
+
})) {
|
|
2297
|
+
void combined_4.push(e_5);
|
|
2298
|
+
}
|
|
2299
|
+
}
|
|
2300
|
+
} finally {
|
|
2301
|
+
disposeSafe(enumerator_5);
|
|
2302
|
+
}
|
|
2303
|
+
let enumerator_1_4 = getEnumerator(next_4);
|
|
2304
|
+
try {
|
|
2305
|
+
while (enumerator_1_4["System.Collections.IEnumerator.MoveNext"]()) {
|
|
2306
|
+
const e_1_4 = enumerator_1_4["System.Collections.Generic.IEnumerator`1.get_Current"]();
|
|
2307
|
+
if (!contains$1(e_1_4, combined_4, {
|
|
2308
|
+
Equals: equals,
|
|
2309
|
+
GetHashCode: safeHash
|
|
2310
|
+
})) {
|
|
2311
|
+
void combined_4.push(e_1_4);
|
|
2312
|
+
}
|
|
2313
|
+
}
|
|
2314
|
+
} finally {
|
|
2315
|
+
disposeSafe(enumerator_1_4);
|
|
2316
|
+
}
|
|
2317
|
+
s_4 = combined_4;
|
|
2318
|
+
}
|
|
2319
|
+
this$.Comments = s_4;
|
|
2246
2320
|
}
|
|
2247
2321
|
}
|
|
2248
2322
|
toString() {
|
|
@@ -2254,11 +2328,11 @@ class ArcRun extends ArcTables {
|
|
|
2254
2328
|
const arg_4 = this$.TechnologyType;
|
|
2255
2329
|
const arg_5 = this$.TechnologyPlatform;
|
|
2256
2330
|
const arg_6 = this$.WorkflowIdentifiers;
|
|
2257
|
-
const arg_7 = this$.
|
|
2331
|
+
const arg_7 = this$.Datamap;
|
|
2258
2332
|
const arg_8 = this$.Tables;
|
|
2259
2333
|
const arg_9 = this$.Performers;
|
|
2260
2334
|
const arg_10 = this$.Comments;
|
|
2261
|
-
return toText(printf('ArcRun({\r\n Identifier = "%s",\r\n Title = %A,\r\n Description = %A,\r\n MeasurementType = %A,\r\n TechnologyType = %A,\r\n TechnologyPlatform = %A,\r\n WorkflowIdentifiers = %A,\r\n
|
|
2335
|
+
return toText(printf('ArcRun({\r\n Identifier = "%s",\r\n Title = %A,\r\n Description = %A,\r\n MeasurementType = %A,\r\n TechnologyType = %A,\r\n TechnologyPlatform = %A,\r\n WorkflowIdentifiers = %A,\r\n Datamap = %A,\r\n Tables = %A,\r\n Performers = %A,\r\n Comments = %A\r\n})'))(arg)(arg_1)(arg_2)(arg_3)(arg_4)(arg_5)(arg_6)(arg_7)(arg_8)(arg_9)(arg_10);
|
|
2262
2336
|
}
|
|
2263
2337
|
AddToInvestigation(investigation) {
|
|
2264
2338
|
const this$ = this;
|
|
@@ -2269,7 +2343,7 @@ class ArcRun extends ArcTables {
|
|
|
2269
2343
|
this$.Investigation = void 0;
|
|
2270
2344
|
}
|
|
2271
2345
|
StructurallyEquals(other) {
|
|
2272
|
-
let a, b, a_1, b_1, a_2, b_2, a_3, b_3;
|
|
2346
|
+
let a, b, a_1, b_1, a_2, b_2, a_3, b_3, a_4, b_4;
|
|
2273
2347
|
const this$ = this;
|
|
2274
2348
|
return forAll((x) => x === true, [this$.Identifier === other.Identifier, equals(this$.Title, other.Title), equals(this$.Description, other.Description), equals(this$.MeasurementType, other.MeasurementType), equals(this$.TechnologyType, other.TechnologyType), equals(this$.TechnologyPlatform, other.TechnologyPlatform), (a = this$.WorkflowIdentifiers, b = other.WorkflowIdentifiers, length(a) === length(b) && fold((acc, e) => {
|
|
2275
2349
|
if (acc) {
|
|
@@ -2277,7 +2351,7 @@ class ArcRun extends ArcTables {
|
|
|
2277
2351
|
} else {
|
|
2278
2352
|
return false;
|
|
2279
2353
|
}
|
|
2280
|
-
}, true, toList(delay(() => map$1((i_1) => item(i_1, a) === item(i_1, b), rangeDouble(0, 1, length(a) - 1)))))), equals(this$.
|
|
2354
|
+
}, true, toList(delay(() => map$1((i_1) => item(i_1, a) === item(i_1, b), rangeDouble(0, 1, length(a) - 1)))))), equals(this$.Datamap, other.Datamap), (a_1 = this$.Tables, b_1 = other.Tables, length(a_1) === length(b_1) && fold((acc_1, e_1) => {
|
|
2281
2355
|
if (acc_1) {
|
|
2282
2356
|
return e_1;
|
|
2283
2357
|
} else {
|
|
@@ -2289,13 +2363,19 @@ class ArcRun extends ArcTables {
|
|
|
2289
2363
|
} else {
|
|
2290
2364
|
return false;
|
|
2291
2365
|
}
|
|
2292
|
-
}, true, toList(delay(() => map$1((i_3) => equals(item(i_3, a_2), item(i_3, b_2)), rangeDouble(0, 1, length(a_2) - 1)))))), (a_3 = this$.
|
|
2366
|
+
}, true, toList(delay(() => map$1((i_3) => equals(item(i_3, a_2), item(i_3, b_2)), rangeDouble(0, 1, length(a_2) - 1)))))), equals(this$.CWLDescription, other.CWLDescription), (a_3 = this$.CWLInput, b_3 = other.CWLInput, length(a_3) === length(b_3) && fold((acc_3, e_3) => {
|
|
2293
2367
|
if (acc_3) {
|
|
2294
2368
|
return e_3;
|
|
2295
2369
|
} else {
|
|
2296
2370
|
return false;
|
|
2297
2371
|
}
|
|
2298
|
-
}, true, toList(delay(() => map$1((i_4) => equals(item(i_4, a_3), item(i_4, b_3)), rangeDouble(0, 1, length(a_3) - 1))))))
|
|
2372
|
+
}, true, toList(delay(() => map$1((i_4) => equals(item(i_4, a_3), item(i_4, b_3)), rangeDouble(0, 1, length(a_3) - 1)))))), (a_4 = this$.Comments, b_4 = other.Comments, length(a_4) === length(b_4) && fold((acc_4, e_4) => {
|
|
2373
|
+
if (acc_4) {
|
|
2374
|
+
return e_4;
|
|
2375
|
+
} else {
|
|
2376
|
+
return false;
|
|
2377
|
+
}
|
|
2378
|
+
}, true, toList(delay(() => map$1((i_5) => equals(item(i_5, a_4), item(i_5, b_4)), rangeDouble(0, 1, length(a_4) - 1))))))]);
|
|
2299
2379
|
}
|
|
2300
2380
|
ReferenceEquals(other) {
|
|
2301
2381
|
const this$ = this;
|
|
@@ -2312,14 +2392,14 @@ class ArcRun extends ArcTables {
|
|
|
2312
2392
|
}
|
|
2313
2393
|
GetHashCode() {
|
|
2314
2394
|
const this$ = this;
|
|
2315
|
-
return boxHashArray([this$.Identifier, boxHashOption(this$.Title), boxHashOption(this$.Description), boxHashOption(this$.MeasurementType), boxHashOption(this$.TechnologyType), boxHashOption(this$.TechnologyPlatform), boxHashOption(this$.
|
|
2395
|
+
return boxHashArray([this$.Identifier, boxHashOption(this$.Title), boxHashOption(this$.Description), boxHashOption(this$.MeasurementType), boxHashOption(this$.TechnologyType), boxHashOption(this$.TechnologyPlatform), boxHashOption(this$.Datamap), boxHashSeq(this$.WorkflowIdentifiers), boxHashSeq(this$.Tables), boxHashSeq(this$.Performers), boxHashOption(this$.CWLDescription), boxHashSeq(this$.CWLInput), boxHashSeq(this$.Comments)]) | 0;
|
|
2316
2396
|
}
|
|
2317
2397
|
}
|
|
2318
2398
|
function ArcRun_$reflection() {
|
|
2319
2399
|
return class_type("ARCtrl.ArcRun", void 0, ArcRun, ArcTables_$reflection());
|
|
2320
2400
|
}
|
|
2321
|
-
function ArcRun_$
|
|
2322
|
-
return new ArcRun(identifier, title, description, measurementType, technologyType, technologyPlatform, workflowIdentifiers, tables, datamap, performers, comments);
|
|
2401
|
+
function ArcRun_$ctor_287C1303(identifier, title, description, measurementType, technologyType, technologyPlatform, workflowIdentifiers, tables, datamap, performers, cwlDescription, cwlInput, comments) {
|
|
2402
|
+
return new ArcRun(identifier, title, description, measurementType, technologyType, technologyPlatform, workflowIdentifiers, tables, datamap, performers, cwlDescription, cwlInput, comments);
|
|
2323
2403
|
}
|
|
2324
2404
|
class ArcInvestigation {
|
|
2325
2405
|
constructor(identifier, title, description, submissionDate, publicReleaseDate, ontologySourceReferences, publications, contacts, assays, studies, workflows, runs, registeredStudyIdentifiers, comments, remarks) {
|
|
@@ -2379,143 +2459,143 @@ class ArcInvestigation {
|
|
|
2379
2459
|
const registeredStudyIdentifiers_1 = defaultArg(registeredStudyIdentifiers, []);
|
|
2380
2460
|
const comments_1 = defaultArg(comments, []);
|
|
2381
2461
|
const remarks_1 = defaultArg(remarks, []);
|
|
2382
|
-
this["identifier@
|
|
2383
|
-
this["title@
|
|
2384
|
-
this["description@
|
|
2385
|
-
this["submissionDate@
|
|
2386
|
-
this["publicReleaseDate@
|
|
2387
|
-
this["ontologySourceReferences@
|
|
2388
|
-
this["publications@
|
|
2389
|
-
this["contacts@
|
|
2390
|
-
this["assays@
|
|
2391
|
-
this["studies@
|
|
2392
|
-
this["workflows@
|
|
2393
|
-
this["runs@
|
|
2394
|
-
this["registeredStudyIdentifiers@
|
|
2395
|
-
this["comments@
|
|
2396
|
-
this["remarks@
|
|
2462
|
+
this["identifier@1951"] = identifier;
|
|
2463
|
+
this["title@1952"] = title;
|
|
2464
|
+
this["description@1953"] = description;
|
|
2465
|
+
this["submissionDate@1954"] = submissionDate;
|
|
2466
|
+
this["publicReleaseDate@1955"] = publicReleaseDate;
|
|
2467
|
+
this["ontologySourceReferences@1956-1"] = ontologySourceReferences_1;
|
|
2468
|
+
this["publications@1957-1"] = publications_1;
|
|
2469
|
+
this["contacts@1958-1"] = contacts_1;
|
|
2470
|
+
this["assays@1959-1"] = assays_1;
|
|
2471
|
+
this["studies@1960-1"] = studies_1;
|
|
2472
|
+
this["workflows@1961-1"] = workflows_1;
|
|
2473
|
+
this["runs@1962-1"] = runs_1;
|
|
2474
|
+
this["registeredStudyIdentifiers@1963-1"] = registeredStudyIdentifiers_1;
|
|
2475
|
+
this["comments@1964-1"] = comments_1;
|
|
2476
|
+
this["remarks@1965-1"] = remarks_1;
|
|
2397
2477
|
this.staticHash = 0;
|
|
2398
|
-
this["init@
|
|
2478
|
+
this["init@1922"] = 1;
|
|
2399
2479
|
}
|
|
2400
2480
|
get Identifier() {
|
|
2401
2481
|
const this$ = this;
|
|
2402
|
-
return this$["identifier@
|
|
2482
|
+
return this$["identifier@1951"];
|
|
2403
2483
|
}
|
|
2404
2484
|
set Identifier(i) {
|
|
2405
2485
|
const this$ = this;
|
|
2406
|
-
this$["identifier@
|
|
2486
|
+
this$["identifier@1951"] = i;
|
|
2407
2487
|
}
|
|
2408
2488
|
get Title() {
|
|
2409
2489
|
const this$ = this;
|
|
2410
|
-
return unwrap(this$["title@
|
|
2490
|
+
return unwrap(this$["title@1952"]);
|
|
2411
2491
|
}
|
|
2412
2492
|
set Title(n) {
|
|
2413
2493
|
const this$ = this;
|
|
2414
|
-
this$["title@
|
|
2494
|
+
this$["title@1952"] = n;
|
|
2415
2495
|
}
|
|
2416
2496
|
get Description() {
|
|
2417
2497
|
const this$ = this;
|
|
2418
|
-
return unwrap(this$["description@
|
|
2498
|
+
return unwrap(this$["description@1953"]);
|
|
2419
2499
|
}
|
|
2420
2500
|
set Description(n) {
|
|
2421
2501
|
const this$ = this;
|
|
2422
|
-
this$["description@
|
|
2502
|
+
this$["description@1953"] = n;
|
|
2423
2503
|
}
|
|
2424
2504
|
get SubmissionDate() {
|
|
2425
2505
|
const this$ = this;
|
|
2426
|
-
return unwrap(this$["submissionDate@
|
|
2506
|
+
return unwrap(this$["submissionDate@1954"]);
|
|
2427
2507
|
}
|
|
2428
2508
|
set SubmissionDate(n) {
|
|
2429
2509
|
const this$ = this;
|
|
2430
|
-
this$["submissionDate@
|
|
2510
|
+
this$["submissionDate@1954"] = n;
|
|
2431
2511
|
}
|
|
2432
2512
|
get PublicReleaseDate() {
|
|
2433
2513
|
const this$ = this;
|
|
2434
|
-
return unwrap(this$["publicReleaseDate@
|
|
2514
|
+
return unwrap(this$["publicReleaseDate@1955"]);
|
|
2435
2515
|
}
|
|
2436
2516
|
set PublicReleaseDate(n) {
|
|
2437
2517
|
const this$ = this;
|
|
2438
|
-
this$["publicReleaseDate@
|
|
2518
|
+
this$["publicReleaseDate@1955"] = n;
|
|
2439
2519
|
}
|
|
2440
2520
|
get OntologySourceReferences() {
|
|
2441
2521
|
const this$ = this;
|
|
2442
|
-
return this$["ontologySourceReferences@
|
|
2522
|
+
return this$["ontologySourceReferences@1956-1"];
|
|
2443
2523
|
}
|
|
2444
2524
|
set OntologySourceReferences(n) {
|
|
2445
2525
|
const this$ = this;
|
|
2446
|
-
this$["ontologySourceReferences@
|
|
2526
|
+
this$["ontologySourceReferences@1956-1"] = n;
|
|
2447
2527
|
}
|
|
2448
2528
|
get Publications() {
|
|
2449
2529
|
const this$ = this;
|
|
2450
|
-
return this$["publications@
|
|
2530
|
+
return this$["publications@1957-1"];
|
|
2451
2531
|
}
|
|
2452
2532
|
set Publications(n) {
|
|
2453
2533
|
const this$ = this;
|
|
2454
|
-
this$["publications@
|
|
2534
|
+
this$["publications@1957-1"] = n;
|
|
2455
2535
|
}
|
|
2456
2536
|
get Contacts() {
|
|
2457
2537
|
const this$ = this;
|
|
2458
|
-
return this$["contacts@
|
|
2538
|
+
return this$["contacts@1958-1"];
|
|
2459
2539
|
}
|
|
2460
2540
|
set Contacts(n) {
|
|
2461
2541
|
const this$ = this;
|
|
2462
|
-
this$["contacts@
|
|
2542
|
+
this$["contacts@1958-1"] = n;
|
|
2463
2543
|
}
|
|
2464
2544
|
get Assays() {
|
|
2465
2545
|
const this$ = this;
|
|
2466
|
-
return this$["assays@
|
|
2546
|
+
return this$["assays@1959-1"];
|
|
2467
2547
|
}
|
|
2468
2548
|
set Assays(n) {
|
|
2469
2549
|
const this$ = this;
|
|
2470
|
-
this$["assays@
|
|
2550
|
+
this$["assays@1959-1"] = n;
|
|
2471
2551
|
}
|
|
2472
2552
|
get Studies() {
|
|
2473
2553
|
const this$ = this;
|
|
2474
|
-
return this$["studies@
|
|
2554
|
+
return this$["studies@1960-1"];
|
|
2475
2555
|
}
|
|
2476
2556
|
set Studies(n) {
|
|
2477
2557
|
const this$ = this;
|
|
2478
|
-
this$["studies@
|
|
2558
|
+
this$["studies@1960-1"] = n;
|
|
2479
2559
|
}
|
|
2480
2560
|
get Workflows() {
|
|
2481
2561
|
const this$ = this;
|
|
2482
|
-
return this$["workflows@
|
|
2562
|
+
return this$["workflows@1961-1"];
|
|
2483
2563
|
}
|
|
2484
2564
|
set Workflows(n) {
|
|
2485
2565
|
const this$ = this;
|
|
2486
|
-
this$["workflows@
|
|
2566
|
+
this$["workflows@1961-1"] = n;
|
|
2487
2567
|
}
|
|
2488
2568
|
get Runs() {
|
|
2489
2569
|
const this$ = this;
|
|
2490
|
-
return this$["runs@
|
|
2570
|
+
return this$["runs@1962-1"];
|
|
2491
2571
|
}
|
|
2492
2572
|
set Runs(n) {
|
|
2493
2573
|
const this$ = this;
|
|
2494
|
-
this$["runs@
|
|
2574
|
+
this$["runs@1962-1"] = n;
|
|
2495
2575
|
}
|
|
2496
2576
|
get RegisteredStudyIdentifiers() {
|
|
2497
2577
|
const this$ = this;
|
|
2498
|
-
return this$["registeredStudyIdentifiers@
|
|
2578
|
+
return this$["registeredStudyIdentifiers@1963-1"];
|
|
2499
2579
|
}
|
|
2500
2580
|
set RegisteredStudyIdentifiers(n) {
|
|
2501
2581
|
const this$ = this;
|
|
2502
|
-
this$["registeredStudyIdentifiers@
|
|
2582
|
+
this$["registeredStudyIdentifiers@1963-1"] = n;
|
|
2503
2583
|
}
|
|
2504
2584
|
get Comments() {
|
|
2505
2585
|
const this$ = this;
|
|
2506
|
-
return this$["comments@
|
|
2586
|
+
return this$["comments@1964-1"];
|
|
2507
2587
|
}
|
|
2508
2588
|
set Comments(n) {
|
|
2509
2589
|
const this$ = this;
|
|
2510
|
-
this$["comments@
|
|
2590
|
+
this$["comments@1964-1"] = n;
|
|
2511
2591
|
}
|
|
2512
2592
|
get Remarks() {
|
|
2513
2593
|
const this$ = this;
|
|
2514
|
-
return this$["remarks@
|
|
2594
|
+
return this$["remarks@1965-1"];
|
|
2515
2595
|
}
|
|
2516
2596
|
set Remarks(n) {
|
|
2517
2597
|
const this$ = this;
|
|
2518
|
-
this$["remarks@
|
|
2598
|
+
this$["remarks@1965-1"] = n;
|
|
2519
2599
|
}
|
|
2520
2600
|
get StaticHash() {
|
|
2521
2601
|
const this$ = this;
|
|
@@ -3705,4 +3785,4 @@ function ArcTypesAux_ErrorMsgs_unableToFindRunIdentifier(runIdentifier, investig
|
|
|
3705
3785
|
return `Error. Unable to find run with identifier '${runIdentifier}' in investigation ${investigationIdentifier}.`;
|
|
3706
3786
|
}
|
|
3707
3787
|
|
|
3708
|
-
export { ArcAssay, ArcAssay_$
|
|
3788
|
+
export { ArcAssay, ArcAssay_$ctor_Z69B192EC, ArcAssay_$reflection, ArcInvestigation, ArcInvestigation_$ctor_Z67823F6C, ArcInvestigation_$reflection, ArcRun, ArcRun_$ctor_287C1303, ArcRun_$reflection, ArcStudy, ArcStudy_$ctor_Z273F64C5, ArcStudy_$reflection, ArcTypesAux_ErrorMsgs_unableToFindAssayIdentifier, ArcTypesAux_ErrorMsgs_unableToFindRunIdentifier, ArcTypesAux_ErrorMsgs_unableToFindStudyIdentifier, ArcTypesAux_ErrorMsgs_unableToFindWorkflowIdentifier, ArcWorkflow, ArcWorkflow_$ctor_Z5FF2D3D5, ArcWorkflow_$reflection };
|