@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,11 +1,16 @@
|
|
|
1
|
-
import { TypeInfo } from '@fable-org/fable-library-
|
|
2
|
-
import { LDGraph, LDNode } from './ROCrate/LDObject.
|
|
3
|
-
import { Option } from '@fable-org/fable-library-
|
|
4
|
-
import { License } from './License.
|
|
5
|
-
import { LDContext } from './ROCrate/LDContext.
|
|
6
|
-
import { ArcWorkflow, ArcRun, ArcInvestigation } from './Core/ArcTypes.
|
|
7
|
-
import { FileSystem } from './FileSystem/FileSystem.
|
|
8
|
-
import { Decoder$1, IEncodable } from './fable_modules/Thoth.Json.Core.0.
|
|
1
|
+
import { TypeInfo } from '@fable-org/fable-library-ts/Reflection.ts';
|
|
2
|
+
import { LDGraph, LDNode } from './ROCrate/LDObject.ts';
|
|
3
|
+
import { Option } from '@fable-org/fable-library-ts/Option.ts';
|
|
4
|
+
import { License } from './License.ts';
|
|
5
|
+
import { LDContext } from './ROCrate/LDContext.ts';
|
|
6
|
+
import { ArcWorkflow, ArcRun, ArcInvestigation } from './Core/ArcTypes.ts';
|
|
7
|
+
import { FileSystem } from './FileSystem/FileSystem.ts';
|
|
8
|
+
import { Decoder$1, IEncodable } from './fable_modules/Thoth.Json.Core.0.9.1/Types.fs.js';
|
|
9
|
+
/**
|
|
10
|
+
* Functions for serializing and deserializing ARC objects to RO-Crate Root Data Entity
|
|
11
|
+
*
|
|
12
|
+
* See https://www.researchobject.org/ro-crate/1.1/root-data-entity.html for more information
|
|
13
|
+
*/
|
|
9
14
|
export declare class ROCrate {
|
|
10
15
|
constructor();
|
|
11
16
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ROCrateIO.d.ts","sourceRoot":"","sources":["../../../src/ARCtrl/ts/ROCrateIO.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ROCrateIO.d.ts","sourceRoot":"","sources":["../../../src/ARCtrl/ts/ROCrateIO.ts"],"names":[],"mappings":"AACA,OAAO,EAAc,QAAQ,EAAE,MAAM,2CAA2C,CAAC;AACjF,OAAO,EAA2D,OAAO,EAAS,MAAM,EAAE,MAAM,uBAAuB,CAAC;AAGxH,OAAO,EAAsB,MAAM,EAAoB,MAAM,uCAAuC,CAAC;AACrG,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAEvC,OAAO,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAKnD,OAAO,EAAE,WAAW,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAC3E,OAAO,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AAExD,OAAO,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,mDAAmD,CAAC;AAY1F;;;;GAIG;AACH,qBAAa,OAAO;;CAGnB;AAED,wBAAgB,mBAAmB,IAAI,QAAQ,CAE9C;AAED,wBAAgB,kCAAkC,IAAI,MAAM,CAK3D;AAED,wBAAgB,uCAAuC,IAAI,MAAM,CAKhE;AAED,wBAAgB,kCAAkC,CAAC,OAAO,EAAE,MAAM,CAAC,OAAO,CAAC,GAAG,MAAM,CAWnF;AAED,wBAAgB,4BAA4B,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,SAAS,GAAG,MAAM,CAAC,OAAO,CAAC,CAqClG;AAED,wBAAgB,4BAA4B,CAAC,GAAG,EAAE,gBAAgB,EAAE,OAAO,CAAC,EAAE,OAAO,EAAE,EAAE,CAAC,EAAE,UAAU,EAAE,cAAc,CAAC,EAAE,OAAO,GAAG,OAAO,CAWzI;AAED,wBAAgB,yBAAyB,CAAC,GAAG,EAAE,gBAAgB,EAAE,OAAO,CAAC,EAAE,OAAO,EAAE,EAAE,CAAC,EAAE,UAAU,EAAE,cAAc,CAAC,EAAE,OAAO,GAAG,UAAU,CAEzI;AAED;;GAEG;AACH,wBAAgB,mBAAmB,IAAI,SAAS,CAAC,CAAC,gBAAgB,EAAE,MAAM,EAAE,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAsB9F;AAED,wBAAgB,oCAAoC,CAAC,OAAO,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,EAAE,kBAAkB,EAAE,MAAM,EAAE,sBAAsB,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,OAAO,EAAE,OAAO,GAAG,OAAO,CAexL;AAED,wBAAgB,gCAAgC,CAAC,MAAM,EAAE,MAAM,EAAE,UAAU,EAAE,UAAU,EAAE,OAAO,EAAE,OAAO,GAAG,MAAM,CAqBjH;AAED,wBAAgB,sCAAsC,CAAC,WAAW,EAAE,WAAW,EAAE,UAAU,EAAE,UAAU,EAAE,OAAO,EAAE,OAAO,GAAG,MAAM,CAqBjI;AAED,wBAAgB,6BAA6B,IAAI,SAAS,CAAC,gBAAgB,CAAC,CAE3E"}
|
package/dist/ts/ts/ROCrateIO.js
CHANGED
|
@@ -1,20 +1,21 @@
|
|
|
1
|
-
import { class_type } from '../node_modules/@fable-org/fable-library-
|
|
1
|
+
import { class_type } from '../node_modules/@fable-org/fable-library-ts/Reflection.js';
|
|
2
2
|
import { LDNode, LDRef, DynamicObj_DynamicObj__DynamicObj_HasProperty_Z721C83C5 } from './ROCrate/LDObject.js';
|
|
3
|
-
import { ofArray, filter, isEmpty, map as map$1 } from '../node_modules/@fable-org/fable-library-
|
|
3
|
+
import { ofArray, filter, isEmpty, map as map$1 } from '../node_modules/@fable-org/fable-library-ts/List.js';
|
|
4
4
|
import { LDCreativeWork } from './ROCrate/LDTypes/CreativeWork.js';
|
|
5
|
-
import { value, unwrap,
|
|
5
|
+
import { value, unwrap, defaultArg } from '../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
6
6
|
import { License } from './License.js';
|
|
7
7
|
import { LDContext } from './ROCrate/LDContext.js';
|
|
8
8
|
import { ARCtrl_ArcInvestigation__ArcInvestigation_ToROCrateInvestigation_Z7960E96B, ARCtrl_ArcInvestigation__ArcInvestigation_fromROCrateInvestigation_Static_Z6839B9E8, ARCtrl_ArcRun__ArcRun_ToROCrateRun_1695DD5C, ARCtrl_ArcWorkflow__ArcWorkflow_ToROCrateWorkflow_1695DD5C } from './Conversion.js';
|
|
9
9
|
import { LDDataset } from './ROCrate/LDTypes/Dataset.js';
|
|
10
|
-
import { now } from '../node_modules/@fable-org/fable-library-
|
|
10
|
+
import { now } from '../node_modules/@fable-org/fable-library-ts/Date.js';
|
|
11
11
|
import { initV1_2, initBioschemasContext, initV1_1 } from './ROCrate/ROCrateContext.js';
|
|
12
12
|
import { encoder, decoder } from './Json/ROCrate/LDGraph.js';
|
|
13
|
-
import { map } from './fable_modules/Thoth.Json.Core.0.
|
|
13
|
+
import { map } from './fable_modules/Thoth.Json.Core.0.9.1/Decode.fs.js';
|
|
14
|
+
import { Exception } from '../node_modules/@fable-org/fable-library-ts/Util.js';
|
|
14
15
|
import { ResizeArray_choose } from './Core/Helper/Collections.js';
|
|
15
16
|
import { LDFile } from './ROCrate/LDTypes/File.js';
|
|
16
|
-
import { iterate, tryHead, exactlyOne } from '../node_modules/@fable-org/fable-library-
|
|
17
|
-
import { join, replace, toFail, printf } from '../node_modules/@fable-org/fable-library-
|
|
17
|
+
import { iterate, tryHead, exactlyOne } from '../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
18
|
+
import { join, replace, toFail, printf } from '../node_modules/@fable-org/fable-library-ts/String.js';
|
|
18
19
|
import { LDCreateAction } from './ROCrate/LDTypes/CreateAction.js';
|
|
19
20
|
import { ARCtrl_ROCrate_LDGraph__LDGraph_toROCrateJsonString_Static_71136F3F } from './JsonIO/LDObject.js';
|
|
20
21
|
import { LDComputationalWorkflow } from './ROCrate/LDTypes/ComputationalWorkflow.js';
|
|
@@ -45,7 +46,7 @@ function ROCrate_createLicenseNode_29619109(license) {
|
|
|
45
46
|
} else {
|
|
46
47
|
const license_1 = value(license);
|
|
47
48
|
let text;
|
|
48
|
-
|
|
49
|
+
license_1.Type;
|
|
49
50
|
text = license_1.Content;
|
|
50
51
|
return LDCreativeWork.create(license_1.Path, void 0, void 0, void 0, void 0, void 0, void 0, void 0, void 0, text);
|
|
51
52
|
}
|
|
@@ -53,7 +54,7 @@ function ROCrate_createLicenseNode_29619109(license) {
|
|
|
53
54
|
function ROCrate_getLicense_Z2F770004(license, context) {
|
|
54
55
|
const text = LDCreativeWork.tryGetTextAsString(license, unwrap(context));
|
|
55
56
|
const matchValue = license.Id;
|
|
56
|
-
let matchResult, text_1, path, text_2, path_1;
|
|
57
|
+
let matchResult = void 0, text_1 = void 0, path = void 0, text_2 = void 0, path_1 = void 0;
|
|
57
58
|
if (matchValue === "#LICENSE") {
|
|
58
59
|
if (text != null) {
|
|
59
60
|
if (value(text) === "ALL RIGHTS RESERVED BY THE AUTHORS") {
|
|
@@ -103,7 +104,7 @@ function ROCrate_get_decoder() {
|
|
|
103
104
|
return map((graph) => {
|
|
104
105
|
const matchValue = graph.TryGetNode("./");
|
|
105
106
|
if (matchValue == null) {
|
|
106
|
-
throw new
|
|
107
|
+
throw new Exception("RO-Crate graph did not contain root data Entity");
|
|
107
108
|
} else {
|
|
108
109
|
const node = value(matchValue);
|
|
109
110
|
const files = ResizeArray_choose((n) => {
|
|
@@ -113,7 +114,9 @@ function ROCrate_get_decoder() {
|
|
|
113
114
|
return void 0;
|
|
114
115
|
}
|
|
115
116
|
}, graph.Nodes);
|
|
116
|
-
|
|
117
|
+
let license;
|
|
118
|
+
const option_1 = LDDataset.tryGetLicenseAsCreativeWork(node, graph, unwrap(graph.TryGetContext()));
|
|
119
|
+
license = option_1 != null ? ROCrate_getLicense_Z2F770004(value(option_1), unwrap(graph.TryGetContext())) : void 0;
|
|
117
120
|
return [ARCtrl_ArcInvestigation__ArcInvestigation_fromROCrateInvestigation_Static_Z6839B9E8(node, graph, unwrap(graph.TryGetContext())), files, license];
|
|
118
121
|
}
|
|
119
122
|
}, decoder);
|
|
@@ -144,7 +147,7 @@ function ROCrate_writeRunAsCrate_5E53831D(arcRun, fileSystem, license) {
|
|
|
144
147
|
let workflowInvocation;
|
|
145
148
|
const matchValue = tryHead(LDDataset.getAboutsAsWorkflowInvocation(runDataset));
|
|
146
149
|
if (matchValue == null) {
|
|
147
|
-
throw new
|
|
150
|
+
throw new Exception("Run dataset 'about' property must contain a workflowInvocation");
|
|
148
151
|
} else {
|
|
149
152
|
workflowInvocation = value(matchValue);
|
|
150
153
|
}
|
|
@@ -165,7 +168,7 @@ function ROCrate_writeWorkflowAsCrate_Z4A0538D9(arcWorkflow, fileSystem, license
|
|
|
165
168
|
let workflowProtocol;
|
|
166
169
|
const matchValue = LDDataset.tryGetMainEntityAsWorkflowProtocol(workflowDataset);
|
|
167
170
|
if (matchValue == null) {
|
|
168
|
-
throw new
|
|
171
|
+
throw new Exception("Workflow dataset 'mainEntity' property must contain a workflow protocol");
|
|
169
172
|
} else {
|
|
170
173
|
workflowProtocol = value(matchValue);
|
|
171
174
|
}
|
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
import { FSharpList } from '@fable-org/fable-library-
|
|
2
|
-
import { CompositeHeader_$union } from '../../Core/Table/CompositeHeader.
|
|
3
|
-
import { int32 } from '@fable-org/fable-library-
|
|
4
|
-
import { CompositeColumn } from '../../Core/Table/CompositeColumn.
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
1
|
+
import { FSharpList } from '@fable-org/fable-library-ts/List.ts';
|
|
2
|
+
import { CompositeHeader_$union } from '../../Core/Table/CompositeHeader.ts';
|
|
3
|
+
import { int32 } from '@fable-org/fable-library-ts/Int32.ts';
|
|
4
|
+
import { CompositeColumn } from '../../Core/Table/CompositeColumn.ts';
|
|
5
|
+
import { MutableArray } from '@fable-org/fable-library-ts/Util.ts';
|
|
6
|
+
import { FsTable } from '../../fable_modules/FsSpreadsheet.7.0.1/Tables/FsTable.fs.js';
|
|
7
|
+
import { FsWorksheet } from '../../fable_modules/FsSpreadsheet.7.0.1/FsWorksheet.fs.js';
|
|
8
|
+
import { Option } from '@fable-org/fable-library-ts/Option.ts';
|
|
9
|
+
import { ArcTableValues } from '../../Core/Table/ArcTableAux.ts';
|
|
10
|
+
import { ArcTable } from '../../Core/Table/ArcTable.ts';
|
|
10
11
|
/**
|
|
11
12
|
* Iterates over elements of the input list and groups adjacent elements.
|
|
12
13
|
* A new group is started when the specified predicate holds about the element
|
|
@@ -19,7 +20,7 @@ export declare function Aux_List_groupWhen<$a>(f: ((arg0: $a) => boolean), list:
|
|
|
19
20
|
export declare function classifyHeaderOrder(header: CompositeHeader_$union): int32;
|
|
20
21
|
export declare function classifyColumnOrder(column: CompositeColumn): int32;
|
|
21
22
|
export declare const helperColumnStrings: FSharpList<string>;
|
|
22
|
-
export declare function groupColumnsByHeader(stringCellColumns: string
|
|
23
|
+
export declare function groupColumnsByHeader(stringCellColumns: MutableArray<MutableArray<string>>): MutableArray<MutableArray<MutableArray<string>>>;
|
|
23
24
|
/**
|
|
24
25
|
* Returns the annotation table of the worksheet if it exists, else returns None
|
|
25
26
|
*/
|
|
@@ -27,11 +28,11 @@ export declare function tryAnnotationTable(sheet: FsWorksheet): Option<FsTable>;
|
|
|
27
28
|
/**
|
|
28
29
|
* Groups and parses a collection of single columns into the according ISA composite columns
|
|
29
30
|
*/
|
|
30
|
-
export declare function composeColumns(stringCellColumns: string
|
|
31
|
+
export declare function composeColumns(stringCellColumns: MutableArray<MutableArray<string>>): MutableArray<CompositeColumn>;
|
|
31
32
|
/**
|
|
32
33
|
* Groups and parses a collection of single columns into the according ISA composite columns
|
|
33
34
|
*/
|
|
34
|
-
export declare function composeArcTableValues(stringCellColumns: string
|
|
35
|
+
export declare function composeArcTableValues(stringCellColumns: MutableArray<MutableArray<string>>): [MutableArray<CompositeHeader_$union>, ArcTableValues];
|
|
35
36
|
/**
|
|
36
37
|
* Returns the protocol described by the headers and a function for parsing the values of the matrix to the processes of this protocol
|
|
37
38
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ArcTable.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Spreadsheet/AnnotationTable/ArcTable.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ArcTable.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Spreadsheet/AnnotationTable/ArcTable.ts"],"names":[],"mappings":"AACA,OAAO,EAA4I,UAAU,EAAgB,MAAM,qCAAqC,CAAC;AACzN,OAAO,EAAE,sBAAsB,EAAE,MAAM,qCAAqC,CAAC;AAC7E,OAAO,EAAE,KAAK,EAAE,MAAM,sCAAsC,CAAC;AAC7D,OAAO,EAAE,eAAe,EAAE,MAAM,qCAAqC,CAAC;AAEtE,OAAO,EAA2B,YAAY,EAAE,MAAM,qCAAqC,CAAC;AAE5F,OAAO,EAAE,OAAO,EAAE,MAAM,8DAA8D,CAAC;AACvF,OAAO,EAAE,WAAW,EAAE,MAAM,2DAA2D,CAAC;AACxF,OAAO,EAAoB,MAAM,EAAE,MAAM,uCAAuC,CAAC;AAGjF,OAAO,EAAE,cAAc,EAA0B,MAAM,iCAAiC,CAAC;AAIzF,OAAO,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AAOxD;;;;;;;GAOG;AACH,wBAAgB,kBAAkB,CAAC,EAAE,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,EAAE,KAAK,OAAO,CAAC,EAAE,IAAI,EAAE,UAAU,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAanH;AAED,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,sBAAsB,GAAG,KAAK,CAsBzE;AAED,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,eAAe,GAAG,KAAK,CAElE;AAED,eAAO,MAAM,mBAAmB,EAAE,UAAU,CAAC,MAAM,CAAwG,CAAC;AAE5J,wBAAgB,oBAAoB,CAAC,iBAAiB,EAAE,YAAY,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC,GAAG,YAAY,CAAC,YAAY,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC,CAAC,CAK5I;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,WAAW,GAAG,MAAM,CAAC,OAAO,CAAC,CAEtE;AAED;;GAEG;AACH,wBAAgB,cAAc,CAAC,iBAAiB,EAAE,YAAY,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC,GAAG,YAAY,CAAC,eAAe,CAAC,CAEnH;AAED;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,iBAAiB,EAAE,YAAY,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,YAAY,CAAC,sBAAsB,CAAC,EAAE,cAAc,CAAC,CAKnJ;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,WAAW,GAAG,MAAM,CAAC,QAAQ,CAAC,CA0BvE;AAED,wBAAgB,aAAa,CAAC,KAAK,EAAE,MAAM,CAAC,KAAK,CAAC,EAAE,KAAK,EAAE,QAAQ,GAAG,WAAW,CAwChF"}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { reverse, map, fold, cons, singleton, isEmpty, head, tail, empty, ofArray, toArray, exists, collect as collect$1, sortBy, ofSeq, length, iterateIndexed } from '../../../node_modules/@fable-org/fable-library-
|
|
2
|
-
import { map as map$1, item, unzip } from '../../../node_modules/@fable-org/fable-library-
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
1
|
+
import { reverse, map, fold, cons, singleton, isEmpty, head, tail, empty, ofArray, toArray, exists, collect as collect$1, sortBy, ofSeq, length, iterateIndexed } from '../../../node_modules/@fable-org/fable-library-ts/List.js';
|
|
2
|
+
import { map as map$1, item, unzip } from '../../../node_modules/@fable-org/fable-library-ts/Array.js';
|
|
3
|
+
import { comparePrimitives } from '../../../node_modules/@fable-org/fable-library-ts/Util.js';
|
|
4
|
+
import { tryFind, toArray as toArray$1, delay, map as map$2, collect, singleton as singleton$1, fold as fold$1 } from '../../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
5
|
+
import { FsWorksheet } from '../../fable_modules/FsSpreadsheet.7.0.1/FsWorksheet.fs.js';
|
|
6
|
+
import { value } from '../../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
6
7
|
import { fromStringCellColumns, ColumnValueRefs_fromStringCellColumns, fixDeprecatedIOHeader, toStringCellColumns } from './CompositeColumn.js';
|
|
7
|
-
import { comparePrimitives } from '../../../node_modules/@fable-org/fable-library-js/Util.js';
|
|
8
8
|
import { ArcTableValues } from '../../Core/Table/ArcTableAux.js';
|
|
9
|
-
import { toFail, printf } from '../../../node_modules/@fable-org/fable-library-
|
|
10
|
-
import { rangeDouble } from '../../../node_modules/@fable-org/fable-library-
|
|
9
|
+
import { toFail, printf } from '../../../node_modules/@fable-org/fable-library-ts/String.js';
|
|
10
|
+
import { rangeDouble } from '../../../node_modules/@fable-org/fable-library-ts/Range.js';
|
|
11
11
|
import { ArcTable } from '../../Core/Table/ArcTable.js';
|
|
12
|
-
import { max } from '../../../node_modules/@fable-org/fable-library-
|
|
13
|
-
import { FsRangeAddress } from '../../fable_modules/FsSpreadsheet.7.0.
|
|
14
|
-
import { FsAddress } from '../../fable_modules/FsSpreadsheet.7.0.
|
|
15
|
-
import { Dictionary_tryGet } from '../../fable_modules/FsSpreadsheet.7.0.
|
|
16
|
-
import { addToDict } from '../../../node_modules/@fable-org/fable-library-
|
|
12
|
+
import { max } from '../../../node_modules/@fable-org/fable-library-ts/Double.js';
|
|
13
|
+
import { FsRangeAddress } from '../../fable_modules/FsSpreadsheet.7.0.1/Ranges/FsRangeAddress.fs.js';
|
|
14
|
+
import { FsAddress } from '../../fable_modules/FsSpreadsheet.7.0.1/FsAddress.fs.js';
|
|
15
|
+
import { Dictionary_tryGet } from '../../fable_modules/FsSpreadsheet.7.0.1/Cells/FsCellsCollection.fs.js';
|
|
16
|
+
import { addToDict } from '../../../node_modules/@fable-org/fable-library-ts/MapUtil.js';
|
|
17
17
|
|
|
18
18
|
function Aux_List_groupWhen(f, list) {
|
|
19
19
|
return reverse(map(reverse, fold((acc, e) => {
|
|
@@ -117,10 +117,10 @@ function toFsWorksheet(index, table) {
|
|
|
117
117
|
return ws;
|
|
118
118
|
} else {
|
|
119
119
|
const columns = collect$1(toStringCellColumns, sortBy(classifyColumnOrder, ofSeq(table.Columns), {
|
|
120
|
-
Compare: comparePrimitives
|
|
120
|
+
Compare: (x, y) => comparePrimitives(x, y) | 0
|
|
121
121
|
}));
|
|
122
122
|
let tableRowCount;
|
|
123
|
-
const maxRow = fold$1((acc, c) => max(acc, length(c)), 0, columns) | 0;
|
|
123
|
+
const maxRow = fold$1((acc, c) => max(acc, length(c)) | 0, 0, columns) | 0;
|
|
124
124
|
tableRowCount = maxRow === 1 ? 2 : maxRow;
|
|
125
125
|
const tableColumnCount = length(columns) | 0;
|
|
126
126
|
const name = index == null ? "annotationTable" : `${"annotationTable"}${value(index)}`;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { Option } from '@fable-org/fable-library-
|
|
2
|
-
import { int32 } from '@fable-org/fable-library-
|
|
3
|
-
import { CompositeCell_$union } from '../../Core/Table/CompositeCell.
|
|
4
|
-
|
|
5
|
-
export declare function
|
|
6
|
-
export declare function
|
|
7
|
-
export declare function
|
|
8
|
-
export declare function
|
|
1
|
+
import { Option } from '@fable-org/fable-library-ts/Option.ts';
|
|
2
|
+
import { int32 } from '@fable-org/fable-library-ts/Int32.ts';
|
|
3
|
+
import { CompositeCell_$union } from '../../Core/Table/CompositeCell.ts';
|
|
4
|
+
import { MutableArray } from '@fable-org/fable-library-ts/Util.ts';
|
|
5
|
+
export declare function termFromStringCells(tsrCol: Option<int32>, tanCol: Option<int32>, cellValues: MutableArray<string>): CompositeCell_$union;
|
|
6
|
+
export declare function unitizedFromStringCells(unitCol: int32, tsrCol: Option<int32>, tanCol: Option<int32>, cellValues: MutableArray<string>): CompositeCell_$union;
|
|
7
|
+
export declare function freeTextFromStringCells(cellValues: MutableArray<string>): CompositeCell_$union;
|
|
8
|
+
export declare function dataFromStringCells(format: Option<int32>, selectorFormat: Option<int32>, cellValues: MutableArray<string>): CompositeCell_$union;
|
|
9
|
+
export declare function toStringCells(isTerm: boolean, hasUnit: boolean, cell: CompositeCell_$union): MutableArray<string>;
|
|
9
10
|
//# sourceMappingURL=CompositeCell.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CompositeCell.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Spreadsheet/AnnotationTable/CompositeCell.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"CompositeCell.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Spreadsheet/AnnotationTable/CompositeCell.ts"],"names":[],"mappings":"AACA,OAAO,EAAwC,MAAM,EAAE,MAAM,uCAAuC,CAAC;AACrG,OAAO,EAAE,KAAK,EAAE,MAAM,sCAAsC,CAAC;AAE7D,OAAO,EAAE,oBAAoB,EAAiB,MAAM,mCAAmC,CAAC;AACxF,OAAO,EAAE,YAAY,EAAE,MAAM,qCAAqC,CAAC;AAKnE,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,EAAE,UAAU,EAAE,YAAY,CAAC,MAAM,CAAC,GAAG,oBAAoB,CAQxI;AAED,wBAAgB,uBAAuB,CAAC,OAAO,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,EAAE,UAAU,EAAE,YAAY,CAAC,MAAM,CAAC,GAAG,oBAAoB,CAS5J;AAED,wBAAgB,uBAAuB,CAAC,UAAU,EAAE,YAAY,CAAC,MAAM,CAAC,GAAG,oBAAoB,CAE9F;AAED,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,EAAE,cAAc,EAAE,MAAM,CAAC,KAAK,CAAC,EAAE,UAAU,EAAE,YAAY,CAAC,MAAM,CAAC,GAAG,oBAAoB,CAQhJ;AAED,wBAAgB,aAAa,CAAC,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,oBAAoB,GAAG,YAAY,CAAC,MAAM,CAAC,CAoCjH"}
|
|
@@ -1,33 +1,44 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { item } from '../../../node_modules/@fable-org/fable-library-
|
|
1
|
+
import { value, unwrap, defaultArg } from '../../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
2
|
+
import { item } from '../../../node_modules/@fable-org/fable-library-ts/Array.js';
|
|
3
3
|
import { CompositeCell } from '../../Core/Table/CompositeCell.js';
|
|
4
4
|
import { Option_fromValueWithDefault } from '../../Core/Helper/Collections.js';
|
|
5
5
|
|
|
6
6
|
function termFromStringCells(tsrCol, tanCol, cellValues) {
|
|
7
|
-
|
|
8
|
-
const
|
|
7
|
+
let tan;
|
|
8
|
+
const option = tanCol;
|
|
9
|
+
tan = option != null ? item(value(option), cellValues) : void 0;
|
|
10
|
+
let tsr;
|
|
11
|
+
const option_1 = tsrCol;
|
|
12
|
+
tsr = option_1 != null ? item(value(option_1), cellValues) : void 0;
|
|
9
13
|
return CompositeCell.createTermFromString(item(0, cellValues), unwrap(tsr), unwrap(tan));
|
|
10
14
|
}
|
|
11
15
|
function unitizedFromStringCells(unitCol, tsrCol, tanCol, cellValues) {
|
|
12
16
|
const unit = item(unitCol, cellValues);
|
|
13
|
-
|
|
14
|
-
const
|
|
17
|
+
let tan;
|
|
18
|
+
const option = tanCol;
|
|
19
|
+
tan = option != null ? item(value(option), cellValues) : void 0;
|
|
20
|
+
let tsr;
|
|
21
|
+
const option_1 = tsrCol;
|
|
22
|
+
tsr = option_1 != null ? item(value(option_1), cellValues) : void 0;
|
|
15
23
|
return CompositeCell.createUnitizedFromString(item(0, cellValues), unit, unwrap(tsr), unwrap(tan));
|
|
16
24
|
}
|
|
17
25
|
function freeTextFromStringCells(cellValues) {
|
|
18
26
|
return CompositeCell.createFreeText(item(0, cellValues));
|
|
19
27
|
}
|
|
20
28
|
function dataFromStringCells(format, selectorFormat, cellValues) {
|
|
21
|
-
|
|
22
|
-
const
|
|
29
|
+
let format_1;
|
|
30
|
+
const option = format;
|
|
31
|
+
format_1 = option != null ? Option_fromValueWithDefault("", item(value(option), cellValues)) : void 0;
|
|
32
|
+
let selectorFormat_1;
|
|
33
|
+
const option_1 = selectorFormat;
|
|
34
|
+
selectorFormat_1 = option_1 != null ? Option_fromValueWithDefault("", item(value(option_1), cellValues)) : void 0;
|
|
23
35
|
return CompositeCell.createDataFromString(item(0, cellValues), unwrap(format_1), unwrap(selectorFormat_1));
|
|
24
36
|
}
|
|
25
37
|
function toStringCells(isTerm, hasUnit, cell) {
|
|
26
|
-
let v, v_1, v_2;
|
|
27
38
|
switch (cell.tag) {
|
|
28
39
|
case /* Term */
|
|
29
40
|
0:
|
|
30
|
-
if (
|
|
41
|
+
if (cell.fields[0], hasUnit) {
|
|
31
42
|
const v_6 = cell.fields[0];
|
|
32
43
|
return [v_6.NameText, "", defaultArg(v_6.TermSourceREF, ""), v_6.TermAccessionOntobeeUrl];
|
|
33
44
|
} else {
|
|
@@ -48,10 +59,10 @@ function toStringCells(isTerm, hasUnit, cell) {
|
|
|
48
59
|
return [defaultArg(d.Name, ""), format, selectorFormat];
|
|
49
60
|
}
|
|
50
61
|
default:
|
|
51
|
-
if (
|
|
62
|
+
if (cell.fields[0], hasUnit) {
|
|
52
63
|
const v_3 = cell.fields[0];
|
|
53
64
|
return [v_3, "", "", ""];
|
|
54
|
-
} else if (
|
|
65
|
+
} else if (cell.fields[0], isTerm) {
|
|
55
66
|
const v_4 = cell.fields[0];
|
|
56
67
|
return [v_4, "", ""];
|
|
57
68
|
} else {
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import { int32 } from '@fable-org/fable-library-
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import { ColumnValueRefs_$union } from '../../Core/Table/ArcTableAux.
|
|
1
|
+
import { IMap, MutableArray } from '@fable-org/fable-library-ts/Util.ts';
|
|
2
|
+
import { CompositeHeader_$union } from '../../Core/Table/CompositeHeader.ts';
|
|
3
|
+
import { int32 } from '@fable-org/fable-library-ts/Int32.ts';
|
|
4
|
+
import { CompositeCell_$union } from '../../Core/Table/CompositeCell.ts';
|
|
5
|
+
import { CompositeColumn } from '../../Core/Table/CompositeColumn.ts';
|
|
6
|
+
import { FsCell } from '../../fable_modules/FsSpreadsheet.7.0.1/Cells/FsCell.fs.js';
|
|
7
|
+
import { FsColumn } from '../../fable_modules/FsSpreadsheet.7.0.1/FsColumn.fs.js';
|
|
8
|
+
import { FSharpList } from '@fable-org/fable-library-ts/List.ts';
|
|
9
|
+
import { ColumnValueRefs_$union } from '../../Core/Table/ArcTableAux.ts';
|
|
10
10
|
/**
|
|
11
11
|
* Checks if the column header is a deprecated IO Header. If so, fixes it.
|
|
12
12
|
*
|
|
@@ -14,11 +14,11 @@ import { ColumnValueRefs_$union } from '../../Core/Table/ArcTableAux.js';
|
|
|
14
14
|
*
|
|
15
15
|
* A "Source Name" column will now be mapped to the propper "Input [Source Name]", and all other IO types will be mapped to "Output [<IO Type>]".
|
|
16
16
|
*/
|
|
17
|
-
export declare function fixDeprecatedIOHeader(stringCellCol: string
|
|
18
|
-
export declare function fromStringCellColumns(columns: string
|
|
19
|
-
export declare function stringCellColumnsOfFsColumns(columns: FsColumn
|
|
20
|
-
export declare function fromFsColumns(columns: FsColumn
|
|
17
|
+
export declare function fixDeprecatedIOHeader(stringCellCol: MutableArray<string>): MutableArray<string>;
|
|
18
|
+
export declare function fromStringCellColumns(columns: MutableArray<MutableArray<string>>): CompositeColumn;
|
|
19
|
+
export declare function stringCellColumnsOfFsColumns(columns: MutableArray<FsColumn>): MutableArray<MutableArray<string>>;
|
|
20
|
+
export declare function fromFsColumns(columns: MutableArray<FsColumn>): CompositeColumn;
|
|
21
21
|
export declare function toStringCellColumns(column: CompositeColumn): FSharpList<FSharpList<string>>;
|
|
22
22
|
export declare function toFsColumns(column: CompositeColumn): FSharpList<FSharpList<FsCell>>;
|
|
23
|
-
export declare function ColumnValueRefs_fromStringCellColumns(valueMap: IMap<int32, CompositeCell_$union>, columns: string
|
|
23
|
+
export declare function ColumnValueRefs_fromStringCellColumns(valueMap: IMap<int32, CompositeCell_$union>, columns: MutableArray<MutableArray<string>>): [CompositeHeader_$union, ColumnValueRefs_$union];
|
|
24
24
|
//# sourceMappingURL=CompositeColumn.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CompositeColumn.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Spreadsheet/AnnotationTable/CompositeColumn.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"CompositeColumn.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Spreadsheet/AnnotationTable/CompositeColumn.ts"],"names":[],"mappings":"AACA,OAAO,EAAyB,IAAI,EAAE,YAAY,EAAa,MAAM,qCAAqC,CAAC;AAE3G,OAAO,EAAE,sBAAsB,EAAwE,MAAM,qCAAqC,CAAC;AACnJ,OAAO,EAAE,KAAK,EAAE,MAAM,sCAAsC,CAAC;AAG7D,OAAO,EAAE,oBAAoB,EAAE,MAAM,mCAAmC,CAAC;AAGzE,OAAO,EAAE,eAAe,EAAE,MAAM,qCAAqC,CAAC;AACtE,OAAO,EAAE,MAAM,EAAE,MAAM,4DAA4D,CAAC;AACpF,OAAO,EAAE,QAAQ,EAAE,MAAM,wDAAwD,CAAC;AAGlF,OAAO,EAAgB,UAAU,EAAqC,MAAM,qCAAqC,CAAC;AAClH,OAAO,EAAsD,sBAAsB,EAA0B,MAAM,iCAAiC,CAAC;AAIrJ;;;;;;GAMG;AACH,wBAAgB,qBAAqB,CAAC,aAAa,EAAE,YAAY,CAAC,MAAM,CAAC,GAAG,YAAY,CAAC,MAAM,CAAC,CAkB/F;AAED,wBAAgB,qBAAqB,CAAC,OAAO,EAAE,YAAY,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC,GAAG,eAAe,CAKlG;AAED,wBAAgB,4BAA4B,CAAC,OAAO,EAAE,YAAY,CAAC,QAAQ,CAAC,GAAG,YAAY,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC,CAKhH;AAED,wBAAgB,aAAa,CAAC,OAAO,EAAE,YAAY,CAAC,QAAQ,CAAC,GAAG,eAAe,CAK9E;AAED,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,eAAe,GAAG,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC,CAoB3F;AAED,wBAAgB,WAAW,CAAC,MAAM,EAAE,eAAe,GAAG,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC,CAEnF;AAED,wBAAgB,qCAAqC,CAAC,QAAQ,EAAE,IAAI,CAAC,KAAK,EAAE,oBAAoB,CAAC,EAAE,OAAO,EAAE,YAAY,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,sBAAsB,EAAE,sBAAsB,CAAC,CAwDhM"}
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { Exception, stringHash, defaultOf } from '../../../node_modules/@fable-org/fable-library-ts/Util.js';
|
|
2
|
+
import { skip, item, setItem, map, tryItem } from '../../../node_modules/@fable-org/fable-library-ts/Array.js';
|
|
3
|
+
import { IOType, CompositeHeader_Output, CompositeHeader_Input } from '../../Core/Table/CompositeHeader.js';
|
|
4
|
+
import { toString, FSharpRef } from '../../../node_modules/@fable-org/fable-library-ts/Types.js';
|
|
4
5
|
import { fromStringCells, toStringCells } from './CompositeHeader.js';
|
|
5
|
-
import { toArray, delay, map as map$1, exists, toList, append, singleton, reduce } from '../../../node_modules/@fable-org/fable-library-
|
|
6
|
-
import { rangeDouble } from '../../../node_modules/@fable-org/fable-library-
|
|
6
|
+
import { toArray, delay, map as map$1, exists, toList, append, singleton, reduce } from '../../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
7
|
+
import { rangeDouble } from '../../../node_modules/@fable-org/fable-library-ts/Range.js';
|
|
7
8
|
import { CompositeColumn } from '../../Core/Table/CompositeColumn.js';
|
|
8
|
-
import { FsCell } from '../../fable_modules/FsSpreadsheet.7.0.
|
|
9
|
+
import { FsCell } from '../../fable_modules/FsSpreadsheet.7.0.1/Cells/FsCell.fs.js';
|
|
9
10
|
import { toStringCells as toStringCells$1 } from './CompositeCell.js';
|
|
10
|
-
import { defaultArg, value } from '../../../node_modules/@fable-org/fable-library-
|
|
11
|
-
import { ofArray, singleton as singleton$1, map as map$2 } from '../../../node_modules/@fable-org/fable-library-
|
|
12
|
-
import { stringHash, defaultOf } from '../../../node_modules/@fable-org/fable-library-js/Util.js';
|
|
11
|
+
import { defaultArg, value } from '../../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
12
|
+
import { ofArray, singleton as singleton$1, map as map$2 } from '../../../node_modules/@fable-org/fable-library-ts/List.js';
|
|
13
13
|
import { ColumnValueRefs_Sparse, ensureCellHashInValueMap, ColumnValueRefs_Constant } from '../../Core/Table/ArcTableAux.js';
|
|
14
|
-
import { mergeHashes } from '../../fable_modules/FsSpreadsheet.7.0.
|
|
15
|
-
import { tryGetValue, getItemFromDict } from '../../../node_modules/@fable-org/fable-library-
|
|
14
|
+
import { mergeHashes } from '../../fable_modules/FsSpreadsheet.7.0.1/HashCodes.fs.js';
|
|
15
|
+
import { tryGetValue, getItemFromDict } from '../../../node_modules/@fable-org/fable-library-ts/MapUtil.js';
|
|
16
16
|
|
|
17
17
|
function fixDeprecatedIOHeader(stringCellCol) {
|
|
18
18
|
if (stringCellCol.length === 0) {
|
|
19
|
-
throw new
|
|
19
|
+
throw new Exception("Can't fix IOHeader Invalid column, neither header nor values given");
|
|
20
20
|
}
|
|
21
|
-
|
|
21
|
+
skip(1, stringCellCol);
|
|
22
22
|
const matchValue = IOType.ofString(item(0, stringCellCol));
|
|
23
23
|
switch (matchValue.tag) {
|
|
24
24
|
case /* FreeText */
|
|
@@ -26,7 +26,7 @@ function fixDeprecatedIOHeader(stringCellCol) {
|
|
|
26
26
|
return stringCellCol;
|
|
27
27
|
case /* Source */
|
|
28
28
|
0: {
|
|
29
|
-
setItem(stringCellCol, 0, toString(CompositeHeader_Input(
|
|
29
|
+
setItem(stringCellCol, 0, toString(CompositeHeader_Input(IOType.Source)));
|
|
30
30
|
return stringCellCol;
|
|
31
31
|
}
|
|
32
32
|
default: {
|
|
@@ -75,7 +75,6 @@ function toFsColumns(column) {
|
|
|
75
75
|
return map$2((c) => map$2((s) => new FsCell(s), c), toStringCellColumns(column));
|
|
76
76
|
}
|
|
77
77
|
function ColumnValueRefs_fromStringCellColumns(valueMap, columns) {
|
|
78
|
-
let cellHash;
|
|
79
78
|
const hashMap = /* @__PURE__ */ new Map([]);
|
|
80
79
|
const cells = /* @__PURE__ */ new Map([]);
|
|
81
80
|
let constant = true;
|
|
@@ -88,11 +87,11 @@ function ColumnValueRefs_fromStringCellColumns(valueMap, columns) {
|
|
|
88
87
|
} else {
|
|
89
88
|
for (let i = 1; i <= l - 1; i++) {
|
|
90
89
|
const strings = map((c_1) => item(i, c_1), columns);
|
|
91
|
-
const hash_2 = reduce(mergeHashes, map$1(stringHash, strings)) | 0;
|
|
90
|
+
const hash_2 = reduce((hash, hash_1) => mergeHashes(hash, hash_1) | 0, map$1((s) => stringHash(s) | 0, strings)) | 0;
|
|
92
91
|
let matchValue;
|
|
93
92
|
let patternInput_1;
|
|
94
93
|
let outArg = defaultOf();
|
|
95
|
-
patternInput_1 = [tryGetValue(hashMap, hash_2, new FSharpRef(() => outArg, (v) => {
|
|
94
|
+
patternInput_1 = [tryGetValue(hashMap, hash_2, new FSharpRef(() => outArg | 0, (v) => {
|
|
96
95
|
outArg = v | 0;
|
|
97
96
|
})), outArg];
|
|
98
97
|
matchValue = patternInput_1[0] ? patternInput_1[1] : void 0;
|
|
@@ -113,7 +112,7 @@ function ColumnValueRefs_fromStringCellColumns(valueMap, columns) {
|
|
|
113
112
|
hashMap.set(hash_2, cellHash_5);
|
|
114
113
|
cells.set(i - 1, cellHash_5);
|
|
115
114
|
}
|
|
116
|
-
} else if (
|
|
115
|
+
} else if (value(matchValue), constant) {
|
|
117
116
|
const cellHash_1 = value(matchValue) | 0;
|
|
118
117
|
} else {
|
|
119
118
|
const cellHash_2 = value(matchValue) | 0;
|
|
@@ -1,22 +1,23 @@
|
|
|
1
|
-
import { Option } from '@fable-org/fable-library-
|
|
2
|
-
import { OntologyAnnotation } from '../../Core/OntologyAnnotation.
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { Option } from '@fable-org/fable-library-ts/Option.ts';
|
|
2
|
+
import { OntologyAnnotation } from '../../Core/OntologyAnnotation.ts';
|
|
3
|
+
import { MutableArray } from '@fable-org/fable-library-ts/Util.ts';
|
|
4
|
+
import { CompositeCell_$union } from '../../Core/Table/CompositeCell.ts';
|
|
5
|
+
import { CompositeHeader_$union } from '../../Core/Table/CompositeHeader.ts';
|
|
5
6
|
export declare function ActivePattern_mergeIDInfo(idSpace1: string, localID1: string, idSpace2: string, localID2: string): {
|
|
6
7
|
TermAccessionNumber: string;
|
|
7
8
|
TermSourceRef: string;
|
|
8
9
|
};
|
|
9
|
-
export declare function ActivePattern_$007CTerm$007C_$007C(categoryParser: ((arg0: string) => Option<string>), f: ((arg0: OntologyAnnotation) => CompositeHeader_$union), cellValues: string
|
|
10
|
-
export declare function ActivePattern_$007CParameter$007C_$007C(cellValues: string
|
|
11
|
-
export declare function ActivePattern_$007CFactor$007C_$007C(cellValues: string
|
|
12
|
-
export declare function ActivePattern_$007CCharacteristic$007C_$007C(cellValues: string
|
|
13
|
-
export declare function ActivePattern_$007CComponent$007C_$007C(cellValues: string
|
|
14
|
-
export declare function ActivePattern_$007CInput$007C_$007C(cellValues: string
|
|
15
|
-
export declare function ActivePattern_$007COutput$007C_$007C(cellValues: string
|
|
16
|
-
export declare function ActivePattern_$007CComment$007C_$007C(cellValues: string
|
|
17
|
-
export declare function ActivePattern_$007CProtocolType$007C_$007C(cellValues: string
|
|
18
|
-
export declare function ActivePattern_$007CProtocolHeader$007C_$007C(cellValues: string
|
|
19
|
-
export declare function ActivePattern_$007CFreeText$007C_$007C(cellValues: string
|
|
20
|
-
export declare function fromStringCells(cellValues: string
|
|
21
|
-
export declare function toStringCells(hasUnit: boolean, header: CompositeHeader_$union): string
|
|
10
|
+
export declare function ActivePattern_$007CTerm$007C_$007C(categoryParser: ((arg0: string) => Option<string>), f: ((arg0: OntologyAnnotation) => CompositeHeader_$union), cellValues: MutableArray<string>): Option<[CompositeHeader_$union, ((arg0: MutableArray<string>) => CompositeCell_$union)]>;
|
|
11
|
+
export declare function ActivePattern_$007CParameter$007C_$007C(cellValues: MutableArray<string>): Option<[CompositeHeader_$union, ((arg0: MutableArray<string>) => CompositeCell_$union)]>;
|
|
12
|
+
export declare function ActivePattern_$007CFactor$007C_$007C(cellValues: MutableArray<string>): Option<[CompositeHeader_$union, ((arg0: MutableArray<string>) => CompositeCell_$union)]>;
|
|
13
|
+
export declare function ActivePattern_$007CCharacteristic$007C_$007C(cellValues: MutableArray<string>): Option<[CompositeHeader_$union, ((arg0: MutableArray<string>) => CompositeCell_$union)]>;
|
|
14
|
+
export declare function ActivePattern_$007CComponent$007C_$007C(cellValues: MutableArray<string>): Option<[CompositeHeader_$union, ((arg0: MutableArray<string>) => CompositeCell_$union)]>;
|
|
15
|
+
export declare function ActivePattern_$007CInput$007C_$007C(cellValues: MutableArray<string>): Option<[CompositeHeader_$union, ((arg0: MutableArray<string>) => CompositeCell_$union)]>;
|
|
16
|
+
export declare function ActivePattern_$007COutput$007C_$007C(cellValues: MutableArray<string>): Option<[CompositeHeader_$union, ((arg0: MutableArray<string>) => CompositeCell_$union)]>;
|
|
17
|
+
export declare function ActivePattern_$007CComment$007C_$007C(cellValues: MutableArray<string>): Option<[CompositeHeader_$union, ((arg0: MutableArray<string>) => CompositeCell_$union)]>;
|
|
18
|
+
export declare function ActivePattern_$007CProtocolType$007C_$007C(cellValues: MutableArray<string>): Option<[CompositeHeader_$union, ((arg0: MutableArray<string>) => CompositeCell_$union)]>;
|
|
19
|
+
export declare function ActivePattern_$007CProtocolHeader$007C_$007C(cellValues: MutableArray<string>): Option<[CompositeHeader_$union, ((arg0: MutableArray<string>) => CompositeCell_$union)]>;
|
|
20
|
+
export declare function ActivePattern_$007CFreeText$007C_$007C(cellValues: MutableArray<string>): Option<[CompositeHeader_$union, ((arg0: MutableArray<string>) => CompositeCell_$union)]>;
|
|
21
|
+
export declare function fromStringCells(cellValues: MutableArray<string>): [CompositeHeader_$union, ((arg0: MutableArray<string>) => CompositeCell_$union)];
|
|
22
|
+
export declare function toStringCells(hasUnit: boolean, header: CompositeHeader_$union): MutableArray<string>;
|
|
22
23
|
//# sourceMappingURL=CompositeHeader.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CompositeHeader.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Spreadsheet/AnnotationTable/CompositeHeader.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"CompositeHeader.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Spreadsheet/AnnotationTable/CompositeHeader.ts"],"names":[],"mappings":"AAEA,OAAO,EAAS,MAAM,EAAE,MAAM,uCAAuC,CAAC;AACtE,OAAO,EAAE,kBAAkB,EAAE,MAAM,kCAAkC,CAAC;AAEtE,OAAO,EAAa,YAAY,EAAE,MAAM,qCAAqC,CAAC;AAC9E,OAAO,EAAE,oBAAoB,EAAE,MAAM,mCAAmC,CAAC;AACzE,OAAO,EAA2P,sBAAsB,EAAE,MAAM,qCAAqC,CAAC;AAOtU,wBAAgB,yBAAyB,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG;IAAE,mBAAmB,EAAE,MAAM,CAAC;IAAC,aAAa,EAAE,MAAM,CAAA;CAAE,CAWxK;AAED,wBAAgB,kCAAkC,CAAC,cAAc,EAAE,CAAC,CAAC,IAAI,EAAE,MAAM,KAAK,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,kBAAkB,KAAK,sBAAsB,CAAC,EAAE,UAAU,EAAE,YAAY,CAAC,MAAM,CAAC,GAAG,MAAM,CAAC,CAAC,sBAAsB,EAAE,CAAC,CAAC,IAAI,EAAE,YAAY,CAAC,MAAM,CAAC,KAAK,oBAAoB,CAAC,CAAC,CAAC,CAwK5R;AAED,wBAAgB,uCAAuC,CAAC,UAAU,EAAE,YAAY,CAAC,MAAM,CAAC,GAAG,MAAM,CAAC,CAAC,sBAAsB,EAAE,CAAC,CAAC,IAAI,EAAE,YAAY,CAAC,MAAM,CAAC,KAAK,oBAAoB,CAAC,CAAC,CAAC,CASlL;AAED,wBAAgB,oCAAoC,CAAC,UAAU,EAAE,YAAY,CAAC,MAAM,CAAC,GAAG,MAAM,CAAC,CAAC,sBAAsB,EAAE,CAAC,CAAC,IAAI,EAAE,YAAY,CAAC,MAAM,CAAC,KAAK,oBAAoB,CAAC,CAAC,CAAC,CAS/K;AAED,wBAAgB,4CAA4C,CAAC,UAAU,EAAE,YAAY,CAAC,MAAM,CAAC,GAAG,MAAM,CAAC,CAAC,sBAAsB,EAAE,CAAC,CAAC,IAAI,EAAE,YAAY,CAAC,MAAM,CAAC,KAAK,oBAAoB,CAAC,CAAC,CAAC,CASvL;AAED,wBAAgB,uCAAuC,CAAC,UAAU,EAAE,YAAY,CAAC,MAAM,CAAC,GAAG,MAAM,CAAC,CAAC,sBAAsB,EAAE,CAAC,CAAC,IAAI,EAAE,YAAY,CAAC,MAAM,CAAC,KAAK,oBAAoB,CAAC,CAAC,CAAC,CASlL;AAED,wBAAgB,mCAAmC,CAAC,UAAU,EAAE,YAAY,CAAC,MAAM,CAAC,GAAG,MAAM,CAAC,CAAC,sBAAsB,EAAE,CAAC,CAAC,IAAI,EAAE,YAAY,CAAC,MAAM,CAAC,KAAK,oBAAoB,CAAC,CAAC,CAAC,CA4B9K;AAED,wBAAgB,oCAAoC,CAAC,UAAU,EAAE,YAAY,CAAC,MAAM,CAAC,GAAG,MAAM,CAAC,CAAC,sBAAsB,EAAE,CAAC,CAAC,IAAI,EAAE,YAAY,CAAC,MAAM,CAAC,KAAK,oBAAoB,CAAC,CAAC,CAAC,CA4B/K;AAED,wBAAgB,qCAAqC,CAAC,UAAU,EAAE,YAAY,CAAC,MAAM,CAAC,GAAG,MAAM,CAAC,CAAC,sBAAsB,EAAE,CAAC,CAAC,IAAI,EAAE,YAAY,CAAC,MAAM,CAAC,KAAK,oBAAoB,CAAC,CAAC,CAAC,CAqBhL;AAED,wBAAgB,0CAA0C,CAAC,UAAU,EAAE,YAAY,CAAC,MAAM,CAAC,GAAG,MAAM,CAAC,CAAC,sBAAsB,EAAE,CAAC,CAAC,IAAI,EAAE,YAAY,CAAC,MAAM,CAAC,KAAK,oBAAoB,CAAC,CAAC,CAAC,CAgBrL;AAED,wBAAgB,4CAA4C,CAAC,UAAU,EAAE,YAAY,CAAC,MAAM,CAAC,GAAG,MAAM,CAAC,CAAC,sBAAsB,EAAE,CAAC,CAAC,IAAI,EAAE,YAAY,CAAC,MAAM,CAAC,KAAK,oBAAoB,CAAC,CAAC,CAAC,CA4CvL;AAED,wBAAgB,sCAAsC,CAAC,UAAU,EAAE,YAAY,CAAC,MAAM,CAAC,GAAG,MAAM,CAAC,CAAC,sBAAsB,EAAE,CAAC,CAAC,IAAI,EAAE,YAAY,CAAC,MAAM,CAAC,KAAK,oBAAoB,CAAC,CAAC,CAAC,CAOjL;AAED,wBAAgB,eAAe,CAAC,UAAU,EAAE,YAAY,CAAC,MAAM,CAAC,GAAG,CAAC,sBAAsB,EAAE,CAAC,CAAC,IAAI,EAAE,YAAY,CAAC,MAAM,CAAC,KAAK,oBAAoB,CAAC,CAAC,CAwElJ;AAED,wBAAgB,aAAa,CAAC,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,sBAAsB,GAAG,YAAY,CAAC,MAAM,CAAC,CAapG"}
|