@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,13 +1,13 @@
|
|
|
1
|
-
import { toFail, printf } from '../../../node_modules/@fable-org/fable-library-
|
|
2
|
-
import { value
|
|
1
|
+
import { toFail, printf, concat } from '../../../node_modules/@fable-org/fable-library-ts/String.js';
|
|
2
|
+
import { value } from '../../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
3
3
|
import { OntologyAnnotation } from '../../Core/OntologyAnnotation.js';
|
|
4
4
|
import { unitizedFromStringCells, termFromStringCells, dataFromStringCells, freeTextFromStringCells } from './CompositeCell.js';
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
5
|
+
import { defaultOf } from '../../../node_modules/@fable-org/fable-library-ts/Util.js';
|
|
6
|
+
import { CompositeHeader_Parameter, CompositeHeader_Factor, CompositeHeader_Characteristic, CompositeHeader_Component, IOType, CompositeHeader_Input, CompositeHeader_Output, CompositeHeader_Comment$, CompositeHeader, CompositeHeader_FreeText } from '../../Core/Table/CompositeHeader.js';
|
|
7
|
+
import { equalsWith, item, skip, tryFindIndex } from '../../../node_modules/@fable-org/fable-library-ts/Array.js';
|
|
8
8
|
import { ActivePatterns_$007CTSRColumnHeader$007C_$007C, ActivePatterns_$007CTANColumnHeader$007C_$007C, ActivePatterns_$007CUnitColumnHeader$007C_$007C, tryParseParameterColumnHeader, tryParseFactorColumnHeader, tryParseCharacteristicColumnHeader, tryParseComponentColumnHeader, ActivePatterns_$007CInputColumnHeader$007C_$007C, ActivePatterns_$007COutputColumnHeader$007C_$007C, ActivePatterns_$007CComment$007C_$007C } from '../../Core/Helper/Regex.js';
|
|
9
|
-
import { toString } from '../../../node_modules/@fable-org/fable-library-
|
|
10
|
-
import { toArray, delay, append, singleton, empty } from '../../../node_modules/@fable-org/fable-library-
|
|
9
|
+
import { toString } from '../../../node_modules/@fable-org/fable-library-ts/Types.js';
|
|
10
|
+
import { toArray, delay, append, singleton, empty } from '../../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
11
11
|
|
|
12
12
|
function ActivePattern_mergeIDInfo(idSpace1, localID1, idSpace2, localID2) {
|
|
13
13
|
if (idSpace1 !== idSpace2) {
|
|
@@ -17,13 +17,13 @@ function ActivePattern_mergeIDInfo(idSpace1, localID1, idSpace2, localID2) {
|
|
|
17
17
|
toFail(printf("LocalID %s and %s do not match"))(localID1)(localID2);
|
|
18
18
|
}
|
|
19
19
|
return {
|
|
20
|
-
TermAccessionNumber:
|
|
20
|
+
TermAccessionNumber: concat(idSpace1, ":", localID1),
|
|
21
21
|
TermSourceRef: idSpace1
|
|
22
22
|
};
|
|
23
23
|
}
|
|
24
24
|
function ActivePattern_$007CTerm$007C_$007C(categoryParser, f, cellValues) {
|
|
25
25
|
const $007CAC$007C_$007C = categoryParser;
|
|
26
|
-
let matchResult, name, name_1, term1, term2;
|
|
26
|
+
let matchResult = void 0, name = void 0, name_1 = void 0, term1 = void 0, term2 = void 0;
|
|
27
27
|
if (!equalsWith((x, y) => x === y, cellValues, defaultOf()) && cellValues.length === 1) {
|
|
28
28
|
const activePatternResult = $007CAC$007C_$007C(item(0, cellValues));
|
|
29
29
|
if (activePatternResult != null) {
|
|
@@ -63,7 +63,7 @@ function ActivePattern_$007CTerm$007C_$007C(categoryParser, f, cellValues) {
|
|
|
63
63
|
return [f(OntologyAnnotation.create(name_1, term.TermSourceRef, term.TermAccessionNumber)), (cellValues_2) => termFromStringCells(1, 2, cellValues_2)];
|
|
64
64
|
}
|
|
65
65
|
default: {
|
|
66
|
-
let matchResult_1, name_2, term1_1, term2_1;
|
|
66
|
+
let matchResult_1 = void 0, name_2 = void 0, term1_1 = void 0, term2_1 = void 0;
|
|
67
67
|
if (!equalsWith((x_2, y_2) => x_2 === y_2, cellValues, defaultOf()) && cellValues.length === 3) {
|
|
68
68
|
const activePatternResult_4 = $007CAC$007C_$007C(item(0, cellValues));
|
|
69
69
|
if (activePatternResult_4 != null) {
|
|
@@ -93,7 +93,7 @@ function ActivePattern_$007CTerm$007C_$007C(categoryParser, f, cellValues) {
|
|
|
93
93
|
return [f(OntologyAnnotation.create(name_2, term_1.TermSourceRef, term_1.TermAccessionNumber)), (cellValues_3) => termFromStringCells(2, 1, cellValues_3)];
|
|
94
94
|
}
|
|
95
95
|
default: {
|
|
96
|
-
let matchResult_2, name_3, term1_2, term2_2;
|
|
96
|
+
let matchResult_2 = void 0, name_3 = void 0, term1_2 = void 0, term2_2 = void 0;
|
|
97
97
|
if (!equalsWith((x_3, y_3) => x_3 === y_3, cellValues, defaultOf()) && cellValues.length === 4) {
|
|
98
98
|
const activePatternResult_7 = $007CAC$007C_$007C(item(0, cellValues));
|
|
99
99
|
if (activePatternResult_7 != null) {
|
|
@@ -127,7 +127,7 @@ function ActivePattern_$007CTerm$007C_$007C(categoryParser, f, cellValues) {
|
|
|
127
127
|
return [f(OntologyAnnotation.create(name_3, term_2.TermSourceRef, term_2.TermAccessionNumber)), (cellValues_4) => unitizedFromStringCells(1, 2, 3, cellValues_4)];
|
|
128
128
|
}
|
|
129
129
|
default: {
|
|
130
|
-
let matchResult_3, name_4, term1_3, term2_3;
|
|
130
|
+
let matchResult_3 = void 0, name_4 = void 0, term1_3 = void 0, term2_3 = void 0;
|
|
131
131
|
if (!equalsWith((x_4, y_4) => x_4 === y_4, cellValues, defaultOf()) && cellValues.length === 4) {
|
|
132
132
|
const activePatternResult_11 = $007CAC$007C_$007C(item(0, cellValues));
|
|
133
133
|
if (activePatternResult_11 != null) {
|
|
@@ -218,9 +218,13 @@ function ActivePattern_$007CInput$007C_$007C(cellValues) {
|
|
|
218
218
|
const matchValue_1 = IOType.ofString(ioType);
|
|
219
219
|
if (matchValue_1.tag === /* Data */
|
|
220
220
|
2) {
|
|
221
|
-
|
|
222
|
-
const
|
|
223
|
-
|
|
221
|
+
let format;
|
|
222
|
+
const option_1 = tryFindIndex((s) => s.startsWith("Data Format"), cols);
|
|
223
|
+
format = option_1 != null ? 1 + value(option_1) : void 0;
|
|
224
|
+
let selectorFormat;
|
|
225
|
+
const option_3 = tryFindIndex((s_1) => s_1.startsWith("Data Selector Format"), cols);
|
|
226
|
+
selectorFormat = option_3 != null ? 1 + value(option_3) : void 0;
|
|
227
|
+
return [CompositeHeader_Input(IOType.Data), (cellValues_1) => dataFromStringCells(format, selectorFormat, cellValues_1)];
|
|
224
228
|
} else {
|
|
225
229
|
return [CompositeHeader_Input(matchValue_1), freeTextFromStringCells];
|
|
226
230
|
}
|
|
@@ -241,9 +245,13 @@ function ActivePattern_$007COutput$007C_$007C(cellValues) {
|
|
|
241
245
|
const matchValue_1 = IOType.ofString(ioType);
|
|
242
246
|
if (matchValue_1.tag === /* Data */
|
|
243
247
|
2) {
|
|
244
|
-
|
|
245
|
-
const
|
|
246
|
-
|
|
248
|
+
let format;
|
|
249
|
+
const option_1 = tryFindIndex((s) => s.startsWith("Data Format"), cols);
|
|
250
|
+
format = option_1 != null ? 1 + value(option_1) : void 0;
|
|
251
|
+
let selectorFormat;
|
|
252
|
+
const option_3 = tryFindIndex((s_1) => s_1.startsWith("Data Selector Format"), cols);
|
|
253
|
+
selectorFormat = option_3 != null ? 1 + value(option_3) : void 0;
|
|
254
|
+
return [CompositeHeader_Output(IOType.Data), (cellValues_1) => dataFromStringCells(format, selectorFormat, cellValues_1)];
|
|
247
255
|
} else {
|
|
248
256
|
return [CompositeHeader_Output(matchValue_1), freeTextFromStringCells];
|
|
249
257
|
}
|
|
@@ -253,7 +261,7 @@ function ActivePattern_$007COutput$007C_$007C(cellValues) {
|
|
|
253
261
|
}
|
|
254
262
|
}
|
|
255
263
|
function ActivePattern_$007CComment$007C_$007C(cellValues) {
|
|
256
|
-
let matchResult, key;
|
|
264
|
+
let matchResult = void 0, key = void 0;
|
|
257
265
|
if (!equalsWith((x, y) => x === y, cellValues, defaultOf()) && cellValues.length === 1) {
|
|
258
266
|
const activePatternResult = ActivePatterns_$007CComment$007C_$007C(item(0, cellValues));
|
|
259
267
|
if (activePatternResult != null) {
|
|
@@ -267,7 +275,7 @@ function ActivePattern_$007CComment$007C_$007C(cellValues) {
|
|
|
267
275
|
}
|
|
268
276
|
switch (matchResult) {
|
|
269
277
|
case 0:
|
|
270
|
-
return [CompositeHeader_Comment(key), freeTextFromStringCells];
|
|
278
|
+
return [CompositeHeader_Comment$(key), freeTextFromStringCells];
|
|
271
279
|
default:
|
|
272
280
|
return void 0;
|
|
273
281
|
}
|
|
@@ -279,7 +287,7 @@ function ActivePattern_$007CProtocolType$007C_$007C(cellValues) {
|
|
|
279
287
|
} else {
|
|
280
288
|
return void 0;
|
|
281
289
|
}
|
|
282
|
-
}, (_arg) =>
|
|
290
|
+
}, (_arg) => CompositeHeader.ProtocolType, cellValues);
|
|
283
291
|
if (activePatternResult != null) {
|
|
284
292
|
const r = value(activePatternResult);
|
|
285
293
|
return r;
|
|
@@ -288,7 +296,7 @@ function ActivePattern_$007CProtocolType$007C_$007C(cellValues) {
|
|
|
288
296
|
}
|
|
289
297
|
}
|
|
290
298
|
function ActivePattern_$007CProtocolHeader$007C_$007C(cellValues) {
|
|
291
|
-
let matchResult;
|
|
299
|
+
let matchResult = void 0;
|
|
292
300
|
if (!equalsWith((x, y) => x === y, cellValues, defaultOf()) && cellValues.length === 1) {
|
|
293
301
|
if (item(0, cellValues) === "Protocol REF") {
|
|
294
302
|
matchResult = 0;
|
|
@@ -310,17 +318,17 @@ function ActivePattern_$007CProtocolHeader$007C_$007C(cellValues) {
|
|
|
310
318
|
}
|
|
311
319
|
switch (matchResult) {
|
|
312
320
|
case 0:
|
|
313
|
-
return [
|
|
321
|
+
return [CompositeHeader.ProtocolREF, freeTextFromStringCells];
|
|
314
322
|
case 1:
|
|
315
|
-
return [
|
|
323
|
+
return [CompositeHeader.ProtocolDescription, freeTextFromStringCells];
|
|
316
324
|
case 2:
|
|
317
|
-
return [
|
|
325
|
+
return [CompositeHeader.ProtocolUri, freeTextFromStringCells];
|
|
318
326
|
case 3:
|
|
319
|
-
return [
|
|
327
|
+
return [CompositeHeader.ProtocolVersion, freeTextFromStringCells];
|
|
320
328
|
case 4:
|
|
321
|
-
return [
|
|
329
|
+
return [CompositeHeader.Performer, freeTextFromStringCells];
|
|
322
330
|
case 5:
|
|
323
|
-
return [
|
|
331
|
+
return [CompositeHeader.Date$, freeTextFromStringCells];
|
|
324
332
|
default:
|
|
325
333
|
return void 0;
|
|
326
334
|
}
|
|
@@ -401,7 +409,7 @@ function toStringCells(hasUnit, header) {
|
|
|
401
409
|
} else if (header.IsSingleColumn) {
|
|
402
410
|
return [toString(header)];
|
|
403
411
|
} else if (header.IsTermColumn) {
|
|
404
|
-
return toArray(delay(() => append(singleton(toString(header)), delay(() => append(hasUnit ? singleton("Unit") : empty(), delay(() => append(singleton(
|
|
412
|
+
return toArray(delay(() => append(singleton(toString(header)), delay(() => append(hasUnit ? singleton("Unit") : empty(), delay(() => append(singleton(concat("Term Source REF (", header.GetColumnAccessionShort, ")")), delay(() => singleton(concat("Term Accession Number (", header.GetColumnAccessionShort, ")"))))))))));
|
|
405
413
|
} else {
|
|
406
414
|
return toFail(printf("header %O is neither single nor term column"))(header);
|
|
407
415
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { int32 } from '@fable-org/fable-library-
|
|
2
|
-
import { Option } from '@fable-org/fable-library-
|
|
3
|
-
import { ArcAssay } from '../Core/ArcTypes.
|
|
4
|
-
import { FsWorksheet } from '../fable_modules/FsSpreadsheet.7.0.
|
|
5
|
-
import { FsWorkbook } from '../fable_modules/FsSpreadsheet.7.0.
|
|
1
|
+
import { int32 } from '@fable-org/fable-library-ts/Int32.ts';
|
|
2
|
+
import { Option } from '@fable-org/fable-library-ts/Option.ts';
|
|
3
|
+
import { ArcAssay } from '../Core/ArcTypes.ts';
|
|
4
|
+
import { FsWorksheet } from '../fable_modules/FsSpreadsheet.7.0.1/FsWorksheet.fs.js';
|
|
5
|
+
import { FsWorkbook } from '../fable_modules/FsSpreadsheet.7.0.1/FsWorkbook.fs.js';
|
|
6
6
|
export declare function ArcAssay_fromRows(rows: Iterable<Iterable<[int32, string]>>): ArcAssay;
|
|
7
7
|
export declare function ArcAssay_toRows(assay: ArcAssay): Iterable<Iterable<[int32, string]>>;
|
|
8
8
|
export declare function ArcAssay_toMetadataSheet(assay: ArcAssay): FsWorksheet;
|
|
@@ -27,5 +27,5 @@ export declare function ARCtrl_ArcAssay__ArcAssay_toFsWorkbook_Static_Z2508BE4F(
|
|
|
27
27
|
*
|
|
28
28
|
* If datamapSheet is true, the datamap will be written to a worksheet inside assay workbook.
|
|
29
29
|
*/
|
|
30
|
-
export declare function ARCtrl_ArcAssay__ArcAssay_ToFsWorkbook_6FCE9E49(this$: ArcAssay, datamapSheet
|
|
30
|
+
export declare function ARCtrl_ArcAssay__ArcAssay_ToFsWorkbook_6FCE9E49(this$: ArcAssay, datamapSheet?: boolean): FsWorkbook;
|
|
31
31
|
//# sourceMappingURL=ArcAssay.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ArcAssay.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/Spreadsheet/ArcAssay.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ArcAssay.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/Spreadsheet/ArcAssay.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,EAAE,MAAM,sCAAsC,CAAC;AAC7D,OAAO,EAAwC,MAAM,EAAE,MAAM,uCAAuC,CAAC;AAKrG,OAAO,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAK/C,OAAO,EAAE,WAAW,EAAE,MAAM,wDAAwD,CAAC;AAGrF,OAAO,EAAE,UAAU,EAAE,MAAM,uDAAuD,CAAC;AAMnF,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,QAAQ,CAAC,QAAQ,CAAC,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC,CAAC,GAAG,QAAQ,CAkFrF;AAED,wBAAgB,eAAe,CAAC,KAAK,EAAE,QAAQ,GAAG,QAAQ,CAAC,QAAQ,CAAC,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC,CAAC,CAEpF;AAED,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,QAAQ,GAAG,WAAW,CAMrE;AAED,wBAAgB,0BAA0B,CAAC,KAAK,EAAE,WAAW,GAAG,QAAQ,CAavE;AAED,wBAAgB,6BAA6B,CAAC,KAAK,EAAE,QAAQ,GAAG,QAAQ,CAAC,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAEjG;AAED,wBAAgB,+BAA+B,CAAC,UAAU,EAAE,QAAQ,CAAC,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,QAAQ,CAQxG;AAED,wBAAgB,4BAA4B,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAOlE;AAED,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,WAAW,GAAG,OAAO,CAEpE;AAED,wBAAgB,4BAA4B,CAAC,GAAG,EAAE,UAAU,GAAG,MAAM,CAAC,WAAW,CAAC,CAEjF;AAED;;GAEG;AACH,wBAAgB,wDAAwD,CAAC,GAAG,EAAE,UAAU,GAAG,QAAQ,CAwBlG;AAED;;;;GAIG;AACH,wBAAgB,uDAAuD,CAAC,KAAK,EAAE,QAAQ,EAAE,YAAY,CAAC,EAAE,OAAO,GAAG,UAAU,CAiB3H;AAED;;;;GAIG;AACH,wBAAgB,+CAA+C,CAAC,KAAK,EAAE,QAAQ,EAAE,YAAY,CAAC,EAAE,OAAO,GAAG,UAAU,CAEnH"}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { exists, head, tryHead, delay, append, singleton, iterateIndexed, map, tryFind, choose, tryPick, isEmpty as isEmpty$1
|
|
2
|
-
import { value, defaultArg,
|
|
3
|
-
import { getEnumerator } from '../../node_modules/@fable-org/fable-library-
|
|
1
|
+
import { exists, head, tryHead, delay, append, singleton, iterateIndexed, map, tryFind, choose, tryPick, isEmpty as isEmpty$1 } from '../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
2
|
+
import { value, defaultArg, unwrap } from '../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
3
|
+
import { getEnumerator, Exception } from '../../node_modules/@fable-org/fable-library-ts/Util.js';
|
|
4
4
|
import { fromRows as fromRows$1, toRows } from './Metadata/Assays.js';
|
|
5
|
-
import { isEmpty, empty, singleton as singleton$1, ofSeq } from '../../node_modules/@fable-org/fable-library-
|
|
5
|
+
import { isEmpty, empty, singleton as singleton$1, ofSeq } from '../../node_modules/@fable-org/fable-library-ts/List.js';
|
|
6
6
|
import { ArcAssay } from '../Core/ArcTypes.js';
|
|
7
7
|
import { fromRows, toRows as toRows$1 } from './Metadata/Contacts.js';
|
|
8
8
|
import { createMissingIdentifier } from '../Core/Helper/Identifier.js';
|
|
9
9
|
import { SparseRowModule_tryGetValueAt, SparseRowModule_fromValues, SparseRowModule_writeToSheet, SparseRowModule_fromFsRow, SparseRowModule_getAllValues, SparseRowModule_fromAllValues } from './Metadata/SparseTable.js';
|
|
10
|
-
import { FsWorksheet } from '../fable_modules/FsSpreadsheet.7.0.
|
|
11
|
-
import { toFail, printf, toConsole } from '../../node_modules/@fable-org/fable-library-
|
|
12
|
-
import { FsWorkbook } from '../fable_modules/FsSpreadsheet.7.0.
|
|
10
|
+
import { FsWorksheet } from '../fable_modules/FsSpreadsheet.7.0.1/FsWorksheet.fs.js';
|
|
11
|
+
import { toFail, printf, toConsole } from '../../node_modules/@fable-org/fable-library-ts/String.js';
|
|
12
|
+
import { FsWorkbook } from '../fable_modules/FsSpreadsheet.7.0.1/FsWorkbook.fs.js';
|
|
13
13
|
import { tryFromFsWorksheet, toFsWorksheet as toFsWorksheet$1 } from './AnnotationTable/ArcTable.js';
|
|
14
14
|
import { tryFromFsWorksheet as tryFromFsWorksheet$1, toFsWorksheet } from './DatamapTable/DatamapTable.js';
|
|
15
15
|
|
|
@@ -20,11 +20,11 @@ function ArcAssay_fromRows(rows) {
|
|
|
20
20
|
}, rows) ? ["Assay", "Assay Person"] : [void 0, void 0];
|
|
21
21
|
const en = getEnumerator(rows);
|
|
22
22
|
const loop = (lastRow_mut, assays_mut, contacts_mut, rowNumber_mut) => {
|
|
23
|
-
let prefix;
|
|
24
23
|
loop:
|
|
25
24
|
while (true) {
|
|
26
25
|
const lastRow = lastRow_mut, assays = assays_mut, contacts = contacts_mut, rowNumber = rowNumber_mut;
|
|
27
|
-
let
|
|
26
|
+
let prefix = void 0;
|
|
27
|
+
let matchResult = void 0, prefix_2 = void 0, prefix_3 = void 0;
|
|
28
28
|
if (lastRow != null) {
|
|
29
29
|
if (prefix = value(lastRow), prefix === "ASSAY" ? true : prefix === "ASSAY METADATA") {
|
|
30
30
|
matchResult = 0;
|
|
@@ -56,7 +56,7 @@ function ArcAssay_fromRows(rows) {
|
|
|
56
56
|
continue loop;
|
|
57
57
|
}
|
|
58
58
|
default: {
|
|
59
|
-
let matchResult_1, assays_2, contacts_2;
|
|
59
|
+
let matchResult_1 = void 0, assays_2 = void 0, contacts_2 = void 0;
|
|
60
60
|
if (isEmpty(assays)) {
|
|
61
61
|
if (isEmpty(contacts)) {
|
|
62
62
|
matchResult_1 = 0;
|
|
@@ -87,7 +87,7 @@ function ArcAssay_fromRows(rows) {
|
|
|
87
87
|
if (en["System.Collections.IEnumerator.MoveNext"]()) {
|
|
88
88
|
return loop(SparseRowModule_tryGetValueAt(0, en["System.Collections.Generic.IEnumerator`1.get_Current"]()), empty(), empty(), 1);
|
|
89
89
|
} else {
|
|
90
|
-
throw new
|
|
90
|
+
throw new Exception("empty assay metadata sheet");
|
|
91
91
|
}
|
|
92
92
|
}
|
|
93
93
|
function ArcAssay_toRows(assay) {
|
|
@@ -103,7 +103,7 @@ function ArcAssay_toMetadataSheet(assay) {
|
|
|
103
103
|
function ArcAssay_fromMetadataSheet(sheet) {
|
|
104
104
|
try {
|
|
105
105
|
const rows = map(SparseRowModule_fromFsRow, sheet.Rows);
|
|
106
|
-
|
|
106
|
+
exists((row) => {
|
|
107
107
|
const s = head(row)[1];
|
|
108
108
|
return s.startsWith("Assay");
|
|
109
109
|
}, rows);
|
|
@@ -166,10 +166,11 @@ function ARCtrl_ArcAssay__ArcAssay_toFsWorkbook_Static_Z2508BE4F(assay, datamapS
|
|
|
166
166
|
const metadataSheet = ArcAssay_toMetadataSheet(assay);
|
|
167
167
|
doc.AddWorksheet(metadataSheet);
|
|
168
168
|
if (datamapSheet_1) {
|
|
169
|
-
|
|
170
|
-
|
|
169
|
+
const option_1 = assay.Datamap;
|
|
170
|
+
if (option_1 != null) {
|
|
171
|
+
const sheet = toFsWorksheet(value(option_1));
|
|
171
172
|
doc.AddWorksheet(sheet);
|
|
172
|
-
}
|
|
173
|
+
}
|
|
173
174
|
}
|
|
174
175
|
iterateIndexed((i, arg_1) => {
|
|
175
176
|
const sheet_1 = toFsWorksheet$1(i, arg_1);
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { Record } from '@fable-org/fable-library-
|
|
2
|
-
import { FSharpList } from '@fable-org/fable-library-
|
|
3
|
-
import { Remark, Comment$ } from '../Core/Comment.
|
|
4
|
-
import { IEnumerator, IEquatable } from '@fable-org/fable-library-
|
|
5
|
-
import { TypeInfo } from '@fable-org/fable-library-
|
|
6
|
-
import { SparseTable } from './Metadata/SparseTable.
|
|
7
|
-
import { int32 } from '@fable-org/fable-library-
|
|
8
|
-
import { Option } from '@fable-org/fable-library-
|
|
9
|
-
import { ArcAssay, ArcStudy, ArcInvestigation } from '../Core/ArcTypes.
|
|
10
|
-
import { OntologySourceReference } from '../Core/OntologySourceReference.
|
|
11
|
-
import { Publication } from '../Core/Publication.
|
|
12
|
-
import { Person } from '../Core/Person.
|
|
13
|
-
import { FsWorksheet } from '../fable_modules/FsSpreadsheet.7.0.
|
|
14
|
-
import { FsWorkbook } from '../fable_modules/FsSpreadsheet.7.0.
|
|
1
|
+
import { Record } from '@fable-org/fable-library-ts/Types.ts';
|
|
2
|
+
import { FSharpList } from '@fable-org/fable-library-ts/List.ts';
|
|
3
|
+
import { Remark, Comment$ } from '../Core/Comment.ts';
|
|
4
|
+
import { IEnumerator, IEquatable } from '@fable-org/fable-library-ts/Util.ts';
|
|
5
|
+
import { TypeInfo } from '@fable-org/fable-library-ts/Reflection.ts';
|
|
6
|
+
import { SparseTable } from './Metadata/SparseTable.ts';
|
|
7
|
+
import { int32 } from '@fable-org/fable-library-ts/Int32.ts';
|
|
8
|
+
import { Option } from '@fable-org/fable-library-ts/Option.ts';
|
|
9
|
+
import { ArcAssay, ArcStudy, ArcInvestigation } from '../Core/ArcTypes.ts';
|
|
10
|
+
import { OntologySourceReference } from '../Core/OntologySourceReference.ts';
|
|
11
|
+
import { Publication } from '../Core/Publication.ts';
|
|
12
|
+
import { Person } from '../Core/Person.ts';
|
|
13
|
+
import { FsWorksheet } from '../fable_modules/FsSpreadsheet.7.0.1/FsWorksheet.fs.js';
|
|
14
|
+
import { FsWorkbook } from '../fable_modules/FsSpreadsheet.7.0.1/FsWorkbook.fs.js';
|
|
15
15
|
export declare class ArcInvestigation_InvestigationInfo extends Record implements IEquatable<ArcInvestigation_InvestigationInfo> {
|
|
16
16
|
readonly Identifier: string;
|
|
17
17
|
readonly Title: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ArcInvestigation.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/Spreadsheet/ArcInvestigation.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ArcInvestigation.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/Spreadsheet/ArcInvestigation.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,sCAAsC,CAAC;AAC9D,OAAO,EAAsG,UAAU,EAAE,MAAM,qCAAqC,CAAC;AACrK,OAAO,EAAE,MAAM,EAAwB,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAC5E,OAAO,EAA+C,WAAW,EAAc,UAAU,EAAE,MAAM,qCAAqC,CAAC;AACvI,OAAO,EAAuC,QAAQ,EAAE,MAAM,2CAA2C,CAAC;AAE1G,OAAO,EAA8Q,WAAW,EAA4C,MAAM,2BAA2B,CAAC;AAC9W,OAAO,EAAE,KAAK,EAAE,MAAM,sCAAsC,CAAC;AAE7D,OAAO,EAAoB,MAAM,EAAc,MAAM,uCAAuC,CAAC;AAG7F,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAC3E,OAAO,EAAE,uBAAuB,EAAE,MAAM,oCAAoC,CAAC;AAC7E,OAAO,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAO3C,OAAO,EAAE,WAAW,EAAE,MAAM,wDAAwD,CAAC;AACrF,OAAO,EAAE,UAAU,EAAE,MAAM,uDAAuD,CAAC;AAInF,qBAAa,kCAAmC,SAAQ,MAAO,YAAW,UAAU,CAAC,kCAAkC,CAAC;IACpH,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAC;IAChC,QAAQ,CAAC,iBAAiB,EAAE,MAAM,CAAC;IACnC,QAAQ,CAAC,QAAQ,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC;gBAC5B,UAAU,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,EAAE,iBAAiB,EAAE,MAAM,EAAE,QAAQ,EAAE,UAAU,CAAC,QAAQ,CAAC;CASxJ;AAED,wBAAgB,8CAA8C,IAAI,QAAQ,CAEzE;AAED,wBAAgB,yCAAyC,CAAC,UAAU,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,EAAE,iBAAiB,EAAE,MAAM,EAAE,QAAQ,EAAE,UAAU,CAAC,QAAQ,CAAC,GAAG,kCAAkC,CAEvO;AAED,wBAAgB,6CAA6C,IAAI,UAAU,CAAC,MAAM,CAAC,CAElF;AAED,wBAAgB,2DAA2D,CAAC,MAAM,EAAE,WAAW,GAAG,kCAAkC,CAGnI;AAED,wBAAgB,0DAA0D,CAAC,aAAa,EAAE,gBAAgB,GAAG,WAAW,CAkBvH;AAED,wBAAgB,2CAA2C,CAAC,UAAU,EAAE,KAAK,EAAE,IAAI,EAAE,WAAW,CAAC,QAAQ,CAAC,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,KAAK,EAAE,UAAU,CAAC,MAAM,CAAC,EAAE,kCAAkC,CAAC,CAG5M;AAED,wBAAgB,mDAAmD,CAAC,aAAa,EAAE,gBAAgB,GAAG,QAAQ,CAAC,QAAQ,CAAC,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC,CAAC,CAExI;AAED,wBAAgB,0BAA0B,CAAC,iBAAiB,EAAE,kCAAkC,EAAE,uBAAuB,EAAE,UAAU,CAAC,uBAAuB,CAAC,EAAE,YAAY,EAAE,UAAU,CAAC,WAAW,CAAC,EAAE,QAAQ,EAAE,UAAU,CAAC,MAAM,CAAC,EAAE,OAAO,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,OAAO,EAAE,UAAU,CAAC,MAAM,CAAC,GAAG,gBAAgB,CAe/U;AAED,wBAAgB,yBAAyB,CAAC,IAAI,EAAE,QAAQ,CAAC,QAAQ,CAAC,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC,CAAC,GAAG,gBAAgB,CA2JrG;AAED,wBAAgB,uBAAuB,CAAC,aAAa,EAAE,gBAAgB,GAAG,QAAQ,CAAC,QAAQ,CAAC,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC,CAAC,CA0C5G;AAED,wBAAgB,qCAAqC,CAAC,aAAa,EAAE,gBAAgB,GAAG,QAAQ,CAAC,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAEzH;AAED,wBAAgB,uCAAuC,CAAC,UAAU,EAAE,QAAQ,CAAC,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,gBAAgB,CAExH;AAED,wBAAgB,oCAAoC,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAO1E;AAED,wBAAgB,gCAAgC,CAAC,KAAK,EAAE,WAAW,GAAG,OAAO,CAE5E;AAED,wBAAgB,oCAAoC,CAAC,GAAG,EAAE,UAAU,GAAG,MAAM,CAAC,WAAW,CAAC,CAEzF;AAED,wBAAgB,wEAAwE,CAAC,GAAG,EAAE,UAAU,GAAG,gBAAgB,CAW1H;AAED,wBAAgB,uEAAuE,CAAC,aAAa,EAAE,gBAAgB,GAAG,UAAU,CAcnI;AAED,wBAAgB,sDAAsD,CAAC,KAAK,EAAE,gBAAgB,GAAG,UAAU,CAE1G"}
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
import { Record } from '../../node_modules/@fable-org/fable-library-
|
|
2
|
-
import { ofArray, map, empty, cons, reverse, unzip, concat, append, ofSeq, isEmpty as isEmpty$1, tail, head } from '../../node_modules/@fable-org/fable-library-
|
|
1
|
+
import { Record } from '../../node_modules/@fable-org/fable-library-ts/Types.js';
|
|
2
|
+
import { ofArray, map, empty, cons, reverse, unzip, concat, append, ofSeq, isEmpty as isEmpty$1, tail, head } from '../../node_modules/@fable-org/fable-library-ts/List.js';
|
|
3
3
|
import { Comment$_$reflection, Remark } from '../Core/Comment.js';
|
|
4
|
-
import { stringHash, getEnumerator, comparePrimitives } from '../../node_modules/@fable-org/fable-library-
|
|
5
|
-
import { record_type, string_type, list_type } from '../../node_modules/@fable-org/fable-library-
|
|
4
|
+
import { stringHash, Exception, getEnumerator, comparePrimitives } from '../../node_modules/@fable-org/fable-library-ts/Util.js';
|
|
5
|
+
import { record_type, string_type, list_type } from '../../node_modules/@fable-org/fable-library-ts/Reflection.js';
|
|
6
6
|
import { Comment_fromString, Comment_toString, Remark_wrapRemark } from './Metadata/Comment.js';
|
|
7
7
|
import { SparseTable__TryGetValueDefault_5BAE6133, SparseTable_Create_Z2192E64B, SparseTable, SparseTable_FromRows_Z5579EC29, SparseTable_ToRows_759CAFC1, SparseRowModule_tryGetValueAt, SparseRowModule_fromValues, SparseRowModule_getAllValues, SparseRowModule_fromAllValues, SparseRowModule_fromFsRow, SparseRowModule_writeToSheet } from './Metadata/SparseTable.js';
|
|
8
|
-
import { addToDict } from '../../node_modules/@fable-org/fable-library-
|
|
9
|
-
import { defaultArg, value } from '../../node_modules/@fable-org/fable-library-
|
|
8
|
+
import { addToDict } from '../../node_modules/@fable-org/fable-library-ts/MapUtil.js';
|
|
9
|
+
import { defaultArg, value } from '../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
10
10
|
import { ResizeArray_iter, Option_fromValueWithDefault } from '../Core/Helper/Collections.js';
|
|
11
|
-
import { List_distinct, List_distinctBy } from '../../node_modules/@fable-org/fable-library-
|
|
11
|
+
import { List_distinct, List_distinctBy } from '../../node_modules/@fable-org/fable-library-ts/Seq2.js';
|
|
12
12
|
import { ArcInvestigation, ArcStudy } from '../Core/ArcTypes.js';
|
|
13
|
-
import { isEmpty, delay, append as append$1, singleton, collect, toList, map as map$1, tryFind as tryFind$1, iterateIndexed } from '../../node_modules/@fable-org/fable-library-
|
|
13
|
+
import { isEmpty, delay, append as append$1, singleton, collect, toList, map as map$1, tryFind as tryFind$1, iterateIndexed } from '../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
14
14
|
import { fromRows as fromRows$3, toRows } from './Metadata/OntologySourceReference.js';
|
|
15
15
|
import { fromRows as fromRows$2, toRows as toRows$1 } from './Metadata/Publication.js';
|
|
16
16
|
import { fromRows as fromRows$1, toRows as toRows$2 } from './Metadata/Contacts.js';
|
|
17
17
|
import { fromRows, toRows as toRows$3 } from './Metadata/Study.js';
|
|
18
|
-
import { ofList, tryFind } from '../../node_modules/@fable-org/fable-library-
|
|
19
|
-
import { FsWorksheet } from '../fable_modules/FsSpreadsheet.7.0.
|
|
20
|
-
import { FsWorkbook } from '../fable_modules/FsSpreadsheet.7.0.
|
|
21
|
-
import { toFail, printf } from '../../node_modules/@fable-org/fable-library-
|
|
18
|
+
import { ofList, tryFind } from '../../node_modules/@fable-org/fable-library-ts/Map.js';
|
|
19
|
+
import { FsWorksheet } from '../fable_modules/FsSpreadsheet.7.0.1/FsWorksheet.fs.js';
|
|
20
|
+
import { FsWorkbook } from '../fable_modules/FsSpreadsheet.7.0.1/FsWorkbook.fs.js';
|
|
21
|
+
import { toFail, printf } from '../../node_modules/@fable-org/fable-library-ts/String.js';
|
|
22
22
|
|
|
23
23
|
class ArcInvestigation_InvestigationInfo extends Record {
|
|
24
24
|
constructor(Identifier, Title, Description, SubmissionDate, PublicReleaseDate, Comments) {
|
|
@@ -60,7 +60,7 @@ function ArcInvestigation_InvestigationInfo_ToSparseTable_Z720BD3FF(investigatio
|
|
|
60
60
|
}, investigation.Comments);
|
|
61
61
|
return new SparseTable(matrix.Matrix, matrix.Keys, reverse(List_distinct(commentKeys, {
|
|
62
62
|
Equals: (x, y) => x === y,
|
|
63
|
-
GetHashCode: stringHash
|
|
63
|
+
GetHashCode: (x) => stringHash(x) | 0
|
|
64
64
|
})), matrix.ColumnCount);
|
|
65
65
|
}
|
|
66
66
|
function ArcInvestigation_InvestigationInfo_fromRows(lineNumber, rows) {
|
|
@@ -88,7 +88,7 @@ function ArcInvestigation_fromParts(investigationInfo, ontologySourceReference,
|
|
|
88
88
|
}
|
|
89
89
|
function ArcInvestigation_fromRows(rows) {
|
|
90
90
|
if (isEmpty(rows)) {
|
|
91
|
-
throw new
|
|
91
|
+
throw new Exception("isa_investigation sheet in Investigation file is empty");
|
|
92
92
|
}
|
|
93
93
|
const en = getEnumerator(rows);
|
|
94
94
|
const emptyInvestigationInfo = ArcInvestigation_InvestigationInfo_create("", "", "", "", "", empty());
|
|
@@ -96,7 +96,7 @@ function ArcInvestigation_fromRows(rows) {
|
|
|
96
96
|
loop:
|
|
97
97
|
while (true) {
|
|
98
98
|
const lastLine = lastLine_mut, ontologySourceReferences = ontologySourceReferences_mut, investigationInfo = investigationInfo_mut, publications = publications_mut, contacts = contacts_mut, studies = studies_mut, remarks = remarks_mut, lineNumber = lineNumber_mut;
|
|
99
|
-
let matchResult, k_5, k_6, k_7, k_8, k_9;
|
|
99
|
+
let matchResult = void 0, k_5 = void 0, k_6 = void 0, k_7 = void 0, k_8 = void 0, k_9 = void 0;
|
|
100
100
|
if (lastLine != null) {
|
|
101
101
|
switch (value(lastLine)) {
|
|
102
102
|
case "ONTOLOGY SOURCE REFERENCE": {
|
|
@@ -223,7 +223,7 @@ function ArcInvestigation_fromRows(rows) {
|
|
|
223
223
|
const tupledArg = unzip(studies);
|
|
224
224
|
patternInput_5 = [reverse(tupledArg[0]), List_distinctBy((a_1) => a_1.Identifier, concat(tupledArg[1]), {
|
|
225
225
|
Equals: (x, y) => x === y,
|
|
226
|
-
GetHashCode: stringHash
|
|
226
|
+
GetHashCode: (x) => stringHash(x) | 0
|
|
227
227
|
})];
|
|
228
228
|
return ArcInvestigation_fromParts(investigationInfo, ontologySourceReferences, publications, contacts, patternInput_5[0], patternInput_5[1], remarks);
|
|
229
229
|
}
|
|
@@ -235,19 +235,19 @@ function ArcInvestigation_fromRows(rows) {
|
|
|
235
235
|
en["System.Collections.IEnumerator.MoveNext"]();
|
|
236
236
|
arcInvestigation = loop(SparseRowModule_tryGetValueAt(0, en["System.Collections.Generic.IEnumerator`1.get_Current"]()), empty(), emptyInvestigationInfo, empty(), empty(), empty(), empty(), 1);
|
|
237
237
|
if (arcInvestigation.Identifier === "") {
|
|
238
|
-
throw new
|
|
238
|
+
throw new Exception("Mandatory Investigation identifier is not present");
|
|
239
239
|
}
|
|
240
240
|
return arcInvestigation;
|
|
241
241
|
}
|
|
242
242
|
function ArcInvestigation_toRows(investigation) {
|
|
243
|
-
let remarks, rows;
|
|
243
|
+
let remarks = void 0, rows = void 0;
|
|
244
244
|
return remarks = ofSeq(investigation.Remarks), rows = delay(() => append$1(singleton(SparseRowModule_fromValues(["ONTOLOGY SOURCE REFERENCE"])), delay(() => append$1(toRows(ofSeq(investigation.OntologySourceReferences)), delay(() => append$1(singleton(SparseRowModule_fromValues(["INVESTIGATION"])), delay(() => append$1(ArcInvestigation_InvestigationInfo_toRows_Z720BD3FF(investigation), delay(() => append$1(singleton(SparseRowModule_fromValues(["INVESTIGATION PUBLICATIONS"])), delay(() => append$1(toRows$1("Investigation Publication", ofSeq(investigation.Publications)), delay(() => append$1(singleton(SparseRowModule_fromValues(["INVESTIGATION CONTACTS"])), delay(() => append$1(toRows$2("Investigation Person", ofSeq(investigation.Contacts)), delay(() => collect((studyIdentifier) => {
|
|
245
245
|
const study = defaultArg(investigation.TryGetStudy(studyIdentifier), new ArcStudy(studyIdentifier));
|
|
246
246
|
return append$1(singleton(SparseRowModule_fromValues(["STUDY"])), delay(() => toRows$3(study, void 0)));
|
|
247
247
|
}, investigation.RegisteredStudyIdentifiers)))))))))))))))))), (() => {
|
|
248
248
|
try {
|
|
249
249
|
const rm = ofList(map((remark) => Remark.toTuple(remark), remarks), {
|
|
250
|
-
Compare: comparePrimitives
|
|
250
|
+
Compare: (x, y) => comparePrimitives(x, y) | 0
|
|
251
251
|
});
|
|
252
252
|
const loop = (i_mut, l_mut, nl_mut) => {
|
|
253
253
|
loop:
|
|
@@ -299,10 +299,10 @@ function ArcInvestigation_tryGetMetadataSheet(doc) {
|
|
|
299
299
|
return tryFind$1(ArcInvestigation_isMetadataSheet, doc.GetWorksheets());
|
|
300
300
|
}
|
|
301
301
|
function ARCtrl_ArcInvestigation__ArcInvestigation_fromFsWorkbook_Static_32154C9D(doc) {
|
|
302
|
-
let sheet_1, matchValue;
|
|
302
|
+
let sheet_1 = void 0, matchValue = void 0;
|
|
303
303
|
try {
|
|
304
304
|
return ArcInvestigation_fromRows(map$1(SparseRowModule_fromFsRow, (sheet_1 = (matchValue = ArcInvestigation_tryGetMetadataSheet(doc), matchValue == null ? (() => {
|
|
305
|
-
throw new
|
|
305
|
+
throw new Exception('Could not find metadata sheet with sheetname "isa_investigation" or deprecated sheetname "Investigation"');
|
|
306
306
|
})() : value(matchValue)), FsWorksheet.getRows(sheet_1))));
|
|
307
307
|
} catch (err) {
|
|
308
308
|
const arg = err.message;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { int32 } from '@fable-org/fable-library-
|
|
2
|
-
import { Option } from '@fable-org/fable-library-
|
|
3
|
-
import { ArcRun } from '../Core/ArcTypes.
|
|
4
|
-
import { FsWorksheet } from '../fable_modules/FsSpreadsheet.7.0.
|
|
5
|
-
import { FsWorkbook } from '../fable_modules/FsSpreadsheet.7.0.
|
|
1
|
+
import { int32 } from '@fable-org/fable-library-ts/Int32.ts';
|
|
2
|
+
import { Option } from '@fable-org/fable-library-ts/Option.ts';
|
|
3
|
+
import { ArcRun } from '../Core/ArcTypes.ts';
|
|
4
|
+
import { FsWorksheet } from '../fable_modules/FsSpreadsheet.7.0.1/FsWorksheet.fs.js';
|
|
5
|
+
import { FsWorkbook } from '../fable_modules/FsSpreadsheet.7.0.1/FsWorkbook.fs.js';
|
|
6
6
|
export declare function ArcRun_fromRows(rows: Iterable<Iterable<[int32, string]>>): ArcRun;
|
|
7
7
|
export declare function ArcRun_toRows(run: ArcRun): Iterable<Iterable<[int32, string]>>;
|
|
8
8
|
export declare function ArcRun_toMetadataSheet(run: ArcRun): FsWorksheet;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ArcRun.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/Spreadsheet/ArcRun.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ArcRun.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/Spreadsheet/ArcRun.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,EAAE,MAAM,sCAAsC,CAAC;AAE7D,OAAO,EAAoB,MAAM,EAAE,MAAM,uCAAuC,CAAC;AAGjF,OAAO,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAM7C,OAAO,EAAE,WAAW,EAAE,MAAM,wDAAwD,CAAC;AAGrF,OAAO,EAAE,UAAU,EAAE,MAAM,uDAAuD,CAAC;AAMnF,wBAAgB,eAAe,CAAC,IAAI,EAAE,QAAQ,CAAC,QAAQ,CAAC,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC,CAAC,GAAG,MAAM,CA8DjF;AAED,wBAAgB,aAAa,CAAC,GAAG,EAAE,MAAM,GAAG,QAAQ,CAAC,QAAQ,CAAC,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC,CAAC,CAE9E;AAED,wBAAgB,sBAAsB,CAAC,GAAG,EAAE,MAAM,GAAG,WAAW,CAM/D;AAED,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,WAAW,GAAG,MAAM,CAQnE;AAED,wBAAgB,2BAA2B,CAAC,GAAG,EAAE,MAAM,GAAG,QAAQ,CAAC,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAE3F;AAED,wBAAgB,6BAA6B,CAAC,UAAU,EAAE,QAAQ,CAAC,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,MAAM,CAQpG;AAED,wBAAgB,0BAA0B,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAEhE;AAED,wBAAgB,sBAAsB,CAAC,KAAK,EAAE,WAAW,GAAG,OAAO,CAElE;AAED,wBAAgB,0BAA0B,CAAC,GAAG,EAAE,UAAU,GAAG,MAAM,CAAC,WAAW,CAAC,CAE/E;AAED;;GAEG;AACH,wBAAgB,oDAAoD,CAAC,GAAG,EAAE,UAAU,GAAG,MAAM,CAwB5F;AAED;;GAEG;AACH,wBAAgB,mDAAmD,CAAC,GAAG,EAAE,MAAM,GAAG,UAAU,CAS3F;AAED;;GAEG;AACH,wBAAgB,kCAAkC,CAAC,KAAK,EAAE,MAAM,GAAG,UAAU,CAE5E"}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { getEnumerator } from '../../node_modules/@fable-org/fable-library-
|
|
1
|
+
import { getEnumerator, Exception } from '../../node_modules/@fable-org/fable-library-ts/Util.js';
|
|
2
2
|
import { fromRows as fromRows$1, toRows } from './Metadata/Run.js';
|
|
3
|
-
import { value } from '../../node_modules/@fable-org/fable-library-
|
|
4
|
-
import { empty, ofSeq } from '../../node_modules/@fable-org/fable-library-
|
|
3
|
+
import { value } from '../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
4
|
+
import { empty, ofSeq } from '../../node_modules/@fable-org/fable-library-ts/List.js';
|
|
5
5
|
import { ArcRun } from '../Core/ArcTypes.js';
|
|
6
6
|
import { fromRows, toRows as toRows$1 } from './Metadata/Contacts.js';
|
|
7
7
|
import { createMissingIdentifier } from '../Core/Helper/Identifier.js';
|
|
8
8
|
import { SparseRowModule_tryGetValueAt, SparseRowModule_fromValues, SparseRowModule_writeToSheet, SparseRowModule_fromFsRow, SparseRowModule_getAllValues, SparseRowModule_fromAllValues } from './Metadata/SparseTable.js';
|
|
9
|
-
import { delay, append, singleton, iterateIndexed, map, tryFind, choose, tryPick, isEmpty } from '../../node_modules/@fable-org/fable-library-
|
|
10
|
-
import { FsWorksheet } from '../fable_modules/FsSpreadsheet.7.0.
|
|
11
|
-
import { toFail, printf, toConsole } from '../../node_modules/@fable-org/fable-library-
|
|
12
|
-
import { FsWorkbook } from '../fable_modules/FsSpreadsheet.7.0.
|
|
9
|
+
import { delay, append, singleton, iterateIndexed, map, tryFind, choose, tryPick, isEmpty } from '../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
10
|
+
import { FsWorksheet } from '../fable_modules/FsSpreadsheet.7.0.1/FsWorksheet.fs.js';
|
|
11
|
+
import { toFail, printf, toConsole } from '../../node_modules/@fable-org/fable-library-ts/String.js';
|
|
12
|
+
import { FsWorkbook } from '../fable_modules/FsSpreadsheet.7.0.1/FsWorkbook.fs.js';
|
|
13
13
|
import { tryFromFsWorksheet, toFsWorksheet } from './AnnotationTable/ArcTable.js';
|
|
14
14
|
import { tryFromFsWorksheet as tryFromFsWorksheet$1 } from './DatamapTable/DatamapTable.js';
|
|
15
15
|
|
|
@@ -19,7 +19,7 @@ function ArcRun_fromRows(rows) {
|
|
|
19
19
|
loop:
|
|
20
20
|
while (true) {
|
|
21
21
|
const lastRow = lastRow_mut, run = run_mut, performers = performers_mut, rowNumber = rowNumber_mut;
|
|
22
|
-
let matchResult, prefix_2, prefix_3;
|
|
22
|
+
let matchResult = void 0, prefix_2 = void 0, prefix_3 = void 0;
|
|
23
23
|
if (lastRow != null) {
|
|
24
24
|
switch (value(lastRow)) {
|
|
25
25
|
case "RUN": {
|
|
@@ -70,7 +70,7 @@ function ArcRun_fromRows(rows) {
|
|
|
70
70
|
if (en["System.Collections.IEnumerator.MoveNext"]()) {
|
|
71
71
|
return loop(SparseRowModule_tryGetValueAt(0, en["System.Collections.Generic.IEnumerator`1.get_Current"]()), void 0, empty(), 1);
|
|
72
72
|
} else {
|
|
73
|
-
throw new
|
|
73
|
+
throw new Exception("empty run metadata sheet");
|
|
74
74
|
}
|
|
75
75
|
}
|
|
76
76
|
function ArcRun_toRows(run) {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { FsWorksheet } from '../fable_modules/FsSpreadsheet.7.0.
|
|
2
|
-
import { int32 } from '@fable-org/fable-library-
|
|
3
|
-
import { ArcAssay, ArcStudy } from '../Core/ArcTypes.
|
|
4
|
-
import { Option } from '@fable-org/fable-library-
|
|
5
|
-
import { FSharpList } from '@fable-org/fable-library-
|
|
6
|
-
import { FsWorkbook } from '../fable_modules/FsSpreadsheet.7.0.
|
|
1
|
+
import { FsWorksheet } from '../fable_modules/FsSpreadsheet.7.0.1/FsWorksheet.fs.js';
|
|
2
|
+
import { int32 } from '@fable-org/fable-library-ts/Int32.ts';
|
|
3
|
+
import { ArcAssay, ArcStudy } from '../Core/ArcTypes.ts';
|
|
4
|
+
import { Option } from '@fable-org/fable-library-ts/Option.ts';
|
|
5
|
+
import { FSharpList } from '@fable-org/fable-library-ts/List.ts';
|
|
6
|
+
import { FsWorkbook } from '../fable_modules/FsSpreadsheet.7.0.1/FsWorkbook.fs.js';
|
|
7
7
|
export declare function ArcStudy_toMetadataSheet(study: ArcStudy, assays: Option<FSharpList<ArcAssay>>): FsWorksheet;
|
|
8
8
|
export declare function ArcStudy_fromRows(rows: Iterable<Iterable<[int32, string]>>): Option<[ArcStudy, FSharpList<ArcAssay>]>;
|
|
9
9
|
export declare function ArcStudy_fromMetadataSheet(sheet: FsWorksheet): [ArcStudy, FSharpList<ArcAssay>];
|
|
@@ -22,5 +22,5 @@ export declare function ARCtrl_ArcStudy__ArcStudy_fromFsWorkbook_Static_32154C9D
|
|
|
22
22
|
* If datamapSheet is true, the datamap will be written to a worksheet inside study workbook. Default: true
|
|
23
23
|
*/
|
|
24
24
|
export declare function ARCtrl_ArcStudy__ArcStudy_toFsWorkbook_Static_Z4CEFA522(study: ArcStudy, assays?: FSharpList<ArcAssay>, datamapSheet?: boolean): FsWorkbook;
|
|
25
|
-
export declare function ARCtrl_ArcStudy__ArcStudy_ToFsWorkbook_257FC1F0(this$: ArcStudy, assays
|
|
25
|
+
export declare function ARCtrl_ArcStudy__ArcStudy_ToFsWorkbook_257FC1F0(this$: ArcStudy, assays?: FSharpList<ArcAssay>, datamapSheet?: boolean): FsWorkbook;
|
|
26
26
|
//# sourceMappingURL=ArcStudy.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ArcStudy.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/Spreadsheet/ArcStudy.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ArcStudy.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/Spreadsheet/ArcStudy.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,wDAAwD,CAAC;AAGrF,OAAO,EAAE,KAAK,EAAE,MAAM,sCAAsC,CAAC;AAE7D,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,EAAwC,MAAM,EAAE,MAAM,uCAAuC,CAAC;AACrG,OAAO,EAAS,UAAU,EAAE,MAAM,qCAAqC,CAAC;AAKxE,OAAO,EAAE,UAAU,EAAE,MAAM,uDAAuD,CAAC;AAOnF,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,GAAG,WAAW,CAO3G;AAED,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,QAAQ,CAAC,QAAQ,CAAC,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,QAAQ,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,CAAC,CAIrH;AAED,wBAAgB,0BAA0B,CAAC,KAAK,EAAE,WAAW,GAAG,CAAC,QAAQ,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,CAQ/F;AAED,wBAAgB,6BAA6B,CAAC,KAAK,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,GAAG,QAAQ,CAAC,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAGvI;AAED,wBAAgB,+BAA+B,CAAC,UAAU,EAAE,QAAQ,CAAC,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,QAAQ,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,CAQhI;AAED,wBAAgB,4BAA4B,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAOlE;AAED,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,WAAW,GAAG,OAAO,CAEpE;AAED,wBAAgB,4BAA4B,CAAC,GAAG,EAAE,UAAU,GAAG,MAAM,CAAC,WAAW,CAAC,CAEjF;AAED;;GAEG;AACH,wBAAgB,wDAAwD,CAAC,GAAG,EAAE,UAAU,GAAG,CAAC,QAAQ,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,CAyB1H;AAED;;;;GAIG;AACH,wBAAgB,uDAAuD,CAAC,KAAK,EAAE,QAAQ,EAAE,MAAM,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,YAAY,CAAC,EAAE,OAAO,GAAG,UAAU,CAiB1J;AAED,wBAAgB,+CAA+C,CAAC,KAAK,EAAE,QAAQ,EAAE,MAAM,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,YAAY,CAAC,EAAE,OAAO,GAAG,UAAU,CAElJ"}
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { FsWorksheet } from '../fable_modules/FsSpreadsheet.7.0.
|
|
2
|
-
import { iterateIndexed, append, map, tryFind, tryPick
|
|
1
|
+
import { FsWorksheet } from '../fable_modules/FsSpreadsheet.7.0.1/FsWorksheet.fs.js';
|
|
2
|
+
import { iterateIndexed, append, map, tryFind, tryPick } from '../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
3
3
|
import { SparseRowModule_writeToSheet, SparseRowModule_fromValues, SparseRowModule_fromFsRow, SparseRowModule_getAllValues, SparseRowModule_fromAllValues } from './Metadata/SparseTable.js';
|
|
4
4
|
import { toRows, fromRows } from './Metadata/Study.js';
|
|
5
5
|
import { ArcStudy } from '../Core/ArcTypes.js';
|
|
6
|
-
import { defaultArg, value,
|
|
7
|
-
import { empty } from '../../node_modules/@fable-org/fable-library-
|
|
8
|
-
import { getEnumerator } from '../../node_modules/@fable-org/fable-library-
|
|
9
|
-
import { toFail, printf, toConsole } from '../../node_modules/@fable-org/fable-library-
|
|
6
|
+
import { defaultArg, value, unwrap } from '../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
7
|
+
import { empty } from '../../node_modules/@fable-org/fable-library-ts/List.js';
|
|
8
|
+
import { getEnumerator } from '../../node_modules/@fable-org/fable-library-ts/Util.js';
|
|
9
|
+
import { toFail, printf, toConsole } from '../../node_modules/@fable-org/fable-library-ts/String.js';
|
|
10
10
|
import { createMissingIdentifier } from '../Core/Helper/Identifier.js';
|
|
11
|
-
import { FsWorkbook } from '../fable_modules/FsSpreadsheet.7.0.
|
|
11
|
+
import { FsWorkbook } from '../fable_modules/FsSpreadsheet.7.0.1/FsWorkbook.fs.js';
|
|
12
12
|
import { ResizeArray_choose, ResizeArray_isEmpty } from '../Core/Helper/Collections.js';
|
|
13
13
|
import { tryFromFsWorksheet, toFsWorksheet as toFsWorksheet$1 } from './AnnotationTable/ArcTable.js';
|
|
14
14
|
import { tryFromFsWorksheet as tryFromFsWorksheet$1, toFsWorksheet } from './DatamapTable/DatamapTable.js';
|
|
15
15
|
|
|
16
16
|
function ArcStudy_toMetadataSheet(study, assays) {
|
|
17
|
-
let source_1;
|
|
17
|
+
let source_1 = void 0;
|
|
18
18
|
const sheet = new FsWorksheet("isa_study");
|
|
19
19
|
iterateIndexed((rowI, r) => {
|
|
20
20
|
SparseRowModule_writeToSheet(rowI + 1, r, sheet);
|
|
@@ -35,7 +35,7 @@ function ArcStudy_fromMetadataSheet(sheet) {
|
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
function ArcStudy_toMetadataCollection(study, assays) {
|
|
38
|
-
let source_1;
|
|
38
|
+
let source_1 = void 0;
|
|
39
39
|
return map(SparseRowModule_getAllValues, (source_1 = toRows(study, assays), append([SparseRowModule_fromValues(["STUDY"])], source_1)));
|
|
40
40
|
}
|
|
41
41
|
function ArcStudy_fromMetadataCollection(collection) {
|
|
@@ -89,10 +89,11 @@ function ARCtrl_ArcStudy__ArcStudy_toFsWorkbook_Static_Z4CEFA522(study, assays,
|
|
|
89
89
|
const metadataSheet = ArcStudy_toMetadataSheet(study, assays);
|
|
90
90
|
doc.AddWorksheet(metadataSheet);
|
|
91
91
|
if (datamapSheet_1) {
|
|
92
|
-
|
|
93
|
-
|
|
92
|
+
const option_1 = study.Datamap;
|
|
93
|
+
if (option_1 != null) {
|
|
94
|
+
const sheet = toFsWorksheet(value(option_1));
|
|
94
95
|
doc.AddWorksheet(sheet);
|
|
95
|
-
}
|
|
96
|
+
}
|
|
96
97
|
}
|
|
97
98
|
iterateIndexed((i, arg_1) => {
|
|
98
99
|
const sheet_1 = toFsWorksheet$1(i, arg_1);
|