@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,20 +1,21 @@
|
|
|
1
|
-
import { Option } from '@fable-org/fable-library-
|
|
2
|
-
import { OntologyAnnotation } from './OntologyAnnotation.
|
|
3
|
-
import { Datamap } from './Datamap.
|
|
4
|
-
import { Person } from './Person.
|
|
5
|
-
import { Remark, Comment$ } from './Comment.
|
|
6
|
-
import { int32 } from '@fable-org/fable-library-
|
|
7
|
-
import { ArcTable } from './Table/ArcTable.
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
1
|
+
import { Option } from '@fable-org/fable-library-ts/Option.ts';
|
|
2
|
+
import { OntologyAnnotation } from './OntologyAnnotation.ts';
|
|
3
|
+
import { Datamap } from './Datamap.ts';
|
|
4
|
+
import { Person } from './Person.ts';
|
|
5
|
+
import { Remark, Comment$ } from './Comment.ts';
|
|
6
|
+
import { int32 } from '@fable-org/fable-library-ts/Int32.ts';
|
|
7
|
+
import { ArcTable } from './Table/ArcTable.ts';
|
|
8
|
+
import { MutableArray } from '@fable-org/fable-library-ts/Util.ts';
|
|
9
|
+
import { CompositeHeader_$union } from './Table/CompositeHeader.ts';
|
|
10
|
+
import { CompositeCell_$union } from './Table/CompositeCell.ts';
|
|
11
|
+
import { CompositeColumn } from './Table/CompositeColumn.ts';
|
|
12
|
+
import { ArcTables } from './Table/ArcTables.ts';
|
|
13
|
+
import { TypeInfo } from '@fable-org/fable-library-ts/Reflection.ts';
|
|
14
|
+
import { Publication } from './Publication.ts';
|
|
15
|
+
import { Component } from './Process/Component.ts';
|
|
16
|
+
import { CWLProcessingUnit_$union } from '../CWL/CWLProcessingUnit.ts';
|
|
17
|
+
import { CWLParameterReference } from '../CWL/ParameterReference.ts';
|
|
18
|
+
import { OntologySourceReference } from './OntologySourceReference.ts';
|
|
18
19
|
export declare class ArcAssay extends ArcTables implements Iterable<ArcTable> {
|
|
19
20
|
"identifier@129": string;
|
|
20
21
|
"title@133": Option<string>;
|
|
@@ -28,7 +29,13 @@ export declare class ArcAssay extends ArcTables implements Iterable<ArcTable> {
|
|
|
28
29
|
"comments@141-1": Comment$[];
|
|
29
30
|
staticHash: int32;
|
|
30
31
|
constructor(identifier: string, title?: string, description?: string, measurementType?: OntologyAnnotation, technologyType?: OntologyAnnotation, technologyPlatform?: OntologyAnnotation, tables?: ArcTable[], datamap?: Datamap, performers?: Person[], comments?: Comment$[]);
|
|
32
|
+
/**
|
|
33
|
+
* Must be unique in one study
|
|
34
|
+
*/
|
|
31
35
|
get Identifier(): string;
|
|
36
|
+
/**
|
|
37
|
+
* Must be unique in one study
|
|
38
|
+
*/
|
|
32
39
|
set Identifier(i: string);
|
|
33
40
|
get Investigation(): ArcInvestigation | undefined;
|
|
34
41
|
set Investigation(i: Option<ArcInvestigation>);
|
|
@@ -54,12 +61,18 @@ export declare class ArcAssay extends ArcTables implements Iterable<ArcTable> {
|
|
|
54
61
|
static create(identifier: string, title?: string, description?: string, measurementType?: OntologyAnnotation, technologyType?: OntologyAnnotation, technologyPlatform?: OntologyAnnotation, tables?: ArcTable[], datamap?: Datamap, performers?: Person[], comments?: Comment$[]): ArcAssay;
|
|
55
62
|
static make(identifier: string, title: Option<string>, description: Option<string>, measurementType: Option<OntologyAnnotation>, technologyType: Option<OntologyAnnotation>, technologyPlatform: Option<OntologyAnnotation>, tables: ArcTable[], datamap: Option<Datamap>, performers: Person[], comments: Comment$[]): ArcAssay;
|
|
56
63
|
static get FileName(): string;
|
|
57
|
-
get StudiesRegisteredIn(): ArcStudy
|
|
64
|
+
get StudiesRegisteredIn(): MutableArray<ArcStudy>;
|
|
58
65
|
static addTable(table: ArcTable, index?: int32): ((arg0: ArcAssay) => ArcAssay);
|
|
59
66
|
static addTables(tables: Iterable<ArcTable>, index?: int32): ((arg0: ArcAssay) => ArcAssay);
|
|
60
67
|
static initTable(tableName: string, index?: int32): ((arg0: ArcAssay) => [ArcAssay, ArcTable]);
|
|
61
68
|
static initTables(tableNames: Iterable<string>, index?: int32): ((arg0: ArcAssay) => ArcAssay);
|
|
69
|
+
/**
|
|
70
|
+
* Receive **copy** of table at `index`
|
|
71
|
+
*/
|
|
62
72
|
static getTableAt(index: int32): ((arg0: ArcAssay) => ArcTable);
|
|
73
|
+
/**
|
|
74
|
+
* Receive **copy** of table with `name` = `ArcTable.Name`
|
|
75
|
+
*/
|
|
63
76
|
static getTable(name: string): ((arg0: ArcAssay) => ArcTable);
|
|
64
77
|
static updateTableAt(index: int32, table: ArcTable): ((arg0: ArcAssay) => ArcAssay);
|
|
65
78
|
static updateTable(name: string, table: ArcTable): ((arg0: ArcAssay) => ArcAssay);
|
|
@@ -89,12 +102,23 @@ export declare class ArcAssay extends ArcTables implements Iterable<ArcTable> {
|
|
|
89
102
|
static getRow(tableName: string, rowIndex: int32): ((arg0: ArcAssay) => CompositeCell_$union[]);
|
|
90
103
|
static setPerformers(performers: Person[], assay: ArcAssay): ArcAssay;
|
|
91
104
|
Copy(): ArcAssay;
|
|
105
|
+
/**
|
|
106
|
+
* Updates given assay with another assay, Identifier will never be updated. By default update is full replace. Optional Parameters can be used to specify update logic.
|
|
107
|
+
*/
|
|
92
108
|
UpdateBy(assay: ArcAssay, onlyReplaceExisting?: boolean, appendSequences?: boolean): void;
|
|
93
109
|
toString(): string;
|
|
94
110
|
AddToInvestigation(investigation: ArcInvestigation): void;
|
|
95
111
|
RemoveFromInvestigation(): void;
|
|
112
|
+
/**
|
|
113
|
+
* Updates given assay stored in an study or investigation file with values from an assay file.
|
|
114
|
+
*/
|
|
96
115
|
UpdateReferenceByAssayFile(assay: ArcAssay, onlyReplaceExisting?: boolean): void;
|
|
97
116
|
StructurallyEquals(other: ArcAssay): boolean;
|
|
117
|
+
/**
|
|
118
|
+
* Use this function to check if this ArcAssay and the input ArcAssay refer to the same object.
|
|
119
|
+
*
|
|
120
|
+
* If true, updating one will update the other due to mutability.
|
|
121
|
+
*/
|
|
98
122
|
ReferenceEquals(other: ArcAssay): boolean;
|
|
99
123
|
Equals(other: any): boolean;
|
|
100
124
|
GetLightHashCode(): int32;
|
|
@@ -103,21 +127,27 @@ export declare class ArcAssay extends ArcTables implements Iterable<ArcTable> {
|
|
|
103
127
|
export declare function ArcAssay_$reflection(): TypeInfo;
|
|
104
128
|
export declare function ArcAssay_$ctor_Z69B192EC(identifier: string, title?: string, description?: string, measurementType?: OntologyAnnotation, technologyType?: OntologyAnnotation, technologyPlatform?: OntologyAnnotation, tables?: ArcTable[], datamap?: Datamap, performers?: Person[], comments?: Comment$[]): ArcAssay;
|
|
105
129
|
export declare class ArcStudy extends ArcTables implements Iterable<ArcTable> {
|
|
106
|
-
"identifier@
|
|
130
|
+
"identifier@582": string;
|
|
107
131
|
investigation: Option<ArcInvestigation>;
|
|
108
|
-
"title@
|
|
109
|
-
"description@
|
|
110
|
-
"submissionDate@
|
|
111
|
-
"publicReleaseDate@
|
|
112
|
-
"publications@
|
|
113
|
-
"contacts@
|
|
114
|
-
"studyDesignDescriptors@
|
|
115
|
-
"datamap@
|
|
116
|
-
"registeredAssayIdentifiers@
|
|
117
|
-
"comments@
|
|
132
|
+
"title@587": Option<string>;
|
|
133
|
+
"description@588": Option<string>;
|
|
134
|
+
"submissionDate@589": Option<string>;
|
|
135
|
+
"publicReleaseDate@590": Option<string>;
|
|
136
|
+
"publications@591-1": Publication[];
|
|
137
|
+
"contacts@592-1": Person[];
|
|
138
|
+
"studyDesignDescriptors@593-1": OntologyAnnotation[];
|
|
139
|
+
"datamap@594": Option<Datamap>;
|
|
140
|
+
"registeredAssayIdentifiers@595-1": string[];
|
|
141
|
+
"comments@596-1": Comment$[];
|
|
118
142
|
staticHash: int32;
|
|
119
143
|
constructor(identifier: string, title?: string, description?: string, submissionDate?: string, publicReleaseDate?: string, publications?: Publication[], contacts?: Person[], studyDesignDescriptors?: OntologyAnnotation[], tables?: ArcTable[], datamap?: Datamap, registeredAssayIdentifiers?: string[], comments?: Comment$[]);
|
|
144
|
+
/**
|
|
145
|
+
* Must be unique in one investigation
|
|
146
|
+
*/
|
|
120
147
|
get Identifier(): string;
|
|
148
|
+
/**
|
|
149
|
+
* Must be unique in one investigation
|
|
150
|
+
*/
|
|
121
151
|
set Identifier(i: string);
|
|
122
152
|
get Investigation(): ArcInvestigation | undefined;
|
|
123
153
|
set Investigation(i: Option<ArcInvestigation>);
|
|
@@ -146,12 +176,30 @@ export declare class ArcStudy extends ArcTables implements Iterable<ArcTable> {
|
|
|
146
176
|
static init(identifier: string): ArcStudy;
|
|
147
177
|
static create(identifier: string, title?: string, description?: string, submissionDate?: string, publicReleaseDate?: string, publications?: Publication[], contacts?: Person[], studyDesignDescriptors?: OntologyAnnotation[], tables?: ArcTable[], datamap?: Datamap, registeredAssayIdentifiers?: string[], comments?: Comment$[]): ArcStudy;
|
|
148
178
|
static make(identifier: string, title: Option<string>, description: Option<string>, submissionDate: Option<string>, publicReleaseDate: Option<string>, publications: Publication[], contacts: Person[], studyDesignDescriptors: OntologyAnnotation[], tables: ArcTable[], datamap: Option<Datamap>, registeredAssayIdentifiers: string[], comments: Comment$[]): ArcStudy;
|
|
179
|
+
/**
|
|
180
|
+
* Returns true if all fields are None/ empty sequences **except** Identifier.
|
|
181
|
+
*/
|
|
149
182
|
get isEmpty(): boolean;
|
|
150
183
|
static get FileName(): string;
|
|
184
|
+
/**
|
|
185
|
+
* Returns the count of registered assay *identifiers*. This is not necessarily the same as the count of registered assays, as not all identifiers correspond to an existing assay.
|
|
186
|
+
*/
|
|
151
187
|
get RegisteredAssayIdentifierCount(): int32;
|
|
188
|
+
/**
|
|
189
|
+
* Returns the count of registered assays. This is not necessarily the same as the count of registered assay *identifiers*, as not all identifiers correspond to an existing assay.
|
|
190
|
+
*/
|
|
152
191
|
get RegisteredAssayCount(): int32;
|
|
192
|
+
/**
|
|
193
|
+
* Returns all assays registered in this study, that correspond to an existing assay object in the associated investigation.
|
|
194
|
+
*/
|
|
153
195
|
get RegisteredAssays(): ArcAssay[];
|
|
196
|
+
/**
|
|
197
|
+
* Returns all registered assay identifiers that do not correspond to an existing assay object in the associated investigation.
|
|
198
|
+
*/
|
|
154
199
|
get VacantAssayIdentifiers(): string[];
|
|
200
|
+
/**
|
|
201
|
+
* Add assay to investigation and register it to study.
|
|
202
|
+
*/
|
|
155
203
|
AddRegisteredAssay(assay: ArcAssay): void;
|
|
156
204
|
static addRegisteredAssay(assay: ArcAssay): ((arg0: ArcStudy) => ArcStudy);
|
|
157
205
|
InitRegisteredAssay(assayIdentifier: string): ArcAssay;
|
|
@@ -163,13 +211,25 @@ export declare class ArcStudy extends ArcTables implements Iterable<ArcTable> {
|
|
|
163
211
|
GetRegisteredAssay(assayIdentifier: string): ArcAssay;
|
|
164
212
|
static getRegisteredAssay(assayIdentifier: string): ((arg0: ArcStudy) => ArcAssay);
|
|
165
213
|
static getRegisteredAssays(): ((arg0: ArcStudy) => ArcAssay[]);
|
|
214
|
+
/**
|
|
215
|
+
* Returns ArcAssays registered in study, or if no parent exists, initializies new ArcAssay from identifier.
|
|
216
|
+
*/
|
|
166
217
|
GetRegisteredAssaysOrIdentifier(): ArcAssay[];
|
|
218
|
+
/**
|
|
219
|
+
* Returns ArcAssays registered in study, or if no parent exists, initializies new ArcAssay from identifier.
|
|
220
|
+
*/
|
|
167
221
|
static getRegisteredAssaysOrIdentifier(): ((arg0: ArcStudy) => ArcAssay[]);
|
|
168
222
|
static addTable(table: ArcTable, index?: int32): ((arg0: ArcStudy) => ArcStudy);
|
|
169
223
|
static addTables(tables: Iterable<ArcTable>, index?: int32): ((arg0: ArcStudy) => ArcStudy);
|
|
170
224
|
static initTable(tableName: string, index?: int32): ((arg0: ArcStudy) => [ArcStudy, ArcTable]);
|
|
171
225
|
static initTables(tableNames: Iterable<string>, index?: int32): ((arg0: ArcStudy) => ArcStudy);
|
|
226
|
+
/**
|
|
227
|
+
* Receive **copy** of table at `index`
|
|
228
|
+
*/
|
|
172
229
|
static getTableAt(index: int32): ((arg0: ArcStudy) => ArcTable);
|
|
230
|
+
/**
|
|
231
|
+
* Receive **copy** of table with `name` = `ArcTable.Name`
|
|
232
|
+
*/
|
|
173
233
|
static getTable(name: string): ((arg0: ArcStudy) => ArcTable);
|
|
174
234
|
static updateTableAt(index: int32, table: ArcTable): ((arg0: ArcStudy) => ArcStudy);
|
|
175
235
|
static updateTable(name: string, table: ArcTable): ((arg0: ArcStudy) => ArcStudy);
|
|
@@ -199,9 +259,24 @@ export declare class ArcStudy extends ArcTables implements Iterable<ArcTable> {
|
|
|
199
259
|
static getRow(tableName: string, rowIndex: int32): ((arg0: ArcStudy) => CompositeCell_$union[]);
|
|
200
260
|
AddToInvestigation(investigation: ArcInvestigation): void;
|
|
201
261
|
RemoveFromInvestigation(): void;
|
|
262
|
+
/**
|
|
263
|
+
* Copies ArcStudy object without the pointer to the parent ArcInvestigation
|
|
264
|
+
*
|
|
265
|
+
* This copy does only contain the identifiers of the registered ArcAssays and not the actual objects.
|
|
266
|
+
*
|
|
267
|
+
* In order to copy the ArcAssays as well, use the Copy() method of the ArcInvestigation.
|
|
268
|
+
*/
|
|
202
269
|
Copy(copyInvestigationRef?: boolean): ArcStudy;
|
|
270
|
+
/**
|
|
271
|
+
* Updates given study from an investigation file against a study from a study file. Identifier will never be updated.
|
|
272
|
+
*/
|
|
203
273
|
UpdateReferenceByStudyFile(study: ArcStudy, onlyReplaceExisting?: boolean, keepUnusedRefTables?: boolean): void;
|
|
204
274
|
StructurallyEquals(other: ArcStudy): boolean;
|
|
275
|
+
/**
|
|
276
|
+
* Use this function to check if this ArcStudy and the input ArcStudy refer to the same object.
|
|
277
|
+
*
|
|
278
|
+
* If true, updating one will update the other due to mutability.
|
|
279
|
+
*/
|
|
205
280
|
ReferenceEquals(other: ArcStudy): boolean;
|
|
206
281
|
toString(): string;
|
|
207
282
|
Equals(other: any): boolean;
|
|
@@ -211,23 +286,29 @@ export declare class ArcStudy extends ArcTables implements Iterable<ArcTable> {
|
|
|
211
286
|
export declare function ArcStudy_$reflection(): TypeInfo;
|
|
212
287
|
export declare function ArcStudy_$ctor_Z273F64C5(identifier: string, title?: string, description?: string, submissionDate?: string, publicReleaseDate?: string, publications?: Publication[], contacts?: Person[], studyDesignDescriptors?: OntologyAnnotation[], tables?: ArcTable[], datamap?: Datamap, registeredAssayIdentifiers?: string[], comments?: Comment$[]): ArcStudy;
|
|
213
288
|
export declare class ArcWorkflow {
|
|
214
|
-
"identifier@
|
|
289
|
+
"identifier@1157": string;
|
|
215
290
|
investigation: Option<ArcInvestigation>;
|
|
216
|
-
"title@
|
|
217
|
-
"description@
|
|
218
|
-
"subWorkflowIdentifiers@
|
|
219
|
-
"workflowType@
|
|
220
|
-
"uri@
|
|
221
|
-
"version@
|
|
222
|
-
"parameters@
|
|
223
|
-
"components@
|
|
224
|
-
"datamap@
|
|
225
|
-
"contacts@
|
|
226
|
-
"cwlDescription@
|
|
227
|
-
"comments@
|
|
291
|
+
"title@1162": Option<string>;
|
|
292
|
+
"description@1163": Option<string>;
|
|
293
|
+
"subWorkflowIdentifiers@1164": string[];
|
|
294
|
+
"workflowType@1165": Option<OntologyAnnotation>;
|
|
295
|
+
"uri@1166": Option<string>;
|
|
296
|
+
"version@1167": Option<string>;
|
|
297
|
+
"parameters@1168": OntologyAnnotation[];
|
|
298
|
+
"components@1169": Component[];
|
|
299
|
+
"datamap@1170": Option<Datamap>;
|
|
300
|
+
"contacts@1171": Person[];
|
|
301
|
+
"cwlDescription@1172": Option<CWLProcessingUnit_$union>;
|
|
302
|
+
"comments@1173": Comment$[];
|
|
228
303
|
staticHash: int32;
|
|
229
304
|
constructor(identifier: string, title?: string, description?: string, workflowType?: OntologyAnnotation, uri?: string, version?: string, subWorkflowIdentifiers?: string[], parameters?: OntologyAnnotation[], components?: Component[], datamap?: Datamap, contacts?: Person[], cwlDescription?: CWLProcessingUnit_$union, comments?: Comment$[]);
|
|
305
|
+
/**
|
|
306
|
+
* Must be unique in one study
|
|
307
|
+
*/
|
|
230
308
|
get Identifier(): string;
|
|
309
|
+
/**
|
|
310
|
+
* Must be unique in one study
|
|
311
|
+
*/
|
|
231
312
|
set Identifier(i: string);
|
|
232
313
|
get Investigation(): ArcInvestigation | undefined;
|
|
233
314
|
set Investigation(a: Option<ArcInvestigation>);
|
|
@@ -261,10 +342,25 @@ export declare class ArcWorkflow {
|
|
|
261
342
|
static create(identifier: string, title?: string, description?: string, workflowType?: OntologyAnnotation, uri?: string, version?: string, subWorkflowIdentifiers?: string[], parameters?: OntologyAnnotation[], components?: Component[], datamap?: Datamap, contacts?: Person[], cwlDescription?: CWLProcessingUnit_$union, comments?: Comment$[]): ArcWorkflow;
|
|
262
343
|
static make(identifier: string, title: Option<string>, description: Option<string>, workflowType: Option<OntologyAnnotation>, uri: Option<string>, version: Option<string>, subWorkflowIdentifiers: string[], parameters: OntologyAnnotation[], components: Component[], datamap: Option<Datamap>, contacts: Person[], cwlDescription: Option<CWLProcessingUnit_$union>, comments: Comment$[]): ArcWorkflow;
|
|
263
344
|
static get FileName(): string;
|
|
345
|
+
/**
|
|
346
|
+
* Returns the count of registered subWorkflow *identifiers*. This is not necessarily the same as the count of registered subWorkflows, as not all identifiers correspond to an existing subWorkflow.
|
|
347
|
+
*/
|
|
264
348
|
get SubWorkflowIdentifiersCount(): int32;
|
|
349
|
+
/**
|
|
350
|
+
* Returns the count of registered subWorkflows. This is not necessarily the same as the count of registered subWorkflow *identifiers*, as not all identifiers correspond to an existing subWorkflow.
|
|
351
|
+
*/
|
|
265
352
|
get SubWorkflowCount(): int32;
|
|
353
|
+
/**
|
|
354
|
+
* Returns all subWorkflows registered in this workflow, that correspond to an existing subWorkflow object in the associated investigation.
|
|
355
|
+
*/
|
|
266
356
|
get SubWorkflows(): ArcWorkflow[];
|
|
357
|
+
/**
|
|
358
|
+
* Returns all registered subWorkflow identifiers that do not correspond to an existing subWorkflow object in the associated investigation.
|
|
359
|
+
*/
|
|
267
360
|
get VacantSubWorkflowIdentifiers(): string[];
|
|
361
|
+
/**
|
|
362
|
+
* Add subWorkflow to investigation and register it to workflow.
|
|
363
|
+
*/
|
|
268
364
|
AddSubWorkflow(subWorkflow: ArcWorkflow): void;
|
|
269
365
|
static addSubWorkflow(subWorkflow: ArcWorkflow): ((arg0: ArcWorkflow) => ArcWorkflow);
|
|
270
366
|
InitSubWorkflow(subWorkflowIdentifier: string): ArcWorkflow;
|
|
@@ -276,10 +372,28 @@ export declare class ArcWorkflow {
|
|
|
276
372
|
GetRegisteredSubWorkflow(subWorkflowIdentifier: string): ArcWorkflow;
|
|
277
373
|
static getRegisteredSubWorkflow(subWorkflowIdentifier: string): ((arg0: ArcWorkflow) => ArcWorkflow);
|
|
278
374
|
static getRegisteredSubWorkflows(): ((arg0: ArcWorkflow) => ArcWorkflow[]);
|
|
375
|
+
/**
|
|
376
|
+
* Returns ArcSubWorkflows registered in workflow, or if no parent exists, initializies new ArcSubWorkflow from identifier.
|
|
377
|
+
*/
|
|
279
378
|
GetRegisteredSubWorkflowsOrIdentifier(): ArcWorkflow[];
|
|
379
|
+
/**
|
|
380
|
+
* Returns ArcSubWorkflows registered in workflow, or if no parent exists, initializies new ArcSubWorkflow from identifier.
|
|
381
|
+
*/
|
|
280
382
|
static getRegisteredSubWorkflowsOrIdentifier(): ((arg0: ArcWorkflow) => ArcWorkflow[]);
|
|
383
|
+
/**
|
|
384
|
+
* Copies ArcStudy object without the pointer to the parent ArcInvestigation
|
|
385
|
+
*
|
|
386
|
+
* This copy does only contain the identifiers of the registered ArcAssays and not the actual objects.
|
|
387
|
+
*
|
|
388
|
+
* In order to copy the ArcAssays as well, use the Copy() method of the ArcInvestigation.
|
|
389
|
+
*/
|
|
281
390
|
Copy(copyInvestigationRef?: boolean): ArcWorkflow;
|
|
282
391
|
StructurallyEquals(other: ArcWorkflow): boolean;
|
|
392
|
+
/**
|
|
393
|
+
* Use this function to check if this ArcWorkflow and the input ArcWorkflow refer to the same object.
|
|
394
|
+
*
|
|
395
|
+
* If true, updating one will update the other due to mutability.
|
|
396
|
+
*/
|
|
283
397
|
ReferenceEquals(other: ArcStudy): boolean;
|
|
284
398
|
toString(): string;
|
|
285
399
|
Equals(other: any): boolean;
|
|
@@ -289,22 +403,28 @@ export declare class ArcWorkflow {
|
|
|
289
403
|
export declare function ArcWorkflow_$reflection(): TypeInfo;
|
|
290
404
|
export declare function ArcWorkflow_$ctor_Z5FF2D3D5(identifier: string, title?: string, description?: string, workflowType?: OntologyAnnotation, uri?: string, version?: string, subWorkflowIdentifiers?: string[], parameters?: OntologyAnnotation[], components?: Component[], datamap?: Datamap, contacts?: Person[], cwlDescription?: CWLProcessingUnit_$union, comments?: Comment$[]): ArcWorkflow;
|
|
291
405
|
export declare class ArcRun extends ArcTables implements Iterable<ArcTable> {
|
|
292
|
-
"identifier@
|
|
293
|
-
"title@
|
|
294
|
-
"description@
|
|
406
|
+
"identifier@1462": string;
|
|
407
|
+
"title@1466": Option<string>;
|
|
408
|
+
"description@1467": Option<string>;
|
|
295
409
|
investigation: Option<ArcInvestigation>;
|
|
296
|
-
"measurementType@
|
|
297
|
-
"technologyType@
|
|
298
|
-
"technologyPlatform@
|
|
299
|
-
"workflowIdentifiers@
|
|
300
|
-
"datamap@
|
|
301
|
-
"performers@
|
|
302
|
-
"cwlDescription@
|
|
303
|
-
"cwlInput@
|
|
304
|
-
"comments@
|
|
410
|
+
"measurementType@1469": Option<OntologyAnnotation>;
|
|
411
|
+
"technologyType@1470": Option<OntologyAnnotation>;
|
|
412
|
+
"technologyPlatform@1471": Option<OntologyAnnotation>;
|
|
413
|
+
"workflowIdentifiers@1472-1": string[];
|
|
414
|
+
"datamap@1473": Option<Datamap>;
|
|
415
|
+
"performers@1474-1": Person[];
|
|
416
|
+
"cwlDescription@1475": Option<CWLProcessingUnit_$union>;
|
|
417
|
+
"cwlInput@1476-1": CWLParameterReference[];
|
|
418
|
+
"comments@1477-1": Comment$[];
|
|
305
419
|
staticHash: int32;
|
|
306
420
|
constructor(identifier: string, title?: string, description?: string, measurementType?: OntologyAnnotation, technologyType?: OntologyAnnotation, technologyPlatform?: OntologyAnnotation, workflowIdentifiers?: string[], tables?: ArcTable[], datamap?: Datamap, performers?: Person[], cwlDescription?: CWLProcessingUnit_$union, cwlInput?: CWLParameterReference[], comments?: Comment$[]);
|
|
421
|
+
/**
|
|
422
|
+
* Must be unique in one study
|
|
423
|
+
*/
|
|
307
424
|
get Identifier(): string;
|
|
425
|
+
/**
|
|
426
|
+
* Must be unique in one study
|
|
427
|
+
*/
|
|
308
428
|
set Identifier(i: string);
|
|
309
429
|
get Investigation(): ArcInvestigation | undefined;
|
|
310
430
|
set Investigation(i: Option<ArcInvestigation>);
|
|
@@ -336,15 +456,30 @@ export declare class ArcRun extends ArcTables implements Iterable<ArcTable> {
|
|
|
336
456
|
static create(identifier: string, title?: string, description?: string, measurementType?: OntologyAnnotation, technologyType?: OntologyAnnotation, technologyPlatform?: OntologyAnnotation, workflowIdentifiers?: string[], tables?: ArcTable[], datamap?: Datamap, performers?: Person[], cwlDescription?: CWLProcessingUnit_$union, cwlInput?: CWLParameterReference[], comments?: Comment$[]): ArcRun;
|
|
337
457
|
static make(identifier: string, title: Option<string>, description: Option<string>, measurementType: Option<OntologyAnnotation>, technologyType: Option<OntologyAnnotation>, technologyPlatform: Option<OntologyAnnotation>, workflowIdentifiers: string[], tables: ArcTable[], datamap: Option<Datamap>, performers: Person[], cwlDescription: Option<CWLProcessingUnit_$union>, cwlInput: CWLParameterReference[], comments: Comment$[]): ArcRun;
|
|
338
458
|
static get FileName(): string;
|
|
459
|
+
/**
|
|
460
|
+
* Returns the count of workflow *identifiers*. This is not necessarily the same as the count of workflows, as not all identifiers correspond to an existing workflow.
|
|
461
|
+
*/
|
|
339
462
|
get WorkflowIdentifierCount(): int32;
|
|
340
463
|
get WorkflowCount(): int32;
|
|
464
|
+
/**
|
|
465
|
+
* Returns all workflows registered in this run, that correspond to an existing workflow object in the associated investigation.
|
|
466
|
+
*/
|
|
341
467
|
get Workflows(): ArcWorkflow[];
|
|
468
|
+
/**
|
|
469
|
+
* Returns all registered workflow identifiers that do not correspond to an existing workflow object in the associated investigation.
|
|
470
|
+
*/
|
|
342
471
|
get VacantWorkflowIdentifiers(): string[];
|
|
343
472
|
static addTable(table: ArcTable, index?: int32): ((arg0: ArcRun) => ArcRun);
|
|
344
473
|
static addTables(tables: Iterable<ArcTable>, index?: int32): ((arg0: ArcRun) => ArcRun);
|
|
345
474
|
static initTable(tableName: string, index?: int32): ((arg0: ArcRun) => [ArcRun, ArcTable]);
|
|
346
475
|
static initTables(tableNames: Iterable<string>, index?: int32): ((arg0: ArcRun) => ArcRun);
|
|
476
|
+
/**
|
|
477
|
+
* Receive **copy** of table at `index`
|
|
478
|
+
*/
|
|
347
479
|
static getTableAt(index: int32): ((arg0: ArcRun) => ArcTable);
|
|
480
|
+
/**
|
|
481
|
+
* Receive **copy** of table with `name` = `ArcTable.Name`
|
|
482
|
+
*/
|
|
348
483
|
static getTable(name: string): ((arg0: ArcRun) => ArcTable);
|
|
349
484
|
static updateTableAt(index: int32, table: ArcTable): ((arg0: ArcRun) => ArcRun);
|
|
350
485
|
static updateTable(name: string, table: ArcTable): ((arg0: ArcRun) => ArcRun);
|
|
@@ -374,11 +509,19 @@ export declare class ArcRun extends ArcTables implements Iterable<ArcTable> {
|
|
|
374
509
|
static getRow(tableName: string, rowIndex: int32): ((arg0: ArcRun) => CompositeCell_$union[]);
|
|
375
510
|
static setPerformers(performers: Person[], run: ArcRun): ArcRun;
|
|
376
511
|
Copy(): ArcRun;
|
|
512
|
+
/**
|
|
513
|
+
* Updates given run with another run, Identifier will never be updated. By default update is full replace. Optional Parameters can be used to specify update logic.
|
|
514
|
+
*/
|
|
377
515
|
UpdateBy(run: ArcRun, onlyReplaceExisting?: boolean, appendSequences?: boolean): void;
|
|
378
516
|
toString(): string;
|
|
379
517
|
AddToInvestigation(investigation: ArcInvestigation): void;
|
|
380
518
|
RemoveFromInvestigation(): void;
|
|
381
519
|
StructurallyEquals(other: ArcRun): boolean;
|
|
520
|
+
/**
|
|
521
|
+
* Use this function to check if this ArcRun and the input ArcRun refer to the same object.
|
|
522
|
+
*
|
|
523
|
+
* If true, updating one will update the other due to mutability.
|
|
524
|
+
*/
|
|
382
525
|
ReferenceEquals(other: ArcRun): boolean;
|
|
383
526
|
Equals(other: any): boolean;
|
|
384
527
|
GetLightHashCode(): int32;
|
|
@@ -387,25 +530,31 @@ export declare class ArcRun extends ArcTables implements Iterable<ArcTable> {
|
|
|
387
530
|
export declare function ArcRun_$reflection(): TypeInfo;
|
|
388
531
|
export declare function ArcRun_$ctor_287C1303(identifier: string, title?: string, description?: string, measurementType?: OntologyAnnotation, technologyType?: OntologyAnnotation, technologyPlatform?: OntologyAnnotation, workflowIdentifiers?: string[], tables?: ArcTable[], datamap?: Datamap, performers?: Person[], cwlDescription?: CWLProcessingUnit_$union, cwlInput?: CWLParameterReference[], comments?: Comment$[]): ArcRun;
|
|
389
532
|
export declare class ArcInvestigation {
|
|
390
|
-
"identifier@
|
|
391
|
-
"title@
|
|
392
|
-
"description@
|
|
393
|
-
"submissionDate@
|
|
394
|
-
"publicReleaseDate@
|
|
395
|
-
"ontologySourceReferences@
|
|
396
|
-
"publications@
|
|
397
|
-
"contacts@
|
|
398
|
-
"assays@
|
|
399
|
-
"studies@
|
|
400
|
-
"workflows@
|
|
401
|
-
"runs@
|
|
402
|
-
"registeredStudyIdentifiers@
|
|
403
|
-
"comments@
|
|
404
|
-
"remarks@
|
|
533
|
+
"identifier@1963": string;
|
|
534
|
+
"title@1964": Option<string>;
|
|
535
|
+
"description@1965": Option<string>;
|
|
536
|
+
"submissionDate@1966": Option<string>;
|
|
537
|
+
"publicReleaseDate@1967": Option<string>;
|
|
538
|
+
"ontologySourceReferences@1968-1": OntologySourceReference[];
|
|
539
|
+
"publications@1969-1": Publication[];
|
|
540
|
+
"contacts@1970-1": Person[];
|
|
541
|
+
"assays@1971-1": ArcAssay[];
|
|
542
|
+
"studies@1972-1": ArcStudy[];
|
|
543
|
+
"workflows@1973-1": ArcWorkflow[];
|
|
544
|
+
"runs@1974-1": ArcRun[];
|
|
545
|
+
"registeredStudyIdentifiers@1975-1": string[];
|
|
546
|
+
"comments@1976-1": Comment$[];
|
|
547
|
+
"remarks@1977-1": Remark[];
|
|
405
548
|
staticHash: int32;
|
|
406
|
-
"init@
|
|
549
|
+
"init@1934": int32;
|
|
407
550
|
constructor(identifier: string, title?: string, description?: string, submissionDate?: string, publicReleaseDate?: string, ontologySourceReferences?: OntologySourceReference[], publications?: Publication[], contacts?: Person[], assays?: ArcAssay[], studies?: ArcStudy[], workflows?: ArcWorkflow[], runs?: ArcRun[], registeredStudyIdentifiers?: string[], comments?: Comment$[], remarks?: Remark[]);
|
|
551
|
+
/**
|
|
552
|
+
* Must be unique in one investigation
|
|
553
|
+
*/
|
|
408
554
|
get Identifier(): string;
|
|
555
|
+
/**
|
|
556
|
+
* Must be unique in one investigation
|
|
557
|
+
*/
|
|
409
558
|
set Identifier(i: string);
|
|
410
559
|
get Title(): string | undefined;
|
|
411
560
|
set Title(n: Option<string>);
|
|
@@ -442,24 +591,57 @@ export declare class ArcInvestigation {
|
|
|
442
591
|
static create(identifier: string, title?: string, description?: string, submissionDate?: string, publicReleaseDate?: string, ontologySourceReferences?: OntologySourceReference[], publications?: Publication[], contacts?: Person[], assays?: ArcAssay[], studies?: ArcStudy[], workflows?: ArcWorkflow[], runs?: ArcRun[], registeredStudyIdentifiers?: string[], comments?: Comment$[], remarks?: Remark[]): ArcInvestigation;
|
|
443
592
|
static make(identifier: string, title: Option<string>, description: Option<string>, submissionDate: Option<string>, publicReleaseDate: Option<string>, ontologySourceReferences: OntologySourceReference[], publications: Publication[], contacts: Person[], assays: ArcAssay[], studies: ArcStudy[], workflows: ArcWorkflow[], runs: ArcRun[], registeredStudyIdentifiers: string[], comments: Comment$[], remarks: Remark[]): ArcInvestigation;
|
|
444
593
|
get AssayCount(): int32;
|
|
445
|
-
get AssayIdentifiers(): string
|
|
594
|
+
get AssayIdentifiers(): MutableArray<string>;
|
|
446
595
|
get UnregisteredAssays(): ArcAssay[];
|
|
447
596
|
AddAssay(assay: ArcAssay, registerIn?: ArcStudy[]): void;
|
|
448
597
|
static addAssay(assay: ArcAssay, registerIn?: ArcStudy[]): ((arg0: ArcInvestigation) => ArcInvestigation);
|
|
449
598
|
InitAssay(assayIdentifier: string, registerIn?: ArcStudy[]): ArcAssay;
|
|
450
599
|
static initAssay(assayIdentifier: string, registerIn?: ArcStudy[]): ((arg0: ArcInvestigation) => ArcAssay);
|
|
600
|
+
/**
|
|
601
|
+
* Removes assay at specified index from ArcInvestigation without deregistering it from studies.
|
|
602
|
+
*/
|
|
451
603
|
DeleteAssayAt(index: int32): void;
|
|
604
|
+
/**
|
|
605
|
+
* Removes assay at specified index from ArcInvestigation without deregistering it from studies.
|
|
606
|
+
*/
|
|
452
607
|
static deleteAssayAt(index: int32): ((arg0: ArcInvestigation) => ArcInvestigation);
|
|
608
|
+
/**
|
|
609
|
+
* Removes assay with given identifier from ArcInvestigation without deregistering it from studies.
|
|
610
|
+
*/
|
|
453
611
|
DeleteAssay(assayIdentifier: string): void;
|
|
612
|
+
/**
|
|
613
|
+
* Removes assay with given identifier from ArcInvestigation without deregistering it from studies.
|
|
614
|
+
*/
|
|
454
615
|
static deleteAssay(assayIdentifier: string): ((arg0: ArcInvestigation) => ArcInvestigation);
|
|
616
|
+
/**
|
|
617
|
+
* Removes assay at specified index from ArcInvestigation and deregisteres it from all studies.
|
|
618
|
+
*/
|
|
455
619
|
RemoveAssayAt(index: int32): void;
|
|
620
|
+
/**
|
|
621
|
+
* Removes assay at specified index from ArcInvestigation and deregisteres it from all studies.
|
|
622
|
+
*/
|
|
456
623
|
static removeAssayAt(index: int32): ((arg0: ArcInvestigation) => ArcInvestigation);
|
|
624
|
+
/**
|
|
625
|
+
* Removes assay with specified identifier from ArcInvestigation and deregisteres it from all studies.
|
|
626
|
+
*/
|
|
457
627
|
RemoveAssay(assayIdentifier: string): void;
|
|
628
|
+
/**
|
|
629
|
+
* Removes assay with specified identifier from ArcInvestigation and deregisteres it from all studies.
|
|
630
|
+
*/
|
|
458
631
|
static removeAssay(assayIdentifier: string): ((arg0: ArcInvestigation) => ArcInvestigation);
|
|
632
|
+
/**
|
|
633
|
+
* Renames an assay in the whole investigation
|
|
634
|
+
*/
|
|
459
635
|
RenameAssay(oldIdentifier: string, newIdentifier: string): void;
|
|
460
636
|
static renameAssay(oldIdentifier: string, newIdentifier: string): ((arg0: ArcInvestigation) => ArcInvestigation);
|
|
637
|
+
/**
|
|
638
|
+
* Renames an run in the whole investigation
|
|
639
|
+
*/
|
|
461
640
|
RenameRun(oldIdentifier: string, newIdentifier: string): void;
|
|
462
641
|
static renameRun(oldIdentifier: string, newIdentifier: string): ((arg0: ArcInvestigation) => ArcInvestigation);
|
|
642
|
+
/**
|
|
643
|
+
* Renames an workflow in the whole investigation
|
|
644
|
+
*/
|
|
463
645
|
RenameWorkflow(oldIdentifier: string, newIdentifier: string): void;
|
|
464
646
|
static renameWorkflow(oldIdentifier: string, newIdentifier: string): ((arg0: ArcInvestigation) => ArcInvestigation);
|
|
465
647
|
SetAssayAt(index: int32, assay: ArcAssay): void;
|
|
@@ -476,12 +658,24 @@ export declare class ArcInvestigation {
|
|
|
476
658
|
static tryGetAssay(assayIdentifier: string): ((arg0: ArcInvestigation) => Option<ArcAssay>);
|
|
477
659
|
ContainsAssay(assayIdentifier: string): boolean;
|
|
478
660
|
static containsAssay(assayIdentifier: string): ((arg0: ArcInvestigation) => boolean);
|
|
661
|
+
/**
|
|
662
|
+
* Returns the count of registered study *identifiers*. This is not necessarily the same as the count of registered studies, as not all identifiers correspond to an existing study object.
|
|
663
|
+
*/
|
|
479
664
|
get RegisteredStudyIdentifierCount(): int32;
|
|
665
|
+
/**
|
|
666
|
+
* Returns all studies registered in this investigation, that correspond to an existing study object investigation.
|
|
667
|
+
*/
|
|
480
668
|
get RegisteredStudies(): ArcStudy[];
|
|
669
|
+
/**
|
|
670
|
+
* Returns the count of registered studies. This is not necessarily the same as the count of registered study *identifiers*, as not all identifiers correspond to an existing study object.
|
|
671
|
+
*/
|
|
481
672
|
get RegisteredStudyCount(): int32;
|
|
673
|
+
/**
|
|
674
|
+
* Returns all registered study identifiers that do not correspond to an existing study object in the investigation.
|
|
675
|
+
*/
|
|
482
676
|
get VacantStudyIdentifiers(): string[];
|
|
483
677
|
get StudyCount(): int32;
|
|
484
|
-
get StudyIdentifiers(): string
|
|
678
|
+
get StudyIdentifiers(): MutableArray<string>;
|
|
485
679
|
get UnregisteredStudies(): ArcStudy[];
|
|
486
680
|
AddStudy(study: ArcStudy): void;
|
|
487
681
|
static addStudy(study: ArcStudy): ((arg0: ArcInvestigation) => ArcInvestigation);
|
|
@@ -491,15 +685,45 @@ export declare class ArcInvestigation {
|
|
|
491
685
|
static registerStudy(studyIdentifier: string): ((arg0: ArcInvestigation) => ArcInvestigation);
|
|
492
686
|
AddRegisteredStudy(study: ArcStudy): void;
|
|
493
687
|
static addRegisteredStudy(study: ArcStudy): ((arg0: ArcInvestigation) => ArcInvestigation);
|
|
688
|
+
/**
|
|
689
|
+
* Removes study at specified index from ArcInvestigation without deregistering it.
|
|
690
|
+
*/
|
|
494
691
|
DeleteStudyAt(index: int32): void;
|
|
692
|
+
/**
|
|
693
|
+
* Removes study at specified index from ArcInvestigation without deregistering it.
|
|
694
|
+
*/
|
|
495
695
|
static deleteStudyAt(index: int32): ((arg0: ArcInvestigation) => ArcInvestigation);
|
|
696
|
+
/**
|
|
697
|
+
* Removes study with specified identifier from ArcInvestigation without deregistering it.
|
|
698
|
+
*/
|
|
496
699
|
DeleteStudy(studyIdentifier: string): void;
|
|
700
|
+
/**
|
|
701
|
+
* Removes study with specified identifier from ArcInvestigation without deregistering it.
|
|
702
|
+
*/
|
|
497
703
|
static deleteStudy(studyIdentifier: string): ((arg0: ArcInvestigation) => ArcInvestigation);
|
|
704
|
+
/**
|
|
705
|
+
* Removes study at specified index from ArcInvestigation and deregisteres it.
|
|
706
|
+
*/
|
|
498
707
|
RemoveStudyAt(index: int32): void;
|
|
708
|
+
/**
|
|
709
|
+
* Removes study at specified index from ArcInvestigation and deregisteres it.
|
|
710
|
+
*/
|
|
499
711
|
static removeStudyAt(index: int32): ((arg0: ArcInvestigation) => ArcInvestigation);
|
|
712
|
+
/**
|
|
713
|
+
* Removes study with specified identifier from ArcInvestigation and deregisteres it.
|
|
714
|
+
*/
|
|
500
715
|
RemoveStudy(studyIdentifier: string): void;
|
|
716
|
+
/**
|
|
717
|
+
* Removes study with specified identifier from ArcInvestigation and deregisteres it.
|
|
718
|
+
*/
|
|
501
719
|
static removeStudy(studyIdentifier: string): ((arg0: ArcInvestigation) => ArcInvestigation);
|
|
720
|
+
/**
|
|
721
|
+
* Renames a study in the whole investigation
|
|
722
|
+
*/
|
|
502
723
|
RenameStudy(oldIdentifier: string, newIdentifier: string): void;
|
|
724
|
+
/**
|
|
725
|
+
* Renames a study in the whole investigation
|
|
726
|
+
*/
|
|
503
727
|
static renameStudy(oldIdentifier: string, newIdentifier: string): ((arg0: ArcInvestigation) => ArcInvestigation);
|
|
504
728
|
SetStudyAt(index: int32, study: ArcStudy): void;
|
|
505
729
|
static setStudyAt(index: int32, study: ArcStudy): ((arg0: ArcInvestigation) => ArcInvestigation);
|
|
@@ -515,8 +739,14 @@ export declare class ArcInvestigation {
|
|
|
515
739
|
static tryGetStudy(studyIdentifier: string): ((arg0: ArcInvestigation) => Option<ArcStudy>);
|
|
516
740
|
ContainsStudy(studyIdentifier: string): boolean;
|
|
517
741
|
static containsStudy(studyIdentifier: string): ((arg0: ArcInvestigation) => boolean);
|
|
742
|
+
/**
|
|
743
|
+
* Register an existing assay from ArcInvestigation.Assays to a existing study.
|
|
744
|
+
*/
|
|
518
745
|
RegisterAssayAt(studyIndex: int32, assayIdentifier: string): void;
|
|
519
746
|
static registerAssayAt(studyIndex: int32, assayIdentifier: string): ((arg0: ArcInvestigation) => ArcInvestigation);
|
|
747
|
+
/**
|
|
748
|
+
* Register an existing assay from ArcInvestigation.Assays to a existing study.
|
|
749
|
+
*/
|
|
520
750
|
RegisterAssay(studyIdentifier: string, assayIdentifier: string): void;
|
|
521
751
|
static registerAssay(studyIdentifier: string, assayIdentifier: string): ((arg0: ArcInvestigation) => ArcInvestigation);
|
|
522
752
|
DeregisterAssayAt(studyIndex: int32, assayIdentifier: string): void;
|
|
@@ -526,7 +756,7 @@ export declare class ArcInvestigation {
|
|
|
526
756
|
DeregisterStudy(studyIdentifier: string): void;
|
|
527
757
|
static deregisterStudy(studyIdentifier: string): ((arg0: ArcInvestigation) => ArcInvestigation);
|
|
528
758
|
get WorkflowCount(): int32;
|
|
529
|
-
get WorkflowIdentifiers(): string
|
|
759
|
+
get WorkflowIdentifiers(): MutableArray<string>;
|
|
530
760
|
GetWorkflowIndex(workflowIdentifier: string): int32;
|
|
531
761
|
static getWorkflowIndex(workflowIdentifier: string): ((arg0: ArcInvestigation) => int32);
|
|
532
762
|
AddWorkflow(workflow: ArcWorkflow): void;
|
|
@@ -550,7 +780,7 @@ export declare class ArcInvestigation {
|
|
|
550
780
|
static setWorkflow(workflowIdentifier: string, workflow: ArcWorkflow): ((arg0: ArcInvestigation) => ArcInvestigation);
|
|
551
781
|
static setWorkflowAt(index: int32, workflow: ArcWorkflow): ((arg0: ArcInvestigation) => ArcInvestigation);
|
|
552
782
|
get RunCount(): int32;
|
|
553
|
-
get RunIdentifiers(): string
|
|
783
|
+
get RunIdentifiers(): MutableArray<string>;
|
|
554
784
|
GetRunIndex(runIdentifier: string): int32;
|
|
555
785
|
static getRunIndex(runIdentifier: string): ((arg0: ArcInvestigation) => int32);
|
|
556
786
|
AddRun(run: ArcRun): void;
|
|
@@ -573,13 +803,38 @@ export declare class ArcInvestigation {
|
|
|
573
803
|
SetRun(runIdentifier: string, run: ArcRun): void;
|
|
574
804
|
static setRunAt(index: int32, run: ArcRun): ((arg0: ArcInvestigation) => ArcInvestigation);
|
|
575
805
|
static setRun(runIdentifier: string, run: ArcRun): ((arg0: ArcInvestigation) => ArcInvestigation);
|
|
576
|
-
|
|
577
|
-
|
|
806
|
+
/**
|
|
807
|
+
* Returns all fully distinct Contacts/Performers from assays/studies/investigation.
|
|
808
|
+
*/
|
|
809
|
+
GetAllPersons(): MutableArray<Person>;
|
|
810
|
+
/**
|
|
811
|
+
* Returns all fully distinct Contacts/Performers from assays/studies/investigation unfiltered.
|
|
812
|
+
*/
|
|
813
|
+
GetAllPublications(): MutableArray<Publication>;
|
|
814
|
+
/**
|
|
815
|
+
* Deregisters assays not found in ArcInvestigation.Assays from all studies.
|
|
816
|
+
*/
|
|
578
817
|
DeregisterMissingAssays(): void;
|
|
579
818
|
static deregisterMissingAssays(): ((arg0: ArcInvestigation) => ArcInvestigation);
|
|
819
|
+
/**
|
|
820
|
+
* Updates the IOtypes of the IO columns (Input, Output) across all tables in the investigation if possible.
|
|
821
|
+
*
|
|
822
|
+
* If an entity (Row Value of IO Column) with the same name as an entity with a higher IOType specifity is found, the IOType of the entity with the lower IOType specificity is updated.
|
|
823
|
+
*
|
|
824
|
+
* E.g. In Table1, there is a column "Output [Sample Name]" with an entity "Sample1". In Table2, there is a column "Input [Source Name]" with the same entity "Sample1". By equality of the entities, the IOType of the Input column in Table2 is inferred to be Sample, resulting in "Input [Sample Name]".
|
|
825
|
+
*
|
|
826
|
+
* E.g. RawDataFile is more specific than Source, but less specific than DerivedDataFile.
|
|
827
|
+
*
|
|
828
|
+
* E.g. Sample is equally specific to RawDataFile.
|
|
829
|
+
*/
|
|
580
830
|
UpdateIOTypeByEntityID(): void;
|
|
581
831
|
Copy(): ArcInvestigation;
|
|
582
832
|
StructurallyEquals(other: ArcInvestigation): boolean;
|
|
833
|
+
/**
|
|
834
|
+
* Use this function to check if this ArcInvestigation and the input ArcInvestigation refer to the same object.
|
|
835
|
+
*
|
|
836
|
+
* If true, updating one will update the other due to mutability.
|
|
837
|
+
*/
|
|
583
838
|
ReferenceEquals(other: ArcInvestigation): boolean;
|
|
584
839
|
toString(): string;
|
|
585
840
|
Equals(other: any): boolean;
|