@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
|
@@ -1,15 +1,16 @@
|
|
|
1
|
-
import { tryFindIndex, findIndex, length, map, toList, delay, tryFind, choose, append, reduce } from '../../../node_modules/@fable-org/fable-library-
|
|
1
|
+
import { tryFindIndex, findIndex, length, map, toList, delay, tryFind, choose, append, reduce } from '../../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
2
2
|
import { ArcTable } from './ArcTable.js';
|
|
3
|
-
import { value, defaultArg, unwrap
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
3
|
+
import { value, defaultArg, unwrap } from '../../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
4
|
+
import { Exception, getEnumerator, disposeSafe, compare, stringHash, comparePrimitives, equals, toIterator } from '../../../node_modules/@fable-org/fable-library-ts/Util.js';
|
|
5
|
+
import { concat } from '../../../node_modules/@fable-org/fable-library-ts/String.js';
|
|
6
|
+
import { CompositeHeader_Input, CompositeHeader_Output, CompositeHeader } from './CompositeHeader.js';
|
|
6
7
|
import { Dictionary_tryFind, ResizeArray_iter, ResizeArray_fold, ResizeArray_map, ResizeArray_groupBy, ResizeArray_collect } from '../Helper/Collections.js';
|
|
7
|
-
import { addToDict, addToSet } from '../../../node_modules/@fable-org/fable-library-
|
|
8
|
-
import { distinct } from '../../../node_modules/@fable-org/fable-library-
|
|
9
|
-
import { intersect, ofSeq, FSharpSet__get_IsEmpty } from '../../../node_modules/@fable-org/fable-library-
|
|
10
|
-
import { insertRangeInPlace } from '../../../node_modules/@fable-org/fable-library-
|
|
11
|
-
import { ofSeq as ofSeq$1, tryFind as tryFind$1 } from '../../../node_modules/@fable-org/fable-library-
|
|
12
|
-
import { class_type } from '../../../node_modules/@fable-org/fable-library-
|
|
8
|
+
import { addToDict, addToSet } from '../../../node_modules/@fable-org/fable-library-ts/MapUtil.js';
|
|
9
|
+
import { distinct } from '../../../node_modules/@fable-org/fable-library-ts/Seq2.js';
|
|
10
|
+
import { intersect, ofSeq, FSharpSet__get_IsEmpty } from '../../../node_modules/@fable-org/fable-library-ts/Set.js';
|
|
11
|
+
import { item, insertRangeInPlace, setItem } from '../../../node_modules/@fable-org/fable-library-ts/Array.js';
|
|
12
|
+
import { ofSeq as ofSeq$1, tryFind as tryFind$1 } from '../../../node_modules/@fable-org/fable-library-ts/Map.js';
|
|
13
|
+
import { class_type } from '../../../node_modules/@fable-org/fable-library-ts/Reflection.js';
|
|
13
14
|
|
|
14
15
|
function ArcTablesAux_tryFindIndexByTableName(name, tables) {
|
|
15
16
|
return tryFindIndex((t) => t.Name === name, tables);
|
|
@@ -17,7 +18,7 @@ function ArcTablesAux_tryFindIndexByTableName(name, tables) {
|
|
|
17
18
|
function ArcTablesAux_findIndexByTableName(name, tables) {
|
|
18
19
|
const matchValue = tryFindIndex((t) => t.Name === name, tables);
|
|
19
20
|
if (matchValue == null) {
|
|
20
|
-
throw new
|
|
21
|
+
throw new Exception(concat("Unable to find table with name '", name, "'!"));
|
|
21
22
|
} else {
|
|
22
23
|
return value(matchValue) | 0;
|
|
23
24
|
}
|
|
@@ -107,27 +108,27 @@ function ArcTablesAux_applyIOMap(map, tables) {
|
|
|
107
108
|
}
|
|
108
109
|
}
|
|
109
110
|
function ArcTablesAux_SanityChecks_validateSheetIndex(index, allowAppend, sheets) {
|
|
110
|
-
let x, y;
|
|
111
|
+
let x = void 0, y = void 0;
|
|
111
112
|
if (index < 0) {
|
|
112
|
-
throw new
|
|
113
|
+
throw new Exception("Cannot insert ArcTable at index < 0.");
|
|
113
114
|
}
|
|
114
115
|
if (x = index | 0, y = sheets.length | 0, allowAppend ? compare(x, y) > 0 : compare(x, y) >= 0) {
|
|
115
|
-
throw new
|
|
116
|
+
throw new Exception(`Specified index is out of range! Assay contains only ${sheets.length} tables.`);
|
|
116
117
|
}
|
|
117
118
|
}
|
|
118
119
|
function ArcTablesAux_SanityChecks_validateNamesUnique(names) {
|
|
119
120
|
if (!(length(names) === length(distinct(names, {
|
|
120
121
|
Equals: (x, y) => x === y,
|
|
121
|
-
GetHashCode: stringHash
|
|
122
|
+
GetHashCode: (x) => stringHash(x) | 0
|
|
122
123
|
})))) {
|
|
123
|
-
throw new
|
|
124
|
+
throw new Exception("Cannot add multiple tables with the same name! Table names inside one assay must be unqiue");
|
|
124
125
|
}
|
|
125
126
|
}
|
|
126
127
|
function ArcTablesAux_SanityChecks_validateNewNameUnique(newName, existingNames) {
|
|
127
128
|
const matchValue = tryFindIndex((x) => x === newName, existingNames);
|
|
128
129
|
if (matchValue == null) {
|
|
129
130
|
} else {
|
|
130
|
-
throw new
|
|
131
|
+
throw new Exception(`Cannot create table with name ${newName}, as table names must be unique and table at index ${value(matchValue)} has the same name.`);
|
|
131
132
|
}
|
|
132
133
|
}
|
|
133
134
|
function ArcTablesAux_SanityChecks_validateNewNameAtUnique(index, newName, existingNames) {
|
|
@@ -137,18 +138,18 @@ function ArcTablesAux_SanityChecks_validateNewNameAtUnique(index, newName, exist
|
|
|
137
138
|
const i_1 = value(matchValue) | 0;
|
|
138
139
|
} else {
|
|
139
140
|
const i_2 = value(matchValue) | 0;
|
|
140
|
-
throw new
|
|
141
|
+
throw new Exception(`Cannot create table with name ${newName}, as table names must be unique and table at index ${i_2} has the same name.`);
|
|
141
142
|
}
|
|
142
143
|
}
|
|
143
144
|
function ArcTablesAux_SanityChecks_validateNewNamesUnique(newNames, existingNames) {
|
|
144
145
|
ArcTablesAux_SanityChecks_validateNamesUnique(newNames);
|
|
145
146
|
const same = intersect(ofSeq(newNames, {
|
|
146
|
-
Compare: comparePrimitives
|
|
147
|
+
Compare: (x, y) => comparePrimitives(x, y) | 0
|
|
147
148
|
}), ofSeq(existingNames, {
|
|
148
|
-
Compare: comparePrimitives
|
|
149
|
+
Compare: (x_1, y_1) => comparePrimitives(x_1, y_1) | 0
|
|
149
150
|
}));
|
|
150
151
|
if (!FSharpSet__get_IsEmpty(same)) {
|
|
151
|
-
throw new
|
|
152
|
+
throw new Exception(`Cannot create tables with the names ${same}, as table names must be unique.`);
|
|
152
153
|
}
|
|
153
154
|
}
|
|
154
155
|
class ArcTables {
|
|
@@ -165,7 +166,7 @@ class ArcTables {
|
|
|
165
166
|
}
|
|
166
167
|
get_Item(index) {
|
|
167
168
|
const this$ = this;
|
|
168
|
-
return this$.Tables
|
|
169
|
+
return item(index, this$.Tables);
|
|
169
170
|
}
|
|
170
171
|
get TableNames() {
|
|
171
172
|
const this$ = this;
|
|
@@ -209,7 +210,7 @@ class ArcTables {
|
|
|
209
210
|
GetTableAt(index) {
|
|
210
211
|
const this$ = this;
|
|
211
212
|
ArcTablesAux_SanityChecks_validateSheetIndex(index, false, this$.Tables);
|
|
212
|
-
return this$.Tables
|
|
213
|
+
return item(index, this$.Tables);
|
|
213
214
|
}
|
|
214
215
|
TryGetTable(name) {
|
|
215
216
|
const this$ = this;
|
|
@@ -224,7 +225,7 @@ class ArcTables {
|
|
|
224
225
|
const this$ = this;
|
|
225
226
|
ArcTablesAux_SanityChecks_validateSheetIndex(index, false, this$.Tables);
|
|
226
227
|
ArcTablesAux_SanityChecks_validateNewNameAtUnique(index, table.Name, this$.TableNames);
|
|
227
|
-
this$.Tables
|
|
228
|
+
setItem(this$.Tables, index, table);
|
|
228
229
|
}
|
|
229
230
|
UpdateTable(name, table) {
|
|
230
231
|
const this$ = this;
|
|
@@ -235,7 +236,7 @@ class ArcTables {
|
|
|
235
236
|
const this$ = this;
|
|
236
237
|
ArcTablesAux_SanityChecks_validateSheetIndex(index, true, this$.Tables);
|
|
237
238
|
ArcTablesAux_SanityChecks_validateNewNameAtUnique(index, table.Name, this$.TableNames);
|
|
238
|
-
this$.Tables
|
|
239
|
+
setItem(this$.Tables, index, table);
|
|
239
240
|
}
|
|
240
241
|
SetTable(name, table) {
|
|
241
242
|
const this$ = this;
|
|
@@ -260,7 +261,7 @@ class ArcTables {
|
|
|
260
261
|
MapTableAt(index, updateFun) {
|
|
261
262
|
const this$ = this;
|
|
262
263
|
ArcTablesAux_SanityChecks_validateSheetIndex(index, false, this$.Tables);
|
|
263
|
-
updateFun(this$.Tables
|
|
264
|
+
updateFun(item(index, this$.Tables));
|
|
264
265
|
}
|
|
265
266
|
MapTable(name, updateFun) {
|
|
266
267
|
const this$ = this;
|
|
@@ -375,20 +376,23 @@ class ArcTables {
|
|
|
375
376
|
this$.Tables.splice(newIndex, 0, table);
|
|
376
377
|
}
|
|
377
378
|
static updateReferenceTablesBySheets(referenceTables, sheetTables, keepUnusedRefTables) {
|
|
378
|
-
let collection, s
|
|
379
|
+
let collection = void 0, s = void 0;
|
|
379
380
|
const keepUnusedRefTables_1 = defaultArg(keepUnusedRefTables, false);
|
|
380
381
|
const usedTables = /* @__PURE__ */ new Set([]);
|
|
381
|
-
const referenceTableMap = ofSeq$1(choose((t) =>
|
|
382
|
-
|
|
382
|
+
const referenceTableMap = ofSeq$1(choose((t) => {
|
|
383
|
+
let c = void 0;
|
|
384
|
+
const option_1 = t.TryGetProtocolNameColumn();
|
|
385
|
+
if (option_1 != null) {
|
|
386
|
+
return c = value(option_1), [item(0, c.Cells).AsFreeText, t];
|
|
387
|
+
} else {
|
|
388
|
+
return void 0;
|
|
389
|
+
}
|
|
390
|
+
}, referenceTables.Tables), {
|
|
391
|
+
Compare: (x, y) => comparePrimitives(x, y) | 0
|
|
383
392
|
});
|
|
384
|
-
return new ArcTables((collection = (s = ResizeArray_map((tupledArg) => reduce((
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
return void 0;
|
|
388
|
-
} else {
|
|
389
|
-
return c_1.AsFreeText;
|
|
390
|
-
}
|
|
391
|
-
}, bind((i) => t_1.TryGetCellAt(i, 0), tryFindIndex((x_1) => equals(x_1, CompositeHeader_ProtocolREF()), t_1.Headers))), t_1.Name);
|
|
393
|
+
return new ArcTables((collection = (s = ResizeArray_map((tupledArg) => reduce((table_1, table_2) => ArcTable.append(table_1, table_2), tupledArg[1]), ResizeArray_groupBy((t_2) => t_2.Name, ResizeArray_map((t_1) => {
|
|
394
|
+
let option_5 = void 0, option_3 = void 0, i = void 0, c_1 = void 0;
|
|
395
|
+
const k = defaultArg((option_5 = (option_3 = tryFindIndex((x_1) => equals(x_1, CompositeHeader.ProtocolREF), t_1.Headers), option_3 != null ? (i = value(option_3) | 0, t_1.TryGetCellAt(i, 0)) : void 0), option_5 != null ? (c_1 = value(option_5), c_1.AsFreeText === "" ? void 0 : c_1.AsFreeText) : void 0), t_1.Name);
|
|
392
396
|
const matchValue = tryFind$1(k, referenceTableMap);
|
|
393
397
|
if (matchValue == null) {
|
|
394
398
|
return t_1;
|
|
@@ -398,7 +402,7 @@ class ArcTables {
|
|
|
398
402
|
const updatedTable = ArcTable.updateReferenceByAnnotationTable(rt, t_1);
|
|
399
403
|
return ArcTable.fromArcTableValues(t_1.Name, updatedTable.Headers, updatedTable.Values);
|
|
400
404
|
}
|
|
401
|
-
}, (
|
|
405
|
+
}, ResizeArray_collect((table) => ArcTable.SplitByProtocolREF(table), sheetTables.Tables)))), keepUnusedRefTables_1 ? append(choose((kv) => {
|
|
402
406
|
if (usedTables.has(kv[0])) {
|
|
403
407
|
return void 0;
|
|
404
408
|
} else {
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { OntologyAnnotation } from '../OntologyAnnotation.
|
|
2
|
-
import { Data } from '../Data.
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
1
|
+
import { OntologyAnnotation } from '../OntologyAnnotation.ts';
|
|
2
|
+
import { Data } from '../Data.ts';
|
|
3
|
+
import { MutableArray } from '@fable-org/fable-library-ts/Util.ts';
|
|
4
|
+
import { CompositeHeader_$union } from './CompositeHeader.ts';
|
|
5
|
+
import { Union } from '@fable-org/fable-library-ts/Types.ts';
|
|
6
|
+
import { TypeInfo } from '@fable-org/fable-library-ts/Reflection.ts';
|
|
6
7
|
export type CompositeCell_$union = CompositeCell<0> | CompositeCell<1> | CompositeCell<2> | CompositeCell<3>;
|
|
7
8
|
export type CompositeCell_$cases = {
|
|
8
9
|
0: ["Term", [OntologyAnnotation]];
|
|
@@ -15,18 +16,44 @@ export declare function CompositeCell_FreeText(Item: string): CompositeCell<1>;
|
|
|
15
16
|
export declare function CompositeCell_Unitized(Item1: string, Item2: OntologyAnnotation): CompositeCell<2>;
|
|
16
17
|
export declare function CompositeCell_Data(Item: Data): CompositeCell<3>;
|
|
17
18
|
export declare class CompositeCell<Tag extends keyof CompositeCell_$cases> extends Union<Tag, CompositeCell_$cases[Tag][0]> {
|
|
19
|
+
constructor(tag: Tag, fields: CompositeCell_$cases[Tag][1]);
|
|
18
20
|
readonly tag: Tag;
|
|
19
21
|
readonly fields: CompositeCell_$cases[Tag][1];
|
|
20
|
-
constructor(tag: Tag, fields: CompositeCell_$cases[Tag][1]);
|
|
21
22
|
cases(): string[];
|
|
22
23
|
get isUnitized(): boolean;
|
|
23
24
|
get isTerm(): boolean;
|
|
24
25
|
get isFreeText(): boolean;
|
|
25
26
|
get isData(): boolean;
|
|
27
|
+
/**
|
|
28
|
+
* This returns the default empty cell from an existing CompositeCell.
|
|
29
|
+
*/
|
|
26
30
|
GetEmptyCell(): CompositeCell_$union;
|
|
27
|
-
|
|
31
|
+
/**
|
|
32
|
+
* This function returns an array of all values as string
|
|
33
|
+
*
|
|
34
|
+
* ```fsharp
|
|
35
|
+
* match this with
|
|
36
|
+
* | FreeText s -> [|s|]
|
|
37
|
+
* | Term oa -> [| oa.NameText; defaultArg oa.TermSourceREF ""; defaultArg oa.TermAccessionNumber ""|]
|
|
38
|
+
* | Unitized (v,oa) -> [| v; oa.NameText; defaultArg oa.TermSourceREF ""; defaultArg oa.TermAccessionNumber ""|]
|
|
39
|
+
* ```
|
|
40
|
+
*/
|
|
41
|
+
GetContent(): MutableArray<string>;
|
|
42
|
+
/**
|
|
43
|
+
* FreeText string will be converted to unit term name.
|
|
44
|
+
*
|
|
45
|
+
* Term will be converted to unit term.
|
|
46
|
+
*/
|
|
28
47
|
ToUnitizedCell(): CompositeCell_$union;
|
|
48
|
+
/**
|
|
49
|
+
* FreeText string will be converted to term name.
|
|
50
|
+
*
|
|
51
|
+
* Unit term will be converted to term and unit value is dropped.
|
|
52
|
+
*/
|
|
29
53
|
ToTermCell(): CompositeCell_$union;
|
|
54
|
+
/**
|
|
55
|
+
* Will always keep `OntologyAnnotation.NameText` from Term or Unit.
|
|
56
|
+
*/
|
|
30
57
|
ToFreeTextCell(): CompositeCell_$union;
|
|
31
58
|
ToDataCell(): CompositeCell_$union;
|
|
32
59
|
get AsUnitized(): [string, OntologyAnnotation];
|
|
@@ -44,7 +71,19 @@ export declare class CompositeCell<Tag extends keyof CompositeCell_$cases> exten
|
|
|
44
71
|
static get emptyFreeText(): CompositeCell_$union;
|
|
45
72
|
static get emptyUnitized(): CompositeCell_$union;
|
|
46
73
|
static get emptyData(): CompositeCell_$union;
|
|
74
|
+
/**
|
|
75
|
+
* Updates current CompositeCell with information from OntologyAnnotation.
|
|
76
|
+
*
|
|
77
|
+
* For `Term`, OntologyAnnotation (oa) is fully set. For `Unitized`, oa is set as unit while value is untouched.
|
|
78
|
+
* For `FreeText` oa.NameText is set.
|
|
79
|
+
*/
|
|
47
80
|
UpdateWithOA(oa: OntologyAnnotation): CompositeCell_$union;
|
|
81
|
+
/**
|
|
82
|
+
* Updates current CompositeCell with information from OntologyAnnotation.
|
|
83
|
+
*
|
|
84
|
+
* For `Term`, OntologyAnnotation (oa) is fully set. For `Unitized`, oa is set as unit while value is untouched.
|
|
85
|
+
* For `FreeText` oa.NameText is set.
|
|
86
|
+
*/
|
|
48
87
|
static updateWithOA(oa: OntologyAnnotation, cell: CompositeCell_$union): CompositeCell_$union;
|
|
49
88
|
toString(): string;
|
|
50
89
|
Copy(): CompositeCell_$union;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CompositeCell.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Core/Table/CompositeCell.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"CompositeCell.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Core/Table/CompositeCell.ts"],"names":[],"mappings":"AAEA,OAAO,EAAkC,kBAAkB,EAAE,MAAM,0BAA0B,CAAC;AAE9F,OAAO,EAAoB,IAAI,EAAE,MAAM,YAAY,CAAC;AACpD,OAAO,EAAa,YAAY,EAAE,MAAM,qCAAqC,CAAC;AAE9E,OAAO,EAAE,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,KAAK,EAAE,MAAM,sCAAsC,CAAC;AAC7D,OAAO,EAA2B,QAAQ,EAAE,MAAM,2CAA2C,CAAC;AAE9F,MAAM,MAAM,oBAAoB,GAC1B,aAAa,CAAC,CAAC,CAAC,GAChB,aAAa,CAAC,CAAC,CAAC,GAChB,aAAa,CAAC,CAAC,CAAC,GAChB,aAAa,CAAC,CAAC,CAAC,CAAA;AAEtB,MAAM,MAAM,oBAAoB,GAAG;IAC/B,CAAC,EAAE,CAAC,MAAM,EAAE,CAAC,kBAAkB,CAAC,CAAC,CAAC;IAClC,CAAC,EAAE,CAAC,UAAU,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;IAC1B,CAAC,EAAE,CAAC,UAAU,EAAE,CAAC,MAAM,EAAE,kBAAkB,CAAC,CAAC,CAAC;IAC9C,CAAC,EAAE,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,CAAC,CAAA;CACtB,CAAA;AAED,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,kBAAkB,oBAE1D;AAED,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,MAAM,oBAElD;AAED,wBAAgB,sBAAsB,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,kBAAkB,oBAE9E;AAED,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,IAAI,oBAE5C;AAED,qBAAa,aAAa,CAAC,GAAG,SAAS,MAAM,oBAAoB,CAAE,SAAQ,KAAK,CAAC,GAAG,EAAE,oBAAoB,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;gBACnG,GAAG,EAAE,GAAG,EAAE,MAAM,EAAE,oBAAoB,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;IAK1D,QAAQ,CAAC,GAAG,EAAE,GAAG,CAAC;IAClB,QAAQ,CAAC,MAAM,EAAE,oBAAoB,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;IAC9C,KAAK;IAGL,IAAI,UAAU,IAAI,OAAO,CAGxB;IACD,IAAI,MAAM,IAAI,OAAO,CAGpB;IACD,IAAI,UAAU,IAAI,OAAO,CAGxB;IACD,IAAI,MAAM,IAAI,OAAO,CAGpB;IACD;;OAEG;IACH,YAAY,IAAI,oBAAoB;IAIpC;;;;;;;;;OASG;IACH,UAAU,IAAI,YAAY,CAAC,MAAM,CAAC;IAmBlC;;;;OAIG;IACH,cAAc,IAAI,oBAAoB;IAiBtC;;;;OAIG;IACH,UAAU,IAAI,oBAAoB;IAiBlC;;OAEG;IACH,cAAc,IAAI,oBAAoB;IAmBtC,UAAU,IAAI,oBAAoB;IAmBlC,IAAI,UAAU,IAAI,CAAC,MAAM,EAAE,kBAAkB,CAAC,CAQ7C;IACD,IAAI,MAAM,IAAI,kBAAkB,CAQ/B;IACD,IAAI,UAAU,IAAI,MAAM,CAQvB;IACD,IAAI,MAAM,IAAI,IAAI,CAQjB;IACD,MAAM,CAAC,UAAU,CAAC,EAAE,EAAE,kBAAkB,GAAG,oBAAoB;IAG/D,MAAM,CAAC,oBAAoB,CAAC,IAAI,CAAC,EAAE,MAAM,EAAE,GAAG,CAAC,EAAE,MAAM,EAAE,GAAG,CAAC,EAAE,MAAM,GAAG,oBAAoB;IAG5F,MAAM,CAAC,cAAc,CAAC,KAAK,EAAE,MAAM,EAAE,EAAE,CAAC,EAAE,kBAAkB,GAAG,oBAAoB;IAGnF,MAAM,CAAC,wBAAwB,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,EAAE,GAAG,CAAC,EAAE,MAAM,EAAE,GAAG,CAAC,EAAE,MAAM,GAAG,oBAAoB;IAI/G,MAAM,CAAC,cAAc,CAAC,KAAK,EAAE,MAAM,GAAG,oBAAoB;IAG1D,MAAM,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,GAAG,oBAAoB;IAGhD,MAAM,CAAC,oBAAoB,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,MAAM,EAAE,cAAc,CAAC,EAAE,MAAM,GAAG,oBAAoB;IAG1G,MAAM,KAAK,SAAS,IAAI,oBAAoB,CAE3C;IACD,MAAM,KAAK,aAAa,IAAI,oBAAoB,CAE/C;IACD,MAAM,KAAK,aAAa,IAAI,oBAAoB,CAE/C;IACD,MAAM,KAAK,SAAS,IAAI,oBAAoB,CAE3C;IACD;;;;;OAKG;IACH,YAAY,CAAC,EAAE,EAAE,kBAAkB,GAAG,oBAAoB;IAkB1D;;;;;OAKG;IACH,MAAM,CAAC,YAAY,CAAC,EAAE,EAAE,kBAAkB,EAAE,IAAI,EAAE,oBAAoB,GAAG,oBAAoB;IAG7F,QAAQ,IAAI,MAAM;IAmBlB,IAAI,IAAI,oBAAoB;IAmB5B,qBAAqB,CAAC,MAAM,EAAE,sBAAsB,EAAE,cAAc,CAAC,EAAE,OAAO,GAAG,OAAO;IA0BxF,MAAM,CAAC,IAAI,CAAC,EAAE,EAAE,kBAAkB,GAAG,oBAAoB;IAGzD,MAAM,CAAC,QAAQ,CAAC,CAAC,EAAE,MAAM,GAAG,oBAAoB;IAGhD,MAAM,CAAC,QAAQ,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,EAAE,kBAAkB,GAAG,oBAAoB;IAGxE,MAAM,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,GAAG,oBAAoB;CAG7C;AAED,wBAAgB,yBAAyB,IAAI,QAAQ,CAEpD"}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { OntologyAnnotation, OntologyAnnotation_$reflection } from '../OntologyAnnotation.js';
|
|
2
|
-
import { defaultArg, unwrap } from '../../../node_modules/@fable-org/fable-library-
|
|
2
|
+
import { defaultArg, unwrap } from '../../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
3
3
|
import { Data, Data_$reflection } from '../Data.js';
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
4
|
+
import { Exception } from '../../../node_modules/@fable-org/fable-library-ts/Util.js';
|
|
5
|
+
import { concat } from '../../../node_modules/@fable-org/fable-library-ts/String.js';
|
|
6
|
+
import { Union } from '../../../node_modules/@fable-org/fable-library-ts/Types.js';
|
|
7
|
+
import { union_type, string_type } from '../../../node_modules/@fable-org/fable-library-ts/Reflection.js';
|
|
6
8
|
|
|
7
9
|
function CompositeCell_Term(Item) {
|
|
8
10
|
return new CompositeCell(0, [Item]);
|
|
@@ -45,6 +47,9 @@ class CompositeCell extends Union {
|
|
|
45
47
|
return this$.tag === /* Data */
|
|
46
48
|
3;
|
|
47
49
|
}
|
|
50
|
+
/**
|
|
51
|
+
* This returns the default empty cell from an existing CompositeCell.
|
|
52
|
+
*/
|
|
48
53
|
GetEmptyCell() {
|
|
49
54
|
const this$ = this;
|
|
50
55
|
return this$.tag === /* Unitized */
|
|
@@ -52,6 +57,16 @@ class CompositeCell extends Union {
|
|
|
52
57
|
1 ? CompositeCell.emptyFreeText : this$.tag === /* Data */
|
|
53
58
|
3 ? CompositeCell.emptyData : CompositeCell.emptyTerm;
|
|
54
59
|
}
|
|
60
|
+
/**
|
|
61
|
+
* This function returns an array of all values as string
|
|
62
|
+
*
|
|
63
|
+
* ```fsharp
|
|
64
|
+
* match this with
|
|
65
|
+
* | FreeText s -> [|s|]
|
|
66
|
+
* | Term oa -> [| oa.NameText; defaultArg oa.TermSourceREF ""; defaultArg oa.TermAccessionNumber ""|]
|
|
67
|
+
* | Unitized (v,oa) -> [| v; oa.NameText; defaultArg oa.TermSourceREF ""; defaultArg oa.TermAccessionNumber ""|]
|
|
68
|
+
* ```
|
|
69
|
+
*/
|
|
55
70
|
GetContent() {
|
|
56
71
|
const this$ = this;
|
|
57
72
|
switch (this$.tag) {
|
|
@@ -74,6 +89,11 @@ class CompositeCell extends Union {
|
|
|
74
89
|
return [this$.fields[0]];
|
|
75
90
|
}
|
|
76
91
|
}
|
|
92
|
+
/**
|
|
93
|
+
* FreeText string will be converted to unit term name.
|
|
94
|
+
*
|
|
95
|
+
* Term will be converted to unit term.
|
|
96
|
+
*/
|
|
77
97
|
ToUnitizedCell() {
|
|
78
98
|
const this$ = this;
|
|
79
99
|
switch (this$.tag) {
|
|
@@ -94,6 +114,11 @@ class CompositeCell extends Union {
|
|
|
94
114
|
return this$;
|
|
95
115
|
}
|
|
96
116
|
}
|
|
117
|
+
/**
|
|
118
|
+
* FreeText string will be converted to term name.
|
|
119
|
+
*
|
|
120
|
+
* Unit term will be converted to term and unit value is dropped.
|
|
121
|
+
*/
|
|
97
122
|
ToTermCell() {
|
|
98
123
|
const this$ = this;
|
|
99
124
|
switch (this$.tag) {
|
|
@@ -114,6 +139,9 @@ class CompositeCell extends Union {
|
|
|
114
139
|
return this$;
|
|
115
140
|
}
|
|
116
141
|
}
|
|
142
|
+
/**
|
|
143
|
+
* Will always keep `OntologyAnnotation.NameText` from Term or Unit.
|
|
144
|
+
*/
|
|
117
145
|
ToFreeTextCell() {
|
|
118
146
|
const this$ = this;
|
|
119
147
|
switch (this$.tag) {
|
|
@@ -164,7 +192,7 @@ class CompositeCell extends Union {
|
|
|
164
192
|
2) {
|
|
165
193
|
return [this$.fields[0], this$.fields[1]];
|
|
166
194
|
} else {
|
|
167
|
-
throw new
|
|
195
|
+
throw new Exception("Not a Unitized cell.");
|
|
168
196
|
}
|
|
169
197
|
}
|
|
170
198
|
get AsTerm() {
|
|
@@ -173,7 +201,7 @@ class CompositeCell extends Union {
|
|
|
173
201
|
0) {
|
|
174
202
|
return this$.fields[0];
|
|
175
203
|
} else {
|
|
176
|
-
throw new
|
|
204
|
+
throw new Exception("Not a Term Cell.");
|
|
177
205
|
}
|
|
178
206
|
}
|
|
179
207
|
get AsFreeText() {
|
|
@@ -182,7 +210,7 @@ class CompositeCell extends Union {
|
|
|
182
210
|
1) {
|
|
183
211
|
return this$.fields[0];
|
|
184
212
|
} else {
|
|
185
|
-
throw new
|
|
213
|
+
throw new Exception("Not a FreeText Cell.");
|
|
186
214
|
}
|
|
187
215
|
}
|
|
188
216
|
get AsData() {
|
|
@@ -191,7 +219,7 @@ class CompositeCell extends Union {
|
|
|
191
219
|
3) {
|
|
192
220
|
return this$.fields[0];
|
|
193
221
|
} else {
|
|
194
|
-
throw new
|
|
222
|
+
throw new Exception("Not a Data Cell.");
|
|
195
223
|
}
|
|
196
224
|
}
|
|
197
225
|
static createTerm(oa) {
|
|
@@ -228,6 +256,12 @@ class CompositeCell extends Union {
|
|
|
228
256
|
static get emptyData() {
|
|
229
257
|
return CompositeCell_Data(Data.create());
|
|
230
258
|
}
|
|
259
|
+
/**
|
|
260
|
+
* Updates current CompositeCell with information from OntologyAnnotation.
|
|
261
|
+
*
|
|
262
|
+
* For `Term`, OntologyAnnotation (oa) is fully set. For `Unitized`, oa is set as unit while value is untouched.
|
|
263
|
+
* For `FreeText` oa.NameText is set.
|
|
264
|
+
*/
|
|
231
265
|
UpdateWithOA(oa) {
|
|
232
266
|
const this$ = this;
|
|
233
267
|
switch (this$.tag) {
|
|
@@ -249,6 +283,12 @@ class CompositeCell extends Union {
|
|
|
249
283
|
return CompositeCell.createTerm(oa);
|
|
250
284
|
}
|
|
251
285
|
}
|
|
286
|
+
/**
|
|
287
|
+
* Updates current CompositeCell with information from OntologyAnnotation.
|
|
288
|
+
*
|
|
289
|
+
* For `Term`, OntologyAnnotation (oa) is fully set. For `Unitized`, oa is set as unit while value is untouched.
|
|
290
|
+
* For `FreeText` oa.NameText is set.
|
|
291
|
+
*/
|
|
252
292
|
static updateWithOA(oa, cell) {
|
|
253
293
|
return cell.UpdateWithOA(oa);
|
|
254
294
|
}
|
|
@@ -261,16 +301,16 @@ class CompositeCell extends Union {
|
|
|
261
301
|
case /* Unitized */
|
|
262
302
|
2: {
|
|
263
303
|
const oa_1 = this$.fields[1];
|
|
264
|
-
return
|
|
304
|
+
return concat(this$.fields[0], " ", oa_1.NameText);
|
|
265
305
|
}
|
|
266
306
|
case /* Data */
|
|
267
307
|
3: {
|
|
268
308
|
const d = this$.fields[0];
|
|
269
|
-
return
|
|
309
|
+
return d.NameText;
|
|
270
310
|
}
|
|
271
311
|
default: {
|
|
272
312
|
const oa = this$.fields[0];
|
|
273
|
-
return
|
|
313
|
+
return oa.NameText;
|
|
274
314
|
}
|
|
275
315
|
}
|
|
276
316
|
}
|
|
@@ -304,7 +344,7 @@ class CompositeCell extends Union {
|
|
|
304
344
|
return true;
|
|
305
345
|
} else if (header.IsDataColumn) {
|
|
306
346
|
if (raiseExeption) {
|
|
307
|
-
throw new
|
|
347
|
+
throw new Exception(`Invalid combination of header \`${header}\` and cell \`${cell}\`, Data header should have either Data or Freetext cells`);
|
|
308
348
|
}
|
|
309
349
|
return false;
|
|
310
350
|
} else if (header.IsTermColumn && (cell.isTerm ? true : cell.isUnitized)) {
|
|
@@ -313,7 +353,7 @@ class CompositeCell extends Union {
|
|
|
313
353
|
return true;
|
|
314
354
|
} else {
|
|
315
355
|
if (raiseExeption) {
|
|
316
|
-
throw new
|
|
356
|
+
throw new Exception(`Invalid combination of header \`${header}\` and cell \`${cell}\``);
|
|
317
357
|
}
|
|
318
358
|
return false;
|
|
319
359
|
}
|
|
@@ -1,17 +1,30 @@
|
|
|
1
|
-
import { Option } from '@fable-org/fable-library-
|
|
2
|
-
import { CompositeHeader_$union } from './CompositeHeader.
|
|
3
|
-
import { CompositeCell_$union } from './CompositeCell.
|
|
4
|
-
import { OntologyAnnotation } from '../OntologyAnnotation.
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import { TypeInfo } from '@fable-org/fable-library-
|
|
1
|
+
import { Option } from '@fable-org/fable-library-ts/Option.ts';
|
|
2
|
+
import { CompositeHeader_$union } from './CompositeHeader.ts';
|
|
3
|
+
import { CompositeCell_$union } from './CompositeCell.ts';
|
|
4
|
+
import { OntologyAnnotation } from '../OntologyAnnotation.ts';
|
|
5
|
+
import { IEquatable } from '@fable-org/fable-library-ts/Util.ts';
|
|
6
|
+
import { Record } from '@fable-org/fable-library-ts/Types.ts';
|
|
7
|
+
import { TypeInfo } from '@fable-org/fable-library-ts/Reflection.ts';
|
|
8
8
|
export declare class CompositeColumn extends Record implements IEquatable<CompositeColumn> {
|
|
9
9
|
readonly Header: CompositeHeader_$union;
|
|
10
10
|
readonly Cells: CompositeCell_$union[];
|
|
11
11
|
constructor(Header: CompositeHeader_$union, Cells: CompositeCell_$union[]);
|
|
12
12
|
static create(header: CompositeHeader_$union, cells?: CompositeCell_$union[]): CompositeColumn;
|
|
13
|
+
/**
|
|
14
|
+
* Returns true if header and cells are a valid combination. E.g. Term header with term or unitized cells. IO header with freetext cells.
|
|
15
|
+
*
|
|
16
|
+
* ?raiseExeption: Default false. Set true if this function should raise an exception instead of return false.
|
|
17
|
+
*/
|
|
13
18
|
Validate(raiseException?: boolean): boolean;
|
|
19
|
+
/**
|
|
20
|
+
* Returns an array of all units found in the cells of this column. Returns None if no units are found.
|
|
21
|
+
*/
|
|
14
22
|
TryGetColumnUnits(): Option<OntologyAnnotation[]>;
|
|
23
|
+
/**
|
|
24
|
+
* Simple predictor for empty default cells.
|
|
25
|
+
*
|
|
26
|
+
* Currently uses majority vote for the column to decide cell type.
|
|
27
|
+
*/
|
|
15
28
|
GetDefaultEmptyCell(): CompositeCell_$union;
|
|
16
29
|
get IsUnique(): boolean;
|
|
17
30
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CompositeColumn.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Core/Table/CompositeColumn.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"CompositeColumn.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Core/Table/CompositeColumn.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAsB,MAAM,uCAAuC,CAAC;AACnF,OAAO,EAA+B,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAC3F,OAAO,EAA4C,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;AAEpG,OAAO,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAC;AAC9D,OAAO,EAAE,UAAU,EAAgB,MAAM,qCAAqC,CAAC;AAE/E,OAAO,EAAE,MAAM,EAAE,MAAM,sCAAsC,CAAC;AAC9D,OAAO,EAA2B,QAAQ,EAAE,MAAM,2CAA2C,CAAC;AAE9F,qBAAa,eAAgB,SAAQ,MAAO,YAAW,UAAU,CAAC,eAAe,CAAC;IAC9E,QAAQ,CAAC,MAAM,EAAE,sBAAsB,CAAC;IACxC,QAAQ,CAAC,KAAK,EAAE,oBAAoB,EAAE,CAAC;gBAC3B,MAAM,EAAE,sBAAsB,EAAE,KAAK,EAAE,oBAAoB,EAAE;IAKzE,MAAM,CAAC,MAAM,CAAC,MAAM,EAAE,sBAAsB,EAAE,KAAK,CAAC,EAAE,oBAAoB,EAAE,GAAG,eAAe;IAG9F;;;;OAIG;IACH,QAAQ,CAAC,cAAc,CAAC,EAAE,OAAO,GAAG,OAAO;IAI3C;;OAEG;IACH,iBAAiB,IAAI,MAAM,CAAC,kBAAkB,EAAE,CAAC;IAOjD;;;;OAIG;IACH,mBAAmB,IAAI,oBAAoB;IAqB3C,IAAI,QAAQ,IAAI,OAAO,CAGtB;CACJ;AAED,wBAAgB,2BAA2B,IAAI,QAAQ,CAEtD"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { defaultArg, unwrap } from '../../../node_modules/@fable-org/fable-library-
|
|
1
|
+
import { defaultArg, unwrap } from '../../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
2
2
|
import { CompositeHeader_$reflection } from './CompositeHeader.js';
|
|
3
3
|
import { CompositeCell, CompositeCell_$reflection } from './CompositeCell.js';
|
|
4
|
-
import { exists, toArray, delay, collect, singleton, empty, isEmpty, fold } from '../../../node_modules/@fable-org/fable-library-
|
|
5
|
-
import { Record } from '../../../node_modules/@fable-org/fable-library-
|
|
6
|
-
import { record_type, array_type } from '../../../node_modules/@fable-org/fable-library-
|
|
4
|
+
import { exists, toArray, delay, collect, singleton, empty, isEmpty, fold } from '../../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
5
|
+
import { Record } from '../../../node_modules/@fable-org/fable-library-ts/Types.js';
|
|
6
|
+
import { record_type, array_type } from '../../../node_modules/@fable-org/fable-library-ts/Reflection.js';
|
|
7
7
|
|
|
8
8
|
class CompositeColumn extends Record {
|
|
9
9
|
constructor(Header, Cells) {
|
|
@@ -14,10 +14,18 @@ class CompositeColumn extends Record {
|
|
|
14
14
|
static create(header, cells) {
|
|
15
15
|
return new CompositeColumn(header, defaultArg(cells, []));
|
|
16
16
|
}
|
|
17
|
+
/**
|
|
18
|
+
* Returns true if header and cells are a valid combination. E.g. Term header with term or unitized cells. IO header with freetext cells.
|
|
19
|
+
*
|
|
20
|
+
* ?raiseExeption: Default false. Set true if this function should raise an exception instead of return false.
|
|
21
|
+
*/
|
|
17
22
|
Validate(raiseException) {
|
|
18
23
|
const this$ = this;
|
|
19
24
|
return !exists((c) => !c.ValidateAgainstHeader(this$.Header, unwrap(raiseException)), this$.Cells);
|
|
20
25
|
}
|
|
26
|
+
/**
|
|
27
|
+
* Returns an array of all units found in the cells of this column. Returns None if no units are found.
|
|
28
|
+
*/
|
|
21
29
|
TryGetColumnUnits() {
|
|
22
30
|
const this$ = this;
|
|
23
31
|
let arr;
|
|
@@ -25,6 +33,11 @@ class CompositeColumn extends Record {
|
|
|
25
33
|
arr = Array.from(collection);
|
|
26
34
|
return isEmpty(arr) ? void 0 : arr;
|
|
27
35
|
}
|
|
36
|
+
/**
|
|
37
|
+
* Simple predictor for empty default cells.
|
|
38
|
+
*
|
|
39
|
+
* Currently uses majority vote for the column to decide cell type.
|
|
40
|
+
*/
|
|
28
41
|
GetDefaultEmptyCell() {
|
|
29
42
|
const this$ = this;
|
|
30
43
|
if (!this$.Header.IsTermColumn) {
|