@nfdi4plants/arctrl 3.0.0-beta.2 → 3.0.0-beta.4
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/README.md +2 -0
- package/dist/ts/index.d.ts +61 -0
- package/dist/ts/index.d.ts.map +1 -0
- package/dist/ts/index.js +63 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Array.js +354 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Async.js +28 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/AsyncBuilder.js +186 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/BigInt.js +8 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Boolean.js +24 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Char.js +73 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/CollectionUtil.js +31 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Date.js +574 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/DateOffset.js +59 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Decimal.js +65 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Double.js +30 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Core.js +5 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Global.js +5 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Guid.js +48 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Int32.js +120 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/List.js +680 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Long.js +40 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Map.js +655 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/MapUtil.js +105 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/MutableMap.js +320 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/MutableSet.js +204 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Native.js +10 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Numeric.js +73 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Option.js +65 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Range.js +23 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Reflection.js +111 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/RegExp.js +114 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Result.js +36 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Seq.js +846 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Seq2.js +65 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Set.js +1160 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/String.js +364 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/System.Text.js +40 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Types.js +193 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Unicode.13.0.0.js +6 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Uri.js +160 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Util.js +367 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/lib/big.js +825 -0
- package/dist/ts/ts/ARC.d.ts +80 -0
- package/dist/ts/ts/ARC.d.ts.map +1 -0
- package/dist/ts/ts/ARC.js +914 -0
- package/dist/ts/ts/Contract/ARC.d.ts +7 -0
- package/dist/ts/ts/Contract/ARC.d.ts.map +1 -0
- package/dist/ts/ts/Contract/ARC.js +52 -0
- package/dist/ts/ts/Contract/ArcAssay.d.ts +12 -0
- package/dist/ts/ts/Contract/ArcAssay.d.ts.map +1 -0
- package/dist/ts/ts/Contract/ArcAssay.js +80 -0
- package/dist/ts/ts/Contract/ArcInvestigation.d.ts +10 -0
- package/dist/ts/ts/Contract/ArcInvestigation.d.ts.map +1 -0
- package/dist/ts/ts/Contract/ArcInvestigation.js +57 -0
- package/dist/ts/ts/Contract/ArcRun.d.ts +12 -0
- package/dist/ts/ts/Contract/ArcRun.d.ts.map +1 -0
- package/dist/ts/ts/Contract/ArcRun.js +76 -0
- package/dist/ts/ts/Contract/ArcStudy.d.ts +13 -0
- package/dist/ts/ts/Contract/ArcStudy.d.ts.map +1 -0
- package/dist/ts/ts/Contract/ArcStudy.js +76 -0
- package/dist/ts/ts/Contract/ArcWorkflow.d.ts +12 -0
- package/dist/ts/ts/Contract/ArcWorkflow.d.ts.map +1 -0
- package/dist/ts/ts/Contract/ArcWorkflow.js +77 -0
- package/dist/ts/ts/Contract/Contract.d.ts +39 -0
- package/dist/ts/ts/Contract/Contract.d.ts.map +1 -0
- package/dist/ts/ts/Contract/Contract.js +45 -0
- package/dist/ts/ts/Contract/Datamap.d.ts +29 -0
- package/dist/ts/ts/Contract/Datamap.d.ts.map +1 -0
- package/dist/ts/ts/Contract/Datamap.js +221 -0
- package/dist/ts/ts/Contract/Git.d.ts +28 -0
- package/dist/ts/ts/Contract/Git.d.ts.map +1 -0
- package/dist/ts/ts/Contract/Git.js +57 -0
- package/dist/ts/ts/Contract/ValidationPackagesConfig.d.ts +12 -0
- package/dist/ts/ts/Contract/ValidationPackagesConfig.d.ts.map +1 -0
- package/dist/ts/ts/Contract/ValidationPackagesConfig.js +57 -0
- package/dist/ts/ts/ContractIO/ContractIO.d.ts +11 -0
- package/dist/ts/ts/ContractIO/ContractIO.d.ts.map +1 -0
- package/dist/ts/ts/ContractIO/ContractIO.js +202 -0
- package/dist/ts/ts/ContractIO/FileSystemHelper.d.ts +44 -0
- package/dist/ts/ts/ContractIO/FileSystemHelper.d.ts.map +1 -0
- package/dist/ts/ts/ContractIO/FileSystemHelper.js +273 -0
- package/dist/ts/ts/Conversion.d.ts +292 -0
- package/dist/ts/ts/Conversion.d.ts.map +1 -0
- package/dist/ts/ts/Conversion.js +1247 -0
- package/dist/ts/ts/Core/ArcTypes.d.ts +620 -0
- package/dist/ts/ts/Core/ArcTypes.d.ts.map +1 -0
- package/dist/ts/ts/Core/ArcTypes.js +3393 -0
- package/dist/ts/ts/Core/Comment.d.ts +35 -0
- package/dist/ts/ts/Core/Comment.d.ts.map +1 -0
- package/dist/ts/ts/Core/Comment.js +91 -0
- package/dist/ts/ts/Core/CommentList.d.ts +28 -0
- package/dist/ts/ts/Core/CommentList.d.ts.map +1 -0
- package/dist/ts/ts/Core/CommentList.js +27 -0
- package/dist/ts/ts/Core/Conversion.d.ts +215 -0
- package/dist/ts/ts/Core/Conversion.d.ts.map +1 -0
- package/dist/ts/ts/Core/Conversion.js +923 -0
- package/dist/ts/ts/Core/Data.d.ts +49 -0
- package/dist/ts/ts/Core/Data.d.ts.map +1 -0
- package/dist/ts/ts/Core/Data.js +179 -0
- package/dist/ts/ts/Core/DataContext.d.ts +47 -0
- package/dist/ts/ts/Core/DataContext.d.ts.map +1 -0
- package/dist/ts/ts/Core/DataContext.js +108 -0
- package/dist/ts/ts/Core/DataFile.d.ts +27 -0
- package/dist/ts/ts/Core/DataFile.d.ts.map +1 -0
- package/dist/ts/ts/Core/DataFile.js +50 -0
- package/dist/ts/ts/Core/DataMap.d.ts +52 -0
- package/dist/ts/ts/Core/DataMap.d.ts.map +1 -0
- package/dist/ts/ts/Core/DataMap.js +53 -0
- package/dist/ts/ts/Core/Helper/Collections.d.ts +61 -0
- package/dist/ts/ts/Core/Helper/Collections.d.ts.map +1 -0
- package/dist/ts/ts/Core/Helper/Collections.js +323 -0
- package/dist/ts/ts/Core/Helper/HashCodes.d.ts +9 -0
- package/dist/ts/ts/Core/Helper/HashCodes.d.ts.map +1 -0
- package/dist/ts/ts/Core/Helper/HashCodes.js +35 -0
- package/dist/ts/ts/Core/Helper/Identifier.d.ts +119 -0
- package/dist/ts/ts/Core/Helper/Identifier.d.ts.map +1 -0
- package/dist/ts/ts/Core/Helper/Identifier.js +96 -0
- package/dist/ts/ts/Core/Helper/ORCID.d.ts +7 -0
- package/dist/ts/ts/Core/Helper/ORCID.d.ts.map +1 -0
- package/dist/ts/ts/Core/Helper/ORCID.js +34 -0
- package/dist/ts/ts/Core/Helper/Regex.d.ts +194 -0
- package/dist/ts/ts/Core/Helper/Regex.d.ts.map +1 -0
- package/dist/ts/ts/Core/Helper/Regex.js +296 -0
- package/dist/ts/ts/Core/Helper/SemVer.d.ts +20 -0
- package/dist/ts/ts/Core/Helper/SemVer.d.ts.map +1 -0
- package/dist/ts/ts/Core/Helper/SemVer.js +31 -0
- package/dist/ts/ts/Core/Helper/Url.d.ts +10 -0
- package/dist/ts/ts/Core/Helper/Url.d.ts.map +1 -0
- package/dist/ts/ts/Core/Helper/Url.js +32 -0
- package/dist/ts/ts/Core/IdentifierSetters.d.ts +7 -0
- package/dist/ts/ts/Core/IdentifierSetters.d.ts.map +1 -0
- package/dist/ts/ts/Core/IdentifierSetters.js +9 -0
- package/dist/ts/ts/Core/OntologyAnnotation.d.ts +57 -0
- package/dist/ts/ts/Core/OntologyAnnotation.d.ts.map +1 -0
- package/dist/ts/ts/Core/OntologyAnnotation.js +207 -0
- package/dist/ts/ts/Core/OntologySourceReference.d.ts +31 -0
- package/dist/ts/ts/Core/OntologySourceReference.d.ts.map +1 -0
- package/dist/ts/ts/Core/OntologySourceReference.js +84 -0
- package/dist/ts/ts/Core/Person.d.ts +56 -0
- package/dist/ts/ts/Core/Person.d.ts.map +1 -0
- package/dist/ts/ts/Core/Person.js +183 -0
- package/dist/ts/ts/Core/Process/ColumnIndex.d.ts +79 -0
- package/dist/ts/ts/Core/Process/ColumnIndex.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/ColumnIndex.js +73 -0
- package/dist/ts/ts/Core/Process/Component.d.ts +65 -0
- package/dist/ts/ts/Core/Process/Component.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/Component.js +121 -0
- package/dist/ts/ts/Core/Process/Factor.d.ts +44 -0
- package/dist/ts/ts/Core/Process/Factor.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/Factor.js +104 -0
- package/dist/ts/ts/Core/Process/FactorValue.d.ts +44 -0
- package/dist/ts/ts/Core/Process/FactorValue.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/FactorValue.js +68 -0
- package/dist/ts/ts/Core/Process/Material.d.ts +27 -0
- package/dist/ts/ts/Core/Process/Material.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/Material.js +49 -0
- package/dist/ts/ts/Core/Process/MaterialAttribute.d.ts +53 -0
- package/dist/ts/ts/Core/Process/MaterialAttribute.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/MaterialAttribute.js +30 -0
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.d.ts +55 -0
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.js +68 -0
- package/dist/ts/ts/Core/Process/MaterialType.d.ts +22 -0
- package/dist/ts/ts/Core/Process/MaterialType.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/MaterialType.js +28 -0
- package/dist/ts/ts/Core/Process/Process.d.ts +113 -0
- package/dist/ts/ts/Core/Process/Process.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/Process.js +136 -0
- package/dist/ts/ts/Core/Process/ProcessInput.d.ts +117 -0
- package/dist/ts/ts/Core/Process/ProcessInput.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/ProcessInput.js +207 -0
- package/dist/ts/ts/Core/Process/ProcessOutput.d.ts +106 -0
- package/dist/ts/ts/Core/Process/ProcessOutput.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/ProcessOutput.js +178 -0
- package/dist/ts/ts/Core/Process/ProcessParameterValue.d.ts +40 -0
- package/dist/ts/ts/Core/Process/ProcessParameterValue.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/ProcessParameterValue.js +135 -0
- package/dist/ts/ts/Core/Process/ProcessSequence.d.ts +89 -0
- package/dist/ts/ts/Core/Process/ProcessSequence.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/ProcessSequence.js +56 -0
- package/dist/ts/ts/Core/Process/Protocol.d.ts +141 -0
- package/dist/ts/ts/Core/Process/Protocol.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/Protocol.js +54 -0
- package/dist/ts/ts/Core/Process/ProtocolParameter.d.ts +32 -0
- package/dist/ts/ts/Core/Process/ProtocolParameter.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/ProtocolParameter.js +69 -0
- package/dist/ts/ts/Core/Process/Sample.d.ts +31 -0
- package/dist/ts/ts/Core/Process/Sample.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/Sample.js +44 -0
- package/dist/ts/ts/Core/Process/Source.d.ts +24 -0
- package/dist/ts/ts/Core/Process/Source.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/Source.js +38 -0
- package/dist/ts/ts/Core/Publication.d.ts +36 -0
- package/dist/ts/ts/Core/Publication.d.ts.map +1 -0
- package/dist/ts/ts/Core/Publication.js +108 -0
- package/dist/ts/ts/Core/Table/ArcTable.d.ts +137 -0
- package/dist/ts/ts/Core/Table/ArcTable.d.ts.map +1 -0
- package/dist/ts/ts/Core/Table/ArcTable.js +889 -0
- package/dist/ts/ts/Core/Table/ArcTableAux.d.ts +154 -0
- package/dist/ts/ts/Core/Table/ArcTableAux.d.ts.map +1 -0
- package/dist/ts/ts/Core/Table/ArcTableAux.js +993 -0
- package/dist/ts/ts/Core/Table/ArcTables.d.ts +91 -0
- package/dist/ts/ts/Core/Table/ArcTables.d.ts.map +1 -0
- package/dist/ts/ts/Core/Table/ArcTables.js +415 -0
- package/dist/ts/ts/Core/Table/CompositeCell.d.ts +58 -0
- package/dist/ts/ts/Core/Table/CompositeCell.d.ts.map +1 -0
- package/dist/ts/ts/Core/Table/CompositeCell.js +334 -0
- package/dist/ts/ts/Core/Table/CompositeColumn.d.ts +19 -0
- package/dist/ts/ts/Core/Table/CompositeColumn.d.ts.map +1 -0
- package/dist/ts/ts/Core/Table/CompositeColumn.js +52 -0
- package/dist/ts/ts/Core/Table/CompositeHeader.d.ts +130 -0
- package/dist/ts/ts/Core/Table/CompositeHeader.d.ts.map +1 -0
- package/dist/ts/ts/Core/Table/CompositeHeader.js +792 -0
- package/dist/ts/ts/Core/Template.d.ts +69 -0
- package/dist/ts/ts/Core/Template.d.ts.map +1 -0
- package/dist/ts/ts/Core/Template.js +180 -0
- package/dist/ts/ts/Core/Templates.d.ts +18 -0
- package/dist/ts/ts/Core/Templates.d.ts.map +1 -0
- package/dist/ts/ts/Core/Templates.js +75 -0
- package/dist/ts/ts/Core/URI.d.ts.map +1 -0
- package/dist/ts/ts/Core/URI.js +8 -0
- package/dist/ts/ts/Core/Value.d.ts +41 -0
- package/dist/ts/ts/Core/Value.d.ts.map +1 -0
- package/dist/ts/ts/Core/Value.js +194 -0
- package/dist/ts/ts/CrossAsync.d.ts +9 -0
- package/dist/ts/ts/CrossAsync.d.ts.map +1 -0
- package/dist/ts/ts/CrossAsync.js +20 -0
- package/dist/ts/ts/FileSystem/Commit.d.ts +13 -0
- package/dist/ts/ts/FileSystem/Commit.d.ts.map +1 -0
- package/dist/ts/ts/FileSystem/DefaultGitattributes.d.ts.map +1 -0
- package/dist/ts/ts/FileSystem/DefaultGitattributes.js +3 -0
- package/dist/ts/ts/FileSystem/DefaultGitignore.d.ts.map +1 -0
- package/dist/ts/ts/FileSystem/DefaultGitignore.js +3 -0
- package/dist/ts/ts/FileSystem/FileSystem.d.ts +21 -0
- package/dist/ts/ts/FileSystem/FileSystem.d.ts.map +1 -0
- package/dist/ts/ts/FileSystem/FileSystem.js +48 -0
- package/dist/ts/ts/FileSystem/FileSystemTree.d.ts +55 -0
- package/dist/ts/ts/FileSystem/FileSystemTree.d.ts.map +1 -0
- package/dist/ts/ts/FileSystem/FileSystemTree.js +339 -0
- package/dist/ts/ts/FileSystem/Path.d.ts.map +1 -0
- package/dist/ts/ts/FileSystem/Path.js +36 -0
- package/dist/ts/ts/Json/Assay.d.ts +19 -0
- package/dist/ts/ts/Json/Assay.d.ts.map +1 -0
- package/dist/ts/ts/Json/Assay.js +221 -0
- package/dist/ts/ts/Json/Comment.d.ts +14 -0
- package/dist/ts/ts/Json/Comment.d.ts.map +1 -0
- package/dist/ts/ts/Json/Comment.js +112 -0
- package/dist/ts/ts/Json/Data.d.ts +17 -0
- package/dist/ts/ts/Json/Data.d.ts.map +1 -0
- package/dist/ts/ts/Json/Data.js +138 -0
- package/dist/ts/ts/Json/DataFile.d.ts +7 -0
- package/dist/ts/ts/Json/DataFile.d.ts.map +1 -0
- package/dist/ts/ts/Json/DataFile.js +55 -0
- package/dist/ts/ts/Json/DataMap/DataContext.d.ts +5 -0
- package/dist/ts/ts/Json/DataMap/DataContext.d.ts.map +1 -0
- package/dist/ts/ts/Json/DataMap/DataContext.js +39 -0
- package/dist/ts/ts/Json/DataMap/DataMap.d.ts +11 -0
- package/dist/ts/ts/Json/DataMap/DataMap.d.ts.map +1 -0
- package/dist/ts/ts/Json/DataMap/DataMap.js +27 -0
- package/dist/ts/ts/Json/Decode.d.ts +18 -0
- package/dist/ts/ts/Json/Decode.d.ts.map +1 -0
- package/dist/ts/ts/Json/Decode.js +209 -0
- package/dist/ts/ts/Json/Encode.d.ts +23 -0
- package/dist/ts/ts/Json/Encode.d.ts.map +1 -0
- package/dist/ts/ts/Json/Encode.js +65 -0
- package/dist/ts/ts/Json/IDTable.d.ts +5 -0
- package/dist/ts/ts/Json/IDTable.d.ts.map +1 -0
- package/dist/ts/ts/Json/IDTable.js +28 -0
- package/dist/ts/ts/Json/Investigation.d.ts +20 -0
- package/dist/ts/ts/Json/Investigation.d.ts.map +1 -0
- package/dist/ts/ts/Json/Investigation.js +229 -0
- package/dist/ts/ts/Json/OntologyAnnotation.d.ts +18 -0
- package/dist/ts/ts/Json/OntologyAnnotation.d.ts.map +1 -0
- package/dist/ts/ts/Json/OntologyAnnotation.js +194 -0
- package/dist/ts/ts/Json/OntologySourceReference.d.ts +12 -0
- package/dist/ts/ts/Json/OntologySourceReference.d.ts.map +1 -0
- package/dist/ts/ts/Json/OntologySourceReference.js +119 -0
- package/dist/ts/ts/Json/Person.d.ts +22 -0
- package/dist/ts/ts/Json/Person.d.ts.map +1 -0
- package/dist/ts/ts/Json/Person.js +316 -0
- package/dist/ts/ts/Json/Process/AssayMaterials.d.ts +7 -0
- package/dist/ts/ts/Json/Process/AssayMaterials.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/AssayMaterials.js +21 -0
- package/dist/ts/ts/Json/Process/Component.d.ts +11 -0
- package/dist/ts/ts/Json/Process/Component.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/Component.js +41 -0
- package/dist/ts/ts/Json/Process/Factor.d.ts +8 -0
- package/dist/ts/ts/Json/Process/Factor.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/Factor.js +53 -0
- package/dist/ts/ts/Json/Process/FactorValue.d.ts +11 -0
- package/dist/ts/ts/Json/Process/FactorValue.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/FactorValue.js +44 -0
- package/dist/ts/ts/Json/Process/Material.d.ts +12 -0
- package/dist/ts/ts/Json/Process/Material.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/Material.js +112 -0
- package/dist/ts/ts/Json/Process/MaterialAttribute.d.ts +8 -0
- package/dist/ts/ts/Json/Process/MaterialAttribute.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/MaterialAttribute.js +43 -0
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.d.ts +11 -0
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.js +44 -0
- package/dist/ts/ts/Json/Process/MaterialType.d.ts +7 -0
- package/dist/ts/ts/Json/Process/MaterialType.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/MaterialType.js +45 -0
- package/dist/ts/ts/Json/Process/Process.d.ts +10 -0
- package/dist/ts/ts/Json/Process/Process.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/Process.js +103 -0
- package/dist/ts/ts/Json/Process/ProcessInput.d.ts +9 -0
- package/dist/ts/ts/Json/Process/ProcessInput.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/ProcessInput.js +42 -0
- package/dist/ts/ts/Json/Process/ProcessOutput.d.ts +9 -0
- package/dist/ts/ts/Json/Process/ProcessOutput.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/ProcessOutput.js +35 -0
- package/dist/ts/ts/Json/Process/ProcessParameterValue.d.ts +11 -0
- package/dist/ts/ts/Json/Process/ProcessParameterValue.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/ProcessParameterValue.js +28 -0
- package/dist/ts/ts/Json/Process/Protocol.d.ts +10 -0
- package/dist/ts/ts/Json/Process/Protocol.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/Protocol.js +166 -0
- package/dist/ts/ts/Json/Process/ProtocolParameter.d.ts +8 -0
- package/dist/ts/ts/Json/Process/ProtocolParameter.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/ProtocolParameter.js +43 -0
- package/dist/ts/ts/Json/Process/Sample.d.ts +15 -0
- package/dist/ts/ts/Json/Process/Sample.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/Sample.js +165 -0
- package/dist/ts/ts/Json/Process/Source.d.ts +12 -0
- package/dist/ts/ts/Json/Process/Source.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/Source.js +133 -0
- package/dist/ts/ts/Json/Process/StudyMaterials.d.ts +7 -0
- package/dist/ts/ts/Json/Process/StudyMaterials.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/StudyMaterials.js +23 -0
- package/dist/ts/ts/Json/Process/Value.d.ts +7 -0
- package/dist/ts/ts/Json/Process/Value.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/Value.js +41 -0
- package/dist/ts/ts/Json/PropertyValue.d.ts +9 -0
- package/dist/ts/ts/Json/PropertyValue.d.ts.map +1 -0
- package/dist/ts/ts/Json/PropertyValue.js +280 -0
- package/dist/ts/ts/Json/Publication.d.ts +14 -0
- package/dist/ts/ts/Json/Publication.d.ts.map +1 -0
- package/dist/ts/ts/Json/Publication.js +123 -0
- package/dist/ts/ts/Json/ROCrate/LDContext.d.ts +5 -0
- package/dist/ts/ts/Json/ROCrate/LDContext.d.ts.map +1 -0
- package/dist/ts/ts/Json/ROCrate/LDContext.js +115 -0
- package/dist/ts/ts/Json/ROCrate/LDGraph.d.ts +5 -0
- package/dist/ts/ts/Json/ROCrate/LDGraph.d.ts.map +1 -0
- package/dist/ts/ts/Json/ROCrate/LDGraph.js +83 -0
- package/dist/ts/ts/Json/ROCrate/LDNode.d.ts +13 -0
- package/dist/ts/ts/Json/ROCrate/LDNode.d.ts.map +1 -0
- package/dist/ts/ts/Json/ROCrate/LDNode.js +190 -0
- package/dist/ts/ts/Json/ROCrate/LDRef.d.ts +5 -0
- package/dist/ts/ts/Json/ROCrate/LDRef.d.ts.map +1 -0
- package/dist/ts/ts/Json/ROCrate/LDRef.js +24 -0
- package/dist/ts/ts/Json/ROCrate/LDValue.d.ts +7 -0
- package/dist/ts/ts/Json/ROCrate/LDValue.d.ts.map +1 -0
- package/dist/ts/ts/Json/ROCrate/LDValue.js +63 -0
- package/dist/ts/ts/Json/StringTable.d.ts +9 -0
- package/dist/ts/ts/Json/StringTable.d.ts.map +1 -0
- package/dist/ts/ts/Json/StringTable.js +66 -0
- package/dist/ts/ts/Json/Study.d.ts +26 -0
- package/dist/ts/ts/Json/Study.d.ts.map +1 -0
- package/dist/ts/ts/Json/Study.js +326 -0
- package/dist/ts/ts/Json/Table/ArcTable.d.ts +15 -0
- package/dist/ts/ts/Json/Table/ArcTable.d.ts.map +1 -0
- package/dist/ts/ts/Json/Table/ArcTable.js +210 -0
- package/dist/ts/ts/Json/Table/CellTable.d.ts +11 -0
- package/dist/ts/ts/Json/Table/CellTable.d.ts.map +1 -0
- package/dist/ts/ts/Json/Table/CellTable.js +53 -0
- package/dist/ts/ts/Json/Table/CompositeCell.d.ts +10 -0
- package/dist/ts/ts/Json/Table/CompositeCell.d.ts.map +1 -0
- package/dist/ts/ts/Json/Table/CompositeCell.js +106 -0
- package/dist/ts/ts/Json/Table/CompositeHeader.d.ts +5 -0
- package/dist/ts/ts/Json/Table/CompositeHeader.d.ts.map +1 -0
- package/dist/ts/ts/Json/Table/CompositeHeader.js +121 -0
- package/dist/ts/ts/Json/Table/IOType.d.ts +5 -0
- package/dist/ts/ts/Json/Table/IOType.d.ts.map +1 -0
- package/dist/ts/ts/Json/Table/IOType.js +15 -0
- package/dist/ts/ts/Json/Table/OATable.d.ts +10 -0
- package/dist/ts/ts/Json/Table/OATable.d.ts.map +1 -0
- package/dist/ts/ts/Json/Table/OATable.js +50 -0
- package/dist/ts/ts/Json/Table/Templates.d.ts +15 -0
- package/dist/ts/ts/Json/Table/Templates.d.ts.map +1 -0
- package/dist/ts/ts/Json/Table/Templates.js +15 -0
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.d.ts +26 -0
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.js +61 -0
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.d.ts +16 -0
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.js +29 -0
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.d.ts +18 -0
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.js +41 -0
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.d.ts +26 -0
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.js +69 -0
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.d.ts +19 -0
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.js +37 -0
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts +17 -0
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.js +37 -0
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts +19 -0
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +41 -0
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.d.ts +15 -0
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.js +25 -0
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.d.ts +25 -0
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.js +86 -0
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.d.ts +23 -0
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.js +57 -0
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.d.ts +22 -0
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.js +61 -0
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.d.ts +19 -0
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.js +45 -0
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.d.ts +18 -0
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.js +33 -0
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.d.ts +18 -0
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.js +33 -0
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.d.ts +34 -0
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.js +77 -0
- package/dist/ts/ts/Json/context/rocrate/property_value_context.d.ts +3 -0
- package/dist/ts/ts/Json/context/rocrate/property_value_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/property_value_context.js +61 -0
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.d.ts +16 -0
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.d.ts.map +1 -0
- package/dist/ts/ts/Json.d.ts +90 -0
- package/dist/ts/ts/Json.d.ts.map +1 -0
- package/dist/ts/ts/Json.js +171 -0
- package/dist/ts/ts/JsonIO/Assay.d.ts +19 -0
- package/dist/ts/ts/JsonIO/Assay.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/Assay.js +77 -0
- package/dist/ts/ts/JsonIO/Investigation.d.ts +19 -0
- package/dist/ts/ts/JsonIO/Investigation.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/Investigation.js +77 -0
- package/dist/ts/ts/JsonIO/LDObject.d.ts +29 -0
- package/dist/ts/ts/JsonIO/LDObject.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/LDObject.js +77 -0
- package/dist/ts/ts/JsonIO/OntologyAnnotation.d.ts +16 -0
- package/dist/ts/ts/JsonIO/OntologyAnnotation.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/OntologyAnnotation.js +56 -0
- package/dist/ts/ts/JsonIO/Study.d.ts +20 -0
- package/dist/ts/ts/JsonIO/Study.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/Study.js +77 -0
- package/dist/ts/ts/JsonIO/Table/Compression.d.ts +8 -0
- package/dist/ts/ts/JsonIO/Table/Compression.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/Table/Compression.js +39 -0
- package/dist/ts/ts/JsonIO/Table/Templates.d.ts +15 -0
- package/dist/ts/ts/JsonIO/Table/Templates.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/Table/Templates.js +25 -0
- package/dist/ts/ts/ROCrate/Generic/Comment.d.ts +21 -0
- package/dist/ts/ts/ROCrate/Generic/Comment.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/Comment.js +103 -0
- package/dist/ts/ts/ROCrate/Generic/Dataset.d.ts +92 -0
- package/dist/ts/ts/ROCrate/Generic/Dataset.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/Dataset.js +624 -0
- package/dist/ts/ts/ROCrate/Generic/DefinedTerm.d.ts +21 -0
- package/dist/ts/ts/ROCrate/Generic/DefinedTerm.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/DefinedTerm.js +103 -0
- package/dist/ts/ts/ROCrate/Generic/File.d.ts +35 -0
- package/dist/ts/ts/ROCrate/Generic/File.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/File.js +184 -0
- package/dist/ts/ts/ROCrate/Generic/LabProcess.d.ts +43 -0
- package/dist/ts/ts/ROCrate/Generic/LabProcess.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/LabProcess.js +222 -0
- package/dist/ts/ts/ROCrate/Generic/LabProtocol.d.ts +44 -0
- package/dist/ts/ts/ROCrate/Generic/LabProtocol.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/LabProtocol.js +257 -0
- package/dist/ts/ts/ROCrate/Generic/Organization.d.ts +17 -0
- package/dist/ts/ts/ROCrate/Generic/Organization.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/Organization.js +63 -0
- package/dist/ts/ts/ROCrate/Generic/Person.d.ts +51 -0
- package/dist/ts/ts/ROCrate/Generic/Person.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/Person.js +377 -0
- package/dist/ts/ts/ROCrate/Generic/PostalAddress.d.ts +25 -0
- package/dist/ts/ts/ROCrate/Generic/PostalAddress.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/PostalAddress.js +143 -0
- package/dist/ts/ts/ROCrate/Generic/PropertyValue.d.ts +73 -0
- package/dist/ts/ts/ROCrate/Generic/PropertyValue.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/PropertyValue.js +512 -0
- package/dist/ts/ts/ROCrate/Generic/Sample.d.ts +30 -0
- package/dist/ts/ts/ROCrate/Generic/Sample.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/Sample.js +131 -0
- package/dist/ts/ts/ROCrate/Generic/ScholarlyArticle.d.ts +34 -0
- package/dist/ts/ts/ROCrate/Generic/ScholarlyArticle.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/ScholarlyArticle.js +173 -0
- package/dist/ts/ts/ROCrate/Helper.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Helper.js +7 -0
- package/dist/ts/ts/ROCrate/LDContext.d.ts +43 -0
- package/dist/ts/ts/ROCrate/LDContext.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/LDContext.js +288 -0
- package/dist/ts/ts/ROCrate/LDObject.d.ts +97 -0
- package/dist/ts/ts/ROCrate/LDObject.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/LDObject.js +855 -0
- package/dist/ts/ts/ROCrate/ROCrateContext.d.ts +7 -0
- package/dist/ts/ts/ROCrate/ROCrateContext.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/ROCrateContext.js +39 -0
- package/dist/ts/ts/ROCrateIO.d.ts +16 -0
- package/dist/ts/ts/ROCrateIO.d.ts.map +1 -0
- package/dist/ts/ts/ROCrateIO.js +58 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts +40 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.js +149 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts +9 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.js +63 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts +24 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +108 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts +22 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +410 -0
- package/dist/ts/ts/Spreadsheet/ArcAssay.d.ts +31 -0
- package/dist/ts/ts/Spreadsheet/ArcAssay.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/ArcAssay.js +169 -0
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.d.ts +42 -0
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.js +316 -0
- package/dist/ts/ts/Spreadsheet/ArcRun.d.ts +27 -0
- package/dist/ts/ts/Spreadsheet/ArcRun.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/ArcRun.js +136 -0
- package/dist/ts/ts/Spreadsheet/ArcStudy.d.ts +26 -0
- package/dist/ts/ts/Spreadsheet/ArcStudy.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/ArcStudy.js +92 -0
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.d.ts +27 -0
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.js +125 -0
- package/dist/ts/ts/Spreadsheet/CollectionAux.d.ts +23 -0
- package/dist/ts/ts/Spreadsheet/CollectionAux.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/CollectionAux.js +34 -0
- package/dist/ts/ts/Spreadsheet/DataMap.d.ts +8 -0
- package/dist/ts/ts/Spreadsheet/DataMap.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/DataMap.js +33 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapColumn.d.ts +7 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapColumn.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapColumn.js +41 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapHeader.d.ts +23 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapHeader.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapHeader.js +418 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapTable.d.ts +23 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapTable.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapTable.js +85 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.d.ts +14 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.js +90 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.d.ts +14 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.js +58 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.d.ts +25 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.js +85 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.d.ts +60 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.js +133 -0
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts +16 -0
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.js +15 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.d.ts +18 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.js +74 -0
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts +12 -0
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.js +58 -0
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts +18 -0
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.js +62 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.d.ts +28 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.js +94 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.d.ts +21 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.js +81 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Run.d.ts +14 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Run.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Run.js +91 -0
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.d.ts +37 -0
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.js +193 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Study.d.ts +38 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Study.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Study.js +238 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts +31 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.js +105 -0
- package/dist/ts/ts/Template.Web.d.ts +11 -0
- package/dist/ts/ts/Template.Web.d.ts.map +1 -0
- package/dist/ts/ts/Template.Web.js +22 -0
- package/dist/ts/ts/ValidationPackages/ValidationPackage.d.ts +21 -0
- package/dist/ts/ts/ValidationPackages/ValidationPackage.d.ts.map +1 -0
- package/dist/ts/ts/ValidationPackages/ValidationPackage.js +53 -0
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.d.ts +23 -0
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.d.ts.map +1 -0
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.js +78 -0
- package/dist/ts/ts/WebRequest/WebRequest.Node.d.ts +4 -0
- package/dist/ts/ts/WebRequest/WebRequest.Node.d.ts.map +1 -0
- package/dist/ts/ts/WebRequest/WebRequest.Node.js +13 -0
- package/dist/ts/ts/WebRequest/WebRequest.d.ts +3 -0
- package/dist/ts/ts/WebRequest/WebRequest.d.ts.map +1 -0
- package/dist/ts/ts/WebRequest/WebRequest.js +19 -0
- package/dist/ts/ts/Xlsx.d.ts +50 -0
- package/dist/ts/ts/Xlsx.d.ts.map +1 -0
- package/dist/ts/ts/Xlsx.js +91 -0
- package/dist/ts/ts/Yaml/Encode.d.ts +5 -0
- package/dist/ts/ts/Yaml/Encode.d.ts.map +1 -0
- package/dist/ts/ts/Yaml/Encode.js +8 -0
- package/dist/ts/ts/Yaml/ValidationPackage.d.ts +10 -0
- package/dist/ts/ts/Yaml/ValidationPackage.d.ts.map +1 -0
- package/dist/ts/ts/Yaml/ValidationPackage.js +26 -0
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts +10 -0
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts.map +1 -0
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.js +40 -0
- package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +344 -0
- package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +103 -0
- package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +19 -0
- package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +17 -0
- package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +7 -0
- package/dist/ts/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.js +5 -0
- package/dist/ts/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +18 -0
- package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +44 -0
- package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +5 -0
- package/dist/ts/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +142 -0
- package/dist/ts/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +76 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Cells/FsCell.fs.js +359 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Cells/FsCellsCollection.fs.js +344 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsAddress.fs.js +154 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsColumn.fs.js +116 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsRow.fs.js +126 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsWorkbook.fs.js +135 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsWorksheet.fs.js +422 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/HashCodes.fs.js +5 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Value.fs.js +25 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRange.fs.js +28 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeAddress.fs.js +82 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeBase.fs.js +69 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeColumn.fs.js +42 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeRow.fs.js +29 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Tables/FsTable.fs.js +348 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Tables/FsTableField.fs.js +86 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Cell.fs.js +68 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/FsExtensions.fs.js +12 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Table.fs.js +54 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Workbook.fs.js +33 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Worksheet.fs.js +63 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Xlsx.fs.js +66 -0
- package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Decode.fs.js +544 -0
- package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Encode.fs.js +31 -0
- package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Types.fs.js +38 -0
- package/dist/ts/ts/fable_modules/Thoth.Json.JavaScript.0.4.1/Decode.fs.js +79 -0
- package/dist/ts/ts/fable_modules/Thoth.Json.JavaScript.0.4.1/Encode.fs.js +57 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.js +235 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.js +16 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +45 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +89 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +480 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.js +11 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +212 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +164 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +136 -0
- package/package.json +16 -10
- package/dist/ts/cjs/index.js +0 -85
- package/dist/ts/cjs/ts/ARC.js +0 -976
- package/dist/ts/cjs/ts/Contract/ARC.js +0 -61
- package/dist/ts/cjs/ts/Contract/ArcAssay.js +0 -103
- package/dist/ts/cjs/ts/Contract/ArcInvestigation.js +0 -77
- package/dist/ts/cjs/ts/Contract/ArcRun.js +0 -103
- package/dist/ts/cjs/ts/Contract/ArcStudy.js +0 -103
- package/dist/ts/cjs/ts/Contract/ArcWorkflow.js +0 -104
- package/dist/ts/cjs/ts/Contract/Contract.js +0 -100
- package/dist/ts/cjs/ts/Contract/Datamap.js +0 -314
- package/dist/ts/cjs/ts/Contract/Git.js +0 -94
- package/dist/ts/cjs/ts/Contract/ValidationPackagesConfig.js +0 -97
- package/dist/ts/cjs/ts/ContractIO/ContractIO.js +0 -217
- package/dist/ts/cjs/ts/ContractIO/FileSystemHelper.js +0 -205
- package/dist/ts/cjs/ts/Conversion.js +0 -1774
- package/dist/ts/cjs/ts/Core/ArcTypes.js +0 -3803
- package/dist/ts/cjs/ts/Core/Comment.js +0 -106
- package/dist/ts/cjs/ts/Core/CommentList.js +0 -134
- package/dist/ts/cjs/ts/Core/Conversion.js +0 -1198
- package/dist/ts/cjs/ts/Core/Data.js +0 -196
- package/dist/ts/cjs/ts/Core/DataContext.js +0 -141
- package/dist/ts/cjs/ts/Core/DataFile.js +0 -98
- package/dist/ts/cjs/ts/Core/DataMap.js +0 -185
- package/dist/ts/cjs/ts/Core/Helper/Collections.js +0 -502
- package/dist/ts/cjs/ts/Core/Helper/HashCodes.js +0 -40
- package/dist/ts/cjs/ts/Core/Helper/Identifier.js +0 -329
- package/dist/ts/cjs/ts/Core/Helper/ORCID.js +0 -40
- package/dist/ts/cjs/ts/Core/Helper/Printer.js +0 -2
- package/dist/ts/cjs/ts/Core/Helper/Regex.js +0 -616
- package/dist/ts/cjs/ts/Core/Helper/SemVer.js +0 -59
- package/dist/ts/cjs/ts/Core/Helper/Url.js +0 -40
- package/dist/ts/cjs/ts/Core/IPropertyValue.js +0 -2
- package/dist/ts/cjs/ts/Core/IdentifierSetters.js +0 -27
- package/dist/ts/cjs/ts/Core/OntologyAnnotation.js +0 -219
- package/dist/ts/cjs/ts/Core/OntologySourceReference.js +0 -94
- package/dist/ts/cjs/ts/Core/Person.js +0 -196
- package/dist/ts/cjs/ts/Core/Process/ColumnIndex.js +0 -258
- package/dist/ts/cjs/ts/Core/Process/Component.js +0 -200
- package/dist/ts/cjs/ts/Core/Process/Factor.js +0 -111
- package/dist/ts/cjs/ts/Core/Process/FactorValue.js +0 -143
- package/dist/ts/cjs/ts/Core/Process/Material.js +0 -68
- package/dist/ts/cjs/ts/Core/Process/MaterialAttribute.js +0 -103
- package/dist/ts/cjs/ts/Core/Process/MaterialAttributeValue.js +0 -160
- package/dist/ts/cjs/ts/Core/Process/MaterialType.js +0 -51
- package/dist/ts/cjs/ts/Core/Process/Process.js +0 -371
- package/dist/ts/cjs/ts/Core/Process/ProcessInput.js +0 -321
- package/dist/ts/cjs/ts/Core/Process/ProcessOutput.js +0 -282
- package/dist/ts/cjs/ts/Core/Process/ProcessParameterValue.js +0 -141
- package/dist/ts/cjs/ts/Core/Process/ProcessSequence.js +0 -250
- package/dist/ts/cjs/ts/Core/Process/Protocol.js +0 -248
- package/dist/ts/cjs/ts/Core/Process/ProtocolParameter.js +0 -75
- package/dist/ts/cjs/ts/Core/Process/Sample.js +0 -73
- package/dist/ts/cjs/ts/Core/Process/Source.js +0 -56
- package/dist/ts/cjs/ts/Core/Publication.js +0 -118
- package/dist/ts/cjs/ts/Core/Table/ArcTable.js +0 -923
- package/dist/ts/cjs/ts/Core/Table/ArcTableAux.js +0 -1262
- package/dist/ts/cjs/ts/Core/Table/ArcTables.js +0 -476
- package/dist/ts/cjs/ts/Core/Table/CompositeCell.js +0 -317
- package/dist/ts/cjs/ts/Core/Table/CompositeColumn.js +0 -60
- package/dist/ts/cjs/ts/Core/Table/CompositeHeader.js +0 -718
- package/dist/ts/cjs/ts/Core/Template.js +0 -196
- package/dist/ts/cjs/ts/Core/Templates.js +0 -86
- package/dist/ts/cjs/ts/Core/URI.js +0 -20
- package/dist/ts/cjs/ts/Core/Value.js +0 -191
- package/dist/ts/cjs/ts/CrossAsync.js +0 -35
- package/dist/ts/cjs/ts/FileSystem/Commit.js +0 -20
- package/dist/ts/cjs/ts/FileSystem/DefaultGitattributes.js +0 -4
- package/dist/ts/cjs/ts/FileSystem/DefaultGitignore.js +0 -4
- package/dist/ts/cjs/ts/FileSystem/FileSystem.js +0 -55
- package/dist/ts/cjs/ts/FileSystem/FileSystemTree.js +0 -322
- package/dist/ts/cjs/ts/FileSystem/Path.js +0 -63
- package/dist/ts/cjs/ts/Json/Assay.js +0 -234
- package/dist/ts/cjs/ts/Json/Comment.js +0 -119
- package/dist/ts/cjs/ts/Json/Data.js +0 -147
- package/dist/ts/cjs/ts/Json/DataFile.js +0 -54
- package/dist/ts/cjs/ts/Json/DataMap/DataContext.js +0 -40
- package/dist/ts/cjs/ts/Json/DataMap/DataMap.js +0 -30
- package/dist/ts/cjs/ts/Json/Decode.js +0 -231
- package/dist/ts/cjs/ts/Json/Encode.js +0 -117
- package/dist/ts/cjs/ts/Json/IDTable.js +0 -30
- package/dist/ts/cjs/ts/Json/Investigation.js +0 -254
- package/dist/ts/cjs/ts/Json/OntologyAnnotation.js +0 -207
- package/dist/ts/cjs/ts/Json/OntologySourceReference.js +0 -125
- package/dist/ts/cjs/ts/Json/Person.js +0 -338
- package/dist/ts/cjs/ts/Json/Process/AssayMaterials.js +0 -21
- package/dist/ts/cjs/ts/Json/Process/Component.js +0 -47
- package/dist/ts/cjs/ts/Json/Process/Factor.js +0 -58
- package/dist/ts/cjs/ts/Json/Process/FactorValue.js +0 -47
- package/dist/ts/cjs/ts/Json/Process/Material.js +0 -120
- package/dist/ts/cjs/ts/Json/Process/MaterialAttribute.js +0 -47
- package/dist/ts/cjs/ts/Json/Process/MaterialAttributeValue.js +0 -47
- package/dist/ts/cjs/ts/Json/Process/MaterialType.js +0 -46
- package/dist/ts/cjs/ts/Json/Process/Process.js +0 -109
- package/dist/ts/cjs/ts/Json/Process/ProcessInput.js +0 -38
- package/dist/ts/cjs/ts/Json/Process/ProcessOutput.js +0 -33
- package/dist/ts/cjs/ts/Json/Process/ProcessParameterValue.js +0 -33
- package/dist/ts/cjs/ts/Json/Process/Protocol.js +0 -180
- package/dist/ts/cjs/ts/Json/Process/ProtocolParameter.js +0 -47
- package/dist/ts/cjs/ts/Json/Process/Sample.js +0 -176
- package/dist/ts/cjs/ts/Json/Process/Source.js +0 -145
- package/dist/ts/cjs/ts/Json/Process/StudyMaterials.js +0 -23
- package/dist/ts/cjs/ts/Json/Process/Value.js +0 -39
- package/dist/ts/cjs/ts/Json/PropertyValue.js +0 -300
- package/dist/ts/cjs/ts/Json/Publication.js +0 -130
- package/dist/ts/cjs/ts/Json/ROCrate/LDContext.js +0 -123
- package/dist/ts/cjs/ts/Json/ROCrate/LDGraph.js +0 -88
- package/dist/ts/cjs/ts/Json/ROCrate/LDNode.js +0 -213
- package/dist/ts/cjs/ts/Json/ROCrate/LDRef.js +0 -25
- package/dist/ts/cjs/ts/Json/ROCrate/LDValue.js +0 -70
- package/dist/ts/cjs/ts/Json/StringTable.js +0 -70
- package/dist/ts/cjs/ts/Json/Study.js +0 -347
- package/dist/ts/cjs/ts/Json/Table/ArcTable.js +0 -217
- package/dist/ts/cjs/ts/Json/Table/CellTable.js +0 -58
- package/dist/ts/cjs/ts/Json/Table/CompositeCell.js +0 -103
- package/dist/ts/cjs/ts/Json/Table/CompositeHeader.js +0 -108
- package/dist/ts/cjs/ts/Json/Table/IOType.js +0 -16
- package/dist/ts/cjs/ts/Json/Table/OATable.js +0 -55
- package/dist/ts/cjs/ts/Json/Table/Templates.js +0 -106
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_assay_context.js +0 -89
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_comment_context.js +0 -47
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_data_context.js +0 -61
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_investigation_context.js +0 -97
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_material_context.js +0 -58
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_ontology_annotation_context.js +0 -56
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +0 -62
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_organization_context.js +0 -42
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_person_context.js +0 -112
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_process_context.js +0 -82
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_protocol_context.js +0 -85
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_publication_context.js +0 -66
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_sample_context.js +0 -53
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_source_context.js +0 -53
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_study_context.js +0 -113
- package/dist/ts/cjs/ts/Json/context/rocrate/property_value_context.js +0 -61
- package/dist/ts/cjs/ts/Json/context/rocrate/rocrate_context.js +0 -63
- package/dist/ts/cjs/ts/Json.js +0 -240
- package/dist/ts/cjs/ts/JsonIO/Assay.js +0 -104
- package/dist/ts/cjs/ts/JsonIO/Investigation.js +0 -104
- package/dist/ts/cjs/ts/JsonIO/LDObject.js +0 -107
- package/dist/ts/cjs/ts/JsonIO/OntologyAnnotation.js +0 -77
- package/dist/ts/cjs/ts/JsonIO/Study.js +0 -104
- package/dist/ts/cjs/ts/JsonIO/Table/Compression.js +0 -40
- package/dist/ts/cjs/ts/JsonIO/Table/Templates.js +0 -92
- package/dist/ts/cjs/ts/ROCrate/Generic/Comment.js +0 -117
- package/dist/ts/cjs/ts/ROCrate/Generic/Dataset.js +0 -671
- package/dist/ts/cjs/ts/ROCrate/Generic/DefinedTerm.js +0 -117
- package/dist/ts/cjs/ts/ROCrate/Generic/File.js +0 -202
- package/dist/ts/cjs/ts/ROCrate/Generic/LabProcess.js +0 -240
- package/dist/ts/cjs/ts/ROCrate/Generic/LabProtocol.js +0 -277
- package/dist/ts/cjs/ts/ROCrate/Generic/Organization.js +0 -73
- package/dist/ts/cjs/ts/ROCrate/Generic/Person.js +0 -413
- package/dist/ts/cjs/ts/ROCrate/Generic/PostalAddress.js +0 -161
- package/dist/ts/cjs/ts/ROCrate/Generic/PropertyValue.js +0 -550
- package/dist/ts/cjs/ts/ROCrate/Generic/Sample.js +0 -141
- package/dist/ts/cjs/ts/ROCrate/Generic/ScholarlyArticle.js +0 -189
- package/dist/ts/cjs/ts/ROCrate/Helper.js +0 -7
- package/dist/ts/cjs/ts/ROCrate/LDContext.js +0 -322
- package/dist/ts/cjs/ts/ROCrate/LDObject.js +0 -984
- package/dist/ts/cjs/ts/ROCrate/ROCrateContext.js +0 -44
- package/dist/ts/cjs/ts/ROCrateIO.js +0 -75
- package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/ArcTable.js +0 -176
- package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/CompositeCell.js +0 -68
- package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +0 -150
- package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +0 -476
- package/dist/ts/cjs/ts/Spreadsheet/ArcAssay.js +0 -218
- package/dist/ts/cjs/ts/Spreadsheet/ArcInvestigation.js +0 -356
- package/dist/ts/cjs/ts/Spreadsheet/ArcRun.js +0 -177
- package/dist/ts/cjs/ts/Spreadsheet/ArcStudy.js +0 -130
- package/dist/ts/cjs/ts/Spreadsheet/ArcWorkflow.js +0 -166
- package/dist/ts/cjs/ts/Spreadsheet/CollectionAux.js +0 -128
- package/dist/ts/cjs/ts/Spreadsheet/DataMap.js +0 -41
- package/dist/ts/cjs/ts/Spreadsheet/DataMapTable/DataMapColumn.js +0 -43
- package/dist/ts/cjs/ts/Spreadsheet/DataMapTable/DataMapHeader.js +0 -480
- package/dist/ts/cjs/ts/Spreadsheet/DataMapTable/DataMapTable.js +0 -105
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Assays.js +0 -98
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Comment.js +0 -68
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Contacts.js +0 -92
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Conversions.js +0 -187
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/DesignDescriptors.js +0 -25
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Factors.js +0 -83
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/OntologyAnnotation.js +0 -65
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/OntologySourceReference.js +0 -68
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Protocols.js +0 -103
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Publication.js +0 -88
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Run.js +0 -99
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/SparseTable.js +0 -457
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Study.js +0 -259
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Workflow.js +0 -111
- package/dist/ts/cjs/ts/Template.Web.js +0 -29
- package/dist/ts/cjs/ts/ValidationPackages/ValidationPackage.js +0 -63
- package/dist/ts/cjs/ts/ValidationPackages/ValidationPackagesConfig.js +0 -90
- package/dist/ts/cjs/ts/WebRequest/WebRequest.Node.js +0 -17
- package/dist/ts/cjs/ts/WebRequest/WebRequest.js +0 -20
- package/dist/ts/cjs/ts/Xlsx.js +0 -133
- package/dist/ts/cjs/ts/Yaml/Encode.js +0 -9
- package/dist/ts/cjs/ts/Yaml/ValidationPackage.js +0 -49
- package/dist/ts/cjs/ts/Yaml/ValidationPackagesConfig.js +0 -50
- package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +0 -444
- package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +0 -142
- package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +0 -53
- package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +0 -23
- package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +0 -87
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.js +0 -2
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.js +0 -2
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.js +0 -5
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.js +0 -2
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.js +0 -123
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.js +0 -2
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.js +0 -2
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.js +0 -2
- package/dist/ts/cjs/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +0 -360
- package/dist/ts/cjs/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +0 -220
- package/dist/ts/cjs/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +0 -20
- package/dist/ts/cjs/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +0 -431
- package/dist/ts/cjs/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +0 -186
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.js +0 -477
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.js +0 -521
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.js +0 -211
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.js +0 -58
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.js +0 -139
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.js +0 -365
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.js +0 -259
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.js +0 -127
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.js +0 -137
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.js +0 -140
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.js +0 -435
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.js +0 -69
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.js +0 -40
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.js +0 -40
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.js +0 -31
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.js +0 -78
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.js +0 -46
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.js +0 -134
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.js +0 -43
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.js +0 -238
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.js +0 -93
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.js +0 -76
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.js +0 -42
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.js +0 -332
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.js +0 -175
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.js +0 -80
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.js +0 -65
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.js +0 -53
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.js +0 -55
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.js +0 -34
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.js +0 -68
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.js +0 -72
- package/dist/ts/cjs/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.js +0 -1316
- package/dist/ts/cjs/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.js +0 -200
- package/dist/ts/cjs/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.js +0 -103
- package/dist/ts/cjs/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.js +0 -97
- package/dist/ts/cjs/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.js +0 -59
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.js +0 -1723
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.js +0 -75
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +0 -13
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +0 -50
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +0 -104
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +0 -527
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.js +0 -12
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +0 -235
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +0 -166
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +0 -174
- package/dist/ts/esm/index.js +0 -60
- package/dist/ts/esm/ts/ARC.js +0 -959
- package/dist/ts/esm/ts/Contract/ARC.js +0 -58
- package/dist/ts/esm/ts/Contract/ArcAssay.js +0 -93
- package/dist/ts/esm/ts/Contract/ArcInvestigation.js +0 -69
- package/dist/ts/esm/ts/Contract/ArcRun.js +0 -93
- package/dist/ts/esm/ts/Contract/ArcStudy.js +0 -93
- package/dist/ts/esm/ts/Contract/ArcWorkflow.js +0 -94
- package/dist/ts/esm/ts/Contract/Contract.js +0 -87
- package/dist/ts/esm/ts/Contract/Datamap.js +0 -287
- package/dist/ts/esm/ts/Contract/Git.js +0 -72
- package/dist/ts/esm/ts/Contract/ValidationPackagesConfig.js +0 -88
- package/dist/ts/esm/ts/ContractIO/ContractIO.js +0 -207
- package/dist/ts/esm/ts/ContractIO/FileSystemHelper.js +0 -176
- package/dist/ts/esm/ts/Conversion.js +0 -1654
- package/dist/ts/esm/ts/Core/ArcTypes.js +0 -3728
- package/dist/ts/esm/ts/Core/Comment.js +0 -98
- package/dist/ts/esm/ts/Core/CommentList.js +0 -126
- package/dist/ts/esm/ts/Core/Conversion.js +0 -1145
- package/dist/ts/esm/ts/Core/Data.js +0 -188
- package/dist/ts/esm/ts/Core/DataContext.js +0 -119
- package/dist/ts/esm/ts/Core/DataFile.js +0 -82
- package/dist/ts/esm/ts/Core/DataMap.js +0 -156
- package/dist/ts/esm/ts/Core/Helper/Collections.js +0 -462
- package/dist/ts/esm/ts/Core/Helper/HashCodes.js +0 -32
- package/dist/ts/esm/ts/Core/Helper/Identifier.js +0 -298
- package/dist/ts/esm/ts/Core/Helper/ORCID.js +0 -34
- package/dist/ts/esm/ts/Core/Helper/Printer.js +0 -1
- package/dist/ts/esm/ts/Core/Helper/Regex.js +0 -579
- package/dist/ts/esm/ts/Core/Helper/SemVer.js +0 -50
- package/dist/ts/esm/ts/Core/Helper/Url.js +0 -30
- package/dist/ts/esm/ts/Core/IPropertyValue.js +0 -1
- package/dist/ts/esm/ts/Core/IdentifierSetters.js +0 -21
- package/dist/ts/esm/ts/Core/OntologyAnnotation.js +0 -213
- package/dist/ts/esm/ts/Core/OntologySourceReference.js +0 -88
- package/dist/ts/esm/ts/Core/Person.js +0 -190
- package/dist/ts/esm/ts/Core/Process/ColumnIndex.js +0 -204
- package/dist/ts/esm/ts/Core/Process/Component.js +0 -180
- package/dist/ts/esm/ts/Core/Process/Factor.js +0 -106
- package/dist/ts/esm/ts/Core/Process/FactorValue.js +0 -127
- package/dist/ts/esm/ts/Core/Process/Material.js +0 -57
- package/dist/ts/esm/ts/Core/Process/MaterialAttribute.js +0 -86
- package/dist/ts/esm/ts/Core/Process/MaterialAttributeValue.js +0 -142
- package/dist/ts/esm/ts/Core/Process/MaterialType.js +0 -42
- package/dist/ts/esm/ts/Core/Process/Process.js +0 -341
- package/dist/ts/esm/ts/Core/Process/ProcessInput.js +0 -283
- package/dist/ts/esm/ts/Core/Process/ProcessOutput.js +0 -248
- package/dist/ts/esm/ts/Core/Process/ProcessParameterValue.js +0 -136
- package/dist/ts/esm/ts/Core/Process/ProcessSequence.js +0 -227
- package/dist/ts/esm/ts/Core/Process/Protocol.js +0 -210
- package/dist/ts/esm/ts/Core/Process/ProtocolParameter.js +0 -70
- package/dist/ts/esm/ts/Core/Process/Sample.js +0 -59
- package/dist/ts/esm/ts/Core/Process/Source.js +0 -45
- package/dist/ts/esm/ts/Core/Publication.js +0 -112
- package/dist/ts/esm/ts/Core/Table/ArcTable.js +0 -917
- package/dist/ts/esm/ts/Core/Table/ArcTableAux.js +0 -1213
- package/dist/ts/esm/ts/Core/Table/ArcTables.js +0 -461
- package/dist/ts/esm/ts/Core/Table/CompositeCell.js +0 -308
- package/dist/ts/esm/ts/Core/Table/CompositeColumn.js +0 -55
- package/dist/ts/esm/ts/Core/Table/CompositeHeader.js +0 -691
- package/dist/ts/esm/ts/Core/Template.js +0 -186
- package/dist/ts/esm/ts/Core/Templates.js +0 -79
- package/dist/ts/esm/ts/Core/URI.js +0 -16
- package/dist/ts/esm/ts/Core/Value.js +0 -182
- package/dist/ts/esm/ts/CrossAsync.js +0 -27
- package/dist/ts/esm/ts/FileSystem/Commit.js +0 -15
- package/dist/ts/esm/ts/FileSystem/DefaultGitattributes.js +0 -1
- package/dist/ts/esm/ts/FileSystem/DefaultGitignore.js +0 -1
- package/dist/ts/esm/ts/FileSystem/FileSystem.js +0 -50
- package/dist/ts/esm/ts/FileSystem/FileSystemTree.js +0 -315
- package/dist/ts/esm/ts/FileSystem/Path.js +0 -51
- package/dist/ts/esm/ts/Json/Assay.js +0 -225
- package/dist/ts/esm/ts/Json/Comment.js +0 -111
- package/dist/ts/esm/ts/Json/Data.js +0 -138
- package/dist/ts/esm/ts/Json/DataFile.js +0 -50
- package/dist/ts/esm/ts/Json/DataMap/DataContext.js +0 -36
- package/dist/ts/esm/ts/Json/DataMap/DataMap.js +0 -24
- package/dist/ts/esm/ts/Json/Decode.js +0 -219
- package/dist/ts/esm/ts/Json/Encode.js +0 -103
- package/dist/ts/esm/ts/Json/IDTable.js +0 -26
- package/dist/ts/esm/ts/Json/Investigation.js +0 -244
- package/dist/ts/esm/ts/Json/OntologyAnnotation.js +0 -197
- package/dist/ts/esm/ts/Json/OntologySourceReference.js +0 -118
- package/dist/ts/esm/ts/Json/Person.js +0 -329
- package/dist/ts/esm/ts/Json/Process/AssayMaterials.js +0 -18
- package/dist/ts/esm/ts/Json/Process/Component.js +0 -42
- package/dist/ts/esm/ts/Json/Process/Factor.js +0 -53
- package/dist/ts/esm/ts/Json/Process/FactorValue.js +0 -42
- package/dist/ts/esm/ts/Json/Process/Material.js +0 -114
- package/dist/ts/esm/ts/Json/Process/MaterialAttribute.js +0 -42
- package/dist/ts/esm/ts/Json/Process/MaterialAttributeValue.js +0 -42
- package/dist/ts/esm/ts/Json/Process/MaterialType.js +0 -42
- package/dist/ts/esm/ts/Json/Process/Process.js +0 -103
- package/dist/ts/esm/ts/Json/Process/ProcessInput.js +0 -33
- package/dist/ts/esm/ts/Json/Process/ProcessOutput.js +0 -28
- package/dist/ts/esm/ts/Json/Process/ProcessParameterValue.js +0 -28
- package/dist/ts/esm/ts/Json/Process/Protocol.js +0 -174
- package/dist/ts/esm/ts/Json/Process/ProtocolParameter.js +0 -42
- package/dist/ts/esm/ts/Json/Process/Sample.js +0 -170
- package/dist/ts/esm/ts/Json/Process/Source.js +0 -139
- package/dist/ts/esm/ts/Json/Process/StudyMaterials.js +0 -20
- package/dist/ts/esm/ts/Json/Process/Value.js +0 -35
- package/dist/ts/esm/ts/Json/PropertyValue.js +0 -295
- package/dist/ts/esm/ts/Json/Publication.js +0 -123
- package/dist/ts/esm/ts/Json/ROCrate/LDContext.js +0 -119
- package/dist/ts/esm/ts/Json/ROCrate/LDGraph.js +0 -84
- package/dist/ts/esm/ts/Json/ROCrate/LDNode.js +0 -207
- package/dist/ts/esm/ts/Json/ROCrate/LDRef.js +0 -21
- package/dist/ts/esm/ts/Json/ROCrate/LDValue.js +0 -65
- package/dist/ts/esm/ts/Json/StringTable.js +0 -63
- package/dist/ts/esm/ts/Json/Study.js +0 -337
- package/dist/ts/esm/ts/Json/Table/ArcTable.js +0 -208
- package/dist/ts/esm/ts/Json/Table/CellTable.js +0 -51
- package/dist/ts/esm/ts/Json/Table/CompositeCell.js +0 -97
- package/dist/ts/esm/ts/Json/Table/CompositeHeader.js +0 -104
- package/dist/ts/esm/ts/Json/Table/IOType.js +0 -12
- package/dist/ts/esm/ts/Json/Table/OATable.js +0 -48
- package/dist/ts/esm/ts/Json/Table/Templates.js +0 -98
- package/dist/ts/esm/ts/Json/context/rocrate/isa_assay_context.js +0 -84
- package/dist/ts/esm/ts/Json/context/rocrate/isa_comment_context.js +0 -42
- package/dist/ts/esm/ts/Json/context/rocrate/isa_data_context.js +0 -56
- package/dist/ts/esm/ts/Json/context/rocrate/isa_investigation_context.js +0 -92
- package/dist/ts/esm/ts/Json/context/rocrate/isa_material_context.js +0 -53
- package/dist/ts/esm/ts/Json/context/rocrate/isa_ontology_annotation_context.js +0 -51
- package/dist/ts/esm/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +0 -57
- package/dist/ts/esm/ts/Json/context/rocrate/isa_organization_context.js +0 -37
- package/dist/ts/esm/ts/Json/context/rocrate/isa_person_context.js +0 -107
- package/dist/ts/esm/ts/Json/context/rocrate/isa_process_context.js +0 -77
- package/dist/ts/esm/ts/Json/context/rocrate/isa_protocol_context.js +0 -80
- package/dist/ts/esm/ts/Json/context/rocrate/isa_publication_context.js +0 -61
- package/dist/ts/esm/ts/Json/context/rocrate/isa_sample_context.js +0 -48
- package/dist/ts/esm/ts/Json/context/rocrate/isa_source_context.js +0 -48
- package/dist/ts/esm/ts/Json/context/rocrate/isa_study_context.js +0 -108
- package/dist/ts/esm/ts/Json/context/rocrate/property_value_context.js +0 -58
- package/dist/ts/esm/ts/Json/context/rocrate/rocrate_context.js +0 -58
- package/dist/ts/esm/ts/Json.js +0 -214
- package/dist/ts/esm/ts/JsonIO/Assay.js +0 -90
- package/dist/ts/esm/ts/JsonIO/Investigation.js +0 -90
- package/dist/ts/esm/ts/JsonIO/LDObject.js +0 -94
- package/dist/ts/esm/ts/JsonIO/OntologyAnnotation.js +0 -66
- package/dist/ts/esm/ts/JsonIO/Study.js +0 -90
- package/dist/ts/esm/ts/JsonIO/Table/Compression.js +0 -36
- package/dist/ts/esm/ts/JsonIO/Table/Templates.js +0 -80
- package/dist/ts/esm/ts/ROCrate/Generic/Comment.js +0 -112
- package/dist/ts/esm/ts/ROCrate/Generic/Dataset.js +0 -666
- package/dist/ts/esm/ts/ROCrate/Generic/DefinedTerm.js +0 -112
- package/dist/ts/esm/ts/ROCrate/Generic/File.js +0 -197
- package/dist/ts/esm/ts/ROCrate/Generic/LabProcess.js +0 -235
- package/dist/ts/esm/ts/ROCrate/Generic/LabProtocol.js +0 -272
- package/dist/ts/esm/ts/ROCrate/Generic/Organization.js +0 -68
- package/dist/ts/esm/ts/ROCrate/Generic/Person.js +0 -408
- package/dist/ts/esm/ts/ROCrate/Generic/PostalAddress.js +0 -156
- package/dist/ts/esm/ts/ROCrate/Generic/PropertyValue.js +0 -545
- package/dist/ts/esm/ts/ROCrate/Generic/Sample.js +0 -136
- package/dist/ts/esm/ts/ROCrate/Generic/ScholarlyArticle.js +0 -184
- package/dist/ts/esm/ts/ROCrate/Helper.js +0 -4
- package/dist/ts/esm/ts/ROCrate/LDContext.js +0 -313
- package/dist/ts/esm/ts/ROCrate/LDObject.js +0 -967
- package/dist/ts/esm/ts/ROCrate/ROCrateContext.js +0 -38
- package/dist/ts/esm/ts/ROCrateIO.js +0 -65
- package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/ArcTable.js +0 -164
- package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/CompositeCell.js +0 -61
- package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +0 -141
- package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +0 -460
- package/dist/ts/esm/ts/Spreadsheet/ArcAssay.js +0 -204
- package/dist/ts/esm/ts/Spreadsheet/ArcInvestigation.js +0 -334
- package/dist/ts/esm/ts/Spreadsheet/ArcRun.js +0 -163
- package/dist/ts/esm/ts/Spreadsheet/ArcStudy.js +0 -117
- package/dist/ts/esm/ts/Spreadsheet/ArcWorkflow.js +0 -152
- package/dist/ts/esm/ts/Spreadsheet/CollectionAux.js +0 -117
- package/dist/ts/esm/ts/Spreadsheet/DataMap.js +0 -37
- package/dist/ts/esm/ts/Spreadsheet/DataMapTable/DataMapColumn.js +0 -39
- package/dist/ts/esm/ts/Spreadsheet/DataMapTable/DataMapHeader.js +0 -463
- package/dist/ts/esm/ts/Spreadsheet/DataMapTable/DataMapTable.js +0 -97
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Assays.js +0 -90
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Comment.js +0 -59
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Contacts.js +0 -84
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Conversions.js +0 -176
- package/dist/ts/esm/ts/Spreadsheet/Metadata/DesignDescriptors.js +0 -18
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Factors.js +0 -75
- package/dist/ts/esm/ts/Spreadsheet/Metadata/OntologyAnnotation.js +0 -59
- package/dist/ts/esm/ts/Spreadsheet/Metadata/OntologySourceReference.js +0 -60
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Protocols.js +0 -95
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Publication.js +0 -80
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Run.js +0 -91
- package/dist/ts/esm/ts/Spreadsheet/Metadata/SparseTable.js +0 -434
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Study.js +0 -245
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Workflow.js +0 -103
- package/dist/ts/esm/ts/Template.Web.js +0 -23
- package/dist/ts/esm/ts/ValidationPackages/ValidationPackage.js +0 -57
- package/dist/ts/esm/ts/ValidationPackages/ValidationPackagesConfig.js +0 -84
- package/dist/ts/esm/ts/WebRequest/WebRequest.Node.js +0 -13
- package/dist/ts/esm/ts/WebRequest/WebRequest.js +0 -17
- package/dist/ts/esm/ts/Xlsx.js +0 -116
- package/dist/ts/esm/ts/Yaml/Encode.js +0 -5
- package/dist/ts/esm/ts/Yaml/ValidationPackage.js +0 -41
- package/dist/ts/esm/ts/Yaml/ValidationPackagesConfig.js +0 -42
- package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +0 -432
- package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +0 -118
- package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +0 -43
- package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +0 -18
- package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +0 -79
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.js +0 -1
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.js +0 -1
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.js +0 -2
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.js +0 -1
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.js +0 -102
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.js +0 -1
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.js +0 -1
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.js +0 -1
- package/dist/ts/esm/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +0 -281
- package/dist/ts/esm/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +0 -203
- package/dist/ts/esm/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +0 -16
- package/dist/ts/esm/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +0 -380
- package/dist/ts/esm/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +0 -151
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.js +0 -463
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.js +0 -473
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.js +0 -189
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.js +0 -43
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.js +0 -122
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.js +0 -306
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.js +0 -224
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.js +0 -121
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.js +0 -131
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.js +0 -134
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.js +0 -429
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.js +0 -62
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.js +0 -35
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.js +0 -35
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.js +0 -27
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.js +0 -74
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.js +0 -41
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.js +0 -129
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.js +0 -33
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.js +0 -206
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.js +0 -80
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.js +0 -60
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.js +0 -31
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.js +0 -326
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.js +0 -152
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.js +0 -76
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.js +0 -48
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.js +0 -48
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.js +0 -51
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.js +0 -30
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.js +0 -64
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.js +0 -67
- package/dist/ts/esm/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.js +0 -1269
- package/dist/ts/esm/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.js +0 -178
- package/dist/ts/esm/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.js +0 -79
- package/dist/ts/esm/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.js +0 -91
- package/dist/ts/esm/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.js +0 -55
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.js +0 -1692
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.js +0 -57
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +0 -9
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +0 -43
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +0 -96
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +0 -522
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.js +0 -9
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +0 -221
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +0 -156
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +0 -148
- package/dist/ts/types/index.d.ts +0 -60
- package/dist/ts/types/index.d.ts.map +0 -1
- package/dist/ts/types/ts/ARC.d.ts +0 -80
- package/dist/ts/types/ts/ARC.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/ARC.d.ts +0 -7
- package/dist/ts/types/ts/Contract/ARC.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/ArcAssay.d.ts +0 -12
- package/dist/ts/types/ts/Contract/ArcAssay.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/ArcInvestigation.d.ts +0 -10
- package/dist/ts/types/ts/Contract/ArcInvestigation.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/ArcRun.d.ts +0 -12
- package/dist/ts/types/ts/Contract/ArcRun.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/ArcStudy.d.ts +0 -13
- package/dist/ts/types/ts/Contract/ArcStudy.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/ArcWorkflow.d.ts +0 -12
- package/dist/ts/types/ts/Contract/ArcWorkflow.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/Contract.d.ts +0 -39
- package/dist/ts/types/ts/Contract/Contract.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/Datamap.d.ts +0 -29
- package/dist/ts/types/ts/Contract/Datamap.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/Git.d.ts +0 -28
- package/dist/ts/types/ts/Contract/Git.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/ValidationPackagesConfig.d.ts +0 -12
- package/dist/ts/types/ts/Contract/ValidationPackagesConfig.d.ts.map +0 -1
- package/dist/ts/types/ts/ContractIO/ContractIO.d.ts +0 -11
- package/dist/ts/types/ts/ContractIO/ContractIO.d.ts.map +0 -1
- package/dist/ts/types/ts/ContractIO/FileSystemHelper.d.ts +0 -33
- package/dist/ts/types/ts/ContractIO/FileSystemHelper.d.ts.map +0 -1
- package/dist/ts/types/ts/Conversion.d.ts +0 -291
- package/dist/ts/types/ts/Conversion.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/ArcTypes.d.ts +0 -620
- package/dist/ts/types/ts/Core/ArcTypes.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Comment.d.ts +0 -35
- package/dist/ts/types/ts/Core/Comment.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/CommentList.d.ts +0 -28
- package/dist/ts/types/ts/Core/CommentList.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Conversion.d.ts +0 -215
- package/dist/ts/types/ts/Core/Conversion.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Data.d.ts +0 -49
- package/dist/ts/types/ts/Core/Data.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/DataContext.d.ts +0 -47
- package/dist/ts/types/ts/Core/DataContext.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/DataFile.d.ts +0 -27
- package/dist/ts/types/ts/Core/DataFile.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/DataMap.d.ts +0 -52
- package/dist/ts/types/ts/Core/DataMap.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Helper/Collections.d.ts +0 -61
- package/dist/ts/types/ts/Core/Helper/Collections.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Helper/HashCodes.d.ts +0 -9
- package/dist/ts/types/ts/Core/Helper/HashCodes.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Helper/Identifier.d.ts +0 -119
- package/dist/ts/types/ts/Core/Helper/Identifier.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Helper/ORCID.d.ts +0 -7
- package/dist/ts/types/ts/Core/Helper/ORCID.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Helper/Printer.d.ts +0 -5
- package/dist/ts/types/ts/Core/Helper/Printer.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Helper/Regex.d.ts +0 -194
- package/dist/ts/types/ts/Core/Helper/Regex.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Helper/SemVer.d.ts +0 -20
- package/dist/ts/types/ts/Core/Helper/SemVer.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Helper/Url.d.ts +0 -10
- package/dist/ts/types/ts/Core/Helper/Url.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/IPropertyValue.d.ts +0 -13
- package/dist/ts/types/ts/Core/IPropertyValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/IdentifierSetters.d.ts +0 -7
- package/dist/ts/types/ts/Core/IdentifierSetters.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/OntologyAnnotation.d.ts +0 -57
- package/dist/ts/types/ts/Core/OntologyAnnotation.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/OntologySourceReference.d.ts +0 -31
- package/dist/ts/types/ts/Core/OntologySourceReference.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Person.d.ts +0 -56
- package/dist/ts/types/ts/Core/Person.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/ColumnIndex.d.ts +0 -79
- package/dist/ts/types/ts/Core/Process/ColumnIndex.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/Component.d.ts +0 -65
- package/dist/ts/types/ts/Core/Process/Component.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/Factor.d.ts +0 -44
- package/dist/ts/types/ts/Core/Process/Factor.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/FactorValue.d.ts +0 -44
- package/dist/ts/types/ts/Core/Process/FactorValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/Material.d.ts +0 -27
- package/dist/ts/types/ts/Core/Process/Material.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/MaterialAttribute.d.ts +0 -53
- package/dist/ts/types/ts/Core/Process/MaterialAttribute.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/MaterialAttributeValue.d.ts +0 -55
- package/dist/ts/types/ts/Core/Process/MaterialAttributeValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/MaterialType.d.ts +0 -22
- package/dist/ts/types/ts/Core/Process/MaterialType.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/Process.d.ts +0 -113
- package/dist/ts/types/ts/Core/Process/Process.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/ProcessInput.d.ts +0 -117
- package/dist/ts/types/ts/Core/Process/ProcessInput.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/ProcessOutput.d.ts +0 -106
- package/dist/ts/types/ts/Core/Process/ProcessOutput.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/ProcessParameterValue.d.ts +0 -40
- package/dist/ts/types/ts/Core/Process/ProcessParameterValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/ProcessSequence.d.ts +0 -89
- package/dist/ts/types/ts/Core/Process/ProcessSequence.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/Protocol.d.ts +0 -141
- package/dist/ts/types/ts/Core/Process/Protocol.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/ProtocolParameter.d.ts +0 -32
- package/dist/ts/types/ts/Core/Process/ProtocolParameter.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/Sample.d.ts +0 -31
- package/dist/ts/types/ts/Core/Process/Sample.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/Source.d.ts +0 -24
- package/dist/ts/types/ts/Core/Process/Source.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Publication.d.ts +0 -36
- package/dist/ts/types/ts/Core/Publication.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Table/ArcTable.d.ts +0 -137
- package/dist/ts/types/ts/Core/Table/ArcTable.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Table/ArcTableAux.d.ts +0 -154
- package/dist/ts/types/ts/Core/Table/ArcTableAux.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Table/ArcTables.d.ts +0 -91
- package/dist/ts/types/ts/Core/Table/ArcTables.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Table/CompositeCell.d.ts +0 -58
- package/dist/ts/types/ts/Core/Table/CompositeCell.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Table/CompositeColumn.d.ts +0 -19
- package/dist/ts/types/ts/Core/Table/CompositeColumn.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Table/CompositeHeader.d.ts +0 -130
- package/dist/ts/types/ts/Core/Table/CompositeHeader.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Template.d.ts +0 -69
- package/dist/ts/types/ts/Core/Template.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Templates.d.ts +0 -18
- package/dist/ts/types/ts/Core/Templates.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/URI.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Value.d.ts +0 -41
- package/dist/ts/types/ts/Core/Value.d.ts.map +0 -1
- package/dist/ts/types/ts/CrossAsync.d.ts +0 -9
- package/dist/ts/types/ts/CrossAsync.d.ts.map +0 -1
- package/dist/ts/types/ts/FileSystem/Commit.d.ts +0 -13
- package/dist/ts/types/ts/FileSystem/Commit.d.ts.map +0 -1
- package/dist/ts/types/ts/FileSystem/DefaultGitattributes.d.ts.map +0 -1
- package/dist/ts/types/ts/FileSystem/DefaultGitignore.d.ts.map +0 -1
- package/dist/ts/types/ts/FileSystem/FileSystem.d.ts +0 -21
- package/dist/ts/types/ts/FileSystem/FileSystem.d.ts.map +0 -1
- package/dist/ts/types/ts/FileSystem/FileSystemTree.d.ts +0 -54
- package/dist/ts/types/ts/FileSystem/FileSystemTree.d.ts.map +0 -1
- package/dist/ts/types/ts/FileSystem/Path.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Assay.d.ts +0 -19
- package/dist/ts/types/ts/Json/Assay.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Comment.d.ts +0 -14
- package/dist/ts/types/ts/Json/Comment.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Data.d.ts +0 -17
- package/dist/ts/types/ts/Json/Data.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/DataFile.d.ts +0 -7
- package/dist/ts/types/ts/Json/DataFile.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/DataMap/DataContext.d.ts +0 -5
- package/dist/ts/types/ts/Json/DataMap/DataContext.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/DataMap/DataMap.d.ts +0 -11
- package/dist/ts/types/ts/Json/DataMap/DataMap.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Decode.d.ts +0 -18
- package/dist/ts/types/ts/Json/Decode.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Encode.d.ts +0 -23
- package/dist/ts/types/ts/Json/Encode.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/IDTable.d.ts +0 -5
- package/dist/ts/types/ts/Json/IDTable.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Investigation.d.ts +0 -20
- package/dist/ts/types/ts/Json/Investigation.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/OntologyAnnotation.d.ts +0 -18
- package/dist/ts/types/ts/Json/OntologyAnnotation.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/OntologySourceReference.d.ts +0 -12
- package/dist/ts/types/ts/Json/OntologySourceReference.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Person.d.ts +0 -22
- package/dist/ts/types/ts/Json/Person.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/AssayMaterials.d.ts +0 -7
- package/dist/ts/types/ts/Json/Process/AssayMaterials.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/Component.d.ts +0 -11
- package/dist/ts/types/ts/Json/Process/Component.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/Factor.d.ts +0 -8
- package/dist/ts/types/ts/Json/Process/Factor.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/FactorValue.d.ts +0 -11
- package/dist/ts/types/ts/Json/Process/FactorValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/Material.d.ts +0 -12
- package/dist/ts/types/ts/Json/Process/Material.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/MaterialAttribute.d.ts +0 -8
- package/dist/ts/types/ts/Json/Process/MaterialAttribute.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/MaterialAttributeValue.d.ts +0 -11
- package/dist/ts/types/ts/Json/Process/MaterialAttributeValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/MaterialType.d.ts +0 -7
- package/dist/ts/types/ts/Json/Process/MaterialType.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/Process.d.ts +0 -10
- package/dist/ts/types/ts/Json/Process/Process.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/ProcessInput.d.ts +0 -9
- package/dist/ts/types/ts/Json/Process/ProcessInput.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/ProcessOutput.d.ts +0 -9
- package/dist/ts/types/ts/Json/Process/ProcessOutput.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/ProcessParameterValue.d.ts +0 -11
- package/dist/ts/types/ts/Json/Process/ProcessParameterValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/Protocol.d.ts +0 -10
- package/dist/ts/types/ts/Json/Process/Protocol.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/ProtocolParameter.d.ts +0 -8
- package/dist/ts/types/ts/Json/Process/ProtocolParameter.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/Sample.d.ts +0 -15
- package/dist/ts/types/ts/Json/Process/Sample.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/Source.d.ts +0 -12
- package/dist/ts/types/ts/Json/Process/Source.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/StudyMaterials.d.ts +0 -7
- package/dist/ts/types/ts/Json/Process/StudyMaterials.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/Value.d.ts +0 -7
- package/dist/ts/types/ts/Json/Process/Value.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/PropertyValue.d.ts +0 -9
- package/dist/ts/types/ts/Json/PropertyValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Publication.d.ts +0 -14
- package/dist/ts/types/ts/Json/Publication.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/ROCrate/LDContext.d.ts +0 -5
- package/dist/ts/types/ts/Json/ROCrate/LDContext.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/ROCrate/LDGraph.d.ts +0 -5
- package/dist/ts/types/ts/Json/ROCrate/LDGraph.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/ROCrate/LDNode.d.ts +0 -13
- package/dist/ts/types/ts/Json/ROCrate/LDNode.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/ROCrate/LDRef.d.ts +0 -5
- package/dist/ts/types/ts/Json/ROCrate/LDRef.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/ROCrate/LDValue.d.ts +0 -7
- package/dist/ts/types/ts/Json/ROCrate/LDValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/StringTable.d.ts +0 -9
- package/dist/ts/types/ts/Json/StringTable.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Study.d.ts +0 -26
- package/dist/ts/types/ts/Json/Study.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Table/ArcTable.d.ts +0 -15
- package/dist/ts/types/ts/Json/Table/ArcTable.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Table/CellTable.d.ts +0 -11
- package/dist/ts/types/ts/Json/Table/CellTable.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Table/CompositeCell.d.ts +0 -10
- package/dist/ts/types/ts/Json/Table/CompositeCell.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Table/CompositeHeader.d.ts +0 -5
- package/dist/ts/types/ts/Json/Table/CompositeHeader.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Table/IOType.d.ts +0 -5
- package/dist/ts/types/ts/Json/Table/IOType.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Table/OATable.d.ts +0 -10
- package/dist/ts/types/ts/Json/Table/OATable.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Table/Templates.d.ts +0 -15
- package/dist/ts/types/ts/Json/Table/Templates.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_assay_context.d.ts +0 -26
- package/dist/ts/types/ts/Json/context/rocrate/isa_assay_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_comment_context.d.ts +0 -16
- package/dist/ts/types/ts/Json/context/rocrate/isa_comment_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_data_context.d.ts +0 -18
- package/dist/ts/types/ts/Json/context/rocrate/isa_data_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_investigation_context.d.ts +0 -26
- package/dist/ts/types/ts/Json/context/rocrate/isa_investigation_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_material_context.d.ts +0 -19
- package/dist/ts/types/ts/Json/context/rocrate/isa_material_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts +0 -17
- package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts +0 -19
- package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_organization_context.d.ts +0 -15
- package/dist/ts/types/ts/Json/context/rocrate/isa_organization_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_person_context.d.ts +0 -25
- package/dist/ts/types/ts/Json/context/rocrate/isa_person_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_process_context.d.ts +0 -23
- package/dist/ts/types/ts/Json/context/rocrate/isa_process_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_protocol_context.d.ts +0 -22
- package/dist/ts/types/ts/Json/context/rocrate/isa_protocol_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_publication_context.d.ts +0 -19
- package/dist/ts/types/ts/Json/context/rocrate/isa_publication_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_sample_context.d.ts +0 -18
- package/dist/ts/types/ts/Json/context/rocrate/isa_sample_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_source_context.d.ts +0 -18
- package/dist/ts/types/ts/Json/context/rocrate/isa_source_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_study_context.d.ts +0 -34
- package/dist/ts/types/ts/Json/context/rocrate/isa_study_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/property_value_context.d.ts +0 -3
- package/dist/ts/types/ts/Json/context/rocrate/property_value_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/rocrate_context.d.ts +0 -16
- package/dist/ts/types/ts/Json/context/rocrate/rocrate_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json.d.ts +0 -90
- package/dist/ts/types/ts/Json.d.ts.map +0 -1
- package/dist/ts/types/ts/JsonIO/Assay.d.ts +0 -19
- package/dist/ts/types/ts/JsonIO/Assay.d.ts.map +0 -1
- package/dist/ts/types/ts/JsonIO/Investigation.d.ts +0 -19
- package/dist/ts/types/ts/JsonIO/Investigation.d.ts.map +0 -1
- package/dist/ts/types/ts/JsonIO/LDObject.d.ts +0 -29
- package/dist/ts/types/ts/JsonIO/LDObject.d.ts.map +0 -1
- package/dist/ts/types/ts/JsonIO/OntologyAnnotation.d.ts +0 -16
- package/dist/ts/types/ts/JsonIO/OntologyAnnotation.d.ts.map +0 -1
- package/dist/ts/types/ts/JsonIO/Study.d.ts +0 -20
- package/dist/ts/types/ts/JsonIO/Study.d.ts.map +0 -1
- package/dist/ts/types/ts/JsonIO/Table/Compression.d.ts +0 -8
- package/dist/ts/types/ts/JsonIO/Table/Compression.d.ts.map +0 -1
- package/dist/ts/types/ts/JsonIO/Table/Templates.d.ts +0 -15
- package/dist/ts/types/ts/JsonIO/Table/Templates.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/Comment.d.ts +0 -21
- package/dist/ts/types/ts/ROCrate/Generic/Comment.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/Dataset.d.ts +0 -92
- package/dist/ts/types/ts/ROCrate/Generic/Dataset.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/DefinedTerm.d.ts +0 -21
- package/dist/ts/types/ts/ROCrate/Generic/DefinedTerm.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/File.d.ts +0 -35
- package/dist/ts/types/ts/ROCrate/Generic/File.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/LabProcess.d.ts +0 -43
- package/dist/ts/types/ts/ROCrate/Generic/LabProcess.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/LabProtocol.d.ts +0 -44
- package/dist/ts/types/ts/ROCrate/Generic/LabProtocol.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/Organization.d.ts +0 -17
- package/dist/ts/types/ts/ROCrate/Generic/Organization.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/Person.d.ts +0 -51
- package/dist/ts/types/ts/ROCrate/Generic/Person.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/PostalAddress.d.ts +0 -25
- package/dist/ts/types/ts/ROCrate/Generic/PostalAddress.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/PropertyValue.d.ts +0 -73
- package/dist/ts/types/ts/ROCrate/Generic/PropertyValue.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/Sample.d.ts +0 -30
- package/dist/ts/types/ts/ROCrate/Generic/Sample.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/ScholarlyArticle.d.ts +0 -34
- package/dist/ts/types/ts/ROCrate/Generic/ScholarlyArticle.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Helper.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/LDContext.d.ts +0 -43
- package/dist/ts/types/ts/ROCrate/LDContext.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/LDObject.d.ts +0 -97
- package/dist/ts/types/ts/ROCrate/LDObject.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/ROCrateContext.d.ts +0 -7
- package/dist/ts/types/ts/ROCrate/ROCrateContext.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrateIO.d.ts +0 -15
- package/dist/ts/types/ts/ROCrateIO.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts +0 -40
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts +0 -9
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts +0 -24
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts +0 -22
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/ArcAssay.d.ts +0 -31
- package/dist/ts/types/ts/Spreadsheet/ArcAssay.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/ArcInvestigation.d.ts +0 -42
- package/dist/ts/types/ts/Spreadsheet/ArcInvestigation.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/ArcRun.d.ts +0 -27
- package/dist/ts/types/ts/Spreadsheet/ArcRun.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/ArcStudy.d.ts +0 -26
- package/dist/ts/types/ts/Spreadsheet/ArcStudy.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/ArcWorkflow.d.ts +0 -27
- package/dist/ts/types/ts/Spreadsheet/ArcWorkflow.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/CollectionAux.d.ts +0 -23
- package/dist/ts/types/ts/Spreadsheet/CollectionAux.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/DataMap.d.ts +0 -8
- package/dist/ts/types/ts/Spreadsheet/DataMap.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapColumn.d.ts +0 -7
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapColumn.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapHeader.d.ts +0 -23
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapHeader.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapTable.d.ts +0 -23
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapTable.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Assays.d.ts +0 -14
- package/dist/ts/types/ts/Spreadsheet/Metadata/Assays.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Comment.d.ts +0 -14
- package/dist/ts/types/ts/Spreadsheet/Metadata/Comment.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Contacts.d.ts +0 -25
- package/dist/ts/types/ts/Spreadsheet/Metadata/Contacts.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Conversions.d.ts +0 -60
- package/dist/ts/types/ts/Spreadsheet/Metadata/Conversions.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts +0 -16
- package/dist/ts/types/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Factors.d.ts +0 -18
- package/dist/ts/types/ts/Spreadsheet/Metadata/Factors.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts +0 -12
- package/dist/ts/types/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts +0 -18
- package/dist/ts/types/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Protocols.d.ts +0 -28
- package/dist/ts/types/ts/Spreadsheet/Metadata/Protocols.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Publication.d.ts +0 -21
- package/dist/ts/types/ts/Spreadsheet/Metadata/Publication.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Run.d.ts +0 -14
- package/dist/ts/types/ts/Spreadsheet/Metadata/Run.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/SparseTable.d.ts +0 -37
- package/dist/ts/types/ts/Spreadsheet/Metadata/SparseTable.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Study.d.ts +0 -38
- package/dist/ts/types/ts/Spreadsheet/Metadata/Study.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Workflow.d.ts +0 -31
- package/dist/ts/types/ts/Spreadsheet/Metadata/Workflow.d.ts.map +0 -1
- package/dist/ts/types/ts/Template.Web.d.ts +0 -11
- package/dist/ts/types/ts/Template.Web.d.ts.map +0 -1
- package/dist/ts/types/ts/ValidationPackages/ValidationPackage.d.ts +0 -21
- package/dist/ts/types/ts/ValidationPackages/ValidationPackage.d.ts.map +0 -1
- package/dist/ts/types/ts/ValidationPackages/ValidationPackagesConfig.d.ts +0 -23
- package/dist/ts/types/ts/ValidationPackages/ValidationPackagesConfig.d.ts.map +0 -1
- package/dist/ts/types/ts/WebRequest/WebRequest.Node.d.ts +0 -4
- package/dist/ts/types/ts/WebRequest/WebRequest.Node.d.ts.map +0 -1
- package/dist/ts/types/ts/WebRequest/WebRequest.d.ts +0 -4
- package/dist/ts/types/ts/WebRequest/WebRequest.d.ts.map +0 -1
- package/dist/ts/types/ts/Xlsx.d.ts +0 -50
- package/dist/ts/types/ts/Xlsx.d.ts.map +0 -1
- package/dist/ts/types/ts/Yaml/Encode.d.ts +0 -5
- package/dist/ts/types/ts/Yaml/Encode.d.ts.map +0 -1
- package/dist/ts/types/ts/Yaml/ValidationPackage.d.ts +0 -10
- package/dist/ts/types/ts/Yaml/ValidationPackage.d.ts.map +0 -1
- package/dist/ts/types/ts/Yaml/ValidationPackagesConfig.d.ts +0 -10
- package/dist/ts/types/ts/Yaml/ValidationPackagesConfig.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.d.ts +0 -69
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.d.ts +0 -25
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.d.ts +0 -11
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.d.ts +0 -15
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.d.ts +0 -15
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.d.ts +0 -34
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.d.ts +0 -14
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.d.ts +0 -4
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.d.ts +0 -30
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.d.ts +0 -49
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.d.ts +0 -35
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.d.ts +0 -123
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.d.ts +0 -27
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.d.ts +0 -253
- package/dist/ts/types/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.d.ts +0 -112
- package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.d.ts +0 -8
- package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.d.ts +0 -123
- package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.d.ts +0 -113
- package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.d.ts +0 -91
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.d.ts +0 -181
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.d.ts +0 -36
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.d.ts +0 -23
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.d.ts +0 -21
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.d.ts +0 -157
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.d.ts +0 -97
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.d.ts +0 -37
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.d.ts +0 -39
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.d.ts +0 -36
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.d.ts +0 -88
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.d.ts +0 -10
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.d.ts +0 -9
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.d.ts +0 -9
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.d.ts +0 -5
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.d.ts +0 -6
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.d.ts +0 -7
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.d.ts +0 -7
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.d.ts +0 -15
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.d.ts +0 -94
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.d.ts +0 -33
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.d.ts +0 -31
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.d.ts +0 -17
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.d.ts +0 -71
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.d.ts +0 -89
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.d.ts +0 -10
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.d.ts +0 -19
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.d.ts +0 -15
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.d.ts +0 -6
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.d.ts +0 -5
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.d.ts +0 -7
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.d.ts +0 -20
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.d.ts +0 -105
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.d.ts +0 -26
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.d.ts +0 -99
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.d.ts +0 -7
- package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.d.ts +0 -5
- package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.d.ts +0 -64
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.d.ts +0 -24
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.d.ts +0 -3
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.d.ts +0 -12
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.d.ts +0 -10
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.d.ts +0 -6
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.d.ts +0 -10
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.d.ts +0 -46
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.d.ts +0 -12
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.d.ts +0 -70
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.d.ts.map +0 -1
- /package/dist/ts/{types/ts → ts}/Core/URI.d.ts +0 -0
- /package/dist/ts/{types/ts → ts}/FileSystem/DefaultGitattributes.d.ts +0 -0
- /package/dist/ts/{types/ts → ts}/FileSystem/DefaultGitignore.d.ts +0 -0
- /package/dist/ts/{types/ts → ts}/FileSystem/Path.d.ts +0 -0
- /package/dist/ts/{types/ts → ts}/ROCrate/Helper.d.ts +0 -0
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { int32 } from '@fable-org/fable-library-js/Int32.js';
|
|
2
|
+
import { Option } from '@fable-org/fable-library-js/Option.js';
|
|
3
|
+
import { Comment$ } from '../Comment.js';
|
|
4
|
+
import { OntologyAnnotation } from '../OntologyAnnotation.js';
|
|
5
|
+
import { ProtocolParameter } from './ProtocolParameter.js';
|
|
6
|
+
import { ProcessParameterValue } from './ProcessParameterValue.js';
|
|
7
|
+
import { Factor } from './Factor.js';
|
|
8
|
+
import { FactorValue } from './FactorValue.js';
|
|
9
|
+
import { MaterialAttribute } from './MaterialAttribute.js';
|
|
10
|
+
import { MaterialAttributeValue } from './MaterialAttributeValue.js';
|
|
11
|
+
import { Component } from './Component.js';
|
|
12
|
+
export declare const orderName = "ColumnIndex";
|
|
13
|
+
export declare function createOrderComment(index: int32): Comment$;
|
|
14
|
+
export declare function tryGetIndex(comments: Comment$[]): Option<int32>;
|
|
15
|
+
export declare function setOntologyAnnotationIndexInplace(i: int32, oa: OntologyAnnotation): void;
|
|
16
|
+
export declare function setOntologyAnnotationIndex(i: int32, oa: OntologyAnnotation): OntologyAnnotation;
|
|
17
|
+
export declare function tryGetOntologyAnnotationIndex(oa: OntologyAnnotation): Option<int32>;
|
|
18
|
+
export declare function tryGetParameterIndex(param: ProtocolParameter): Option<int32>;
|
|
19
|
+
export declare function tryGetParameterColumnIndex(paramValue: ProcessParameterValue): Option<int32>;
|
|
20
|
+
export declare function tryGetFactorIndex(factor: Factor): Option<int32>;
|
|
21
|
+
export declare function tryGetFactorColumnIndex(factorValue: FactorValue): Option<int32>;
|
|
22
|
+
export declare function tryGetCharacteristicIndex(characteristic: MaterialAttribute): Option<int32>;
|
|
23
|
+
export declare function tryGetCharacteristicColumnIndex(characteristicValue: MaterialAttributeValue): Option<int32>;
|
|
24
|
+
export declare function tryGetComponentIndex(comp: Component): Option<int32>;
|
|
25
|
+
/**
|
|
26
|
+
* Create a ISAJson Factor from ISATab string entries
|
|
27
|
+
*/
|
|
28
|
+
export declare function ARCtrl_OntologyAnnotation__OntologyAnnotation_fromStringWithColumnIndex_Static(name: string, term: string, source: string, accession: string, valueIndex: int32): Factor;
|
|
29
|
+
export declare function ARCtrl_OntologyAnnotation__OntologyAnnotation_getColumnIndex_Static_ZDED3A0F(f: OntologyAnnotation): int32;
|
|
30
|
+
export declare function ARCtrl_OntologyAnnotation__OntologyAnnotation_GetColumnIndex(this$: OntologyAnnotation): int32;
|
|
31
|
+
export declare function ARCtrl_OntologyAnnotation__OntologyAnnotation_tryGetColumnIndex_Static_ZDED3A0F(f: OntologyAnnotation): Option<int32>;
|
|
32
|
+
export declare function ARCtrl_OntologyAnnotation__OntologyAnnotation_TryGetColumnIndex(this$: OntologyAnnotation): Option<int32>;
|
|
33
|
+
export declare function ARCtrl_OntologyAnnotation__OntologyAnnotation_setColumnIndex_Static(i: int32, oa: OntologyAnnotation): OntologyAnnotation;
|
|
34
|
+
export declare function ARCtrl_OntologyAnnotation__OntologyAnnotation_SetColumnIndex_Z524259A4(this$: OntologyAnnotation, i: int32): void;
|
|
35
|
+
/**
|
|
36
|
+
* Create a ISAJson Factor from ISATab string entries
|
|
37
|
+
*/
|
|
38
|
+
export declare function ARCtrl_Process_Factor__Factor_fromStringWithColumnIndex_Static(name: string, term: string, source: string, accession: string, valueIndex: int32): Factor;
|
|
39
|
+
export declare function ARCtrl_Process_Factor__Factor_getColumnIndex_Static_7206F0D9(f: Factor): int32;
|
|
40
|
+
export declare function ARCtrl_Process_Factor__Factor_GetColumnIndex(this$: Factor): int32;
|
|
41
|
+
export declare function ARCtrl_Process_Factor__Factor_tryGetColumnIndex_Static_7206F0D9(f: Factor): Option<int32>;
|
|
42
|
+
export declare function ARCtrl_Process_Factor__Factor_TryGetColumnIndex(this$: Factor): Option<int32>;
|
|
43
|
+
export declare function ARCtrl_Process_FactorValue__FactorValue_getColumnIndex_Static_7105C732(f: FactorValue): int32;
|
|
44
|
+
export declare function ARCtrl_Process_FactorValue__FactorValue_GetColumnIndex(this$: FactorValue): int32;
|
|
45
|
+
export declare function ARCtrl_Process_FactorValue__FactorValue_tryGetColumnIndex_Static_7105C732(f: FactorValue): Option<int32>;
|
|
46
|
+
export declare function ARCtrl_Process_FactorValue__FactorValue_TryGetColumnIndex(this$: FactorValue): Option<int32>;
|
|
47
|
+
/**
|
|
48
|
+
* Create a ISAJson characteristic from ISATab string entries
|
|
49
|
+
*/
|
|
50
|
+
export declare function ARCtrl_Process_MaterialAttribute__MaterialAttribute_fromStringWithColumnIndex_Static(term: string, source: string, accession: string, valueIndex: int32): MaterialAttribute;
|
|
51
|
+
export declare function ARCtrl_Process_MaterialAttribute__MaterialAttribute_getColumnIndex_Static_Z1E3B85DD(m: MaterialAttribute): int32;
|
|
52
|
+
export declare function ARCtrl_Process_MaterialAttribute__MaterialAttribute_GetColumnIndex(this$: MaterialAttribute): int32;
|
|
53
|
+
export declare function ARCtrl_Process_MaterialAttribute__MaterialAttribute_tryGetColumnIndex_Static_Z1E3B85DD(m: MaterialAttribute): Option<int32>;
|
|
54
|
+
export declare function ARCtrl_Process_MaterialAttribute__MaterialAttribute_TryGetColumnIndex(this$: MaterialAttribute): Option<int32>;
|
|
55
|
+
export declare function ARCtrl_Process_MaterialAttributeValue__MaterialAttributeValue_getColumnIndex_Static_Z772273B8(m: MaterialAttributeValue): int32;
|
|
56
|
+
export declare function ARCtrl_Process_MaterialAttributeValue__MaterialAttributeValue_GetColumnIndex(this$: MaterialAttributeValue): int32;
|
|
57
|
+
export declare function ARCtrl_Process_MaterialAttributeValue__MaterialAttributeValue_tryGetColumnIndex_Static_Z772273B8(m: MaterialAttributeValue): Option<int32>;
|
|
58
|
+
export declare function ARCtrl_Process_MaterialAttributeValue__MaterialAttributeValue_TryGetColumnIndex(this$: MaterialAttributeValue): Option<int32>;
|
|
59
|
+
/**
|
|
60
|
+
* Create a ISAJson parameter from ISATab string entries
|
|
61
|
+
*/
|
|
62
|
+
export declare function ARCtrl_Process_ProtocolParameter__ProtocolParameter_fromStringWithColumnIndex_Static(term: string, source: string, accession: string, valueIndex: int32): ProtocolParameter;
|
|
63
|
+
export declare function ARCtrl_Process_ProtocolParameter__ProtocolParameter_getColumnIndex_Static_Z11F87B15(p: ProtocolParameter): int32;
|
|
64
|
+
export declare function ARCtrl_Process_ProtocolParameter__ProtocolParameter_GetColumnIndex(this$: ProtocolParameter): int32;
|
|
65
|
+
export declare function ARCtrl_Process_ProtocolParameter__ProtocolParameter_tryGetColumnIndex_Static_Z11F87B15(p: ProtocolParameter): Option<int32>;
|
|
66
|
+
export declare function ARCtrl_Process_ProtocolParameter__ProtocolParameter_TryGetColumnIndex(this$: ProtocolParameter): Option<int32>;
|
|
67
|
+
export declare function ARCtrl_Process_ProcessParameterValue__ProcessParameterValue_getColumnIndex_Static_Z1576263(p: ProcessParameterValue): int32;
|
|
68
|
+
export declare function ARCtrl_Process_ProcessParameterValue__ProcessParameterValue_GetColumnIndex(this$: ProcessParameterValue): int32;
|
|
69
|
+
export declare function ARCtrl_Process_ProcessParameterValue__ProcessParameterValue_tryGetColumnIndex_Static_Z1576263(p: ProcessParameterValue): Option<int32>;
|
|
70
|
+
export declare function ARCtrl_Process_ProcessParameterValue__ProcessParameterValue_TryGetColumnIndex(this$: ProcessParameterValue): Option<int32>;
|
|
71
|
+
/**
|
|
72
|
+
* Create a ISAJson Factor from ISATab string entries
|
|
73
|
+
*/
|
|
74
|
+
export declare function ARCtrl_Process_Component__Component_fromStringWithColumnIndex_Static(name: string, term: string, source: string, accession: string, valueIndex: int32): Component;
|
|
75
|
+
export declare function ARCtrl_Process_Component__Component_getColumnIndex_Static_Z685B8F25(f: Component): int32;
|
|
76
|
+
export declare function ARCtrl_Process_Component__Component_GetColumnIndex(this$: Component): int32;
|
|
77
|
+
export declare function ARCtrl_Process_Component__Component_tryGetColumnIndex_Static_Z685B8F25(f: Component): Option<int32>;
|
|
78
|
+
export declare function ARCtrl_Process_Component__Component_TryGetColumnIndex(this$: Component): Option<int32>;
|
|
79
|
+
//# sourceMappingURL=ColumnIndex.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ColumnIndex.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Core/Process/ColumnIndex.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { tryParse } from '../../../node_modules/@fable-org/fable-library-js/Int32.js';
|
|
2
|
+
import { FSharpRef } from '../../../node_modules/@fable-org/fable-library-js/Types.js';
|
|
3
|
+
import { bind, value } from '../../../node_modules/@fable-org/fable-library-js/Option.js';
|
|
4
|
+
import { Comment$ } from '../Comment.js';
|
|
5
|
+
import { equals, int32ToString } from '../../../node_modules/@fable-org/fable-library-js/Util.js';
|
|
6
|
+
import { tryItem } from '../CommentList.js';
|
|
7
|
+
import { findIndex } from '../../../node_modules/@fable-org/fable-library-js/Seq.js';
|
|
8
|
+
import '../Helper/Url.js';
|
|
9
|
+
|
|
10
|
+
function tryInt(str) {
|
|
11
|
+
let matchValue;
|
|
12
|
+
let outArg = 0;
|
|
13
|
+
matchValue = [tryParse(str, 511, false, 32, new FSharpRef(() => outArg, (v) => {
|
|
14
|
+
outArg = v | 0;
|
|
15
|
+
})), outArg];
|
|
16
|
+
if (matchValue[0]) {
|
|
17
|
+
return matchValue[1];
|
|
18
|
+
} else {
|
|
19
|
+
return void 0;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
const orderName = "ColumnIndex";
|
|
23
|
+
function createOrderComment(index) {
|
|
24
|
+
return Comment$.create(orderName, int32ToString(index));
|
|
25
|
+
}
|
|
26
|
+
function tryGetIndex(comments) {
|
|
27
|
+
const matchValue = tryItem(orderName, comments);
|
|
28
|
+
if (matchValue != null) {
|
|
29
|
+
const ci = value(matchValue);
|
|
30
|
+
const i = findIndex((c) => equals(c.Name, orderName), comments) | 0;
|
|
31
|
+
comments.splice(i, 1);
|
|
32
|
+
return tryInt(ci);
|
|
33
|
+
} else {
|
|
34
|
+
return void 0;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
function setOntologyAnnotationIndexInplace(i, oa) {
|
|
38
|
+
void oa.Comments.push(createOrderComment(i));
|
|
39
|
+
}
|
|
40
|
+
function setOntologyAnnotationIndex(i, oa) {
|
|
41
|
+
const oac = oa.Copy();
|
|
42
|
+
setOntologyAnnotationIndexInplace(i, oac);
|
|
43
|
+
return oac;
|
|
44
|
+
}
|
|
45
|
+
function tryGetParameterIndex(param) {
|
|
46
|
+
return bind((oa) => tryGetIndex(oa.Comments), param.ParameterName);
|
|
47
|
+
}
|
|
48
|
+
function tryGetParameterColumnIndex(paramValue) {
|
|
49
|
+
return bind(tryGetParameterIndex, paramValue.Category);
|
|
50
|
+
}
|
|
51
|
+
function tryGetFactorIndex(factor) {
|
|
52
|
+
return bind((oa) => tryGetIndex(oa.Comments), factor.FactorType);
|
|
53
|
+
}
|
|
54
|
+
function tryGetFactorColumnIndex(factorValue) {
|
|
55
|
+
return bind(tryGetFactorIndex, factorValue.Category);
|
|
56
|
+
}
|
|
57
|
+
function tryGetCharacteristicIndex(characteristic) {
|
|
58
|
+
return bind((oa) => tryGetIndex(oa.Comments), characteristic.CharacteristicType);
|
|
59
|
+
}
|
|
60
|
+
function tryGetCharacteristicColumnIndex(characteristicValue) {
|
|
61
|
+
return bind(tryGetCharacteristicIndex, characteristicValue.Category);
|
|
62
|
+
}
|
|
63
|
+
function tryGetComponentIndex(comp) {
|
|
64
|
+
return bind((oa) => tryGetIndex(oa.Comments), comp.ComponentType);
|
|
65
|
+
}
|
|
66
|
+
function ARCtrl_OntologyAnnotation__OntologyAnnotation_setColumnIndex_Static(i, oa) {
|
|
67
|
+
return setOntologyAnnotationIndex(i, oa);
|
|
68
|
+
}
|
|
69
|
+
function ARCtrl_OntologyAnnotation__OntologyAnnotation_SetColumnIndex_Z524259A4(this$, i) {
|
|
70
|
+
setOntologyAnnotationIndexInplace(i, this$);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
export { ARCtrl_OntologyAnnotation__OntologyAnnotation_SetColumnIndex_Z524259A4, ARCtrl_OntologyAnnotation__OntologyAnnotation_setColumnIndex_Static, createOrderComment, orderName, setOntologyAnnotationIndex, setOntologyAnnotationIndexInplace, tryGetCharacteristicColumnIndex, tryGetCharacteristicIndex, tryGetComponentIndex, tryGetFactorColumnIndex, tryGetFactorIndex, tryGetIndex, tryGetParameterColumnIndex, tryGetParameterIndex };
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { Option } from '@fable-org/fable-library-js/Option.js';
|
|
2
|
+
import { OntologyAnnotation } from '../OntologyAnnotation.js';
|
|
3
|
+
import { Value_$union } from '../Value.js';
|
|
4
|
+
import { Record } from '@fable-org/fable-library-js/Types.js';
|
|
5
|
+
import { IComparable, IEquatable } from '@fable-org/fable-library-js/Util.js';
|
|
6
|
+
import { IPropertyValue } from '../IPropertyValue.js';
|
|
7
|
+
import { TypeInfo } from '@fable-org/fable-library-js/Reflection.js';
|
|
8
|
+
import { Comment$ } from '../Comment.js';
|
|
9
|
+
export declare class Component extends Record implements IEquatable<Component>, IComparable<Component>, IPropertyValue {
|
|
10
|
+
readonly ComponentValue: Option<Value_$union>;
|
|
11
|
+
readonly ComponentUnit: Option<OntologyAnnotation>;
|
|
12
|
+
readonly ComponentType: Option<OntologyAnnotation>;
|
|
13
|
+
constructor(ComponentValue: Option<Value_$union>, ComponentUnit: Option<OntologyAnnotation>, ComponentType: Option<OntologyAnnotation>);
|
|
14
|
+
AlternateName(): Option<string>;
|
|
15
|
+
MeasurementMethod(): Option<string>;
|
|
16
|
+
Description(): Option<string>;
|
|
17
|
+
GetCategory(): Option<OntologyAnnotation>;
|
|
18
|
+
GetAdditionalType(): string;
|
|
19
|
+
GetValue(): Option<Value_$union>;
|
|
20
|
+
GetUnit(): Option<OntologyAnnotation>;
|
|
21
|
+
}
|
|
22
|
+
export declare function Component_$reflection(): TypeInfo;
|
|
23
|
+
export declare function Component__get_ComponentName(this$: Component): Option<string>;
|
|
24
|
+
export declare function Component_make(value: Option<Value_$union>, unit: Option<OntologyAnnotation>, componentType: Option<OntologyAnnotation>): Component;
|
|
25
|
+
export declare function Component_create_Z2F0B38C7(value?: Value_$union, unit?: OntologyAnnotation, componentType?: OntologyAnnotation): Component;
|
|
26
|
+
export declare function Component_get_empty(): Component;
|
|
27
|
+
/**
|
|
28
|
+
* This function creates a string containing full isa term triplet information about the component
|
|
29
|
+
*
|
|
30
|
+
* Components do not have enough fields in ISA-JSON to include all existing ontology term information.
|
|
31
|
+
* This function allows us, to add the same information as `Parameter`, `Characteristics`.., to `Component`.
|
|
32
|
+
* Without this string composition we loose the ontology information for the header value.
|
|
33
|
+
*/
|
|
34
|
+
export declare function Component_composeName(value: Value_$union, unit: Option<OntologyAnnotation>): string;
|
|
35
|
+
/**
|
|
36
|
+
* This function parses the given Component header string format into the ISA-JSON Component type
|
|
37
|
+
*
|
|
38
|
+
* Components do not have enough fields in ISA-JSON to include all existing ontology term information.
|
|
39
|
+
* This function allows us, to add the same information as `Parameter`, `Characteristics`.., to `Component`.
|
|
40
|
+
* Without this string composition we loose the ontology information for the header value.
|
|
41
|
+
*/
|
|
42
|
+
export declare function Component_decomposeName_Z721C83C5(name: string): [Value_$union, Option<OntologyAnnotation>];
|
|
43
|
+
/**
|
|
44
|
+
* Create a ISAJson Component from ISATab string entries
|
|
45
|
+
*/
|
|
46
|
+
export declare function Component_fromISAString_7C9A7CF8(name?: string, term?: string, source?: string, accession?: string, comments?: Comment$[]): Component;
|
|
47
|
+
/**
|
|
48
|
+
* Get ISATab string entries from an ISAJson Component object
|
|
49
|
+
*/
|
|
50
|
+
export declare function Component_toStringObject_Z685B8F25(c: Component): [string, {
|
|
51
|
+
TermAccessionNumber: string;
|
|
52
|
+
TermName: string;
|
|
53
|
+
TermSourceREF: string;
|
|
54
|
+
}];
|
|
55
|
+
export declare function Component__get_NameText(this$: Component): string;
|
|
56
|
+
/**
|
|
57
|
+
* Returns the ontology of the category of the Value as string
|
|
58
|
+
*/
|
|
59
|
+
export declare function Component__get_UnitText(this$: Component): string;
|
|
60
|
+
export declare function Component__get_ValueText(this$: Component): string;
|
|
61
|
+
export declare function Component__get_ValueWithUnitText(this$: Component): string;
|
|
62
|
+
export declare function Component__MapCategory_658CFBF6(this$: Component, f: ((arg0: OntologyAnnotation) => OntologyAnnotation)): Component;
|
|
63
|
+
export declare function Component__SetCategory_ZDED3A0F(this$: Component, c: OntologyAnnotation): Component;
|
|
64
|
+
export declare function Component_createAsPV(alternateName: Option<string>, measurementMethod: Option<string>, description: Option<string>, category: Option<OntologyAnnotation>, value: Option<Value_$union>, unit: Option<OntologyAnnotation>): Component;
|
|
65
|
+
//# sourceMappingURL=Component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Component.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Core/Process/Component.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
import { value, map, unwrap, defaultArg } from '../../../node_modules/@fable-org/fable-library-js/Option.js';
|
|
2
|
+
import { OntologyAnnotation } from '../OntologyAnnotation.js';
|
|
3
|
+
import { Value, Value_Ontology, Value_Name } from '../Value.js';
|
|
4
|
+
import { Record } from '../../../node_modules/@fable-org/fable-library-js/Types.js';
|
|
5
|
+
import { ActivePatterns_$007CRegex$007C_$007C } from '../Helper/Regex.js';
|
|
6
|
+
import { Option_fromValueWithDefault } from '../Helper/Collections.js';
|
|
7
|
+
|
|
8
|
+
class Component extends Record {
|
|
9
|
+
constructor(ComponentValue, ComponentUnit, ComponentType) {
|
|
10
|
+
super();
|
|
11
|
+
this.ComponentValue = ComponentValue;
|
|
12
|
+
this.ComponentUnit = ComponentUnit;
|
|
13
|
+
this.ComponentType = ComponentType;
|
|
14
|
+
}
|
|
15
|
+
AlternateName() {
|
|
16
|
+
const this$ = this;
|
|
17
|
+
return Component__get_ComponentName(this$);
|
|
18
|
+
}
|
|
19
|
+
MeasurementMethod() {
|
|
20
|
+
return void 0;
|
|
21
|
+
}
|
|
22
|
+
Description() {
|
|
23
|
+
return void 0;
|
|
24
|
+
}
|
|
25
|
+
GetCategory() {
|
|
26
|
+
const this$ = this;
|
|
27
|
+
return this$.ComponentType;
|
|
28
|
+
}
|
|
29
|
+
GetAdditionalType() {
|
|
30
|
+
return "Component";
|
|
31
|
+
}
|
|
32
|
+
GetValue() {
|
|
33
|
+
const this$ = this;
|
|
34
|
+
return this$.ComponentValue;
|
|
35
|
+
}
|
|
36
|
+
GetUnit() {
|
|
37
|
+
const this$ = this;
|
|
38
|
+
return this$.ComponentUnit;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
function Component__get_ComponentName(this$) {
|
|
42
|
+
return map((v) => Component_composeName(v, this$.ComponentUnit), this$.ComponentValue);
|
|
43
|
+
}
|
|
44
|
+
function Component_make(value, unit, componentType) {
|
|
45
|
+
return new Component(value, unit, componentType);
|
|
46
|
+
}
|
|
47
|
+
function Component_create_Z2F0B38C7(value, unit, componentType) {
|
|
48
|
+
return Component_make(value, unit, componentType);
|
|
49
|
+
}
|
|
50
|
+
function Component_composeName(value$1, unit) {
|
|
51
|
+
if (value$1.tag === /* Ontology */
|
|
52
|
+
0) {
|
|
53
|
+
const oa = value$1.fields[0];
|
|
54
|
+
return `${oa.NameText} (${oa.TermAccessionShort})`;
|
|
55
|
+
} else if (unit != null) {
|
|
56
|
+
const u = value(unit);
|
|
57
|
+
return `${value$1.Text} ${u.NameText} (${u.TermAccessionShort})`;
|
|
58
|
+
} else {
|
|
59
|
+
return `${value$1.Text}`;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
function Component_decomposeName_Z721C83C5(name) {
|
|
63
|
+
const activePatternResult = ActivePatterns_$007CRegex$007C_$007C("^(?<value>[\\d\\.]+) (?<unit>.+) \\((?<ontology>[^(]*:[^)]*)\\)", name);
|
|
64
|
+
if (activePatternResult != null) {
|
|
65
|
+
const unitr = value(activePatternResult);
|
|
66
|
+
let oa;
|
|
67
|
+
const tan = unitr.groups && unitr.groups.ontology || "";
|
|
68
|
+
oa = OntologyAnnotation.fromTermAnnotation(tan);
|
|
69
|
+
let v;
|
|
70
|
+
const value$1 = unitr.groups && unitr.groups.value || "";
|
|
71
|
+
v = Value.fromString(value$1);
|
|
72
|
+
const u = unitr.groups && unitr.groups.unit || "";
|
|
73
|
+
oa.Name = u;
|
|
74
|
+
return [v, oa];
|
|
75
|
+
} else {
|
|
76
|
+
const activePatternResult_1 = ActivePatterns_$007CRegex$007C_$007C("^(?<value>[^\\(]+) \\((?<ontology>[^(]*:[^)]*)\\)", name);
|
|
77
|
+
if (activePatternResult_1 != null) {
|
|
78
|
+
const r = value(activePatternResult_1);
|
|
79
|
+
let oa_1;
|
|
80
|
+
const tan_1 = r.groups && r.groups.ontology || "";
|
|
81
|
+
oa_1 = OntologyAnnotation.fromTermAnnotation(tan_1);
|
|
82
|
+
const v_1 = r.groups && r.groups.value || "";
|
|
83
|
+
oa_1.Name = v_1;
|
|
84
|
+
return [Value_Ontology(oa_1), void 0];
|
|
85
|
+
} else {
|
|
86
|
+
const activePatternResult_2 = ActivePatterns_$007CRegex$007C_$007C("^(?<value>[^\\(\\)]+) \\(\\)", name);
|
|
87
|
+
if (activePatternResult_2 != null) {
|
|
88
|
+
const r_1 = value(activePatternResult_2);
|
|
89
|
+
return [Value_Ontology(new OntologyAnnotation(r_1.groups && r_1.groups.value || "")), void 0];
|
|
90
|
+
} else {
|
|
91
|
+
return [Value_Name(name), void 0];
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
function Component_fromISAString_7C9A7CF8(name, term, source, accession, comments) {
|
|
97
|
+
let cType;
|
|
98
|
+
const v = OntologyAnnotation.create(unwrap(term), unwrap(source), unwrap(accession), unwrap(comments));
|
|
99
|
+
cType = Option_fromValueWithDefault(new OntologyAnnotation(), v);
|
|
100
|
+
if (name == null) {
|
|
101
|
+
return Component_make(void 0, void 0, cType);
|
|
102
|
+
} else {
|
|
103
|
+
const patternInput = Component_decomposeName_Z721C83C5(value(name));
|
|
104
|
+
return Component_make(Option_fromValueWithDefault(Value_Name(""), patternInput[0]), patternInput[1], cType);
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
function Component_toStringObject_Z685B8F25(c) {
|
|
108
|
+
let oa_1;
|
|
109
|
+
const value = {
|
|
110
|
+
TermAccessionNumber: "",
|
|
111
|
+
TermName: "",
|
|
112
|
+
TermSourceREF: ""
|
|
113
|
+
};
|
|
114
|
+
oa_1 = defaultArg(map((oa) => OntologyAnnotation.toStringObject(oa), c.ComponentType), value);
|
|
115
|
+
return [defaultArg(Component__get_ComponentName(c), ""), oa_1];
|
|
116
|
+
}
|
|
117
|
+
function Component_createAsPV(alternateName, measurementMethod, description, category, value, unit) {
|
|
118
|
+
return Component_create_Z2F0B38C7(unwrap(value), unwrap(unit), unwrap(category));
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
export { Component, Component__get_ComponentName, Component_composeName, Component_createAsPV, Component_create_Z2F0B38C7, Component_decomposeName_Z721C83C5, Component_fromISAString_7C9A7CF8, Component_make, Component_toStringObject_Z685B8F25 };
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { Option } from '@fable-org/fable-library-js/Option.js';
|
|
2
|
+
import { OntologyAnnotation } from '../OntologyAnnotation.js';
|
|
3
|
+
import { Comment$ } from '../Comment.js';
|
|
4
|
+
import { FSharpList } from '@fable-org/fable-library-js/List.js';
|
|
5
|
+
import { IEquatable } from '@fable-org/fable-library-js/Util.js';
|
|
6
|
+
import { Record } from '@fable-org/fable-library-js/Types.js';
|
|
7
|
+
import { IISAPrintable } from '../Helper/Printer.js';
|
|
8
|
+
import { TypeInfo } from '@fable-org/fable-library-js/Reflection.js';
|
|
9
|
+
export declare class Factor extends Record implements IEquatable<Factor>, IISAPrintable {
|
|
10
|
+
readonly Name: Option<string>;
|
|
11
|
+
readonly FactorType: Option<OntologyAnnotation>;
|
|
12
|
+
readonly Comments: Option<Comment$[]>;
|
|
13
|
+
constructor(Name: Option<string>, FactorType: Option<OntologyAnnotation>, Comments: Option<Comment$[]>);
|
|
14
|
+
static make(name: Option<string>, factorType: Option<OntologyAnnotation>, comments: Option<Comment$[]>): Factor;
|
|
15
|
+
static create(Name?: string, FactorType?: OntologyAnnotation, Comments?: Comment$[]): Factor;
|
|
16
|
+
static get empty(): Factor;
|
|
17
|
+
static fromString(name: string, term: string, source: string, accession: string, comments?: Comment$[]): Factor;
|
|
18
|
+
static toStringObject(factor: Factor): {
|
|
19
|
+
TermAccessionNumber: string;
|
|
20
|
+
TermName: string;
|
|
21
|
+
TermSourceREF: string;
|
|
22
|
+
};
|
|
23
|
+
get NameText(): string;
|
|
24
|
+
MapCategory(f: ((arg0: OntologyAnnotation) => OntologyAnnotation)): Factor;
|
|
25
|
+
SetCategory(c: OntologyAnnotation): Factor;
|
|
26
|
+
static tryGetByName(name: string, factors: FSharpList<Factor>): Option<Factor>;
|
|
27
|
+
static existsByName(name: string, factors: FSharpList<Factor>): boolean;
|
|
28
|
+
static add(factors: FSharpList<Factor>, factor: Factor): FSharpList<Factor>;
|
|
29
|
+
static removeByName(name: string, factors: FSharpList<Factor>): FSharpList<Factor>;
|
|
30
|
+
static getComments(factor: Factor): Option<Comment$[]>;
|
|
31
|
+
static mapComments(f: ((arg0: Comment$[]) => Comment$[]), factor: Factor): Factor;
|
|
32
|
+
static setComments(factor: Factor, comments: Comment$[]): Factor;
|
|
33
|
+
static getFactorType(factor: Factor): Option<OntologyAnnotation>;
|
|
34
|
+
static mapFactorType(f: ((arg0: OntologyAnnotation) => OntologyAnnotation), factor: Factor): Factor;
|
|
35
|
+
static setFactorType(factor: Factor, factorType: OntologyAnnotation): Factor;
|
|
36
|
+
static tryGetName(f: Factor): Option<string>;
|
|
37
|
+
static getNameAsString(f: Factor): string;
|
|
38
|
+
static nameEqualsString(name: string, f: Factor): boolean;
|
|
39
|
+
Copy(): Factor;
|
|
40
|
+
Print(): string;
|
|
41
|
+
PrintCompact(): string;
|
|
42
|
+
}
|
|
43
|
+
export declare function Factor_$reflection(): TypeInfo;
|
|
44
|
+
//# sourceMappingURL=Factor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Factor.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Core/Process/Factor.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import { unwrap, defaultArg, map } from '../../../node_modules/@fable-org/fable-library-js/Option.js';
|
|
2
|
+
import { OntologyAnnotation } from '../OntologyAnnotation.js';
|
|
3
|
+
import { equals } from '../../../node_modules/@fable-org/fable-library-js/Util.js';
|
|
4
|
+
import { tryFind, exists, append, singleton, filter } from '../../../node_modules/@fable-org/fable-library-js/List.js';
|
|
5
|
+
import { Record, toString } from '../../../node_modules/@fable-org/fable-library-js/Types.js';
|
|
6
|
+
import { Option_fromValueWithDefault, ResizeArray_map } from '../Helper/Collections.js';
|
|
7
|
+
|
|
8
|
+
class Factor extends Record {
|
|
9
|
+
constructor(Name, FactorType, Comments) {
|
|
10
|
+
super();
|
|
11
|
+
this.Name = Name;
|
|
12
|
+
this.FactorType = FactorType;
|
|
13
|
+
this.Comments = Comments;
|
|
14
|
+
}
|
|
15
|
+
static make(name, factorType, comments) {
|
|
16
|
+
return new Factor(name, factorType, comments);
|
|
17
|
+
}
|
|
18
|
+
static create(Name, FactorType, Comments) {
|
|
19
|
+
return Factor.make(Name, FactorType, Comments);
|
|
20
|
+
}
|
|
21
|
+
static get empty() {
|
|
22
|
+
return Factor.create();
|
|
23
|
+
}
|
|
24
|
+
static fromString(name, term, source, accession, comments) {
|
|
25
|
+
const oa = OntologyAnnotation.create(term, source, accession, unwrap(comments));
|
|
26
|
+
const name_1 = Option_fromValueWithDefault("", name);
|
|
27
|
+
const factorType = Option_fromValueWithDefault(new OntologyAnnotation(), oa);
|
|
28
|
+
return Factor.make(name_1, factorType, void 0);
|
|
29
|
+
}
|
|
30
|
+
static toStringObject(factor) {
|
|
31
|
+
const value = {
|
|
32
|
+
TermAccessionNumber: "",
|
|
33
|
+
TermName: "",
|
|
34
|
+
TermSourceREF: ""
|
|
35
|
+
};
|
|
36
|
+
return defaultArg(map((oa) => OntologyAnnotation.toStringObject(oa), factor.FactorType), value);
|
|
37
|
+
}
|
|
38
|
+
get NameText() {
|
|
39
|
+
const this$ = this;
|
|
40
|
+
return defaultArg(this$.Name, "");
|
|
41
|
+
}
|
|
42
|
+
MapCategory(f) {
|
|
43
|
+
const this$ = this;
|
|
44
|
+
return new Factor(this$.Name, map(f, this$.FactorType), this$.Comments);
|
|
45
|
+
}
|
|
46
|
+
SetCategory(c) {
|
|
47
|
+
const this$ = this;
|
|
48
|
+
return new Factor(this$.Name, c, this$.Comments);
|
|
49
|
+
}
|
|
50
|
+
static tryGetByName(name, factors) {
|
|
51
|
+
return tryFind((f) => equals(f.Name, name), factors);
|
|
52
|
+
}
|
|
53
|
+
static existsByName(name, factors) {
|
|
54
|
+
return exists((f) => equals(f.Name, name), factors);
|
|
55
|
+
}
|
|
56
|
+
static add(factors, factor) {
|
|
57
|
+
return append(factors, singleton(factor));
|
|
58
|
+
}
|
|
59
|
+
static removeByName(name, factors) {
|
|
60
|
+
return filter((f) => !equals(f.Name, name), factors);
|
|
61
|
+
}
|
|
62
|
+
static getComments(factor) {
|
|
63
|
+
return factor.Comments;
|
|
64
|
+
}
|
|
65
|
+
static mapComments(f, factor) {
|
|
66
|
+
return new Factor(factor.Name, factor.FactorType, map(f, factor.Comments));
|
|
67
|
+
}
|
|
68
|
+
static setComments(factor, comments) {
|
|
69
|
+
return new Factor(factor.Name, factor.FactorType, comments);
|
|
70
|
+
}
|
|
71
|
+
static getFactorType(factor) {
|
|
72
|
+
return factor.FactorType;
|
|
73
|
+
}
|
|
74
|
+
static mapFactorType(f, factor) {
|
|
75
|
+
return new Factor(factor.Name, map(f, factor.FactorType), factor.Comments);
|
|
76
|
+
}
|
|
77
|
+
static setFactorType(factor, factorType) {
|
|
78
|
+
return new Factor(factor.Name, factorType, factor.Comments);
|
|
79
|
+
}
|
|
80
|
+
static tryGetName(f) {
|
|
81
|
+
return f.Name;
|
|
82
|
+
}
|
|
83
|
+
static getNameAsString(f) {
|
|
84
|
+
return f.NameText;
|
|
85
|
+
}
|
|
86
|
+
static nameEqualsString(name, f) {
|
|
87
|
+
return f.NameText === name;
|
|
88
|
+
}
|
|
89
|
+
Copy() {
|
|
90
|
+
const this$ = this;
|
|
91
|
+
const comments = map((a) => ResizeArray_map((c) => c.Copy(), a), this$.Comments);
|
|
92
|
+
return Factor.make(this$.Name, this$.FactorType, comments);
|
|
93
|
+
}
|
|
94
|
+
Print() {
|
|
95
|
+
const this$ = this;
|
|
96
|
+
return toString(this$);
|
|
97
|
+
}
|
|
98
|
+
PrintCompact() {
|
|
99
|
+
const this$ = this;
|
|
100
|
+
return "OA " + this$.NameText;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
export { Factor };
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { Record } from '@fable-org/fable-library-js/Types.js';
|
|
2
|
+
import { Option } from '@fable-org/fable-library-js/Option.js';
|
|
3
|
+
import { Factor } from './Factor.js';
|
|
4
|
+
import { OntologyAnnotation } from '../OntologyAnnotation.js';
|
|
5
|
+
import { IISAPrintable } from '../Helper/Printer.js';
|
|
6
|
+
import { Value_$union } from '../Value.js';
|
|
7
|
+
import { IEquatable } from '@fable-org/fable-library-js/Util.js';
|
|
8
|
+
import { IPropertyValue } from '../IPropertyValue.js';
|
|
9
|
+
import { TypeInfo } from '@fable-org/fable-library-js/Reflection.js';
|
|
10
|
+
export declare class FactorValue extends Record implements IEquatable<FactorValue>, IPropertyValue, IISAPrintable {
|
|
11
|
+
readonly ID: Option<string>;
|
|
12
|
+
readonly Category: Option<Factor>;
|
|
13
|
+
readonly Value: Option<Value_$union>;
|
|
14
|
+
readonly Unit: Option<OntologyAnnotation>;
|
|
15
|
+
constructor(ID: Option<string>, Category: Option<Factor>, Value: Option<Value_$union>, Unit: Option<OntologyAnnotation>);
|
|
16
|
+
Print(): string;
|
|
17
|
+
PrintCompact(): string;
|
|
18
|
+
AlternateName(): Option<string>;
|
|
19
|
+
MeasurementMethod(): Option<string>;
|
|
20
|
+
Description(): Option<string>;
|
|
21
|
+
GetCategory(): Option<OntologyAnnotation>;
|
|
22
|
+
GetValue(): Option<Value_$union>;
|
|
23
|
+
GetUnit(): Option<OntologyAnnotation>;
|
|
24
|
+
GetAdditionalType(): string;
|
|
25
|
+
}
|
|
26
|
+
export declare function FactorValue_$reflection(): TypeInfo;
|
|
27
|
+
export declare function FactorValue_make(id: Option<string>, category: Option<Factor>, value: Option<Value_$union>, unit: Option<OntologyAnnotation>): FactorValue;
|
|
28
|
+
export declare function FactorValue_create_30BDC49(Id?: string, Category?: Factor, Value?: Value_$union, Unit?: OntologyAnnotation): FactorValue;
|
|
29
|
+
export declare function FactorValue_get_empty(): FactorValue;
|
|
30
|
+
export declare function FactorValue__get_ValueText(this$: FactorValue): string;
|
|
31
|
+
export declare function FactorValue__get_ValueWithUnitText(this$: FactorValue): string;
|
|
32
|
+
export declare function FactorValue__get_NameText(this$: FactorValue): string;
|
|
33
|
+
export declare function FactorValue__MapCategory_658CFBF6(this$: FactorValue, f: ((arg0: OntologyAnnotation) => OntologyAnnotation)): FactorValue;
|
|
34
|
+
export declare function FactorValue__SetCategory_ZDED3A0F(this$: FactorValue, c: OntologyAnnotation): FactorValue;
|
|
35
|
+
/**
|
|
36
|
+
* Returns the name of the factor value as string
|
|
37
|
+
*/
|
|
38
|
+
export declare function FactorValue_getNameAsString_7105C732(fv: FactorValue): string;
|
|
39
|
+
/**
|
|
40
|
+
* Returns true if the given name matches the name of the factor value
|
|
41
|
+
*/
|
|
42
|
+
export declare function FactorValue_nameEqualsString(name: string, fv: FactorValue): boolean;
|
|
43
|
+
export declare function FactorValue_createAsPV(alternateName: Option<string>, measurementMethod: Option<string>, description: Option<string>, category: Option<OntologyAnnotation>, value: Option<Value_$union>, unit: Option<OntologyAnnotation>): FactorValue;
|
|
44
|
+
//# sourceMappingURL=FactorValue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FactorValue.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Core/Process/FactorValue.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { Record, toString } from '../../../node_modules/@fable-org/fable-library-js/Types.js';
|
|
2
|
+
import { map, value, bind, unwrap } from '../../../node_modules/@fable-org/fable-library-js/Option.js';
|
|
3
|
+
import { Factor } from './Factor.js';
|
|
4
|
+
import '../Helper/Url.js';
|
|
5
|
+
|
|
6
|
+
class FactorValue extends Record {
|
|
7
|
+
constructor(ID, Category, Value, Unit) {
|
|
8
|
+
super();
|
|
9
|
+
this.ID = ID;
|
|
10
|
+
this.Category = Category;
|
|
11
|
+
this.Value = Value;
|
|
12
|
+
this.Unit = Unit;
|
|
13
|
+
}
|
|
14
|
+
Print() {
|
|
15
|
+
const this$ = this;
|
|
16
|
+
return toString(this$);
|
|
17
|
+
}
|
|
18
|
+
PrintCompact() {
|
|
19
|
+
let value_2, category_2, category_1, value_1;
|
|
20
|
+
const this$ = this;
|
|
21
|
+
const category = map((f) => f.NameText, this$.Category);
|
|
22
|
+
const unit = map((oa) => oa.NameText, this$.Unit);
|
|
23
|
+
const value$1 = map((v) => {
|
|
24
|
+
const s = v.PrintCompact();
|
|
25
|
+
if (unit == null) {
|
|
26
|
+
return s;
|
|
27
|
+
} else {
|
|
28
|
+
return s + " " + value(unit);
|
|
29
|
+
}
|
|
30
|
+
}, this$.Value);
|
|
31
|
+
return category == null ? value$1 == null ? "" : (value_2 = value(value$1), value_2) : value$1 == null ? (category_2 = value(category), category_2 + ":No Value") : (category_1 = value(category), value_1 = value(value$1), category_1 + ":" + value_1);
|
|
32
|
+
}
|
|
33
|
+
AlternateName() {
|
|
34
|
+
return void 0;
|
|
35
|
+
}
|
|
36
|
+
MeasurementMethod() {
|
|
37
|
+
return void 0;
|
|
38
|
+
}
|
|
39
|
+
Description() {
|
|
40
|
+
return void 0;
|
|
41
|
+
}
|
|
42
|
+
GetCategory() {
|
|
43
|
+
const this$ = this;
|
|
44
|
+
return bind((f) => f.FactorType, this$.Category);
|
|
45
|
+
}
|
|
46
|
+
GetValue() {
|
|
47
|
+
const this$ = this;
|
|
48
|
+
return this$.Value;
|
|
49
|
+
}
|
|
50
|
+
GetUnit() {
|
|
51
|
+
const this$ = this;
|
|
52
|
+
return this$.Unit;
|
|
53
|
+
}
|
|
54
|
+
GetAdditionalType() {
|
|
55
|
+
return "FactorValue";
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
function FactorValue_make(id, category, value, unit) {
|
|
59
|
+
return new FactorValue(id, category, value, unit);
|
|
60
|
+
}
|
|
61
|
+
function FactorValue_create_30BDC49(Id, Category, Value, Unit) {
|
|
62
|
+
return FactorValue_make(Id, Category, Value, Unit);
|
|
63
|
+
}
|
|
64
|
+
function FactorValue_createAsPV(alternateName, measurementMethod, description, category, value, unit) {
|
|
65
|
+
return FactorValue_create_30BDC49(void 0, unwrap(map((c) => Factor.create(void 0, c), category)), unwrap(value), unwrap(unit));
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export { FactorValue, FactorValue_createAsPV, FactorValue_create_30BDC49, FactorValue_make };
|