@nfdi4plants/arctrl 3.1.1 → 3.2.0
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/dist/ts/index.d.ts +3 -0
- package/dist/ts/index.d.ts.map +1 -1
- package/dist/ts/index.js +3 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Array.js +1296 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Async.js +174 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/AsyncBuilder.js +190 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/BigInt.js +479 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Boolean.js +23 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Char.js +172 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Choice.js +187 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/CollectionUtil.js +148 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Date.js +843 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/DateOffset.js +247 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Decimal.js +279 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Double.js +53 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/FSharp.Collections.js +48 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/FSharp.Core.js +148 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Global.js +31 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Guid.js +140 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Int32.js +165 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/List.js +1282 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Long.js +40 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Map.js +1298 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/MapUtil.js +126 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/MutableMap.js +323 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/MutableSet.js +225 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Native.js +14 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Numeric.js +63 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Option.js +81 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Random.js +174 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Range.js +47 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Reflection.js +471 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/RegExp.js +137 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Result.js +169 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Seq.js +1398 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Seq2.js +110 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Set.js +1670 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/String.js +660 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/System.Collections.Generic.js +328 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/System.Text.js +201 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/System.js +292 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/TimeSpan.js +170 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Types.js +199 -0
- package/dist/ts/node_modules/@fable-org/{fable-library-js → fable-library-ts}/Unicode.13.0.0.js +0 -2
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Uri.js +154 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Util.js +747 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/lib/big.js +1052 -0
- package/dist/ts/ts/ARC.d.ts +122 -62
- package/dist/ts/ts/ARC.d.ts.map +1 -1
- package/dist/ts/ts/ARC.js +142 -86
- package/dist/ts/ts/CWL/CWLKnownFieldNames.d.ts +32 -0
- package/dist/ts/ts/CWL/CWLKnownFieldNames.d.ts.map +1 -0
- package/dist/ts/ts/CWL/CWLKnownFieldNames.js +95 -0
- package/dist/ts/ts/CWL/CWLProcessingUnit.d.ts +12 -12
- package/dist/ts/ts/CWL/CWLProcessingUnit.d.ts.map +1 -1
- package/dist/ts/ts/CWL/CWLProcessingUnit.js +7 -7
- package/dist/ts/ts/CWL/CWLTypes.d.ts +62 -19
- package/dist/ts/ts/CWL/CWLTypes.d.ts.map +1 -1
- package/dist/ts/ts/CWL/CWLTypes.js +241 -60
- package/dist/ts/ts/CWL/Decode.d.ts +24 -25
- package/dist/ts/ts/CWL/Decode.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Decode.js +454 -314
- package/dist/ts/ts/CWL/DynamicObjHelpers.d.ts +4 -4
- package/dist/ts/ts/CWL/DynamicObjHelpers.d.ts.map +1 -1
- package/dist/ts/ts/CWL/DynamicObjHelpers.js +10 -10
- package/dist/ts/ts/CWL/Encode.d.ts +26 -17
- package/dist/ts/ts/CWL/Encode.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Encode.js +451 -411
- package/dist/ts/ts/CWL/ExpressionToolDescription.d.ts +31 -7
- package/dist/ts/ts/CWL/ExpressionToolDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/ExpressionToolDescription.js +29 -8
- package/dist/ts/ts/CWL/HashHelpers.d.ts +4 -3
- package/dist/ts/ts/CWL/HashHelpers.d.ts.map +1 -1
- package/dist/ts/ts/CWL/HashHelpers.js +9 -9
- package/dist/ts/ts/CWL/Inputs.d.ts +8 -8
- package/dist/ts/ts/CWL/Inputs.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Inputs.js +9 -13
- package/dist/ts/ts/CWL/OperationDescription.d.ts +7 -7
- package/dist/ts/ts/CWL/OperationDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/OperationDescription.js +5 -8
- package/dist/ts/ts/CWL/Outputs.d.ts +10 -10
- package/dist/ts/ts/CWL/Outputs.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Outputs.js +36 -17
- package/dist/ts/ts/CWL/ParameterReference.d.ts +13 -10
- package/dist/ts/ts/CWL/ParameterReference.d.ts.map +1 -1
- package/dist/ts/ts/CWL/ParameterReference.js +29 -21
- package/dist/ts/ts/CWL/ParameterValue.d.ts +57 -0
- package/dist/ts/ts/CWL/ParameterValue.d.ts.map +1 -0
- package/dist/ts/ts/CWL/ParameterValue.js +321 -0
- package/dist/ts/ts/CWL/Requirements.d.ts +51 -23
- package/dist/ts/ts/CWL/Requirements.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Requirements.js +89 -81
- package/dist/ts/ts/CWL/ToolDescription.d.ts +33 -9
- package/dist/ts/ts/CWL/ToolDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/ToolDescription.js +29 -8
- package/dist/ts/ts/CWL/WorkflowDescription.d.ts +29 -8
- package/dist/ts/ts/CWL/WorkflowDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/WorkflowDescription.js +26 -8
- package/dist/ts/ts/CWL/WorkflowSteps.d.ts +45 -21
- package/dist/ts/ts/CWL/WorkflowSteps.d.ts.map +1 -1
- package/dist/ts/ts/CWL/WorkflowSteps.js +70 -34
- package/dist/ts/ts/CWLRunResolver.d.ts +11 -11
- package/dist/ts/ts/CWLRunResolver.d.ts.map +1 -1
- package/dist/ts/ts/CWLRunResolver.js +16 -16
- package/dist/ts/ts/Contract/ARC.d.ts +2 -2
- package/dist/ts/ts/Contract/ARC.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ARC.js +1 -1
- package/dist/ts/ts/Contract/ArcAssay.d.ts +7 -6
- package/dist/ts/ts/Contract/ArcAssay.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcAssay.js +15 -10
- package/dist/ts/ts/Contract/ArcInvestigation.d.ts +5 -4
- package/dist/ts/ts/Contract/ArcInvestigation.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcInvestigation.js +12 -7
- package/dist/ts/ts/Contract/ArcRun.d.ts +11 -10
- package/dist/ts/ts/Contract/ArcRun.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcRun.js +24 -21
- package/dist/ts/ts/Contract/ArcStudy.d.ts +8 -7
- package/dist/ts/ts/Contract/ArcStudy.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcStudy.js +15 -10
- package/dist/ts/ts/Contract/ArcWorkflow.d.ts +9 -8
- package/dist/ts/ts/Contract/ArcWorkflow.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcWorkflow.js +20 -16
- package/dist/ts/ts/Contract/Contract.d.ts +38 -8
- package/dist/ts/ts/Contract/Contract.d.ts.map +1 -1
- package/dist/ts/ts/Contract/Contract.js +46 -7
- package/dist/ts/ts/Contract/Datamap.d.ts +5 -4
- package/dist/ts/ts/Contract/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Contract/Datamap.js +45 -32
- package/dist/ts/ts/Contract/Git.d.ts +6 -5
- package/dist/ts/ts/Contract/Git.d.ts.map +1 -1
- package/dist/ts/ts/Contract/Git.js +4 -4
- package/dist/ts/ts/Contract/License.d.ts +4 -3
- package/dist/ts/ts/Contract/License.d.ts.map +1 -1
- package/dist/ts/ts/Contract/License.js +5 -5
- package/dist/ts/ts/Contract/ValidationPackagesConfig.d.ts +5 -4
- package/dist/ts/ts/Contract/ValidationPackagesConfig.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ValidationPackagesConfig.js +6 -7
- package/dist/ts/ts/ContractIO/ContractIO.d.ts +5 -4
- package/dist/ts/ts/ContractIO/ContractIO.d.ts.map +1 -1
- package/dist/ts/ts/ContractIO/ContractIO.js +45 -43
- package/dist/ts/ts/ContractIO/FileSystemHelper.d.ts +13 -12
- package/dist/ts/ts/ContractIO/FileSystemHelper.d.ts.map +1 -1
- package/dist/ts/ts/ContractIO/FileSystemHelper.js +6 -6
- package/dist/ts/ts/Conversion/Assay.d.ts +5 -5
- package/dist/ts/ts/Conversion/Assay.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Assay.js +35 -16
- package/dist/ts/ts/Conversion/Basic.d.ts +16 -13
- package/dist/ts/ts/Conversion/Basic.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Basic.js +69 -38
- package/dist/ts/ts/Conversion/ColumnIndex.d.ts +3 -3
- package/dist/ts/ts/Conversion/ColumnIndex.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/ColumnIndex.js +8 -8
- package/dist/ts/ts/Conversion/Datamap.d.ts +4 -4
- package/dist/ts/ts/Conversion/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Datamap.js +2 -2
- package/dist/ts/ts/Conversion/DateTime.d.ts +1 -1
- package/dist/ts/ts/Conversion/DateTime.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/DateTime.js +7 -6
- package/dist/ts/ts/Conversion/Investigation.d.ts +5 -5
- package/dist/ts/ts/Conversion/Investigation.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Investigation.js +17 -10
- package/dist/ts/ts/Conversion/Person.d.ts +4 -4
- package/dist/ts/ts/Conversion/Person.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Person.js +39 -23
- package/dist/ts/ts/Conversion/Process.d.ts +14 -11
- package/dist/ts/ts/Conversion/Process.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Process.js +57 -46
- package/dist/ts/ts/Conversion/Run.d.ts +12 -17
- package/dist/ts/ts/Conversion/Run.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Run.js +450 -68
- package/dist/ts/ts/Conversion/ScholarlyArticle.d.ts +4 -4
- package/dist/ts/ts/Conversion/ScholarlyArticle.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/ScholarlyArticle.js +25 -17
- package/dist/ts/ts/Conversion/Study.d.ts +5 -5
- package/dist/ts/ts/Conversion/Study.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Study.js +27 -13
- package/dist/ts/ts/Conversion/Table.d.ts +10 -11
- package/dist/ts/ts/Conversion/Table.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Table.js +17 -24
- package/dist/ts/ts/Conversion/Workflow.d.ts +17 -17
- package/dist/ts/ts/Conversion/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Workflow.js +78 -40
- package/dist/ts/ts/Conversion.d.ts +10 -11
- package/dist/ts/ts/Conversion.d.ts.map +1 -1
- package/dist/ts/ts/Conversion.js +2 -2
- package/dist/ts/ts/Core/ArcTypes.d.ts +331 -76
- package/dist/ts/ts/Core/ArcTypes.d.ts.map +1 -1
- package/dist/ts/ts/Core/ArcTypes.js +567 -299
- package/dist/ts/ts/Core/Comment.d.ts +5 -5
- package/dist/ts/ts/Core/Comment.d.ts.map +1 -1
- package/dist/ts/ts/Core/Comment.js +17 -10
- package/dist/ts/ts/Core/CommentList.d.ts +3 -3
- package/dist/ts/ts/Core/CommentList.d.ts.map +1 -1
- package/dist/ts/ts/Core/CommentList.js +8 -8
- package/dist/ts/ts/Core/Conversion.d.ts +25 -25
- package/dist/ts/ts/Core/Conversion.d.ts.map +1 -1
- package/dist/ts/ts/Core/Conversion.js +102 -102
- package/dist/ts/ts/Core/Data.d.ts +6 -6
- package/dist/ts/ts/Core/Data.d.ts.map +1 -1
- package/dist/ts/ts/Core/Data.js +11 -10
- package/dist/ts/ts/Core/DataContext.d.ts +10 -10
- package/dist/ts/ts/Core/DataContext.d.ts.map +1 -1
- package/dist/ts/ts/Core/DataContext.js +3 -3
- package/dist/ts/ts/Core/DataFile.d.ts +9 -6
- package/dist/ts/ts/Core/DataFile.d.ts.map +1 -1
- package/dist/ts/ts/Core/DataFile.js +20 -9
- package/dist/ts/ts/Core/Datamap.d.ts +17 -16
- package/dist/ts/ts/Core/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Core/Datamap.js +16 -14
- package/dist/ts/ts/Core/Helper/Collections.d.ts +4 -4
- package/dist/ts/ts/Core/Helper/Collections.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/Collections.js +30 -37
- package/dist/ts/ts/Core/Helper/HashCodes.d.ts +15 -4
- package/dist/ts/ts/Core/Helper/HashCodes.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/HashCodes.js +33 -14
- package/dist/ts/ts/Core/Helper/Identifier.d.ts +1 -1
- package/dist/ts/ts/Core/Helper/Identifier.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/Identifier.js +10 -8
- package/dist/ts/ts/Core/Helper/ORCID.d.ts +1 -1
- package/dist/ts/ts/Core/Helper/ORCID.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/ORCID.js +4 -3
- package/dist/ts/ts/Core/Helper/Regex.d.ts +7 -7
- package/dist/ts/ts/Core/Helper/Regex.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/Regex.js +20 -12
- package/dist/ts/ts/Core/Helper/SemVer.d.ts +5 -5
- package/dist/ts/ts/Core/Helper/SemVer.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/SemVer.js +7 -7
- package/dist/ts/ts/Core/Helper/Url.d.ts +1 -1
- package/dist/ts/ts/Core/Helper/Url.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/Url.js +8 -7
- package/dist/ts/ts/Core/IdentifierSetters.d.ts +2 -2
- package/dist/ts/ts/Core/IdentifierSetters.d.ts.map +1 -1
- package/dist/ts/ts/Core/OntologyAnnotation.d.ts +23 -5
- package/dist/ts/ts/Core/OntologyAnnotation.d.ts.map +1 -1
- package/dist/ts/ts/Core/OntologyAnnotation.js +116 -45
- package/dist/ts/ts/Core/OntologySourceReference.d.ts +4 -4
- package/dist/ts/ts/Core/OntologySourceReference.d.ts.map +1 -1
- package/dist/ts/ts/Core/OntologySourceReference.js +4 -4
- package/dist/ts/ts/Core/Person.d.ts +19 -9
- package/dist/ts/ts/Core/Person.d.ts.map +1 -1
- package/dist/ts/ts/Core/Person.js +27 -11
- package/dist/ts/ts/Core/Process/ColumnIndex.d.ts +11 -11
- package/dist/ts/ts/Core/Process/ColumnIndex.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ColumnIndex.js +68 -29
- package/dist/ts/ts/Core/Process/Component.d.ts +16 -16
- package/dist/ts/ts/Core/Process/Component.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Component.js +38 -25
- package/dist/ts/ts/Core/Process/Factor.d.ts +53 -8
- package/dist/ts/ts/Core/Process/Factor.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Factor.js +62 -11
- package/dist/ts/ts/Core/Process/FactorValue.d.ts +15 -15
- package/dist/ts/ts/Core/Process/FactorValue.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/FactorValue.js +39 -47
- package/dist/ts/ts/Core/Process/Material.d.ts +9 -9
- package/dist/ts/ts/Core/Process/Material.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Material.js +5 -5
- package/dist/ts/ts/Core/Process/MaterialAttribute.d.ts +7 -7
- package/dist/ts/ts/Core/Process/MaterialAttribute.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/MaterialAttribute.js +17 -8
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.d.ts +15 -15
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.js +45 -48
- package/dist/ts/ts/Core/Process/MaterialType.d.ts +7 -5
- package/dist/ts/ts/Core/Process/MaterialType.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/MaterialType.js +14 -7
- package/dist/ts/ts/Core/Process/Process.d.ts +22 -22
- package/dist/ts/ts/Core/Process/Process.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Process.js +42 -26
- package/dist/ts/ts/Core/Process/ProcessInput.d.ts +14 -14
- package/dist/ts/ts/Core/Process/ProcessInput.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProcessInput.js +15 -10
- package/dist/ts/ts/Core/Process/ProcessOutput.d.ts +14 -14
- package/dist/ts/ts/Core/Process/ProcessOutput.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProcessOutput.js +15 -10
- package/dist/ts/ts/Core/Process/ProcessParameterValue.d.ts +30 -15
- package/dist/ts/ts/Core/Process/ProcessParameterValue.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProcessParameterValue.js +56 -46
- package/dist/ts/ts/Core/Process/ProcessSequence.d.ts +16 -16
- package/dist/ts/ts/Core/Process/ProcessSequence.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProcessSequence.js +33 -26
- package/dist/ts/ts/Core/Process/Protocol.d.ts +9 -9
- package/dist/ts/ts/Core/Process/Protocol.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Protocol.js +21 -13
- package/dist/ts/ts/Core/Process/ProtocolParameter.d.ts +28 -7
- package/dist/ts/ts/Core/Process/ProtocolParameter.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProtocolParameter.js +33 -8
- package/dist/ts/ts/Core/Process/Sample.d.ts +10 -10
- package/dist/ts/ts/Core/Process/Sample.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Sample.js +5 -5
- package/dist/ts/ts/Core/Process/Source.d.ts +8 -8
- package/dist/ts/ts/Core/Process/Source.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Source.js +5 -5
- package/dist/ts/ts/Core/Publication.d.ts +5 -5
- package/dist/ts/ts/Core/Publication.d.ts.map +1 -1
- package/dist/ts/ts/Core/Publication.js +18 -11
- package/dist/ts/ts/Core/ScalarValue.d.ts +41 -0
- package/dist/ts/ts/Core/ScalarValue.d.ts.map +1 -0
- package/dist/ts/ts/Core/{Value.js → ScalarValue.js} +56 -29
- package/dist/ts/ts/Core/Table/ArcTable.d.ts +134 -15
- package/dist/ts/ts/Core/Table/ArcTable.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/ArcTable.js +204 -68
- package/dist/ts/ts/Core/Table/ArcTableAux.d.ts +15 -10
- package/dist/ts/ts/Core/Table/ArcTableAux.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/ArcTableAux.js +75 -71
- package/dist/ts/ts/Core/Table/ArcTables.d.ts +12 -9
- package/dist/ts/ts/Core/Table/ArcTables.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/ArcTables.js +42 -38
- package/dist/ts/ts/Core/Table/CompositeCell.d.ts +46 -7
- package/dist/ts/ts/Core/Table/CompositeCell.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/CompositeCell.js +52 -12
- package/dist/ts/ts/Core/Table/CompositeColumn.d.ts +20 -7
- package/dist/ts/ts/Core/Table/CompositeColumn.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/CompositeColumn.js +17 -4
- package/dist/ts/ts/Core/Table/CompositeHeader.d.ts +116 -22
- package/dist/ts/ts/Core/Table/CompositeHeader.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/CompositeHeader.js +219 -65
- package/dist/ts/ts/Core/Template.d.ts +15 -9
- package/dist/ts/ts/Core/Template.d.ts.map +1 -1
- package/dist/ts/ts/Core/Template.js +19 -11
- package/dist/ts/ts/Core/Templates.d.ts +24 -5
- package/dist/ts/ts/Core/Templates.d.ts.map +1 -1
- package/dist/ts/ts/Core/Templates.js +26 -8
- package/dist/ts/ts/Core/URI.d.ts.map +1 -1
- package/dist/ts/ts/CrossAsync.d.ts +6 -5
- package/dist/ts/ts/CrossAsync.d.ts.map +1 -1
- package/dist/ts/ts/CrossAsync.js +6 -6
- package/dist/ts/ts/FileSystem/Commit.d.ts +3 -3
- package/dist/ts/ts/FileSystem/Commit.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/Commit.js +2 -2
- package/dist/ts/ts/FileSystem/FileSystem.d.ts +9 -9
- package/dist/ts/ts/FileSystem/FileSystem.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/FileSystem.js +4 -4
- package/dist/ts/ts/FileSystem/FileSystemTree.d.ts +35 -16
- package/dist/ts/ts/FileSystem/FileSystemTree.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/FileSystemTree.js +36 -18
- package/dist/ts/ts/FileSystem/Path.d.ts +9 -8
- package/dist/ts/ts/FileSystem/Path.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/Path.js +13 -13
- package/dist/ts/ts/Json/Assay.d.ts +9 -9
- package/dist/ts/ts/Json/Assay.d.ts.map +1 -1
- package/dist/ts/ts/Json/Assay.js +86 -50
- package/dist/ts/ts/Json/Comment.d.ts +4 -4
- package/dist/ts/ts/Json/Comment.d.ts.map +1 -1
- package/dist/ts/ts/Json/Comment.js +38 -17
- package/dist/ts/ts/Json/Data.d.ts +7 -7
- package/dist/ts/ts/Json/Data.d.ts.map +1 -1
- package/dist/ts/ts/Json/Data.js +48 -20
- package/dist/ts/ts/Json/DataFile.d.ts +2 -2
- package/dist/ts/ts/Json/DataFile.d.ts.map +1 -1
- package/dist/ts/ts/Json/DataFile.js +10 -9
- package/dist/ts/ts/Json/Datamap/DataContext.d.ts +2 -2
- package/dist/ts/ts/Json/Datamap/DataContext.d.ts.map +1 -1
- package/dist/ts/ts/Json/Datamap/DataContext.js +14 -7
- package/dist/ts/ts/Json/Datamap/Datamap.d.ts +7 -7
- package/dist/ts/ts/Json/Datamap/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Json/Datamap/Datamap.js +4 -4
- package/dist/ts/ts/Json/Decode.d.ts +6 -6
- package/dist/ts/ts/Json/Decode.d.ts.map +1 -1
- package/dist/ts/ts/Json/Decode.js +32 -32
- package/dist/ts/ts/Json/Encode.d.ts +6 -5
- package/dist/ts/ts/Json/Encode.d.ts.map +1 -1
- package/dist/ts/ts/Json/Encode.js +28 -26
- package/dist/ts/ts/Json/IDTable.d.ts +2 -2
- package/dist/ts/ts/Json/IDTable.d.ts.map +1 -1
- package/dist/ts/ts/Json/IDTable.js +2 -2
- package/dist/ts/ts/Json/Investigation.d.ts +9 -9
- package/dist/ts/ts/Json/Investigation.d.ts.map +1 -1
- package/dist/ts/ts/Json/Investigation.js +68 -33
- package/dist/ts/ts/Json/OntologyAnnotation.d.ts +6 -6
- package/dist/ts/ts/Json/OntologyAnnotation.d.ts.map +1 -1
- package/dist/ts/ts/Json/OntologyAnnotation.js +60 -25
- package/dist/ts/ts/Json/OntologySourceReference.d.ts +4 -4
- package/dist/ts/ts/Json/OntologySourceReference.d.ts.map +1 -1
- package/dist/ts/ts/Json/OntologySourceReference.js +36 -15
- package/dist/ts/ts/Json/Person.d.ts +5 -5
- package/dist/ts/ts/Json/Person.d.ts.map +1 -1
- package/dist/ts/ts/Json/Person.js +57 -29
- package/dist/ts/ts/Json/Process/AssayMaterials.d.ts +5 -5
- package/dist/ts/ts/Json/Process/AssayMaterials.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/AssayMaterials.js +12 -5
- package/dist/ts/ts/Json/Process/Component.d.ts +5 -5
- package/dist/ts/ts/Json/Process/Component.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Component.js +25 -11
- package/dist/ts/ts/Json/Process/Factor.d.ts +4 -4
- package/dist/ts/ts/Json/Process/Factor.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Factor.js +17 -9
- package/dist/ts/ts/Json/Process/FactorValue.d.ts +5 -5
- package/dist/ts/ts/Json/Process/FactorValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/FactorValue.js +14 -7
- package/dist/ts/ts/Json/Process/Material.d.ts +5 -5
- package/dist/ts/ts/Json/Process/Material.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Material.js +31 -31
- package/dist/ts/ts/Json/Process/MaterialAttribute.d.ts +4 -4
- package/dist/ts/ts/Json/Process/MaterialAttribute.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/MaterialAttribute.js +16 -8
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.d.ts +5 -5
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.js +14 -7
- package/dist/ts/ts/Json/Process/MaterialType.d.ts +2 -2
- package/dist/ts/ts/Json/Process/MaterialType.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/MaterialType.js +9 -8
- package/dist/ts/ts/Json/Process/Process.d.ts +4 -4
- package/dist/ts/ts/Json/Process/Process.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Process.js +28 -14
- package/dist/ts/ts/Json/Process/ProcessInput.d.ts +4 -4
- package/dist/ts/ts/Json/Process/ProcessInput.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/ProcessInput.js +2 -2
- package/dist/ts/ts/Json/Process/ProcessOutput.d.ts +4 -4
- package/dist/ts/ts/Json/Process/ProcessOutput.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/ProcessOutput.js +2 -2
- package/dist/ts/ts/Json/Process/ProcessParameterValue.d.ts +5 -5
- package/dist/ts/ts/Json/Process/ProcessParameterValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/ProcessParameterValue.js +16 -8
- package/dist/ts/ts/Json/Process/Protocol.d.ts +4 -4
- package/dist/ts/ts/Json/Process/Protocol.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Protocol.js +30 -16
- package/dist/ts/ts/Json/Process/ProtocolParameter.d.ts +4 -4
- package/dist/ts/ts/Json/Process/ProtocolParameter.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/ProtocolParameter.js +16 -8
- package/dist/ts/ts/Json/Process/Sample.d.ts +7 -7
- package/dist/ts/ts/Json/Process/Sample.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Sample.js +37 -60
- package/dist/ts/ts/Json/Process/Source.d.ts +5 -5
- package/dist/ts/ts/Json/Process/Source.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Source.js +34 -57
- package/dist/ts/ts/Json/Process/StudyMaterials.d.ts +5 -5
- package/dist/ts/ts/Json/Process/StudyMaterials.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/StudyMaterials.js +12 -5
- package/dist/ts/ts/Json/Process/Value.d.ts +6 -6
- package/dist/ts/ts/Json/Process/Value.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Value.js +4 -4
- package/dist/ts/ts/Json/PropertyValue.d.ts +6 -6
- package/dist/ts/ts/Json/PropertyValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/PropertyValue.js +31 -22
- package/dist/ts/ts/Json/Publication.d.ts +5 -5
- package/dist/ts/ts/Json/Publication.d.ts.map +1 -1
- package/dist/ts/ts/Json/Publication.js +36 -15
- package/dist/ts/ts/Json/ROCrate/LDContext.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDContext.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDContext.js +17 -16
- package/dist/ts/ts/Json/ROCrate/LDGraph.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDGraph.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDGraph.js +21 -14
- package/dist/ts/ts/Json/ROCrate/LDNode.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDNode.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDNode.js +94 -29
- package/dist/ts/ts/Json/ROCrate/LDRef.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDRef.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDRef.js +4 -4
- package/dist/ts/ts/Json/ROCrate/LDValue.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDValue.js +8 -7
- package/dist/ts/ts/Json/Run.d.ts +7 -7
- package/dist/ts/ts/Json/Run.d.ts.map +1 -1
- package/dist/ts/ts/Json/Run.js +28 -14
- package/dist/ts/ts/Json/StringTable.d.ts +7 -7
- package/dist/ts/ts/Json/StringTable.d.ts.map +1 -1
- package/dist/ts/ts/Json/StringTable.js +10 -10
- package/dist/ts/ts/Json/Study.d.ts +9 -9
- package/dist/ts/ts/Json/Study.d.ts.map +1 -1
- package/dist/ts/ts/Json/Study.js +79 -45
- package/dist/ts/ts/Json/Table/ArcTable.d.ts +10 -10
- package/dist/ts/ts/Json/Table/ArcTable.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/ArcTable.js +28 -28
- package/dist/ts/ts/Json/Table/CellTable.d.ts +9 -9
- package/dist/ts/ts/Json/Table/CellTable.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/CellTable.js +8 -8
- package/dist/ts/ts/Json/Table/CompositeCell.d.ts +6 -6
- package/dist/ts/ts/Json/Table/CompositeCell.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/CompositeCell.js +7 -7
- package/dist/ts/ts/Json/Table/CompositeHeader.d.ts +2 -2
- package/dist/ts/ts/Json/Table/CompositeHeader.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/CompositeHeader.js +7 -7
- package/dist/ts/ts/Json/Table/IOType.d.ts +2 -2
- package/dist/ts/ts/Json/Table/IOType.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/IOType.js +2 -2
- package/dist/ts/ts/Json/Table/OATable.d.ts +8 -8
- package/dist/ts/ts/Json/Table/OATable.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/OATable.js +8 -8
- package/dist/ts/ts/Json/Table/Templates.d.ts +9 -9
- package/dist/ts/ts/Json/Table/Templates.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/Templates.js +11 -11
- package/dist/ts/ts/Json/Workflow.d.ts +7 -7
- package/dist/ts/ts/Json/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/Json/Workflow.js +28 -14
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/property_value_context.d.ts +1 -1
- package/dist/ts/ts/Json/context/rocrate/property_value_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/property_value_context.js +1 -1
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.js +3 -3
- package/dist/ts/ts/Json.d.ts +9 -9
- package/dist/ts/ts/Json.d.ts.map +1 -1
- package/dist/ts/ts/Json.js +2 -2
- package/dist/ts/ts/JsonIO/Assay.d.ts +6 -7
- package/dist/ts/ts/JsonIO/Assay.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Assay.js +13 -12
- package/dist/ts/ts/JsonIO/Datamap.d.ts +3 -4
- package/dist/ts/ts/JsonIO/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Datamap.js +7 -6
- package/dist/ts/ts/JsonIO/Investigation.d.ts +5 -6
- package/dist/ts/ts/JsonIO/Investigation.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Investigation.js +11 -10
- package/dist/ts/ts/JsonIO/LDObject.d.ts +5 -6
- package/dist/ts/ts/JsonIO/LDObject.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/LDObject.js +14 -13
- package/dist/ts/ts/JsonIO/OntologyAnnotation.d.ts +5 -6
- package/dist/ts/ts/JsonIO/OntologyAnnotation.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/OntologyAnnotation.js +11 -10
- package/dist/ts/ts/JsonIO/Person.d.ts +5 -6
- package/dist/ts/ts/JsonIO/Person.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Person.js +11 -10
- package/dist/ts/ts/JsonIO/Run.d.ts +4 -5
- package/dist/ts/ts/JsonIO/Run.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Run.js +9 -8
- package/dist/ts/ts/JsonIO/Study.d.ts +7 -8
- package/dist/ts/ts/JsonIO/Study.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Study.js +13 -12
- package/dist/ts/ts/JsonIO/Table/Compression.d.ts +6 -6
- package/dist/ts/ts/JsonIO/Table/Compression.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Table/Compression.js +4 -4
- package/dist/ts/ts/JsonIO/Table/Templates.d.ts +10 -10
- package/dist/ts/ts/JsonIO/Table/Templates.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Table/Templates.js +13 -12
- package/dist/ts/ts/JsonIO/Workflow.d.ts +4 -5
- package/dist/ts/ts/JsonIO/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Workflow.js +9 -8
- package/dist/ts/ts/License.d.ts +12 -6
- package/dist/ts/ts/License.d.ts.map +1 -1
- package/dist/ts/ts/License.js +49 -14
- package/dist/ts/ts/ROCrate/Helper.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/Helper.js +1 -1
- package/dist/ts/ts/ROCrate/LDContext.d.ts +15 -4
- package/dist/ts/ts/ROCrate/LDContext.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDContext.js +27 -16
- package/dist/ts/ts/ROCrate/LDObject.d.ts +19 -10
- package/dist/ts/ts/ROCrate/LDObject.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDObject.js +76 -38
- package/dist/ts/ts/ROCrate/LDTypes/Comment.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Comment.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Comment.js +11 -9
- package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.d.ts +5 -5
- package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.js +18 -16
- package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.js +22 -16
- package/dist/ts/ts/ROCrate/LDTypes/CreateAction.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/CreateAction.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/CreateAction.js +15 -13
- package/dist/ts/ts/ROCrate/LDTypes/CreativeWork.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/CreativeWork.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/CreativeWork.js +25 -23
- package/dist/ts/ts/ROCrate/LDTypes/Dataset.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Dataset.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Dataset.js +48 -45
- package/dist/ts/ts/ROCrate/LDTypes/DefinedTerm.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/DefinedTerm.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/DefinedTerm.js +11 -9
- package/dist/ts/ts/ROCrate/LDTypes/File.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/File.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/File.js +15 -13
- package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.js +18 -16
- package/dist/ts/ts/ROCrate/LDTypes/LabProcess.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/LabProcess.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/LabProcess.js +16 -14
- package/dist/ts/ts/ROCrate/LDTypes/LabProtocol.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/LabProtocol.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/LabProtocol.js +17 -16
- package/dist/ts/ts/ROCrate/LDTypes/Organization.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Organization.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Organization.js +8 -6
- package/dist/ts/ts/ROCrate/LDTypes/Person.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Person.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Person.js +28 -25
- package/dist/ts/ts/ROCrate/LDTypes/PostalAddress.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/PostalAddress.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/PostalAddress.js +17 -16
- package/dist/ts/ts/ROCrate/LDTypes/PropertyValue.d.ts +10 -6
- package/dist/ts/ts/ROCrate/LDTypes/PropertyValue.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/PropertyValue.js +104 -61
- package/dist/ts/ts/ROCrate/LDTypes/Sample.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Sample.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Sample.js +14 -13
- package/dist/ts/ts/ROCrate/LDTypes/ScholarlyArticle.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/ScholarlyArticle.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/ScholarlyArticle.js +12 -10
- package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.d.ts +5 -5
- package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.js +11 -10
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.d.ts +3 -3
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.js +4 -3
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.d.ts +3 -3
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.js +4 -3
- package/dist/ts/ts/ROCrate/ROCrateContext.d.ts +1 -1
- package/dist/ts/ts/ROCrate/ROCrateContext.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/ROCrateContext.js +2 -2
- package/dist/ts/ts/ROCrateIO.d.ts +13 -8
- package/dist/ts/ts/ROCrateIO.d.ts.map +1 -1
- package/dist/ts/ts/ROCrateIO.js +16 -13
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts +13 -12
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.js +15 -15
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts +9 -8
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.js +23 -12
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts +14 -14
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +17 -18
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts +18 -17
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +37 -29
- package/dist/ts/ts/Spreadsheet/ArcAssay.d.ts +6 -6
- package/dist/ts/ts/Spreadsheet/ArcAssay.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcAssay.js +16 -15
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.d.ts +14 -14
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.js +21 -21
- package/dist/ts/ts/Spreadsheet/ArcRun.d.ts +5 -5
- package/dist/ts/ts/Spreadsheet/ArcRun.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcRun.js +9 -9
- package/dist/ts/ts/Spreadsheet/ArcStudy.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/ArcStudy.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcStudy.js +13 -12
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.d.ts +5 -5
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.js +9 -9
- package/dist/ts/ts/Spreadsheet/CollectionAux.d.ts +8 -8
- package/dist/ts/ts/Spreadsheet/CollectionAux.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/CollectionAux.js +11 -11
- package/dist/ts/ts/Spreadsheet/Datamap.d.ts +2 -2
- package/dist/ts/ts/Spreadsheet/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Datamap.js +6 -5
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapColumn.d.ts +4 -4
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapColumn.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapColumn.js +14 -10
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapHeader.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapHeader.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapHeader.js +30 -21
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapTable.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapTable.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapTable.js +10 -10
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.js +12 -9
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.d.ts +5 -5
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.js +11 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.js +8 -8
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.d.ts +9 -8
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.js +6 -6
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.js +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.js +6 -6
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.js +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.js +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.js +9 -8
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.js +11 -9
- package/dist/ts/ts/Spreadsheet/Metadata/Run.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Run.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Run.js +13 -10
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.d.ts +10 -10
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.js +55 -49
- package/dist/ts/ts/Spreadsheet/Metadata/Study.d.ts +14 -14
- package/dist/ts/ts/Spreadsheet/Metadata/Study.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Study.js +10 -10
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.js +8 -8
- package/dist/ts/ts/Template.Web.d.ts +10 -6
- package/dist/ts/ts/Template.Web.d.ts.map +1 -1
- package/dist/ts/ts/Template.Web.js +4 -4
- package/dist/ts/ts/ValidationPackages/ValidationPackage.d.ts +6 -3
- package/dist/ts/ts/ValidationPackages/ValidationPackage.d.ts.map +1 -1
- package/dist/ts/ts/ValidationPackages/ValidationPackage.js +10 -7
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.d.ts +7 -4
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.d.ts.map +1 -1
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.js +29 -24
- package/dist/ts/ts/WebRequest/WebRequest.Node.d.ts +1 -1
- package/dist/ts/ts/WebRequest/WebRequest.Node.d.ts.map +1 -1
- package/dist/ts/ts/WebRequest/WebRequest.Node.js +4 -4
- package/dist/ts/ts/WebRequest/WebRequest.d.ts +1 -1
- package/dist/ts/ts/WebRequest/WebRequest.d.ts.map +1 -1
- package/dist/ts/ts/WebRequest/WebRequest.js +3 -3
- package/dist/ts/ts/WorkflowGraph/Adapters.d.ts +6 -6
- package/dist/ts/ts/WorkflowGraph/Adapters.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/Adapters.js +13 -13
- package/dist/ts/ts/WorkflowGraph/BuildOptions.d.ts +7 -4
- package/dist/ts/ts/WorkflowGraph/BuildOptions.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/BuildOptions.js +2 -2
- package/dist/ts/ts/WorkflowGraph/Builder.d.ts +25 -19
- package/dist/ts/ts/WorkflowGraph/Builder.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/Builder.js +82 -68
- package/dist/ts/ts/WorkflowGraph/GraphTypes.d.ts +52 -32
- package/dist/ts/ts/WorkflowGraph/GraphTypes.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/GraphTypes.js +90 -30
- package/dist/ts/ts/WorkflowGraph/ReferenceParsing.d.ts +5 -5
- package/dist/ts/ts/WorkflowGraph/ReferenceParsing.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/ReferenceParsing.js +4 -4
- package/dist/ts/ts/Xlsx.d.ts +5 -5
- package/dist/ts/ts/Xlsx.d.ts.map +1 -1
- package/dist/ts/ts/Xlsx.js +8 -6
- package/dist/ts/ts/Yaml/Encode.d.ts +2 -2
- package/dist/ts/ts/Yaml/Encode.d.ts.map +1 -1
- package/dist/ts/ts/Yaml/Encode.js +2 -2
- package/dist/ts/ts/Yaml/ValidationPackage.d.ts +4 -5
- package/dist/ts/ts/Yaml/ValidationPackage.d.ts.map +1 -1
- package/dist/ts/ts/Yaml/ValidationPackage.js +12 -12
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts +4 -5
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts.map +1 -1
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.js +12 -12
- package/dist/ts/ts/Yaml.d.ts +3 -3
- package/dist/ts/ts/Yaml.d.ts.map +1 -1
- package/dist/ts/ts/Yaml.js +3 -8
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/DynObj.fs.js +6 -6
- package/dist/ts/ts/fable_modules/DynamicObj.8.0.0/DynamicObj.fs.js +515 -0
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/FableJS.fs.js +23 -8
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/HashCodes.fs.js +11 -11
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/PropertyHelper.fs.js +2 -2
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/ReflectionUtils.fs.js +16 -6
- package/dist/ts/ts/fable_modules/{Fable.Fetch.2.6.0 → Fable.Fetch.2.7.0}/Fetch.fs.js +11 -11
- package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +8 -7
- package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +3 -3
- package/dist/ts/ts/fable_modules/{Fable.SimpleHttp.3.5.0 → Fable.SimpleHttp.3.6.0}/Http.fs.js +21 -21
- package/dist/ts/ts/fable_modules/{Fable.SimpleHttp.3.5.0 → Fable.SimpleHttp.3.6.0}/Types.fs.js +52 -19
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Cells/FsCell.fs.js +255 -126
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Cells/FsCellsCollection.fs.js +135 -18
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/CellBuilder.fs.js +9 -9
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/Expression.fs.js +1 -1
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/RowBuilder.fs.js +5 -5
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/Types.fs.js +16 -16
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsAddress.fs.js +41 -17
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsColumn.fs.js +70 -7
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsRow.fs.js +76 -8
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsWorkbook.fs.js +77 -11
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsWorksheet.fs.js +237 -32
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/HashCodes.fs.js +9 -9
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Cell.fs.js +10 -10
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Column.fs.js +6 -6
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Row.fs.js +6 -6
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Table.fs.js +3 -3
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Value.fs.js +11 -11
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Workbook.fs.js +3 -3
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Worksheet.fs.js +8 -8
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRange.fs.js +6 -5
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeAddress.fs.js +11 -5
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeBase.fs.js +18 -13
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeColumn.fs.js +9 -3
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeRow.fs.js +1 -1
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Tables/FsTable.fs.js +185 -26
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Tables/FsTableField.fs.js +48 -5
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.1/Cell.fs.js +65 -0
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/FsExtensions.fs.js +1 -1
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Json.fs.js +9 -9
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Table.fs.js +15 -14
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Workbook.fs.js +4 -4
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Worksheet.fs.js +4 -4
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Xlsx.fs.js +2 -2
- package/dist/ts/ts/fable_modules/{Thoth.Json.Core.0.7.0 → Thoth.Json.Core.0.9.1}/Decode.fs.js +265 -159
- package/dist/ts/ts/fable_modules/{Thoth.Json.Core.0.7.0 → Thoth.Json.Core.0.9.1}/Encode.fs.js +94 -36
- package/dist/ts/ts/fable_modules/{Thoth.Json.Core.0.7.0 → Thoth.Json.Core.0.9.1}/Types.fs.js +16 -22
- package/dist/ts/ts/fable_modules/{Thoth.Json.JavaScript.0.4.1 → Thoth.Json.JavaScript.0.5.0}/Decode.fs.js +9 -7
- package/dist/ts/ts/fable_modules/{Thoth.Json.JavaScript.0.4.1 → Thoth.Json.JavaScript.0.5.0}/Encode.fs.js +2 -3
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Decode.fs.js +98 -104
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Encode.fs.js +10 -10
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Escapes.fs.js +41 -34
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Persil.fs.js +48 -48
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Preprocessing.fs.js +14 -14
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Reader.fs.js +129 -112
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0/Regex.fs.js +23 -0
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/RegexActivePatterns.fs.js +14 -14
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Syntax.fs.js +77 -56
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Writer.fs.js +34 -31
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/YAMLiciousTypes.fs.js +74 -32
- package/package.json +3 -2
- package/dist/ts/node_modules/@fable-org/fable-library-js/Array.js +0 -1244
- package/dist/ts/node_modules/@fable-org/fable-library-js/Async.js +0 -146
- package/dist/ts/node_modules/@fable-org/fable-library-js/AsyncBuilder.js +0 -186
- package/dist/ts/node_modules/@fable-org/fable-library-js/BigInt.js +0 -286
- package/dist/ts/node_modules/@fable-org/fable-library-js/Boolean.js +0 -24
- package/dist/ts/node_modules/@fable-org/fable-library-js/Char.js +0 -172
- package/dist/ts/node_modules/@fable-org/fable-library-js/Choice.js +0 -187
- package/dist/ts/node_modules/@fable-org/fable-library-js/CollectionUtil.js +0 -185
- package/dist/ts/node_modules/@fable-org/fable-library-js/Date.js +0 -750
- package/dist/ts/node_modules/@fable-org/fable-library-js/DateOffset.js +0 -271
- package/dist/ts/node_modules/@fable-org/fable-library-js/Decimal.js +0 -214
- package/dist/ts/node_modules/@fable-org/fable-library-js/Double.js +0 -49
- package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Collections.js +0 -30
- package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Core.js +0 -72
- package/dist/ts/node_modules/@fable-org/fable-library-js/Global.js +0 -10
- package/dist/ts/node_modules/@fable-org/fable-library-js/Guid.js +0 -145
- package/dist/ts/node_modules/@fable-org/fable-library-js/Int32.js +0 -137
- package/dist/ts/node_modules/@fable-org/fable-library-js/List.js +0 -1276
- package/dist/ts/node_modules/@fable-org/fable-library-js/Long.js +0 -49
- package/dist/ts/node_modules/@fable-org/fable-library-js/Map.js +0 -1399
- package/dist/ts/node_modules/@fable-org/fable-library-js/MapUtil.js +0 -130
- package/dist/ts/node_modules/@fable-org/fable-library-js/MutableMap.js +0 -330
- package/dist/ts/node_modules/@fable-org/fable-library-js/MutableSet.js +0 -236
- package/dist/ts/node_modules/@fable-org/fable-library-js/Native.js +0 -10
- package/dist/ts/node_modules/@fable-org/fable-library-js/Numeric.js +0 -73
- package/dist/ts/node_modules/@fable-org/fable-library-js/Option.js +0 -99
- package/dist/ts/node_modules/@fable-org/fable-library-js/Range.js +0 -48
- package/dist/ts/node_modules/@fable-org/fable-library-js/Reflection.js +0 -465
- package/dist/ts/node_modules/@fable-org/fable-library-js/RegExp.js +0 -133
- package/dist/ts/node_modules/@fable-org/fable-library-js/Result.js +0 -168
- package/dist/ts/node_modules/@fable-org/fable-library-js/Seq.js +0 -1381
- package/dist/ts/node_modules/@fable-org/fable-library-js/Seq2.js +0 -114
- package/dist/ts/node_modules/@fable-org/fable-library-js/Set.js +0 -1792
- package/dist/ts/node_modules/@fable-org/fable-library-js/String.js +0 -557
- package/dist/ts/node_modules/@fable-org/fable-library-js/System.Collections.Generic.js +0 -320
- package/dist/ts/node_modules/@fable-org/fable-library-js/System.Text.js +0 -165
- package/dist/ts/node_modules/@fable-org/fable-library-js/SystemException.js +0 -8
- package/dist/ts/node_modules/@fable-org/fable-library-js/TimeSpan.js +0 -180
- package/dist/ts/node_modules/@fable-org/fable-library-js/Types.js +0 -211
- package/dist/ts/node_modules/@fable-org/fable-library-js/Uri.js +0 -160
- package/dist/ts/node_modules/@fable-org/fable-library-js/Util.js +0 -771
- package/dist/ts/node_modules/@fable-org/fable-library-js/lib/big.js +0 -825
- package/dist/ts/ts/Core/Value.d.ts +0 -41
- package/dist/ts/ts/Core/Value.d.ts.map +0 -1
- package/dist/ts/ts/fable_modules/DynamicObj.7.1.0/DynamicObj.fs.js +0 -367
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Cell.fs.js +0 -68
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.11/Regex.fs.js +0 -21
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.11/StringBuffer.fs.js +0 -60
- /package/dist/ts/ts/fable_modules/{Fable.Exceljs.1.6.0 → Fable.Exceljs.2.0.0_565fc3e-alpha.1}/ExcelJs.fs.js +0 -0
- /package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Interop/JsInterop.fs.js +0 -0
package/dist/ts/ts/Json/Study.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ResizeArray_map, Option_fromValueWithDefault } from '../Core/Helper/Collections.js';
|
|
2
|
-
import { defaultArg, value,
|
|
3
|
-
import { tryFind, choose, ofArray, singleton, map as map$
|
|
2
|
+
import { defaultArg, value, unwrap } from '../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
3
|
+
import { tryFind, choose, ofArray, singleton, map as map$1, empty } from '../../node_modules/@fable-org/fable-library-ts/List.js';
|
|
4
4
|
import { ArcAssay, ArcStudy } from '../Core/ArcTypes.js';
|
|
5
5
|
import { tryInclude, tryIncludeSeq, tryIncludeList } from './Encode.js';
|
|
6
6
|
import { encoder as encoder$1, decoder as decoder$1, ROCrate_encoder as ROCrate_encoder$1, ROCrate_decoder as ROCrate_decoder$3, ISAJson_encoder as ISAJson_encoder$2, ISAJson_decoder as ISAJson_decoder$4 } from './Publication.js';
|
|
@@ -9,13 +9,13 @@ import { OntologyAnnotation_encoder, OntologyAnnotation_decoder, OntologyAnnotat
|
|
|
9
9
|
import { encoder as encoder$3, decoder as decoder$3, encoderCompressed as encoderCompressed$1, decoderCompressed as decoderCompressed$1 } from './Table/ArcTable.js';
|
|
10
10
|
import { encoder as encoder$4, decoder as decoder$4, encoderCompressed as encoderCompressed$2, decoderCompressed as decoderCompressed$2 } from './Datamap/Datamap.js';
|
|
11
11
|
import { encoder as encoder$5, decoder as decoder$5, ROCrate_encoder as ROCrate_encoder$6, ROCrate_decoder as ROCrate_decoder$5, ISAJson_encoder as ISAJson_encoder$6, ISAJson_decoder as ISAJson_decoder$5 } from './Comment.js';
|
|
12
|
-
import { map
|
|
13
|
-
import { object, string, resizeArray, list as list$1 } from '../fable_modules/Thoth.Json.Core.0.
|
|
14
|
-
import { getEnumerator, disposeSafe } from '../../node_modules/@fable-org/fable-library-
|
|
15
|
-
import { replace } from '../../node_modules/@fable-org/fable-library-
|
|
12
|
+
import { map, isEmpty } from '../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
13
|
+
import { object, string, resizeArray, list as list$1 } from '../fable_modules/Thoth.Json.Core.0.9.1/Decode.fs.js';
|
|
14
|
+
import { getEnumerator, disposeSafe } from '../../node_modules/@fable-org/fable-library-ts/Util.js';
|
|
15
|
+
import { concat, replace } from '../../node_modules/@fable-org/fable-library-ts/String.js';
|
|
16
16
|
import { Study_tryFileNameFromIdentifier, Study_tryIdentifierFromFileName, createMissingIdentifier, Study_fileNameFromIdentifier } from '../Core/Helper/Identifier.js';
|
|
17
17
|
import { ARCtrl_ArcTables__ArcTables_GetProcesses, ARCtrl_ArcTables__ArcTables_fromProcesses_Static_62A3309D, Person_setSourceAssayComment, Person_getSourceAssayIdentifiersFromComments, Person_removeSourceAssayComments } from '../Core/Conversion.js';
|
|
18
|
-
import { list } from '../fable_modules/Thoth.Json.Core.0.
|
|
18
|
+
import { list } from '../fable_modules/Thoth.Json.Core.0.9.1/Encode.fs.js';
|
|
19
19
|
import { ROCrate_encoder as ROCrate_encoder$3, ROCrate_decoder as ROCrate_decoder$2, ISAJson_encoder as ISAJson_encoder$4, ISAJson_decoder as ISAJson_decoder$1 } from './Process/Process.js';
|
|
20
20
|
import { ROCrate_encoder as ROCrate_encoder$4, ROCrate_decoder as ROCrate_decoder$1, ISAJson_encoder as ISAJson_encoder$5, ISAJson_decoder as ISAJson_decoder$2 } from './Assay.js';
|
|
21
21
|
import { ROCrate_encoder as ROCrate_encoder$5 } from './Data.js';
|
|
@@ -36,10 +36,17 @@ function Helper_getAssayInformation(assays, study) {
|
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
function encoder(study) {
|
|
39
|
-
let value;
|
|
40
|
-
const values_1 = choose((tupledArg) =>
|
|
39
|
+
let value$1 = void 0;
|
|
40
|
+
const values_1 = choose((tupledArg) => {
|
|
41
|
+
const option_1 = tupledArg[1];
|
|
42
|
+
if (option_1 != null) {
|
|
43
|
+
return [tupledArg[0], value(option_1)];
|
|
44
|
+
} else {
|
|
45
|
+
return void 0;
|
|
46
|
+
}
|
|
47
|
+
}, ofArray([["Identifier", (value$1 = study.Identifier, {
|
|
41
48
|
Encode(helpers) {
|
|
42
|
-
return helpers.encodeString(value);
|
|
49
|
+
return helpers.encodeString(value$1);
|
|
43
50
|
}
|
|
44
51
|
})], tryInclude("Title", (value_1) => ({
|
|
45
52
|
Encode(helpers_1) {
|
|
@@ -64,20 +71,27 @@ function encoder(study) {
|
|
|
64
71
|
}), study.RegisteredAssayIdentifiers), tryIncludeSeq("Comments", encoder$5, study.Comments)]));
|
|
65
72
|
return {
|
|
66
73
|
Encode(helpers_6) {
|
|
67
|
-
const arg = map
|
|
74
|
+
const arg = map((tupledArg_1) => [tupledArg_1[0], tupledArg_1[1].Encode(helpers_6)], values_1);
|
|
68
75
|
return helpers_6.encodeObject(arg);
|
|
69
76
|
}
|
|
70
77
|
};
|
|
71
78
|
}
|
|
72
79
|
const decoder = object((get$) => {
|
|
73
|
-
let objectArg, objectArg_1, objectArg_2, objectArg_3, objectArg_4, arg_11, objectArg_5, arg_13, objectArg_6, arg_15, objectArg_7, arg_17, objectArg_8, objectArg_9, arg_21, objectArg_10, arg_23, objectArg_11;
|
|
80
|
+
let objectArg = void 0, objectArg_1 = void 0, objectArg_2 = void 0, objectArg_3 = void 0, objectArg_4 = void 0, arg_11 = void 0, objectArg_5 = void 0, arg_13 = void 0, objectArg_6 = void 0, arg_15 = void 0, objectArg_7 = void 0, arg_17 = void 0, objectArg_8 = void 0, objectArg_9 = void 0, arg_21 = void 0, objectArg_10 = void 0, arg_23 = void 0, objectArg_11 = void 0;
|
|
74
81
|
return new ArcStudy((objectArg = get$.Required, objectArg.Field("Identifier", string)), unwrap((objectArg_1 = get$.Optional, objectArg_1.Field("Title", string))), unwrap((objectArg_2 = get$.Optional, objectArg_2.Field("Description", string))), unwrap((objectArg_3 = get$.Optional, objectArg_3.Field("SubmissionDate", string))), unwrap((objectArg_4 = get$.Optional, objectArg_4.Field("PublicReleaseDate", string))), unwrap((arg_11 = resizeArray(decoder$1), objectArg_5 = get$.Optional, objectArg_5.Field("Publications", arg_11))), unwrap((arg_13 = resizeArray(decoder$2), objectArg_6 = get$.Optional, objectArg_6.Field("Contacts", arg_13))), unwrap((arg_15 = resizeArray(OntologyAnnotation_decoder), objectArg_7 = get$.Optional, objectArg_7.Field("StudyDesignDescriptors", arg_15))), unwrap((arg_17 = resizeArray(decoder$3), objectArg_8 = get$.Optional, objectArg_8.Field("Tables", arg_17))), unwrap((objectArg_9 = get$.Optional, objectArg_9.Field("Datamap", decoder$4))), unwrap((arg_21 = resizeArray(string), objectArg_10 = get$.Optional, objectArg_10.Field("RegisteredAssayIdentifiers", arg_21))), unwrap((arg_23 = resizeArray(decoder$5), objectArg_11 = get$.Optional, objectArg_11.Field("Comments", arg_23))));
|
|
75
82
|
});
|
|
76
83
|
function encoderCompressed(stringTable, oaTable, cellTable, study) {
|
|
77
|
-
let value;
|
|
78
|
-
const values_1 = choose((tupledArg) =>
|
|
84
|
+
let value$1 = void 0;
|
|
85
|
+
const values_1 = choose((tupledArg) => {
|
|
86
|
+
const option_1 = tupledArg[1];
|
|
87
|
+
if (option_1 != null) {
|
|
88
|
+
return [tupledArg[0], value(option_1)];
|
|
89
|
+
} else {
|
|
90
|
+
return void 0;
|
|
91
|
+
}
|
|
92
|
+
}, ofArray([["Identifier", (value$1 = study.Identifier, {
|
|
79
93
|
Encode(helpers) {
|
|
80
|
-
return helpers.encodeString(value);
|
|
94
|
+
return helpers.encodeString(value$1);
|
|
81
95
|
}
|
|
82
96
|
})], tryInclude("Title", (value_1) => ({
|
|
83
97
|
Encode(helpers_1) {
|
|
@@ -102,14 +116,14 @@ function encoderCompressed(stringTable, oaTable, cellTable, study) {
|
|
|
102
116
|
}), study.RegisteredAssayIdentifiers), tryIncludeSeq("Comments", encoder$5, study.Comments)]));
|
|
103
117
|
return {
|
|
104
118
|
Encode(helpers_6) {
|
|
105
|
-
const arg = map
|
|
119
|
+
const arg = map((tupledArg_1) => [tupledArg_1[0], tupledArg_1[1].Encode(helpers_6)], values_1);
|
|
106
120
|
return helpers_6.encodeObject(arg);
|
|
107
121
|
}
|
|
108
122
|
};
|
|
109
123
|
}
|
|
110
124
|
function decoderCompressed(stringTable, oaTable, cellTable) {
|
|
111
125
|
return object((get$) => {
|
|
112
|
-
let objectArg, objectArg_1, objectArg_2, objectArg_3, objectArg_4, arg_11, objectArg_5, arg_13, objectArg_6, arg_15, objectArg_7, arg_17, objectArg_8, arg_19, objectArg_9, arg_21, objectArg_10, arg_23, objectArg_11;
|
|
126
|
+
let objectArg = void 0, objectArg_1 = void 0, objectArg_2 = void 0, objectArg_3 = void 0, objectArg_4 = void 0, arg_11 = void 0, objectArg_5 = void 0, arg_13 = void 0, objectArg_6 = void 0, arg_15 = void 0, objectArg_7 = void 0, arg_17 = void 0, objectArg_8 = void 0, arg_19 = void 0, objectArg_9 = void 0, arg_21 = void 0, objectArg_10 = void 0, arg_23 = void 0, objectArg_11 = void 0;
|
|
113
127
|
return new ArcStudy((objectArg = get$.Required, objectArg.Field("Identifier", string)), unwrap((objectArg_1 = get$.Optional, objectArg_1.Field("Title", string))), unwrap((objectArg_2 = get$.Optional, objectArg_2.Field("Description", string))), unwrap((objectArg_3 = get$.Optional, objectArg_3.Field("SubmissionDate", string))), unwrap((objectArg_4 = get$.Optional, objectArg_4.Field("PublicReleaseDate", string))), unwrap((arg_11 = resizeArray(decoder$1), objectArg_5 = get$.Optional, objectArg_5.Field("Publications", arg_11))), unwrap((arg_13 = resizeArray(decoder$2), objectArg_6 = get$.Optional, objectArg_6.Field("Contacts", arg_13))), unwrap((arg_15 = resizeArray(OntologyAnnotation_decoder), objectArg_7 = get$.Optional, objectArg_7.Field("StudyDesignDescriptors", arg_15))), unwrap((arg_17 = resizeArray(decoderCompressed$1(stringTable, oaTable, cellTable)), objectArg_8 = get$.Optional, objectArg_8.Field("Tables", arg_17))), unwrap((arg_19 = decoderCompressed$2(stringTable, oaTable, cellTable), objectArg_9 = get$.Optional, objectArg_9.Field("Datamap", arg_19))), unwrap((arg_21 = resizeArray(string), objectArg_10 = get$.Optional, objectArg_10.Field("RegisteredAssayIdentifiers", arg_21))), unwrap((arg_23 = resizeArray(decoder$5), objectArg_11 = get$.Optional, objectArg_11.Field("Comments", arg_23))));
|
|
114
128
|
});
|
|
115
129
|
}
|
|
@@ -118,17 +132,24 @@ function ROCrate_genID(a) {
|
|
|
118
132
|
if (matchValue === "") {
|
|
119
133
|
return "#EmptyStudy";
|
|
120
134
|
} else {
|
|
121
|
-
return
|
|
135
|
+
return concat("studies/", replace(matchValue, " ", "_"), "/");
|
|
122
136
|
}
|
|
123
137
|
}
|
|
124
138
|
function ROCrate_encoder(assays, s) {
|
|
125
|
-
let value, value_3, studyName, assayName_1;
|
|
139
|
+
let value$1 = void 0, value_3 = void 0, studyName = void 0, assayName_1 = void 0;
|
|
126
140
|
const fileName = Study_tryFileNameFromIdentifier(s.Identifier);
|
|
127
141
|
const processes = ARCtrl_ArcTables__ArcTables_GetProcesses(s);
|
|
128
142
|
const assays_1 = Helper_getAssayInformation(assays, s);
|
|
129
|
-
const values_1 = choose((tupledArg) =>
|
|
143
|
+
const values_1 = choose((tupledArg) => {
|
|
144
|
+
const option_1 = tupledArg[1];
|
|
145
|
+
if (option_1 != null) {
|
|
146
|
+
return [tupledArg[0], value(option_1)];
|
|
147
|
+
} else {
|
|
148
|
+
return void 0;
|
|
149
|
+
}
|
|
150
|
+
}, ofArray([["@id", (value$1 = ROCrate_genID(s), {
|
|
130
151
|
Encode(helpers) {
|
|
131
|
-
return helpers.encodeString(value);
|
|
152
|
+
return helpers.encodeString(value$1);
|
|
132
153
|
}
|
|
133
154
|
})], ["@type", list(singleton({
|
|
134
155
|
Encode(helpers_1) {
|
|
@@ -165,28 +186,32 @@ function ROCrate_encoder(assays, s) {
|
|
|
165
186
|
}), s.PublicReleaseDate), tryIncludeSeq("publications", ROCrate_encoder$1, s.Publications), tryIncludeSeq("people", ROCrate_encoder$2, s.Contacts), tryIncludeList("processSequence", (studyName = s.Identifier, (oa_3) => ROCrate_encoder$3(studyName, void 0, oa_3)), processes), tryIncludeSeq("assays", (assayName_1 = s.Identifier, (a_1) => ROCrate_encoder$4(assayName_1, a_1)), assays_1), tryIncludeList("dataFiles", ROCrate_encoder$5, getData(processes)), tryIncludeSeq("comments", ROCrate_encoder$6, s.Comments), ["@context", context_jsonvalue]]));
|
|
166
187
|
return {
|
|
167
188
|
Encode(helpers_9) {
|
|
168
|
-
const arg = map
|
|
189
|
+
const arg = map((tupledArg_1) => [tupledArg_1[0], tupledArg_1[1].Encode(helpers_9)], values_1);
|
|
169
190
|
return helpers_9.encodeObject(arg);
|
|
170
191
|
}
|
|
171
192
|
};
|
|
172
193
|
}
|
|
173
194
|
const ROCrate_decoder = object((get$) => {
|
|
174
|
-
let objectArg,
|
|
175
|
-
const identifier = defaultArg(
|
|
195
|
+
let option_1 = void 0, objectArg = void 0, collection = void 0, ps = void 0, objectArg_3 = void 0, objectArg_4 = void 0, objectArg_5 = void 0, objectArg_6 = void 0, arg_16 = void 0, objectArg_7 = void 0, arg_18 = void 0, objectArg_8 = void 0, arg_20 = void 0, objectArg_9 = void 0, arg_22 = void 0, objectArg_10 = void 0;
|
|
196
|
+
const identifier = defaultArg((option_1 = (objectArg = get$.Optional, objectArg.Field("filename", string)), option_1 != null ? Study_tryIdentifierFromFileName(value(option_1)) : void 0), createMissingIdentifier());
|
|
176
197
|
let assays;
|
|
177
198
|
const arg_3 = list$1(ROCrate_decoder$1);
|
|
178
199
|
const objectArg_1 = get$.Optional;
|
|
179
200
|
assays = objectArg_1.Field("assays", arg_3);
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
201
|
+
let assayIdentifiers;
|
|
202
|
+
const option_4 = assays;
|
|
203
|
+
assayIdentifiers = option_4 != null ? (collection = map$1((a) => a.Identifier, value(option_4)), Array.from(collection)) : void 0;
|
|
204
|
+
let tables;
|
|
205
|
+
let option_6;
|
|
206
|
+
const arg_6 = list$1(ROCrate_decoder$2);
|
|
207
|
+
const objectArg_2 = get$.Optional;
|
|
208
|
+
option_6 = objectArg_2.Field("processSequence", arg_6);
|
|
209
|
+
tables = option_6 != null ? (ps = value(option_6), ARCtrl_ArcTables__ArcTables_fromProcesses_Static_62A3309D(ps).Tables) : void 0;
|
|
185
210
|
return [new ArcStudy(identifier, unwrap((objectArg_3 = get$.Optional, objectArg_3.Field("title", string))), unwrap((objectArg_4 = get$.Optional, objectArg_4.Field("description", string))), unwrap((objectArg_5 = get$.Optional, objectArg_5.Field("submissionDate", string))), unwrap((objectArg_6 = get$.Optional, objectArg_6.Field("publicReleaseDate", string))), unwrap((arg_16 = resizeArray(ROCrate_decoder$3), objectArg_7 = get$.Optional, objectArg_7.Field("publications", arg_16))), unwrap((arg_18 = resizeArray(ROCrate_decoder$4), objectArg_8 = get$.Optional, objectArg_8.Field("people", arg_18))), unwrap((arg_20 = resizeArray(OntologyAnnotation_ROCrate_decoderDefinedTerm), objectArg_9 = get$.Optional, objectArg_9.Field("studyDesignDescriptors", arg_20))), unwrap(tables), void 0, unwrap(assayIdentifiers), unwrap((arg_22 = resizeArray(ROCrate_decoder$5), objectArg_10 = get$.Optional, objectArg_10.Field("comments", arg_22)))), defaultArg(assays, empty())];
|
|
186
211
|
});
|
|
187
212
|
function ISAJson_encoder(idMap, assays, s) {
|
|
188
213
|
const f = (s_1) => {
|
|
189
|
-
let studyName, value_6, value_8, studyName_1, studyName_2;
|
|
214
|
+
let studyName = void 0, value_6 = void 0, value_8 = void 0, studyName_1 = void 0, studyName_2 = void 0;
|
|
190
215
|
const study = s_1.Copy(true);
|
|
191
216
|
const fileName = Study_fileNameFromIdentifier(study.Identifier);
|
|
192
217
|
let assays_1;
|
|
@@ -220,7 +245,14 @@ function ISAJson_encoder(idMap, assays, s) {
|
|
|
220
245
|
let encodedProtocols;
|
|
221
246
|
const value_5 = getProtocols(processes);
|
|
222
247
|
encodedProtocols = tryIncludeList("protocols", (studyName = s_1.Identifier, (oa_1) => ISAJson_encoder$1(studyName, void 0, void 0, idMap, oa_1)), value_5);
|
|
223
|
-
const values_1 = choose((tupledArg) =>
|
|
248
|
+
const values_1 = choose((tupledArg) => {
|
|
249
|
+
const option_1 = tupledArg[1];
|
|
250
|
+
if (option_1 != null) {
|
|
251
|
+
return [tupledArg[0], value(option_1)];
|
|
252
|
+
} else {
|
|
253
|
+
return void 0;
|
|
254
|
+
}
|
|
255
|
+
}, ofArray([["@id", (value_6 = ROCrate_genID(study), {
|
|
224
256
|
Encode(helpers) {
|
|
225
257
|
return helpers.encodeString(value_6);
|
|
226
258
|
}
|
|
@@ -251,7 +283,7 @@ function ISAJson_encoder(idMap, assays, s) {
|
|
|
251
283
|
}), study.PublicReleaseDate), tryIncludeSeq("publications", (oa_2) => ISAJson_encoder$2(idMap, oa_2), study.Publications), tryIncludeSeq("people", (person_2) => ISAJson_encoder$3(idMap, person_2), study.Contacts), tryIncludeSeq("studyDesignDescriptors", (oa_3) => OntologyAnnotation_ISAJson_encoder(idMap, oa_3), study.StudyDesignDescriptors), encodedProtocols, encodedMaterials, tryIncludeList("processSequence", (studyName_1 = s_1.Identifier, (oa_4) => ISAJson_encoder$4(studyName_1, void 0, idMap, oa_4)), processes), tryIncludeSeq("assays", (studyName_2 = s_1.Identifier, (a_2) => ISAJson_encoder$5(studyName_2, idMap, a_2)), assays_1), encodedFactors, encodedCharacteristics, encodedUnits, tryIncludeSeq("comments", (comment) => ISAJson_encoder$6(idMap, comment), study.Comments)]));
|
|
252
284
|
return {
|
|
253
285
|
Encode(helpers_7) {
|
|
254
|
-
const arg = map
|
|
286
|
+
const arg = map((tupledArg_1) => [tupledArg_1[0], tupledArg_1[1].Encode(helpers_7)], values_1);
|
|
255
287
|
return helpers_7.encodeObject(arg);
|
|
256
288
|
}
|
|
257
289
|
};
|
|
@@ -264,15 +296,18 @@ function ISAJson_encoder(idMap, assays, s) {
|
|
|
264
296
|
}
|
|
265
297
|
const ISAJson_allowedFields = ofArray(["@id", "filename", "identifier", "title", "description", "submissionDate", "publicReleaseDate", "publications", "people", "studyDesignDescriptors", "protocols", "materials", "assays", "factors", "characteristicCategories", "unitCategories", "processSequence", "comments", "@type", "@context"]);
|
|
266
298
|
const ISAJson_decoder = Decode_objectNoAdditionalProperties(ISAJson_allowedFields, (get$) => {
|
|
267
|
-
let
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
299
|
+
let option_1 = void 0, objectArg_1 = void 0, a = void 0, collection = void 0, objectArg_5 = void 0, objectArg_6 = void 0, objectArg_7 = void 0, objectArg_8 = void 0, arg_21 = void 0, objectArg_9 = void 0, arg_23 = void 0, objectArg_10 = void 0, arg_25 = void 0, objectArg_11 = void 0;
|
|
300
|
+
let identifier;
|
|
301
|
+
let option_4;
|
|
302
|
+
const objectArg = get$.Optional;
|
|
303
|
+
option_4 = objectArg.Field("identifier", string);
|
|
304
|
+
identifier = option_4 != null ? value(option_4) : defaultArg((option_1 = (objectArg_1 = get$.Optional, objectArg_1.Field("filename", string)), option_1 != null ? Study_tryIdentifierFromFileName(value(option_1)) : void 0), createMissingIdentifier());
|
|
305
|
+
let tables;
|
|
306
|
+
let option_6;
|
|
307
|
+
const arg_5 = list$1(ISAJson_decoder$1);
|
|
308
|
+
const objectArg_2 = get$.Optional;
|
|
309
|
+
option_6 = objectArg_2.Field("processSequence", arg_5);
|
|
310
|
+
tables = option_6 != null ? (a = ARCtrl_ArcTables__ArcTables_fromProcesses_Static_62A3309D(value(option_6)), a.Tables) : void 0;
|
|
276
311
|
let assays;
|
|
277
312
|
const arg_8 = list$1(ISAJson_decoder$2);
|
|
278
313
|
const objectArg_3 = get$.Optional;
|
|
@@ -316,10 +351,9 @@ const ISAJson_decoder = Decode_objectNoAdditionalProperties(ISAJson_allowedField
|
|
|
316
351
|
disposeSafe(enumerator);
|
|
317
352
|
}
|
|
318
353
|
}
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
}, assays);
|
|
354
|
+
let assayIdentifiers;
|
|
355
|
+
const option_8 = assays;
|
|
356
|
+
assayIdentifiers = option_8 != null ? (collection = map$1((a_1) => a_1.Identifier, value(option_8)), Array.from(collection)) : void 0;
|
|
323
357
|
return [new ArcStudy(identifier, unwrap((objectArg_5 = get$.Optional, objectArg_5.Field("title", string))), unwrap((objectArg_6 = get$.Optional, objectArg_6.Field("description", string))), unwrap((objectArg_7 = get$.Optional, objectArg_7.Field("submissionDate", string))), unwrap((objectArg_8 = get$.Optional, objectArg_8.Field("publicReleaseDate", string))), unwrap((arg_21 = resizeArray(ISAJson_decoder$4), objectArg_9 = get$.Optional, objectArg_9.Field("publications", arg_21))), unwrap(persons.length === 0 ? void 0 : persons), unwrap((arg_23 = resizeArray(OntologyAnnotation_ISAJson_decoder), objectArg_10 = get$.Optional, objectArg_10.Field("studyDesignDescriptors", arg_23))), unwrap(tables), void 0, unwrap(assayIdentifiers), unwrap((arg_25 = resizeArray(ISAJson_decoder$5), objectArg_11 = get$.Optional, objectArg_11.Field("comments", arg_25)))), defaultArg(assays, empty())];
|
|
324
358
|
});
|
|
325
359
|
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { IMap } from '@fable-org/fable-library-
|
|
2
|
-
import { int32 } from '@fable-org/fable-library-
|
|
3
|
-
import { CompositeCell_$union } from '../../Core/Table/CompositeCell.
|
|
4
|
-
import { Decoder$1, IEncodable } from '../../fable_modules/Thoth.Json.Core.0.
|
|
5
|
-
import { ArcTable } from '../../Core/Table/ArcTable.
|
|
6
|
-
import { OntologyAnnotation } from '../../Core/OntologyAnnotation.
|
|
1
|
+
import { MutableArray, IMap } from '@fable-org/fable-library-ts/Util.ts';
|
|
2
|
+
import { int32 } from '@fable-org/fable-library-ts/Int32.ts';
|
|
3
|
+
import { CompositeCell_$union } from '../../Core/Table/CompositeCell.ts';
|
|
4
|
+
import { Decoder$1, IEncodable } from '../../fable_modules/Thoth.Json.Core.0.9.1/Types.fs.js';
|
|
5
|
+
import { ArcTable } from '../../Core/Table/ArcTable.ts';
|
|
6
|
+
import { OntologyAnnotation } from '../../Core/OntologyAnnotation.ts';
|
|
7
7
|
export declare function encoder(table: ArcTable): IEncodable;
|
|
8
8
|
export declare const decoderV2Deprecated: Decoder$1<ArcTable>;
|
|
9
9
|
export declare const decoder: Decoder$1<ArcTable>;
|
|
10
|
-
export declare function decoderCompressedColumn(cellTable: CompositeCell_$union
|
|
11
|
-
export declare function arrayi<value>(decoderi: ((arg0: int32) => Decoder$1<value>)): Decoder$1<value
|
|
10
|
+
export declare function decoderCompressedColumn(cellTable: MutableArray<CompositeCell_$union>, table: ArcTable, columnIndex: int32): Decoder$1<void>;
|
|
11
|
+
export declare function arrayi<value>(decoderi: ((arg0: int32) => Decoder$1<value>)): Decoder$1<MutableArray<value>>;
|
|
12
12
|
export declare function encoderCompressed(stringTable: IMap<string, int32>, oaTable: IMap<OntologyAnnotation, int32>, cellTable: IMap<CompositeCell_$union, int32>, table: ArcTable): IEncodable;
|
|
13
|
-
export declare function decoderCompressedV2Deprecated(stringTable: string
|
|
14
|
-
export declare function decoderCompressed(stringTable: string
|
|
13
|
+
export declare function decoderCompressedV2Deprecated(stringTable: MutableArray<string>, oaTable: MutableArray<OntologyAnnotation>, cellTable: MutableArray<CompositeCell_$union>): Decoder$1<ArcTable>;
|
|
14
|
+
export declare function decoderCompressed(stringTable: MutableArray<string>, oaTable: MutableArray<OntologyAnnotation>, cellTable: MutableArray<CompositeCell_$union>): Decoder$1<ArcTable>;
|
|
15
15
|
//# sourceMappingURL=ArcTable.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ArcTable.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Json/Table/ArcTable.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ArcTable.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Json/Table/ArcTable.ts"],"names":[],"mappings":"AACA,OAAO,EAAiB,YAAY,EAAqE,IAAI,EAAE,MAAM,qCAAqC,CAAC;AAC3J,OAAO,EAAE,KAAK,EAAE,MAAM,sCAAsC,CAAC;AAC7D,OAAO,EAAE,oBAAoB,EAAE,MAAM,mCAAmC,CAAC;AAGzE,OAAO,EAAuE,SAAS,EAAqB,UAAU,EAAE,MAAM,uDAAuD,CAAC;AAOtL,OAAO,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AAWxD,OAAO,EAAE,kBAAkB,EAAE,MAAM,kCAAkC,CAAC;AAEtE,wBAAgB,OAAO,CAAC,KAAK,EAAE,QAAQ,GAAG,UAAU,CA+BnD;AAED,eAAO,MAAM,mBAAmB,EAAE,SAAS,CAAC,QAAQ,CAuBlD,CAAC;AAEH,eAAO,MAAM,OAAO,EAAE,SAAS,CAAC,QAAQ,CAepC,CAAC;AAEL,wBAAgB,uBAAuB,CAAC,SAAS,EAAE,YAAY,CAAC,oBAAoB,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,WAAW,EAAE,KAAK,GAAG,SAAS,CAAC,IAAI,CAAC,CAgC3I;AAED,wBAAgB,MAAM,CAAC,KAAK,EAAE,QAAQ,EAAE,CAAC,CAAC,IAAI,EAAE,KAAK,KAAK,SAAS,CAAC,KAAK,CAAC,CAAC,GAAG,SAAS,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC,CA+B3G;AAED,wBAAgB,iBAAiB,CAAC,WAAW,EAAE,IAAI,CAAC,MAAM,EAAE,KAAK,CAAC,EAAE,OAAO,EAAE,IAAI,CAAC,kBAAkB,EAAE,KAAK,CAAC,EAAE,SAAS,EAAE,IAAI,CAAC,oBAAoB,EAAE,KAAK,CAAC,EAAE,KAAK,EAAE,QAAQ,GAAG,UAAU,CAuBvL;AAED,wBAAgB,6BAA6B,CAAC,WAAW,EAAE,YAAY,CAAC,MAAM,CAAC,EAAE,OAAO,EAAE,YAAY,CAAC,kBAAkB,CAAC,EAAE,SAAS,EAAE,YAAY,CAAC,oBAAoB,CAAC,GAAG,SAAS,CAAC,QAAQ,CAAC,CAU9L;AAED,wBAAgB,iBAAiB,CAAC,WAAW,EAAE,YAAY,CAAC,MAAM,CAAC,EAAE,OAAO,EAAE,YAAY,CAAC,kBAAkB,CAAC,EAAE,SAAS,EAAE,YAAY,CAAC,oBAAoB,CAAC,GAAG,SAAS,CAAC,QAAQ,CAAC,CAelL"}
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
import { compareArrays, arrayHash, equalArrays, getEnumerator, disposeSafe, int32ToString } from '../../../node_modules/@fable-org/fable-library-
|
|
1
|
+
import { compareArrays, arrayHash, equalArrays, getEnumerator, disposeSafe, int32ToString } from '../../../node_modules/@fable-org/fable-library-ts/Util.js';
|
|
2
2
|
import { encoder as encoder$1, decoder as decoder$2 } from './CompositeCell.js';
|
|
3
|
-
import { getItemFromDict } from '../../../node_modules/@fable-org/fable-library-
|
|
4
|
-
import { ErrorReason$1_BadPrimitive } from '../../fable_modules/Thoth.Json.Core.0.
|
|
5
|
-
import { toList, delay, append, singleton, map, empty } from '../../../node_modules/@fable-org/fable-library-
|
|
6
|
-
import { list } from '../../fable_modules/Thoth.Json.Core.0.
|
|
3
|
+
import { getItemFromDict } from '../../../node_modules/@fable-org/fable-library-ts/MapUtil.js';
|
|
4
|
+
import { ErrorReason$1_BadPrimitive } from '../../fable_modules/Thoth.Json.Core.0.9.1/Types.fs.js';
|
|
5
|
+
import { toList, delay, append, singleton, map, empty } from '../../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
6
|
+
import { list } from '../../fable_modules/Thoth.Json.Core.0.9.1/Encode.fs.js';
|
|
7
7
|
import { encoder as encoder$2, decoder as decoder$1 } from './CompositeHeader.js';
|
|
8
8
|
import { intDictionary } from '../Encode.js';
|
|
9
9
|
import { ensureCellHashInValueMap, ColumnValueRefs_Constant, ColumnValueRefs_Sparse, ArcTableValues, Unchecked_setCellAt } from '../../Core/Table/ArcTableAux.js';
|
|
10
10
|
import { ArcTable } from '../../Core/Table/ArcTable.js';
|
|
11
|
-
import { object, list as list$1, map$0027, tuple2, int, string, map as map$1, resizeArray, array, Helpers_prependPath } from '../../fable_modules/Thoth.Json.Core.0.
|
|
12
|
-
import { defaultArg } from '../../../node_modules/@fable-org/fable-library-
|
|
13
|
-
import { empty as empty$1, ofArray } from '../../../node_modules/@fable-org/fable-library-
|
|
14
|
-
import { Dictionary } from '../../../node_modules/@fable-org/fable-library-
|
|
15
|
-
import { empty as empty$2 } from '../../../node_modules/@fable-org/fable-library-
|
|
11
|
+
import { object, list as list$1, map$0027, tuple2, int, string, map as map$1, resizeArray, array, Helpers_prependPath } from '../../fable_modules/Thoth.Json.Core.0.9.1/Decode.fs.js';
|
|
12
|
+
import { defaultArg } from '../../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
13
|
+
import { empty as empty$1, ofArray } from '../../../node_modules/@fable-org/fable-library-ts/List.js';
|
|
14
|
+
import { Dictionary } from '../../../node_modules/@fable-org/fable-library-ts/MutableMap.js';
|
|
15
|
+
import { empty as empty$2 } from '../../../node_modules/@fable-org/fable-library-ts/Map.js';
|
|
16
16
|
import { Decode_tryOneOf, Decode_intDictionary, Decode_dictionary } from '../Decode.js';
|
|
17
|
-
import { FSharpResult$2_Error
|
|
17
|
+
import { FSharpResult$2_Error$, FSharpResult$2_Ok } from '../../../node_modules/@fable-org/fable-library-ts/Result.js';
|
|
18
18
|
import { decodeCell, encodeCell } from './CellTable.js';
|
|
19
|
-
import { iterateIndexed, fold, setItem, fill, item } from '../../../node_modules/@fable-org/fable-library-
|
|
19
|
+
import { iterateIndexed, fold, setItem, fill, item } from '../../../node_modules/@fable-org/fable-library-ts/Array.js';
|
|
20
20
|
import { encodeString, decodeString } from '../StringTable.js';
|
|
21
21
|
|
|
22
22
|
function encoder(table) {
|
|
23
23
|
const valueMap = table.Values.ValueMap;
|
|
24
24
|
const cellEncoder = (hash) => encoder$1(getItemFromDict(valueMap, hash));
|
|
25
25
|
const values = toList(delay(() => {
|
|
26
|
-
let value;
|
|
26
|
+
let value = void 0;
|
|
27
27
|
return append(singleton(["name", (value = table.Name, {
|
|
28
28
|
Encode(helpers) {
|
|
29
29
|
return helpers.encodeString(value);
|
|
@@ -36,7 +36,7 @@ function encoder(table) {
|
|
|
36
36
|
return cellEncoder(col.fields[0]);
|
|
37
37
|
}
|
|
38
38
|
}, table.Values.Columns)]), delay(() => {
|
|
39
|
-
let value_1;
|
|
39
|
+
let value_1 = void 0;
|
|
40
40
|
return singleton(["rowCount", (value_1 = table.RowCount | 0, {
|
|
41
41
|
Encode(helpers_1) {
|
|
42
42
|
return helpers_1.encodeSignedIntegralNumber(value_1);
|
|
@@ -52,15 +52,15 @@ function encoder(table) {
|
|
|
52
52
|
};
|
|
53
53
|
}
|
|
54
54
|
const decoderV2Deprecated = object((get$) => {
|
|
55
|
-
let arg_1, objectArg, arg_3, objectArg_1, objectArg_2;
|
|
55
|
+
let arg_1 = void 0, objectArg = void 0, arg_3 = void 0, objectArg_1 = void 0, objectArg_2 = void 0;
|
|
56
56
|
let decodedHeader;
|
|
57
57
|
const collection = defaultArg((arg_1 = list$1(decoder$1), objectArg = get$.Optional, objectArg.Field("header", arg_1)), empty$1());
|
|
58
58
|
decodedHeader = Array.from(collection);
|
|
59
59
|
const decodedValues = new Dictionary(defaultArg((arg_3 = map$0027(tuple2(int, int), decoder$2), objectArg_1 = get$.Optional, objectArg_1.Field("values", arg_3)), empty$2({
|
|
60
|
-
Compare: compareArrays
|
|
60
|
+
Compare: (x, y) => compareArrays(x, y) | 0
|
|
61
61
|
})), {
|
|
62
62
|
Equals: equalArrays,
|
|
63
|
-
GetHashCode: arrayHash
|
|
63
|
+
GetHashCode: (x_1) => arrayHash(x_1) | 0
|
|
64
64
|
});
|
|
65
65
|
const t = ArcTable.create((objectArg_2 = get$.Required, objectArg_2.Field("name", string)), decodedHeader, []);
|
|
66
66
|
let enumerator = getEnumerator(decodedValues);
|
|
@@ -76,10 +76,10 @@ const decoderV2Deprecated = object((get$) => {
|
|
|
76
76
|
});
|
|
77
77
|
const decoder = (() => {
|
|
78
78
|
const valueMap = /* @__PURE__ */ new Map([]);
|
|
79
|
-
const cellDecoder = map$1((cell) => ensureCellHashInValueMap(cell, valueMap), decoder$2);
|
|
79
|
+
const cellDecoder = map$1((cell) => ensureCellHashInValueMap(cell, valueMap) | 0, decoder$2);
|
|
80
80
|
const columnDecoder = Decode_tryOneOf(ofArray([map$1(ColumnValueRefs_Constant, cellDecoder), map$1(ColumnValueRefs_Sparse, Decode_intDictionary(cellDecoder))]));
|
|
81
81
|
const decoder_1 = object((get$) => {
|
|
82
|
-
let arg_1, objectArg, arg_3, objectArg_1, objectArg_2, objectArg_3;
|
|
82
|
+
let arg_1 = void 0, objectArg = void 0, arg_3 = void 0, objectArg_1 = void 0, objectArg_2 = void 0, objectArg_3 = void 0;
|
|
83
83
|
const decodedHeader = defaultArg((arg_1 = resizeArray(decoder$1), objectArg = get$.Optional, objectArg.Field("headers", arg_1)), []);
|
|
84
84
|
const values = new ArcTableValues(defaultArg((arg_3 = Decode_dictionary(int, columnDecoder), objectArg_1 = get$.Optional, objectArg_1.Field("columns", arg_3)), /* @__PURE__ */ new Map([])), valueMap, defaultArg((objectArg_2 = get$.Optional, objectArg_2.Field("rowCount", int)), 0));
|
|
85
85
|
return ArcTable.fromArcTableValues((objectArg_3 = get$.Required, objectArg_3.Field("name", string)), decodedHeader, values);
|
|
@@ -96,7 +96,7 @@ function decoderCompressedColumn(cellTable, table, columnIndex) {
|
|
|
96
96
|
const matchValue = array(decodeCell(cellTable)).Decode(helper, column);
|
|
97
97
|
if (matchValue.tag === /* Error */
|
|
98
98
|
1) {
|
|
99
|
-
|
|
99
|
+
matchValue.fields[0];
|
|
100
100
|
const rangeDecoder = object((get$) => {
|
|
101
101
|
let from;
|
|
102
102
|
const objectArg = get$.Required;
|
|
@@ -114,7 +114,7 @@ function decoderCompressedColumn(cellTable, table, columnIndex) {
|
|
|
114
114
|
});
|
|
115
115
|
const matchValue_1 = array(rangeDecoder).Decode(helper, column);
|
|
116
116
|
return matchValue_1.tag === /* Error */
|
|
117
|
-
1 ? FSharpResult$2_Error(matchValue_1.fields[0]) : FSharpResult$2_Ok(void 0);
|
|
117
|
+
1 ? FSharpResult$2_Error$(matchValue_1.fields[0]) : FSharpResult$2_Ok(void 0);
|
|
118
118
|
} else {
|
|
119
119
|
iterateIndexed((r, cell) => {
|
|
120
120
|
Unchecked_setCellAt(columnIndex, r, cell, table.Values);
|
|
@@ -131,7 +131,7 @@ function arrayi(decoderi) {
|
|
|
131
131
|
let i = -1;
|
|
132
132
|
const tokens = helpers.asArray(value);
|
|
133
133
|
return fold((acc, value_1) => {
|
|
134
|
-
let tupledArg;
|
|
134
|
+
let tupledArg = void 0;
|
|
135
135
|
i = i + 1 | 0;
|
|
136
136
|
if (acc.tag === /* Ok */
|
|
137
137
|
0) {
|
|
@@ -143,14 +143,14 @@ function arrayi(decoderi) {
|
|
|
143
143
|
setItem(acc_1, i, value_2);
|
|
144
144
|
return FSharpResult$2_Ok(acc_1);
|
|
145
145
|
} else {
|
|
146
|
-
return FSharpResult$2_Error((tupledArg = matchValue.fields[0], Helpers_prependPath(".[" + int32ToString(i) + "]", tupledArg[0], tupledArg[1])));
|
|
146
|
+
return FSharpResult$2_Error$((tupledArg = matchValue.fields[0], Helpers_prependPath(".[" + int32ToString(i) + "]", tupledArg[0], tupledArg[1])));
|
|
147
147
|
}
|
|
148
148
|
} else {
|
|
149
149
|
return acc;
|
|
150
150
|
}
|
|
151
151
|
}, FSharpResult$2_Ok(fill(new Array(tokens.length), 0, tokens.length, null)), tokens);
|
|
152
152
|
} else {
|
|
153
|
-
return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("an array", value)]);
|
|
153
|
+
return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("an array", value)]);
|
|
154
154
|
}
|
|
155
155
|
}
|
|
156
156
|
};
|
|
@@ -165,7 +165,7 @@ function encoderCompressed(stringTable, oaTable, cellTable, table) {
|
|
|
165
165
|
return cellEncoder(col.fields[0]);
|
|
166
166
|
}
|
|
167
167
|
}, table.Values.Columns)]), delay(() => {
|
|
168
|
-
let value;
|
|
168
|
+
let value = void 0;
|
|
169
169
|
return singleton(["r", (value = table.RowCount | 0, {
|
|
170
170
|
Encode(helpers) {
|
|
171
171
|
return helpers.encodeSignedIntegralNumber(value);
|
|
@@ -181,7 +181,7 @@ function encoderCompressed(stringTable, oaTable, cellTable, table) {
|
|
|
181
181
|
}
|
|
182
182
|
function decoderCompressedV2Deprecated(stringTable, oaTable, cellTable) {
|
|
183
183
|
return object((get$) => {
|
|
184
|
-
let arg_1, objectArg, arg_3, objectArg_1, arg_5, objectArg_2;
|
|
184
|
+
let arg_1 = void 0, objectArg = void 0, arg_3 = void 0, objectArg_1 = void 0, arg_5 = void 0, objectArg_2 = void 0;
|
|
185
185
|
let decodedHeader;
|
|
186
186
|
const collection = defaultArg((arg_1 = list$1(decoder$1), objectArg = get$.Optional, objectArg.Field("h", arg_1)), empty$1());
|
|
187
187
|
decodedHeader = Array.from(collection);
|
|
@@ -192,10 +192,10 @@ function decoderCompressedV2Deprecated(stringTable, oaTable, cellTable) {
|
|
|
192
192
|
}
|
|
193
193
|
function decoderCompressed(stringTable, oaTable, cellTable) {
|
|
194
194
|
const valueMap = /* @__PURE__ */ new Map([]);
|
|
195
|
-
const cellDecoder = map$1((i) => ensureCellHashInValueMap(item(i, cellTable), valueMap), int);
|
|
195
|
+
const cellDecoder = map$1((i) => ensureCellHashInValueMap(item(i, cellTable), valueMap) | 0, int);
|
|
196
196
|
const columnDecoder = Decode_tryOneOf(ofArray([map$1(ColumnValueRefs_Constant, cellDecoder), map$1(ColumnValueRefs_Sparse, Decode_intDictionary(cellDecoder))]));
|
|
197
197
|
const decoder_1 = object((get$) => {
|
|
198
|
-
let arg_1, objectArg, arg_3, objectArg_1, objectArg_2, arg_7, objectArg_3;
|
|
198
|
+
let arg_1 = void 0, objectArg = void 0, arg_3 = void 0, objectArg_1 = void 0, objectArg_2 = void 0, arg_7 = void 0, objectArg_3 = void 0;
|
|
199
199
|
const decodedHeader = defaultArg((arg_1 = resizeArray(decoder$1), objectArg = get$.Optional, objectArg.Field("h", arg_1)), []);
|
|
200
200
|
const values = new ArcTableValues(defaultArg((arg_3 = Decode_dictionary(int, columnDecoder), objectArg_1 = get$.Optional, objectArg_1.Field("c", arg_3)), /* @__PURE__ */ new Map([])), valueMap, defaultArg((objectArg_2 = get$.Optional, objectArg_2.Field("r", int)), 0));
|
|
201
201
|
return ArcTable.fromArcTableValues((arg_7 = decodeString(stringTable), objectArg_3 = get$.Required, objectArg_3.Field("n", arg_7)), decodedHeader, values);
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { CompositeCell_$union } from '../../Core/Table/CompositeCell.
|
|
2
|
-
import { int32 } from '@fable-org/fable-library-
|
|
3
|
-
import { IMap } from '@fable-org/fable-library-
|
|
4
|
-
import { Decoder$1, IEncodable } from '../../fable_modules/Thoth.Json.Core.0.
|
|
5
|
-
import { OntologyAnnotation } from '../../Core/OntologyAnnotation.
|
|
6
|
-
export declare function arrayFromMap(otm: IMap<CompositeCell_$union, int32>): CompositeCell_$union
|
|
7
|
-
export declare function encoder(stringTable: IMap<string, int32>, oaTable: IMap<OntologyAnnotation, int32>, ot: CompositeCell_$union
|
|
8
|
-
export declare function decoder(stringTable: string
|
|
1
|
+
import { CompositeCell_$union } from '../../Core/Table/CompositeCell.ts';
|
|
2
|
+
import { int32 } from '@fable-org/fable-library-ts/Int32.ts';
|
|
3
|
+
import { MutableArray, IMap } from '@fable-org/fable-library-ts/Util.ts';
|
|
4
|
+
import { Decoder$1, IEncodable } from '../../fable_modules/Thoth.Json.Core.0.9.1/Types.fs.js';
|
|
5
|
+
import { OntologyAnnotation } from '../../Core/OntologyAnnotation.ts';
|
|
6
|
+
export declare function arrayFromMap(otm: IMap<CompositeCell_$union, int32>): MutableArray<CompositeCell_$union>;
|
|
7
|
+
export declare function encoder(stringTable: IMap<string, int32>, oaTable: IMap<OntologyAnnotation, int32>, ot: MutableArray<CompositeCell_$union>): IEncodable;
|
|
8
|
+
export declare function decoder(stringTable: MutableArray<string>, oaTable: MutableArray<OntologyAnnotation>): Decoder$1<MutableArray<CompositeCell_$union>>;
|
|
9
9
|
export declare function encodeCell(otm: IMap<CompositeCell_$union, int32>, cc: CompositeCell_$union): IEncodable;
|
|
10
|
-
export declare function decodeCell(ot: CompositeCell_$union
|
|
10
|
+
export declare function decodeCell(ot: MutableArray<CompositeCell_$union>): Decoder$1<CompositeCell_$union>;
|
|
11
11
|
//# sourceMappingURL=CellTable.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CellTable.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Json/Table/CellTable.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"CellTable.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Json/Table/CellTable.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,MAAM,mCAAmC,CAAC;AACzE,OAAO,EAAE,KAAK,EAAE,MAAM,sCAAsC,CAAC;AAE7D,OAAO,EAAE,YAAY,EAAE,IAAI,EAAqB,MAAM,qCAAqC,CAAC;AAG5F,OAAO,EAAE,SAAS,EAAqB,UAAU,EAAE,MAAM,uDAAuD,CAAC;AACjH,OAAO,EAAE,kBAAkB,EAAE,MAAM,kCAAkC,CAAC;AAKtE,wBAAgB,YAAY,CAAC,GAAG,EAAE,IAAI,CAAC,oBAAoB,EAAE,KAAK,CAAC,GAAG,YAAY,CAAC,oBAAoB,CAAC,CAIvG;AAED,wBAAgB,OAAO,CAAC,WAAW,EAAE,IAAI,CAAC,MAAM,EAAE,KAAK,CAAC,EAAE,OAAO,EAAE,IAAI,CAAC,kBAAkB,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE,YAAY,CAAC,oBAAoB,CAAC,GAAG,UAAU,CAQtJ;AAED,wBAAgB,OAAO,CAAC,WAAW,EAAE,YAAY,CAAC,MAAM,CAAC,EAAE,OAAO,EAAE,YAAY,CAAC,kBAAkB,CAAC,GAAG,SAAS,CAAC,YAAY,CAAC,oBAAoB,CAAC,CAAC,CAEnJ;AAED,wBAAgB,UAAU,CAAC,GAAG,EAAE,IAAI,CAAC,oBAAoB,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE,oBAAoB,GAAG,UAAU,CAmBvG;AAED,wBAAgB,UAAU,CAAC,EAAE,EAAE,YAAY,CAAC,oBAAoB,CAAC,GAAG,SAAS,CAAC,oBAAoB,CAAC,CAKlG"}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { toArray, map, sortBy } from '../../../node_modules/@fable-org/fable-library-
|
|
1
|
+
import { toArray, map, sortBy } from '../../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
2
2
|
import { Dictionary_items, Dictionary_tryFind } from '../../Core/Helper/Collections.js';
|
|
3
|
-
import { comparePrimitives } from '../../../node_modules/@fable-org/fable-library-
|
|
4
|
-
import { map as map$1, item } from '../../../node_modules/@fable-org/fable-library-
|
|
3
|
+
import { comparePrimitives } from '../../../node_modules/@fable-org/fable-library-ts/Util.js';
|
|
4
|
+
import { map as map$1, item } from '../../../node_modules/@fable-org/fable-library-ts/Array.js';
|
|
5
5
|
import { encoderCompressed, decoderCompressed } from './CompositeCell.js';
|
|
6
|
-
import { array, object, int } from '../../fable_modules/Thoth.Json.Core.0.
|
|
7
|
-
import { value } from '../../../node_modules/@fable-org/fable-library-
|
|
8
|
-
import { addToDict } from '../../../node_modules/@fable-org/fable-library-
|
|
6
|
+
import { array, object, int } from '../../fable_modules/Thoth.Json.Core.0.9.1/Decode.fs.js';
|
|
7
|
+
import { value } from '../../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
8
|
+
import { addToDict } from '../../../node_modules/@fable-org/fable-library-ts/MapUtil.js';
|
|
9
9
|
|
|
10
10
|
function arrayFromMap(otm) {
|
|
11
|
-
return toArray(map((kv_1) => kv_1[0], sortBy((kv) => kv[1], Dictionary_items(otm), {
|
|
12
|
-
Compare: comparePrimitives
|
|
11
|
+
return toArray(map((kv_1) => kv_1[0], sortBy((kv) => kv[1] | 0, Dictionary_items(otm), {
|
|
12
|
+
Compare: (x, y) => comparePrimitives(x, y) | 0
|
|
13
13
|
})));
|
|
14
14
|
}
|
|
15
15
|
function encoder(stringTable, oaTable, ot) {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { OntologyAnnotation } from '../../Core/OntologyAnnotation.
|
|
2
|
-
import { Decoder$1, IEncodable } from '../../fable_modules/Thoth.Json.Core.0.
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
1
|
+
import { OntologyAnnotation } from '../../Core/OntologyAnnotation.ts';
|
|
2
|
+
import { Decoder$1, IEncodable } from '../../fable_modules/Thoth.Json.Core.0.9.1/Types.fs.js';
|
|
3
|
+
import { int32 } from '@fable-org/fable-library-ts/Int32.ts';
|
|
4
|
+
import { CompositeCell_$union } from '../../Core/Table/CompositeCell.ts';
|
|
5
|
+
import { MutableArray, IMap } from '@fable-org/fable-library-ts/Util.ts';
|
|
6
6
|
export declare function encoder(cc: CompositeCell_$union): IEncodable;
|
|
7
7
|
export declare const decoder: Decoder$1<CompositeCell_$union>;
|
|
8
8
|
export declare function encoderCompressed(stringTable: IMap<string, int32>, oaTable: IMap<OntologyAnnotation, int32>, cc: CompositeCell_$union): IEncodable;
|
|
9
|
-
export declare function decoderCompressed(stringTable: string
|
|
9
|
+
export declare function decoderCompressed(stringTable: MutableArray<string>, oaTable: MutableArray<OntologyAnnotation>): Decoder$1<CompositeCell_$union>;
|
|
10
10
|
//# sourceMappingURL=CompositeCell.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CompositeCell.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Json/Table/CompositeCell.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"CompositeCell.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Json/Table/CompositeCell.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,kBAAkB,EAAE,MAAM,kCAAkC,CAAC;AACtE,OAAO,EAAE,SAAS,EAAqB,UAAU,EAAE,MAAM,uDAAuD,CAAC;AAEjH,OAAO,EAAE,KAAK,EAAE,MAAM,sCAAsC,CAAC;AAK7D,OAAO,EAA0F,oBAAoB,EAAE,MAAM,mCAAmC,CAAC;AAKjK,OAAO,EAAE,YAAY,EAAE,IAAI,EAAE,MAAM,qCAAqC,CAAC;AAEzE,wBAAgB,OAAO,CAAC,EAAE,EAAE,oBAAoB,GAAG,UAAU,CA0C5D;AAED,eAAO,MAAM,OAAO,EAAE,SAAS,CAAC,oBAAoB,CAMlD,CAAC;AAEH,wBAAgB,iBAAiB,CAAC,WAAW,EAAE,IAAI,CAAC,MAAM,EAAE,KAAK,CAAC,EAAE,OAAO,EAAE,IAAI,CAAC,kBAAkB,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE,oBAAoB,GAAG,UAAU,CA0BlJ;AAED,wBAAgB,iBAAiB,CAAC,WAAW,EAAE,YAAY,CAAC,MAAM,CAAC,EAAE,OAAO,EAAE,YAAY,CAAC,kBAAkB,CAAC,GAAG,SAAS,CAAC,oBAAoB,CAAC,CAS/I"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { OntologyAnnotation_encoder, OntologyAnnotation_decoder } from '../OntologyAnnotation.js';
|
|
2
|
-
import { singleton, ofArray } from '../../../node_modules/@fable-org/fable-library-
|
|
2
|
+
import { singleton, ofArray } from '../../../node_modules/@fable-org/fable-library-ts/List.js';
|
|
3
3
|
import { encoder as encoder$1, decoder as decoder$1, compressedEncoder, compressedDecoder } from '../Data.js';
|
|
4
|
-
import { list } from '../../fable_modules/Thoth.Json.Core.0.
|
|
5
|
-
import { map } from '../../../node_modules/@fable-org/fable-library-
|
|
4
|
+
import { list } from '../../fable_modules/Thoth.Json.Core.0.9.1/Encode.fs.js';
|
|
5
|
+
import { map } from '../../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
6
6
|
import { CompositeCell_FreeText, CompositeCell_Term, CompositeCell_Unitized, CompositeCell_Data } from '../../Core/Table/CompositeCell.js';
|
|
7
|
-
import { object, string, index } from '../../fable_modules/Thoth.Json.Core.0.
|
|
8
|
-
import { toFail, printf } from '../../../node_modules/@fable-org/fable-library-
|
|
7
|
+
import { object, string, index } from '../../fable_modules/Thoth.Json.Core.0.9.1/Decode.fs.js';
|
|
8
|
+
import { toFail, printf } from '../../../node_modules/@fable-org/fable-library-ts/String.js';
|
|
9
9
|
import { encodeOA, decodeOA } from './OATable.js';
|
|
10
10
|
import { encodeString, decodeString } from '../StringTable.js';
|
|
11
11
|
|
|
@@ -56,7 +56,7 @@ function encoder(cc) {
|
|
|
56
56
|
};
|
|
57
57
|
}
|
|
58
58
|
const decoder = object((get$) => {
|
|
59
|
-
let arg_3, objectArg_1, arg_5, objectArg_2, arg_7, objectArg_3, arg_9, objectArg_4, arg_11, objectArg_5;
|
|
59
|
+
let arg_3 = void 0, objectArg_1 = void 0, arg_5 = void 0, objectArg_2 = void 0, arg_7 = void 0, objectArg_3 = void 0, arg_9 = void 0, objectArg_4 = void 0, arg_11 = void 0, objectArg_5 = void 0;
|
|
60
60
|
let matchValue;
|
|
61
61
|
const objectArg = get$.Required;
|
|
62
62
|
matchValue = objectArg.Field("celltype", string);
|
|
@@ -94,7 +94,7 @@ function encoderCompressed(stringTable, oaTable, cc) {
|
|
|
94
94
|
}
|
|
95
95
|
function decoderCompressed(stringTable, oaTable) {
|
|
96
96
|
return object((get$) => {
|
|
97
|
-
let arg_3, objectArg_1, arg_5, objectArg_2, arg_7, objectArg_3, arg_9, objectArg_4, arg_11, objectArg_5;
|
|
97
|
+
let arg_3 = void 0, objectArg_1 = void 0, arg_5 = void 0, objectArg_2 = void 0, arg_7 = void 0, objectArg_3 = void 0, arg_9 = void 0, objectArg_4 = void 0, arg_11 = void 0, objectArg_5 = void 0;
|
|
98
98
|
let matchValue;
|
|
99
99
|
const arg_1 = decodeString(stringTable);
|
|
100
100
|
const objectArg = get$.Required;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Decoder$1, IEncodable } from '../../fable_modules/Thoth.Json.Core.0.
|
|
2
|
-
import { CompositeHeader_$union } from '../../Core/Table/CompositeHeader.
|
|
1
|
+
import { Decoder$1, IEncodable } from '../../fable_modules/Thoth.Json.Core.0.9.1/Types.fs.js';
|
|
2
|
+
import { CompositeHeader_$union } from '../../Core/Table/CompositeHeader.ts';
|
|
3
3
|
export declare function encoder(ch: CompositeHeader_$union): IEncodable;
|
|
4
4
|
export declare const decoder: Decoder$1<CompositeHeader_$union>;
|
|
5
5
|
//# sourceMappingURL=CompositeHeader.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CompositeHeader.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Json/Table/CompositeHeader.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"CompositeHeader.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Json/Table/CompositeHeader.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,SAAS,EAAqB,UAAU,EAAE,MAAM,uDAAuD,CAAC;AAIjH,OAAO,EAAoO,sBAAsB,EAAiB,MAAM,qCAAqC,CAAC;AAK9T,wBAAgB,OAAO,CAAC,EAAE,EAAE,sBAAsB,GAAG,UAAU,CA+E9D;AAED,eAAO,MAAM,OAAO,EAAE,SAAS,CAAC,sBAAsB,CAgBpD,CAAC"}
|