@nfdi4plants/arctrl 2.5.1 → 3.0.0-alpha.2
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/LICENSE +21 -0
- package/README.md +1 -1
- package/dist/ts/cjs/index.js +39 -0
- package/dist/ts/cjs/ts/ARC.js +965 -0
- package/dist/ts/cjs/ts/Contract/ARC.js +61 -0
- package/dist/ts/cjs/ts/Contract/ArcAssay.js +103 -0
- package/dist/ts/cjs/ts/Contract/ArcInvestigation.js +77 -0
- package/dist/ts/cjs/ts/Contract/ArcRun.js +103 -0
- package/dist/ts/cjs/ts/Contract/ArcStudy.js +103 -0
- package/dist/ts/cjs/ts/Contract/ArcWorkflow.js +104 -0
- package/dist/ts/cjs/ts/Contract/Contract.js +100 -0
- package/dist/ts/cjs/ts/Contract/Datamap.js +314 -0
- package/dist/ts/cjs/ts/Contract/Git.js +94 -0
- package/dist/ts/cjs/ts/Contract/ValidationPackagesConfig.js +97 -0
- package/dist/ts/cjs/ts/ContractIO/ContractIO.js +217 -0
- package/dist/ts/cjs/ts/ContractIO/FileSystemHelper.js +205 -0
- package/dist/ts/cjs/ts/Conversion.js +1700 -0
- package/dist/ts/cjs/ts/Core/ArcTypes.js +3803 -0
- package/dist/ts/cjs/ts/Core/Comment.js +106 -0
- package/dist/ts/cjs/ts/Core/CommentList.js +134 -0
- package/dist/ts/cjs/ts/Core/Conversion.js +1131 -0
- package/dist/ts/cjs/ts/Core/Data.js +194 -0
- package/dist/ts/cjs/ts/Core/DataContext.js +141 -0
- package/dist/ts/cjs/ts/Core/DataFile.js +98 -0
- package/dist/ts/cjs/ts/Core/DataMap.js +185 -0
- package/dist/ts/cjs/ts/Core/Helper/Collections.js +419 -0
- package/dist/ts/cjs/ts/Core/Helper/HashCodes.js +40 -0
- package/dist/ts/cjs/ts/Core/Helper/Identifier.js +329 -0
- package/dist/ts/cjs/ts/Core/Helper/ORCID.js +40 -0
- package/dist/ts/cjs/ts/Core/Helper/Printer.js +2 -0
- package/dist/ts/cjs/ts/Core/Helper/Regex.js +616 -0
- package/dist/ts/cjs/ts/Core/Helper/SemVer.js +59 -0
- package/dist/ts/cjs/ts/Core/Helper/Url.js +40 -0
- package/dist/ts/cjs/ts/Core/IPropertyValue.js +2 -0
- package/dist/ts/cjs/ts/Core/IdentifierSetters.js +27 -0
- package/dist/ts/cjs/ts/Core/OntologyAnnotation.js +215 -0
- package/dist/ts/cjs/ts/Core/OntologySourceReference.js +94 -0
- package/dist/ts/cjs/ts/Core/Person.js +196 -0
- package/dist/ts/cjs/ts/Core/Process/ColumnIndex.js +258 -0
- package/dist/ts/cjs/ts/Core/Process/Component.js +200 -0
- package/dist/ts/cjs/ts/Core/Process/Factor.js +111 -0
- package/dist/ts/cjs/ts/Core/Process/FactorValue.js +143 -0
- package/dist/ts/cjs/ts/Core/Process/Material.js +68 -0
- package/dist/ts/cjs/ts/Core/Process/MaterialAttribute.js +103 -0
- package/dist/ts/cjs/ts/Core/Process/MaterialAttributeValue.js +160 -0
- package/dist/ts/cjs/ts/Core/Process/MaterialType.js +51 -0
- package/dist/ts/cjs/ts/Core/Process/Process.js +371 -0
- package/dist/ts/cjs/ts/Core/Process/ProcessInput.js +321 -0
- package/dist/ts/cjs/ts/Core/Process/ProcessOutput.js +282 -0
- package/dist/ts/cjs/ts/Core/Process/ProcessParameterValue.js +141 -0
- package/dist/ts/cjs/ts/Core/Process/ProcessSequence.js +250 -0
- package/dist/ts/cjs/ts/Core/Process/Protocol.js +248 -0
- package/dist/ts/cjs/ts/Core/Process/ProtocolParameter.js +75 -0
- package/dist/ts/cjs/ts/Core/Process/Sample.js +73 -0
- package/dist/ts/cjs/ts/Core/Process/Source.js +56 -0
- package/dist/ts/cjs/ts/Core/Publication.js +118 -0
- package/dist/ts/cjs/ts/Core/Table/ArcTable.js +906 -0
- package/dist/ts/cjs/ts/Core/Table/ArcTableAux.js +582 -0
- package/dist/ts/cjs/ts/Core/Table/ArcTables.js +483 -0
- package/dist/ts/cjs/ts/Core/Table/CompositeCell.js +317 -0
- package/dist/ts/cjs/ts/Core/Table/CompositeColumn.js +58 -0
- package/dist/ts/cjs/ts/Core/Table/CompositeHeader.js +718 -0
- package/dist/ts/cjs/ts/Core/Template.js +196 -0
- package/dist/ts/cjs/ts/Core/Templates.js +86 -0
- package/dist/ts/cjs/ts/Core/URI.js +20 -0
- package/dist/ts/cjs/ts/Core/Value.js +191 -0
- package/dist/ts/cjs/ts/CrossAsync.js +35 -0
- package/dist/ts/cjs/ts/FileSystem/Commit.js +20 -0
- package/dist/ts/cjs/ts/FileSystem/DefaultGitattributes.js +4 -0
- package/dist/ts/cjs/ts/FileSystem/DefaultGitignore.js +4 -0
- package/dist/ts/cjs/ts/FileSystem/FileSystem.js +55 -0
- package/dist/ts/cjs/ts/FileSystem/FileSystemTree.js +322 -0
- package/dist/ts/cjs/ts/FileSystem/Path.js +63 -0
- package/dist/ts/cjs/ts/Json/Assay.js +234 -0
- package/dist/ts/cjs/ts/Json/Comment.js +119 -0
- package/dist/ts/cjs/ts/Json/Data.js +147 -0
- package/dist/ts/cjs/ts/Json/DataFile.js +54 -0
- package/dist/ts/cjs/ts/Json/DataMap/DataContext.js +40 -0
- package/dist/ts/cjs/ts/Json/DataMap/DataMap.js +30 -0
- package/dist/ts/cjs/ts/Json/Decode.js +126 -0
- package/dist/ts/cjs/ts/Json/Encode.js +75 -0
- package/dist/ts/cjs/ts/Json/IDTable.js +30 -0
- package/dist/ts/cjs/ts/Json/Investigation.js +254 -0
- package/dist/ts/cjs/ts/Json/OntologyAnnotation.js +207 -0
- package/dist/ts/cjs/ts/Json/OntologySourceReference.js +125 -0
- package/dist/ts/cjs/ts/Json/Person.js +338 -0
- package/dist/ts/cjs/ts/Json/Process/AssayMaterials.js +21 -0
- package/dist/ts/cjs/ts/Json/Process/Component.js +47 -0
- package/dist/ts/cjs/ts/Json/Process/Factor.js +58 -0
- package/dist/ts/cjs/ts/Json/Process/FactorValue.js +47 -0
- package/dist/ts/cjs/ts/Json/Process/Material.js +120 -0
- package/dist/ts/cjs/ts/Json/Process/MaterialAttribute.js +47 -0
- package/dist/ts/cjs/ts/Json/Process/MaterialAttributeValue.js +47 -0
- package/dist/ts/cjs/ts/Json/Process/MaterialType.js +46 -0
- package/dist/ts/cjs/ts/Json/Process/Process.js +109 -0
- package/dist/ts/cjs/ts/Json/Process/ProcessInput.js +38 -0
- package/dist/ts/cjs/ts/Json/Process/ProcessOutput.js +33 -0
- package/dist/ts/cjs/ts/Json/Process/ProcessParameterValue.js +33 -0
- package/dist/ts/cjs/ts/Json/Process/Protocol.js +180 -0
- package/dist/ts/cjs/ts/Json/Process/ProtocolParameter.js +47 -0
- package/dist/ts/cjs/ts/Json/Process/Sample.js +176 -0
- package/dist/ts/cjs/ts/Json/Process/Source.js +145 -0
- package/dist/ts/cjs/ts/Json/Process/StudyMaterials.js +23 -0
- package/dist/ts/cjs/ts/Json/Process/Value.js +39 -0
- package/dist/ts/cjs/ts/Json/PropertyValue.js +300 -0
- package/dist/ts/cjs/ts/Json/Publication.js +130 -0
- package/dist/ts/cjs/ts/Json/ROCrate/LDContext.js +123 -0
- package/dist/ts/cjs/ts/Json/ROCrate/LDGraph.js +88 -0
- package/dist/ts/cjs/ts/Json/ROCrate/LDNode.js +213 -0
- package/dist/ts/cjs/ts/Json/ROCrate/LDRef.js +25 -0
- package/dist/ts/cjs/ts/Json/ROCrate/LDValue.js +70 -0
- package/dist/ts/cjs/ts/Json/StringTable.js +63 -0
- package/dist/ts/cjs/ts/Json/Study.js +347 -0
- package/dist/ts/cjs/ts/Json/Table/ArcTable.js +230 -0
- package/dist/ts/cjs/ts/Json/Table/CellTable.js +58 -0
- package/dist/ts/cjs/ts/Json/Table/CompositeCell.js +103 -0
- package/dist/ts/cjs/ts/Json/Table/CompositeHeader.js +108 -0
- package/dist/ts/cjs/ts/Json/Table/IOType.js +16 -0
- package/dist/ts/cjs/ts/Json/Table/OATable.js +55 -0
- package/dist/ts/cjs/ts/Json/Table/Templates.js +106 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_assay_context.js +89 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_comment_context.js +47 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_data_context.js +61 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_investigation_context.js +97 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_material_context.js +58 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_ontology_annotation_context.js +56 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +62 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_organization_context.js +42 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_person_context.js +112 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_process_context.js +82 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_protocol_context.js +85 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_publication_context.js +66 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_sample_context.js +53 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_source_context.js +53 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_study_context.js +113 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/property_value_context.js +61 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/rocrate_context.js +63 -0
- package/dist/ts/cjs/ts/Json.js +195 -0
- package/dist/ts/cjs/ts/JsonIO/Assay.js +104 -0
- package/dist/ts/cjs/ts/JsonIO/Investigation.js +104 -0
- package/dist/ts/cjs/ts/JsonIO/OntologyAnnotation.js +77 -0
- package/dist/ts/cjs/ts/JsonIO/Study.js +104 -0
- package/dist/ts/cjs/ts/JsonIO/Table/Compression.js +47 -0
- package/dist/ts/cjs/ts/JsonIO/Table/Templates.js +92 -0
- package/dist/ts/cjs/ts/ROCrate/Generic/Comment.js +117 -0
- package/dist/ts/cjs/ts/ROCrate/Generic/Dataset.js +671 -0
- package/dist/ts/cjs/ts/ROCrate/Generic/DefinedTerm.js +117 -0
- package/dist/ts/cjs/ts/ROCrate/Generic/File.js +202 -0
- package/dist/ts/cjs/ts/ROCrate/Generic/LabProcess.js +240 -0
- package/dist/ts/cjs/ts/ROCrate/Generic/LabProtocol.js +277 -0
- package/dist/ts/cjs/ts/ROCrate/Generic/Organization.js +73 -0
- package/dist/ts/cjs/ts/ROCrate/Generic/Person.js +413 -0
- package/dist/ts/cjs/ts/ROCrate/Generic/PostalAddress.js +161 -0
- package/dist/ts/cjs/ts/ROCrate/Generic/PropertyValue.js +550 -0
- package/dist/ts/cjs/ts/ROCrate/Generic/Sample.js +141 -0
- package/dist/ts/cjs/ts/ROCrate/Generic/ScholarlyArticle.js +189 -0
- package/dist/ts/cjs/ts/ROCrate/Helper.js +7 -0
- package/dist/ts/cjs/ts/ROCrate/LDContext.js +284 -0
- package/dist/ts/cjs/ts/ROCrate/LDObject.js +984 -0
- package/dist/ts/cjs/ts/ROCrate/ROCrateContext.js +44 -0
- package/dist/ts/cjs/ts/ROCrateIO.js +64 -0
- package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/ArcTable.js +165 -0
- package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/CompositeCell.js +68 -0
- package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +79 -0
- package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +476 -0
- package/dist/ts/cjs/ts/Spreadsheet/ArcAssay.js +218 -0
- package/dist/ts/cjs/ts/Spreadsheet/ArcInvestigation.js +340 -0
- package/dist/ts/cjs/ts/Spreadsheet/ArcRun.js +177 -0
- package/dist/ts/cjs/ts/Spreadsheet/ArcStudy.js +130 -0
- package/dist/ts/cjs/ts/Spreadsheet/ArcWorkflow.js +166 -0
- package/dist/ts/cjs/ts/Spreadsheet/CollectionAux.js +128 -0
- package/dist/ts/cjs/ts/Spreadsheet/DataMap.js +41 -0
- package/dist/ts/cjs/ts/Spreadsheet/DataMapTable/DataMapColumn.js +43 -0
- package/dist/ts/cjs/ts/Spreadsheet/DataMapTable/DataMapHeader.js +480 -0
- package/dist/ts/cjs/ts/Spreadsheet/DataMapTable/DataMapTable.js +105 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Assays.js +98 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Comment.js +68 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Contacts.js +92 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Conversions.js +187 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/DesignDescriptors.js +25 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Factors.js +83 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/OntologyAnnotation.js +65 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/OntologySourceReference.js +68 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Protocols.js +103 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Publication.js +88 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Run.js +99 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/SparseTable.js +460 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Study.js +259 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Workflow.js +111 -0
- package/dist/ts/cjs/ts/Template.Web.js +29 -0
- package/dist/ts/cjs/ts/ValidationPackages/ValidationPackage.js +63 -0
- package/dist/ts/cjs/ts/ValidationPackages/ValidationPackagesConfig.js +90 -0
- package/dist/ts/cjs/ts/WebRequest/WebRequest.Node.js +17 -0
- package/dist/ts/cjs/ts/WebRequest/WebRequest.js +20 -0
- package/dist/ts/cjs/ts/Xlsx.js +133 -0
- package/dist/ts/cjs/ts/Yaml/Encode.js +9 -0
- package/dist/ts/cjs/ts/Yaml/ValidationPackage.js +49 -0
- package/dist/ts/cjs/ts/Yaml/ValidationPackagesConfig.js +50 -0
- package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +444 -0
- package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +142 -0
- package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +53 -0
- package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +23 -0
- package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +87 -0
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.js +2 -0
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.js +2 -0
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.js +5 -0
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.js +2 -0
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.js +123 -0
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.js +2 -0
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.js +2 -0
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.js +2 -0
- package/dist/ts/cjs/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +360 -0
- package/dist/ts/cjs/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +220 -0
- package/dist/ts/cjs/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +20 -0
- package/dist/ts/cjs/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +431 -0
- package/dist/ts/cjs/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +186 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.js +477 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.js +521 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.js +211 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.js +58 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.js +139 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.js +365 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.js +259 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.js +127 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.js +137 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.js +140 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.js +435 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.js +69 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.js +40 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.js +40 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.js +31 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.js +78 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.js +46 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.js +134 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.js +43 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.js +238 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.js +93 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.js +76 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.js +42 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.js +332 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.js +175 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.js +80 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.js +65 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.js +53 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.js +55 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.js +34 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.js +68 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.js +72 -0
- package/dist/ts/cjs/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.js +1316 -0
- package/dist/ts/cjs/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.js +200 -0
- package/dist/ts/cjs/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.js +103 -0
- package/dist/ts/cjs/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.js +97 -0
- package/dist/ts/cjs/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.js +59 -0
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.js +1723 -0
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.js +75 -0
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +13 -0
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +50 -0
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +104 -0
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +527 -0
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.js +12 -0
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +235 -0
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +166 -0
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +174 -0
- package/dist/ts/esm/index.js +16 -0
- package/dist/ts/esm/ts/ARC.js +948 -0
- package/dist/ts/esm/ts/Contract/ARC.js +58 -0
- package/dist/ts/esm/ts/Contract/ArcAssay.js +93 -0
- package/dist/ts/esm/ts/Contract/ArcInvestigation.js +69 -0
- package/dist/ts/esm/ts/Contract/ArcRun.js +93 -0
- package/dist/ts/esm/ts/Contract/ArcStudy.js +93 -0
- package/dist/ts/esm/ts/Contract/ArcWorkflow.js +94 -0
- package/dist/ts/esm/ts/Contract/Contract.js +87 -0
- package/dist/ts/esm/ts/Contract/Datamap.js +287 -0
- package/dist/ts/esm/ts/Contract/Git.js +72 -0
- package/dist/ts/esm/ts/Contract/ValidationPackagesConfig.js +88 -0
- package/dist/ts/esm/ts/ContractIO/ContractIO.js +207 -0
- package/dist/ts/esm/ts/ContractIO/FileSystemHelper.js +176 -0
- package/dist/ts/esm/ts/Conversion.js +1582 -0
- package/dist/ts/esm/ts/Core/ArcTypes.js +3728 -0
- package/dist/ts/esm/ts/Core/Comment.js +98 -0
- package/dist/ts/esm/ts/Core/CommentList.js +126 -0
- package/dist/ts/esm/ts/Core/Conversion.js +1078 -0
- package/dist/ts/esm/ts/Core/Data.js +186 -0
- package/dist/ts/esm/ts/Core/DataContext.js +119 -0
- package/dist/ts/esm/ts/Core/DataFile.js +82 -0
- package/dist/ts/esm/ts/Core/DataMap.js +156 -0
- package/dist/ts/esm/ts/Core/Helper/Collections.js +390 -0
- package/dist/ts/esm/ts/Core/Helper/HashCodes.js +32 -0
- package/dist/ts/esm/ts/Core/Helper/Identifier.js +298 -0
- package/dist/ts/esm/ts/Core/Helper/ORCID.js +34 -0
- package/dist/ts/esm/ts/Core/Helper/Printer.js +1 -0
- package/dist/ts/esm/ts/Core/Helper/Regex.js +579 -0
- package/dist/ts/esm/ts/Core/Helper/SemVer.js +50 -0
- package/dist/ts/esm/ts/Core/Helper/Url.js +30 -0
- package/dist/ts/esm/ts/Core/IPropertyValue.js +1 -0
- package/dist/ts/esm/ts/Core/IdentifierSetters.js +21 -0
- package/dist/ts/esm/ts/Core/OntologyAnnotation.js +209 -0
- package/dist/ts/esm/ts/Core/OntologySourceReference.js +88 -0
- package/dist/ts/esm/ts/Core/Person.js +190 -0
- package/dist/ts/esm/ts/Core/Process/ColumnIndex.js +204 -0
- package/dist/ts/esm/ts/Core/Process/Component.js +180 -0
- package/dist/ts/esm/ts/Core/Process/Factor.js +106 -0
- package/dist/ts/esm/ts/Core/Process/FactorValue.js +127 -0
- package/dist/ts/esm/ts/Core/Process/Material.js +57 -0
- package/dist/ts/esm/ts/Core/Process/MaterialAttribute.js +86 -0
- package/dist/ts/esm/ts/Core/Process/MaterialAttributeValue.js +142 -0
- package/dist/ts/esm/ts/Core/Process/MaterialType.js +42 -0
- package/dist/ts/esm/ts/Core/Process/Process.js +341 -0
- package/dist/ts/esm/ts/Core/Process/ProcessInput.js +283 -0
- package/dist/ts/esm/ts/Core/Process/ProcessOutput.js +248 -0
- package/dist/ts/esm/ts/Core/Process/ProcessParameterValue.js +136 -0
- package/dist/ts/esm/ts/Core/Process/ProcessSequence.js +227 -0
- package/dist/ts/esm/ts/Core/Process/Protocol.js +210 -0
- package/dist/ts/esm/ts/Core/Process/ProtocolParameter.js +70 -0
- package/dist/ts/esm/ts/Core/Process/Sample.js +59 -0
- package/dist/ts/esm/ts/Core/Process/Source.js +45 -0
- package/dist/ts/esm/ts/Core/Publication.js +112 -0
- package/dist/ts/esm/ts/Core/Table/ArcTable.js +900 -0
- package/dist/ts/esm/ts/Core/Table/ArcTableAux.js +552 -0
- package/dist/ts/esm/ts/Core/Table/ArcTables.js +468 -0
- package/dist/ts/esm/ts/Core/Table/CompositeCell.js +308 -0
- package/dist/ts/esm/ts/Core/Table/CompositeColumn.js +53 -0
- package/dist/ts/esm/ts/Core/Table/CompositeHeader.js +691 -0
- package/dist/ts/esm/ts/Core/Template.js +186 -0
- package/dist/ts/esm/ts/Core/Templates.js +79 -0
- package/dist/ts/esm/ts/Core/URI.js +16 -0
- package/dist/ts/esm/ts/Core/Value.js +182 -0
- package/dist/ts/esm/ts/CrossAsync.js +27 -0
- package/dist/ts/esm/ts/FileSystem/Commit.js +15 -0
- package/dist/ts/esm/ts/FileSystem/DefaultGitattributes.js +1 -0
- package/dist/ts/esm/ts/FileSystem/DefaultGitignore.js +1 -0
- package/dist/ts/esm/ts/FileSystem/FileSystem.js +50 -0
- package/dist/ts/esm/ts/FileSystem/FileSystemTree.js +315 -0
- package/dist/ts/esm/ts/FileSystem/Path.js +51 -0
- package/dist/ts/esm/ts/Json/Assay.js +225 -0
- package/dist/ts/esm/ts/Json/Comment.js +111 -0
- package/dist/ts/esm/ts/Json/Data.js +138 -0
- package/dist/ts/esm/ts/Json/DataFile.js +50 -0
- package/dist/ts/esm/ts/Json/DataMap/DataContext.js +36 -0
- package/dist/ts/esm/ts/Json/DataMap/DataMap.js +24 -0
- package/dist/ts/esm/ts/Json/Decode.js +117 -0
- package/dist/ts/esm/ts/Json/Encode.js +63 -0
- package/dist/ts/esm/ts/Json/IDTable.js +26 -0
- package/dist/ts/esm/ts/Json/Investigation.js +244 -0
- package/dist/ts/esm/ts/Json/OntologyAnnotation.js +197 -0
- package/dist/ts/esm/ts/Json/OntologySourceReference.js +118 -0
- package/dist/ts/esm/ts/Json/Person.js +329 -0
- package/dist/ts/esm/ts/Json/Process/AssayMaterials.js +18 -0
- package/dist/ts/esm/ts/Json/Process/Component.js +42 -0
- package/dist/ts/esm/ts/Json/Process/Factor.js +53 -0
- package/dist/ts/esm/ts/Json/Process/FactorValue.js +42 -0
- package/dist/ts/esm/ts/Json/Process/Material.js +114 -0
- package/dist/ts/esm/ts/Json/Process/MaterialAttribute.js +42 -0
- package/dist/ts/esm/ts/Json/Process/MaterialAttributeValue.js +42 -0
- package/dist/ts/esm/ts/Json/Process/MaterialType.js +42 -0
- package/dist/ts/esm/ts/Json/Process/Process.js +103 -0
- package/dist/ts/esm/ts/Json/Process/ProcessInput.js +33 -0
- package/dist/ts/esm/ts/Json/Process/ProcessOutput.js +28 -0
- package/dist/ts/esm/ts/Json/Process/ProcessParameterValue.js +28 -0
- package/dist/ts/esm/ts/Json/Process/Protocol.js +174 -0
- package/dist/ts/esm/ts/Json/Process/ProtocolParameter.js +42 -0
- package/dist/ts/esm/ts/Json/Process/Sample.js +170 -0
- package/dist/ts/esm/ts/Json/Process/Source.js +139 -0
- package/dist/ts/esm/ts/Json/Process/StudyMaterials.js +20 -0
- package/dist/ts/esm/ts/Json/Process/Value.js +35 -0
- package/dist/ts/esm/ts/Json/PropertyValue.js +295 -0
- package/dist/ts/esm/ts/Json/Publication.js +123 -0
- package/dist/ts/esm/ts/Json/ROCrate/LDContext.js +119 -0
- package/dist/ts/esm/ts/Json/ROCrate/LDGraph.js +84 -0
- package/dist/ts/esm/ts/Json/ROCrate/LDNode.js +207 -0
- package/dist/ts/esm/ts/Json/ROCrate/LDRef.js +21 -0
- package/dist/ts/esm/ts/Json/ROCrate/LDValue.js +65 -0
- package/dist/ts/esm/ts/Json/StringTable.js +56 -0
- package/dist/ts/esm/ts/Json/Study.js +337 -0
- package/dist/ts/esm/ts/Json/Table/ArcTable.js +221 -0
- package/dist/ts/esm/ts/Json/Table/CellTable.js +51 -0
- package/dist/ts/esm/ts/Json/Table/CompositeCell.js +97 -0
- package/dist/ts/esm/ts/Json/Table/CompositeHeader.js +104 -0
- package/dist/ts/esm/ts/Json/Table/IOType.js +12 -0
- package/dist/ts/esm/ts/Json/Table/OATable.js +48 -0
- package/dist/ts/esm/ts/Json/Table/Templates.js +98 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_assay_context.js +84 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_comment_context.js +42 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_data_context.js +56 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_investigation_context.js +92 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_material_context.js +53 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_ontology_annotation_context.js +51 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +57 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_organization_context.js +37 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_person_context.js +107 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_process_context.js +77 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_protocol_context.js +80 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_publication_context.js +61 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_sample_context.js +48 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_source_context.js +48 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_study_context.js +108 -0
- package/dist/ts/esm/ts/Json/context/rocrate/property_value_context.js +58 -0
- package/dist/ts/esm/ts/Json/context/rocrate/rocrate_context.js +58 -0
- package/dist/ts/esm/ts/Json.js +175 -0
- package/dist/ts/esm/ts/JsonIO/Assay.js +90 -0
- package/dist/ts/esm/ts/JsonIO/Investigation.js +90 -0
- package/dist/ts/esm/ts/JsonIO/OntologyAnnotation.js +66 -0
- package/dist/ts/esm/ts/JsonIO/Study.js +90 -0
- package/dist/ts/esm/ts/JsonIO/Table/Compression.js +43 -0
- package/dist/ts/esm/ts/JsonIO/Table/Templates.js +80 -0
- package/dist/ts/esm/ts/ROCrate/Generic/Comment.js +112 -0
- package/dist/ts/esm/ts/ROCrate/Generic/Dataset.js +666 -0
- package/dist/ts/esm/ts/ROCrate/Generic/DefinedTerm.js +112 -0
- package/dist/ts/esm/ts/ROCrate/Generic/File.js +197 -0
- package/dist/ts/esm/ts/ROCrate/Generic/LabProcess.js +235 -0
- package/dist/ts/esm/ts/ROCrate/Generic/LabProtocol.js +272 -0
- package/dist/ts/esm/ts/ROCrate/Generic/Organization.js +68 -0
- package/dist/ts/esm/ts/ROCrate/Generic/Person.js +408 -0
- package/dist/ts/esm/ts/ROCrate/Generic/PostalAddress.js +156 -0
- package/dist/ts/esm/ts/ROCrate/Generic/PropertyValue.js +545 -0
- package/dist/ts/esm/ts/ROCrate/Generic/Sample.js +136 -0
- package/dist/ts/esm/ts/ROCrate/Generic/ScholarlyArticle.js +184 -0
- package/dist/ts/esm/ts/ROCrate/Helper.js +4 -0
- package/dist/ts/esm/ts/ROCrate/LDContext.js +273 -0
- package/dist/ts/esm/ts/ROCrate/LDObject.js +967 -0
- package/dist/ts/esm/ts/ROCrate/ROCrateContext.js +38 -0
- package/dist/ts/esm/ts/ROCrateIO.js +54 -0
- package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/ArcTable.js +154 -0
- package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/CompositeCell.js +61 -0
- package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +72 -0
- package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +460 -0
- package/dist/ts/esm/ts/Spreadsheet/ArcAssay.js +204 -0
- package/dist/ts/esm/ts/Spreadsheet/ArcInvestigation.js +318 -0
- package/dist/ts/esm/ts/Spreadsheet/ArcRun.js +163 -0
- package/dist/ts/esm/ts/Spreadsheet/ArcStudy.js +117 -0
- package/dist/ts/esm/ts/Spreadsheet/ArcWorkflow.js +152 -0
- package/dist/ts/esm/ts/Spreadsheet/CollectionAux.js +117 -0
- package/dist/ts/esm/ts/Spreadsheet/DataMap.js +37 -0
- package/dist/ts/esm/ts/Spreadsheet/DataMapTable/DataMapColumn.js +39 -0
- package/dist/ts/esm/ts/Spreadsheet/DataMapTable/DataMapHeader.js +463 -0
- package/dist/ts/esm/ts/Spreadsheet/DataMapTable/DataMapTable.js +97 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Assays.js +90 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Comment.js +59 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Contacts.js +84 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Conversions.js +176 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/DesignDescriptors.js +18 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Factors.js +75 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/OntologyAnnotation.js +59 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/OntologySourceReference.js +60 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Protocols.js +95 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Publication.js +80 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Run.js +91 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/SparseTable.js +437 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Study.js +245 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Workflow.js +103 -0
- package/dist/ts/esm/ts/Template.Web.js +23 -0
- package/dist/ts/esm/ts/ValidationPackages/ValidationPackage.js +57 -0
- package/dist/ts/esm/ts/ValidationPackages/ValidationPackagesConfig.js +84 -0
- package/dist/ts/esm/ts/WebRequest/WebRequest.Node.js +13 -0
- package/dist/ts/esm/ts/WebRequest/WebRequest.js +17 -0
- package/dist/ts/esm/ts/Xlsx.js +116 -0
- package/dist/ts/esm/ts/Yaml/Encode.js +5 -0
- package/dist/ts/esm/ts/Yaml/ValidationPackage.js +41 -0
- package/dist/ts/esm/ts/Yaml/ValidationPackagesConfig.js +42 -0
- package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +432 -0
- package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +118 -0
- package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +43 -0
- package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +18 -0
- package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +79 -0
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.js +1 -0
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.js +1 -0
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.js +2 -0
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.js +1 -0
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.js +102 -0
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.js +1 -0
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.js +1 -0
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.js +1 -0
- package/dist/ts/esm/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +281 -0
- package/dist/ts/esm/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +203 -0
- package/dist/ts/esm/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +16 -0
- package/dist/ts/esm/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +380 -0
- package/dist/ts/esm/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +151 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.js +463 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.js +473 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.js +189 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.js +43 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.js +122 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.js +306 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.js +224 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.js +121 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.js +131 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.js +134 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.js +429 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.js +62 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.js +35 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.js +35 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.js +27 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.js +74 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.js +41 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.js +129 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.js +33 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.js +206 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.js +80 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.js +60 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.js +31 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.js +326 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.js +152 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.js +76 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.js +48 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.js +48 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.js +51 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.js +30 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.js +64 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.js +67 -0
- package/dist/ts/esm/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.js +1269 -0
- package/dist/ts/esm/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.js +178 -0
- package/dist/ts/esm/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.js +79 -0
- package/dist/ts/esm/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.js +91 -0
- package/dist/ts/esm/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.js +55 -0
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.js +1692 -0
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.js +57 -0
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +9 -0
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +43 -0
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +96 -0
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +522 -0
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.js +9 -0
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +221 -0
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +156 -0
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +148 -0
- package/dist/ts/types/index.d.ts +17 -0
- package/dist/ts/types/index.d.ts.map +1 -0
- package/dist/ts/types/ts/ARC.d.ts +80 -0
- package/dist/ts/types/ts/ARC.d.ts.map +1 -0
- package/dist/ts/types/ts/Contract/ARC.d.ts +7 -0
- package/dist/ts/types/ts/Contract/ARC.d.ts.map +1 -0
- package/dist/ts/types/ts/Contract/ArcAssay.d.ts +12 -0
- package/dist/ts/types/ts/Contract/ArcAssay.d.ts.map +1 -0
- package/dist/ts/types/ts/Contract/ArcInvestigation.d.ts +10 -0
- package/dist/ts/types/ts/Contract/ArcInvestigation.d.ts.map +1 -0
- package/dist/ts/types/ts/Contract/ArcRun.d.ts +12 -0
- package/dist/ts/types/ts/Contract/ArcRun.d.ts.map +1 -0
- package/dist/ts/types/ts/Contract/ArcStudy.d.ts +13 -0
- package/dist/ts/types/ts/Contract/ArcStudy.d.ts.map +1 -0
- package/dist/ts/types/ts/Contract/ArcWorkflow.d.ts +12 -0
- package/dist/ts/types/ts/Contract/ArcWorkflow.d.ts.map +1 -0
- package/dist/ts/types/ts/Contract/Contract.d.ts +39 -0
- package/dist/ts/types/ts/Contract/Contract.d.ts.map +1 -0
- package/dist/ts/types/ts/Contract/Datamap.d.ts +29 -0
- package/dist/ts/types/ts/Contract/Datamap.d.ts.map +1 -0
- package/dist/ts/types/ts/Contract/Git.d.ts +28 -0
- package/dist/ts/types/ts/Contract/Git.d.ts.map +1 -0
- package/dist/ts/types/ts/Contract/ValidationPackagesConfig.d.ts +12 -0
- package/dist/ts/types/ts/Contract/ValidationPackagesConfig.d.ts.map +1 -0
- package/dist/ts/types/ts/ContractIO/ContractIO.d.ts +11 -0
- package/dist/ts/types/ts/ContractIO/ContractIO.d.ts.map +1 -0
- package/dist/ts/types/ts/ContractIO/FileSystemHelper.d.ts +33 -0
- package/dist/ts/types/ts/ContractIO/FileSystemHelper.d.ts.map +1 -0
- package/dist/ts/types/ts/Conversion.d.ts +282 -0
- package/dist/ts/types/ts/Conversion.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/ArcTypes.d.ts +618 -0
- package/dist/ts/types/ts/Core/ArcTypes.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Comment.d.ts +35 -0
- package/dist/ts/types/ts/Core/Comment.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/CommentList.d.ts +28 -0
- package/dist/ts/types/ts/Core/CommentList.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Conversion.d.ts +216 -0
- package/dist/ts/types/ts/Core/Conversion.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Data.d.ts +49 -0
- package/dist/ts/types/ts/Core/Data.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/DataContext.d.ts +47 -0
- package/dist/ts/types/ts/Core/DataContext.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/DataFile.d.ts +27 -0
- package/dist/ts/types/ts/Core/DataFile.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/DataMap.d.ts +52 -0
- package/dist/ts/types/ts/Core/DataMap.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Helper/Collections.d.ts +50 -0
- package/dist/ts/types/ts/Core/Helper/Collections.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Helper/HashCodes.d.ts +9 -0
- package/dist/ts/types/ts/Core/Helper/HashCodes.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Helper/Identifier.d.ts +119 -0
- package/dist/ts/types/ts/Core/Helper/Identifier.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Helper/ORCID.d.ts +7 -0
- package/dist/ts/types/ts/Core/Helper/ORCID.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Helper/Printer.d.ts +5 -0
- package/dist/ts/types/ts/Core/Helper/Printer.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Helper/Regex.d.ts +194 -0
- package/dist/ts/types/ts/Core/Helper/Regex.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Helper/SemVer.d.ts +20 -0
- package/dist/ts/types/ts/Core/Helper/SemVer.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Helper/Url.d.ts +10 -0
- package/dist/ts/types/ts/Core/Helper/Url.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/IPropertyValue.d.ts +13 -0
- package/dist/ts/types/ts/Core/IPropertyValue.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/IdentifierSetters.d.ts +7 -0
- package/dist/ts/types/ts/Core/IdentifierSetters.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/OntologyAnnotation.d.ts +48 -0
- package/dist/ts/types/ts/Core/OntologyAnnotation.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/OntologySourceReference.d.ts +31 -0
- package/dist/ts/types/ts/Core/OntologySourceReference.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Person.d.ts +56 -0
- package/dist/ts/types/ts/Core/Person.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/ColumnIndex.d.ts +79 -0
- package/dist/ts/types/ts/Core/Process/ColumnIndex.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/Component.d.ts +65 -0
- package/dist/ts/types/ts/Core/Process/Component.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/Factor.d.ts +44 -0
- package/dist/ts/types/ts/Core/Process/Factor.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/FactorValue.d.ts +44 -0
- package/dist/ts/types/ts/Core/Process/FactorValue.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/Material.d.ts +27 -0
- package/dist/ts/types/ts/Core/Process/Material.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/MaterialAttribute.d.ts +53 -0
- package/dist/ts/types/ts/Core/Process/MaterialAttribute.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/MaterialAttributeValue.d.ts +55 -0
- package/dist/ts/types/ts/Core/Process/MaterialAttributeValue.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/MaterialType.d.ts +22 -0
- package/dist/ts/types/ts/Core/Process/MaterialType.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/Process.d.ts +113 -0
- package/dist/ts/types/ts/Core/Process/Process.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/ProcessInput.d.ts +117 -0
- package/dist/ts/types/ts/Core/Process/ProcessInput.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/ProcessOutput.d.ts +106 -0
- package/dist/ts/types/ts/Core/Process/ProcessOutput.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/ProcessParameterValue.d.ts +40 -0
- package/dist/ts/types/ts/Core/Process/ProcessParameterValue.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/ProcessSequence.d.ts +89 -0
- package/dist/ts/types/ts/Core/Process/ProcessSequence.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/Protocol.d.ts +141 -0
- package/dist/ts/types/ts/Core/Process/Protocol.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/ProtocolParameter.d.ts +32 -0
- package/dist/ts/types/ts/Core/Process/ProtocolParameter.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/Sample.d.ts +31 -0
- package/dist/ts/types/ts/Core/Process/Sample.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/Source.d.ts +24 -0
- package/dist/ts/types/ts/Core/Process/Source.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Publication.d.ts +36 -0
- package/dist/ts/types/ts/Core/Publication.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Table/ArcTable.d.ts +130 -0
- package/dist/ts/types/ts/Core/Table/ArcTable.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Table/ArcTableAux.d.ts +103 -0
- package/dist/ts/types/ts/Core/Table/ArcTableAux.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Table/ArcTables.d.ts +91 -0
- package/dist/ts/types/ts/Core/Table/ArcTables.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Table/CompositeCell.d.ts +58 -0
- package/dist/ts/types/ts/Core/Table/CompositeCell.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Table/CompositeColumn.d.ts +19 -0
- package/dist/ts/types/ts/Core/Table/CompositeColumn.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Table/CompositeHeader.d.ts +130 -0
- package/dist/ts/types/ts/Core/Table/CompositeHeader.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Template.d.ts +69 -0
- package/dist/ts/types/ts/Core/Template.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Templates.d.ts +18 -0
- package/dist/ts/types/ts/Core/Templates.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/URI.d.ts +13 -0
- package/dist/ts/types/ts/Core/URI.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Value.d.ts +41 -0
- package/dist/ts/types/ts/Core/Value.d.ts.map +1 -0
- package/dist/ts/types/ts/CrossAsync.d.ts +9 -0
- package/dist/ts/types/ts/CrossAsync.d.ts.map +1 -0
- package/dist/ts/types/ts/FileSystem/Commit.d.ts +13 -0
- package/dist/ts/types/ts/FileSystem/Commit.d.ts.map +1 -0
- package/dist/ts/types/ts/FileSystem/DefaultGitattributes.d.ts +2 -0
- package/dist/ts/types/ts/FileSystem/DefaultGitattributes.d.ts.map +1 -0
- package/dist/ts/types/ts/FileSystem/DefaultGitignore.d.ts +2 -0
- package/dist/ts/types/ts/FileSystem/DefaultGitignore.d.ts.map +1 -0
- package/dist/ts/types/ts/FileSystem/FileSystem.d.ts +21 -0
- package/dist/ts/types/ts/FileSystem/FileSystem.d.ts.map +1 -0
- package/dist/ts/types/ts/FileSystem/FileSystemTree.d.ts +54 -0
- package/dist/ts/types/ts/FileSystem/FileSystemTree.d.ts.map +1 -0
- package/dist/ts/types/ts/FileSystem/Path.d.ts +14 -0
- package/dist/ts/types/ts/FileSystem/Path.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Assay.d.ts +19 -0
- package/dist/ts/types/ts/Json/Assay.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Comment.d.ts +14 -0
- package/dist/ts/types/ts/Json/Comment.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Data.d.ts +17 -0
- package/dist/ts/types/ts/Json/Data.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/DataFile.d.ts +7 -0
- package/dist/ts/types/ts/Json/DataFile.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/DataMap/DataContext.d.ts +5 -0
- package/dist/ts/types/ts/Json/DataMap/DataContext.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/DataMap/DataMap.d.ts +11 -0
- package/dist/ts/types/ts/Json/DataMap/DataMap.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Decode.d.ts +12 -0
- package/dist/ts/types/ts/Json/Decode.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Encode.d.ts +21 -0
- package/dist/ts/types/ts/Json/Encode.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/IDTable.d.ts +5 -0
- package/dist/ts/types/ts/Json/IDTable.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Investigation.d.ts +20 -0
- package/dist/ts/types/ts/Json/Investigation.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/OntologyAnnotation.d.ts +18 -0
- package/dist/ts/types/ts/Json/OntologyAnnotation.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/OntologySourceReference.d.ts +12 -0
- package/dist/ts/types/ts/Json/OntologySourceReference.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Person.d.ts +22 -0
- package/dist/ts/types/ts/Json/Person.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/AssayMaterials.d.ts +7 -0
- package/dist/ts/types/ts/Json/Process/AssayMaterials.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/Component.d.ts +11 -0
- package/dist/ts/types/ts/Json/Process/Component.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/Factor.d.ts +8 -0
- package/dist/ts/types/ts/Json/Process/Factor.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/FactorValue.d.ts +11 -0
- package/dist/ts/types/ts/Json/Process/FactorValue.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/Material.d.ts +12 -0
- package/dist/ts/types/ts/Json/Process/Material.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/MaterialAttribute.d.ts +8 -0
- package/dist/ts/types/ts/Json/Process/MaterialAttribute.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/MaterialAttributeValue.d.ts +11 -0
- package/dist/ts/types/ts/Json/Process/MaterialAttributeValue.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/MaterialType.d.ts +7 -0
- package/dist/ts/types/ts/Json/Process/MaterialType.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/Process.d.ts +10 -0
- package/dist/ts/types/ts/Json/Process/Process.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/ProcessInput.d.ts +9 -0
- package/dist/ts/types/ts/Json/Process/ProcessInput.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/ProcessOutput.d.ts +9 -0
- package/dist/ts/types/ts/Json/Process/ProcessOutput.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/ProcessParameterValue.d.ts +11 -0
- package/dist/ts/types/ts/Json/Process/ProcessParameterValue.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/Protocol.d.ts +10 -0
- package/dist/ts/types/ts/Json/Process/Protocol.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/ProtocolParameter.d.ts +8 -0
- package/dist/ts/types/ts/Json/Process/ProtocolParameter.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/Sample.d.ts +15 -0
- package/dist/ts/types/ts/Json/Process/Sample.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/Source.d.ts +12 -0
- package/dist/ts/types/ts/Json/Process/Source.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/StudyMaterials.d.ts +7 -0
- package/dist/ts/types/ts/Json/Process/StudyMaterials.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/Value.d.ts +7 -0
- package/dist/ts/types/ts/Json/Process/Value.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/PropertyValue.d.ts +9 -0
- package/dist/ts/types/ts/Json/PropertyValue.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Publication.d.ts +14 -0
- package/dist/ts/types/ts/Json/Publication.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/ROCrate/LDContext.d.ts +5 -0
- package/dist/ts/types/ts/Json/ROCrate/LDContext.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/ROCrate/LDGraph.d.ts +5 -0
- package/dist/ts/types/ts/Json/ROCrate/LDGraph.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/ROCrate/LDNode.d.ts +13 -0
- package/dist/ts/types/ts/Json/ROCrate/LDNode.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/ROCrate/LDRef.d.ts +5 -0
- package/dist/ts/types/ts/Json/ROCrate/LDRef.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/ROCrate/LDValue.d.ts +7 -0
- package/dist/ts/types/ts/Json/ROCrate/LDValue.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/StringTable.d.ts +9 -0
- package/dist/ts/types/ts/Json/StringTable.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Study.d.ts +26 -0
- package/dist/ts/types/ts/Json/Study.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Table/ArcTable.d.ts +14 -0
- package/dist/ts/types/ts/Json/Table/ArcTable.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Table/CellTable.d.ts +11 -0
- package/dist/ts/types/ts/Json/Table/CellTable.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Table/CompositeCell.d.ts +10 -0
- package/dist/ts/types/ts/Json/Table/CompositeCell.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Table/CompositeHeader.d.ts +5 -0
- package/dist/ts/types/ts/Json/Table/CompositeHeader.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Table/IOType.d.ts +5 -0
- package/dist/ts/types/ts/Json/Table/IOType.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Table/OATable.d.ts +10 -0
- package/dist/ts/types/ts/Json/Table/OATable.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Table/Templates.d.ts +15 -0
- package/dist/ts/types/ts/Json/Table/Templates.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_assay_context.d.ts +26 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_assay_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_comment_context.d.ts +16 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_comment_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_data_context.d.ts +18 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_data_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_investigation_context.d.ts +26 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_investigation_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_material_context.d.ts +19 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_material_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts +17 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts +19 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_organization_context.d.ts +15 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_organization_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_person_context.d.ts +25 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_person_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_process_context.d.ts +23 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_process_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_protocol_context.d.ts +22 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_protocol_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_publication_context.d.ts +19 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_publication_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_sample_context.d.ts +18 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_sample_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_source_context.d.ts +18 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_source_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_study_context.d.ts +34 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_study_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/property_value_context.d.ts +3 -0
- package/dist/ts/types/ts/Json/context/rocrate/property_value_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/rocrate_context.d.ts +16 -0
- package/dist/ts/types/ts/Json/context/rocrate/rocrate_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json.d.ts +73 -0
- package/dist/ts/types/ts/Json.d.ts.map +1 -0
- package/dist/ts/types/ts/JsonIO/Assay.d.ts +19 -0
- package/dist/ts/types/ts/JsonIO/Assay.d.ts.map +1 -0
- package/dist/ts/types/ts/JsonIO/Investigation.d.ts +19 -0
- package/dist/ts/types/ts/JsonIO/Investigation.d.ts.map +1 -0
- package/dist/ts/types/ts/JsonIO/OntologyAnnotation.d.ts +16 -0
- package/dist/ts/types/ts/JsonIO/OntologyAnnotation.d.ts.map +1 -0
- package/dist/ts/types/ts/JsonIO/Study.d.ts +20 -0
- package/dist/ts/types/ts/JsonIO/Study.d.ts.map +1 -0
- package/dist/ts/types/ts/JsonIO/Table/Compression.d.ts +8 -0
- package/dist/ts/types/ts/JsonIO/Table/Compression.d.ts.map +1 -0
- package/dist/ts/types/ts/JsonIO/Table/Templates.d.ts +15 -0
- package/dist/ts/types/ts/JsonIO/Table/Templates.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/Generic/Comment.d.ts +21 -0
- package/dist/ts/types/ts/ROCrate/Generic/Comment.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/Generic/Dataset.d.ts +92 -0
- package/dist/ts/types/ts/ROCrate/Generic/Dataset.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/Generic/DefinedTerm.d.ts +21 -0
- package/dist/ts/types/ts/ROCrate/Generic/DefinedTerm.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/Generic/File.d.ts +35 -0
- package/dist/ts/types/ts/ROCrate/Generic/File.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/Generic/LabProcess.d.ts +43 -0
- package/dist/ts/types/ts/ROCrate/Generic/LabProcess.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/Generic/LabProtocol.d.ts +44 -0
- package/dist/ts/types/ts/ROCrate/Generic/LabProtocol.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/Generic/Organization.d.ts +17 -0
- package/dist/ts/types/ts/ROCrate/Generic/Organization.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/Generic/Person.d.ts +51 -0
- package/dist/ts/types/ts/ROCrate/Generic/Person.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/Generic/PostalAddress.d.ts +25 -0
- package/dist/ts/types/ts/ROCrate/Generic/PostalAddress.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/Generic/PropertyValue.d.ts +73 -0
- package/dist/ts/types/ts/ROCrate/Generic/PropertyValue.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/Generic/Sample.d.ts +30 -0
- package/dist/ts/types/ts/ROCrate/Generic/Sample.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/Generic/ScholarlyArticle.d.ts +34 -0
- package/dist/ts/types/ts/ROCrate/Generic/ScholarlyArticle.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/Helper.d.ts +2 -0
- package/dist/ts/types/ts/ROCrate/Helper.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/LDContext.d.ts +45 -0
- package/dist/ts/types/ts/ROCrate/LDContext.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/LDObject.d.ts +97 -0
- package/dist/ts/types/ts/ROCrate/LDObject.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/ROCrateContext.d.ts +7 -0
- package/dist/ts/types/ts/ROCrate/ROCrateContext.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrateIO.d.ts +15 -0
- package/dist/ts/types/ts/ROCrateIO.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts +35 -0
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts +9 -0
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts +17 -0
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts +22 -0
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/ArcAssay.d.ts +31 -0
- package/dist/ts/types/ts/Spreadsheet/ArcAssay.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/ArcInvestigation.d.ts +42 -0
- package/dist/ts/types/ts/Spreadsheet/ArcInvestigation.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/ArcRun.d.ts +27 -0
- package/dist/ts/types/ts/Spreadsheet/ArcRun.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/ArcStudy.d.ts +26 -0
- package/dist/ts/types/ts/Spreadsheet/ArcStudy.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/ArcWorkflow.d.ts +27 -0
- package/dist/ts/types/ts/Spreadsheet/ArcWorkflow.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/CollectionAux.d.ts +23 -0
- package/dist/ts/types/ts/Spreadsheet/CollectionAux.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/DataMap.d.ts +8 -0
- package/dist/ts/types/ts/Spreadsheet/DataMap.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapColumn.d.ts +7 -0
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapColumn.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapHeader.d.ts +23 -0
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapHeader.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapTable.d.ts +23 -0
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapTable.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Assays.d.ts +14 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Assays.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Comment.d.ts +14 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Comment.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Contacts.d.ts +25 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Contacts.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Conversions.d.ts +60 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Conversions.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts +16 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Factors.d.ts +18 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Factors.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts +12 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts +18 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Protocols.d.ts +28 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Protocols.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Publication.d.ts +21 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Publication.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Run.d.ts +14 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Run.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/SparseTable.d.ts +37 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/SparseTable.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Study.d.ts +38 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Study.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Workflow.d.ts +31 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Workflow.d.ts.map +1 -0
- package/dist/ts/types/ts/Template.Web.d.ts +11 -0
- package/dist/ts/types/ts/Template.Web.d.ts.map +1 -0
- package/dist/ts/types/ts/ValidationPackages/ValidationPackage.d.ts +21 -0
- package/dist/ts/types/ts/ValidationPackages/ValidationPackage.d.ts.map +1 -0
- package/dist/ts/types/ts/ValidationPackages/ValidationPackagesConfig.d.ts +23 -0
- package/dist/ts/types/ts/ValidationPackages/ValidationPackagesConfig.d.ts.map +1 -0
- package/dist/ts/types/ts/WebRequest/WebRequest.Node.d.ts +4 -0
- package/dist/ts/types/ts/WebRequest/WebRequest.Node.d.ts.map +1 -0
- package/dist/ts/types/ts/WebRequest/WebRequest.d.ts +4 -0
- package/dist/ts/types/ts/WebRequest/WebRequest.d.ts.map +1 -0
- package/dist/ts/types/ts/Xlsx.d.ts +50 -0
- package/dist/ts/types/ts/Xlsx.d.ts.map +1 -0
- package/dist/ts/types/ts/Yaml/Encode.d.ts +5 -0
- package/dist/ts/types/ts/Yaml/Encode.d.ts.map +1 -0
- package/dist/ts/types/ts/Yaml/ValidationPackage.d.ts +10 -0
- package/dist/ts/types/ts/Yaml/ValidationPackage.d.ts.map +1 -0
- package/dist/ts/types/ts/Yaml/ValidationPackagesConfig.d.ts +10 -0
- package/dist/ts/types/ts/Yaml/ValidationPackagesConfig.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.d.ts +69 -0
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.d.ts +25 -0
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.d.ts +11 -0
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.d.ts +15 -0
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.d.ts +15 -0
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.d.ts +34 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.d.ts +14 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.d.ts +4 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.d.ts +30 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.d.ts +49 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.d.ts +35 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.d.ts +123 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.d.ts +27 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.d.ts +253 -0
- package/dist/ts/types/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.d.ts +112 -0
- package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.d.ts +8 -0
- package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.d.ts +123 -0
- package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.d.ts +113 -0
- package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.d.ts +91 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.d.ts +181 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.d.ts +36 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.d.ts +23 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.d.ts +21 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.d.ts +157 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.d.ts +97 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.d.ts +37 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.d.ts +39 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.d.ts +36 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.d.ts +88 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.d.ts +10 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.d.ts +9 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.d.ts +9 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.d.ts +5 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.d.ts +6 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.d.ts +7 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.d.ts +7 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.d.ts +15 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.d.ts +94 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.d.ts +33 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.d.ts +31 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.d.ts +17 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.d.ts +71 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.d.ts +89 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.d.ts +10 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.d.ts +19 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.d.ts +15 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.d.ts +6 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.d.ts +5 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.d.ts +7 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.d.ts +20 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.d.ts +105 -0
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.d.ts +26 -0
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.d.ts +99 -0
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.d.ts +7 -0
- package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.d.ts +5 -0
- package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.d.ts +64 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.d.ts +24 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.d.ts +3 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.d.ts +12 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.d.ts +10 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.d.ts +6 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.d.ts +10 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.d.ts +46 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.d.ts +12 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.d.ts +70 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.d.ts.map +1 -0
- package/package.json +31 -8
- package/ARC.js +0 -795
- package/CWL/CWLTypes.js +0 -135
- package/CWL/Decode.js +0 -585
- package/CWL/Inputs.js +0 -62
- package/CWL/Outputs.js +0 -59
- package/CWL/Requirements.js +0 -72
- package/CWL/ToolDescription.js +0 -81
- package/CWL/WorkflowDescription.js +0 -81
- package/CWL/WorkflowSteps.js +0 -98
- package/ColumnIndex.js +0 -258
- package/Contract/ARC.js +0 -43
- package/Contract/ArcAssay.js +0 -102
- package/Contract/ArcInvestigation.js +0 -75
- package/Contract/ArcStudy.js +0 -102
- package/Contract/Contract.js +0 -98
- package/Contract/Datamap.js +0 -180
- package/Contract/Git.js +0 -94
- package/Contract/ValidationPackagesConfig.js +0 -96
- package/ContractIO/ContractIO.js +0 -204
- package/ContractIO/FileSystemHelper.js +0 -130
- package/Conversion.js +0 -1679
- package/Core/ArcTypes.js +0 -2263
- package/Core/Comment.js +0 -104
- package/Core/CommentList.js +0 -133
- package/Core/Conversion.js +0 -1113
- package/Core/Data.js +0 -193
- package/Core/DataContext.js +0 -139
- package/Core/DataFile.js +0 -84
- package/Core/DataMap.js +0 -191
- package/Core/Helper/Collections.js +0 -421
- package/Core/Helper/DateTime.js +0 -17
- package/Core/Helper/HashCodes.js +0 -39
- package/Core/Helper/Identifier.js +0 -183
- package/Core/Helper/ORCID.js +0 -39
- package/Core/Helper/Regex.js +0 -623
- package/Core/Helper/SemVer.js +0 -58
- package/Core/Helper/Url.js +0 -38
- package/Core/IdentifierSetters.js +0 -26
- package/Core/OntologyAnnotation.js +0 -213
- package/Core/OntologySourceReference.js +0 -92
- package/Core/Person.js +0 -194
- package/Core/Process/ColumnIndex.js +0 -258
- package/Core/Process/Component.js +0 -198
- package/Core/Process/Factor.js +0 -109
- package/Core/Process/FactorValue.js +0 -137
- package/Core/Process/Material.js +0 -66
- package/Core/Process/MaterialAttribute.js +0 -101
- package/Core/Process/MaterialAttributeValue.js +0 -154
- package/Core/Process/MaterialType.js +0 -41
- package/Core/Process/Process.js +0 -369
- package/Core/Process/ProcessInput.js +0 -297
- package/Core/Process/ProcessOutput.js +0 -263
- package/Core/Process/ProcessParameterValue.js +0 -135
- package/Core/Process/ProcessSequence.js +0 -251
- package/Core/Process/Protocol.js +0 -246
- package/Core/Process/ProtocolParameter.js +0 -73
- package/Core/Process/Sample.js +0 -71
- package/Core/Process/Source.js +0 -54
- package/Core/Publication.js +0 -116
- package/Core/Table/ArcTable.js +0 -901
- package/Core/Table/ArcTableAux.js +0 -583
- package/Core/Table/ArcTables.js +0 -481
- package/Core/Table/CompositeCell.js +0 -211
- package/Core/Table/CompositeColumn.js +0 -56
- package/Core/Table/CompositeHeader.js +0 -547
- package/Core/Template.js +0 -186
- package/Core/Templates.js +0 -84
- package/Core/URI.js +0 -19
- package/Core/Value.js +0 -137
- package/CrossAsync.js +0 -34
- package/FileSystem/Commit.js +0 -18
- package/FileSystem/DefaultGitattributes.js +0 -3
- package/FileSystem/DefaultGitignore.js +0 -3
- package/FileSystem/FileSystem.js +0 -53
- package/FileSystem/FileSystemTree.js +0 -275
- package/FileSystem/Path.js +0 -54
- package/FileSystem.js +0 -102
- package/Json/Assay.js +0 -171
- package/Json/Comment.js +0 -121
- package/Json/ConverterOptions.js +0 -18
- package/Json/Data.js +0 -149
- package/Json/DataFile.js +0 -55
- package/Json/DataMap/DataContext.js +0 -39
- package/Json/DataMap/DataMap.js +0 -29
- package/Json/Decode.js +0 -125
- package/Json/Encode.js +0 -74
- package/Json/IDTable.js +0 -30
- package/Json/Investigation.js +0 -256
- package/Json/OntologyAnnotation.js +0 -210
- package/Json/OntologySourceReference.js +0 -126
- package/Json/Person.js +0 -341
- package/Json/Process/AssayMaterials.js +0 -20
- package/Json/Process/Component.js +0 -48
- package/Json/Process/Factor.js +0 -57
- package/Json/Process/FactorValue.js +0 -48
- package/Json/Process/Material.js +0 -121
- package/Json/Process/MaterialAttribute.js +0 -46
- package/Json/Process/MaterialAttributeValue.js +0 -48
- package/Json/Process/MaterialType.js +0 -47
- package/Json/Process/Process.js +0 -109
- package/Json/Process/ProcessInput.js +0 -38
- package/Json/Process/ProcessOutput.js +0 -33
- package/Json/Process/ProcessParameterValue.js +0 -34
- package/Json/Process/Protocol.js +0 -180
- package/Json/Process/ProtocolParameter.js +0 -46
- package/Json/Process/Sample.js +0 -178
- package/Json/Process/Source.js +0 -146
- package/Json/Process/StudyMaterials.js +0 -22
- package/Json/Process/Value.js +0 -32
- package/Json/PropertyValue.js +0 -295
- package/Json/Publication.js +0 -132
- package/Json/ROCrate/LDContext.js +0 -121
- package/Json/ROCrate/LDGraph.js +0 -87
- package/Json/ROCrate/LDNode.js +0 -204
- package/Json/ROCrate/LDRef.js +0 -25
- package/Json/ROCrate/LDValue.js +0 -66
- package/Json/StringTable.js +0 -61
- package/Json/Study.js +0 -349
- package/Json/Table/ArcTable.js +0 -227
- package/Json/Table/CellTable.js +0 -56
- package/Json/Table/CompositeCell.js +0 -65
- package/Json/Table/CompositeHeader.js +0 -46
- package/Json/Table/IOType.js +0 -15
- package/Json/Table/OATable.js +0 -53
- package/Json/Table/Templates.js +0 -107
- package/Json/context/rocrate/isa_assay_context.js +0 -88
- package/Json/context/rocrate/isa_comment_context.js +0 -47
- package/Json/context/rocrate/isa_component_context.js +0 -64
- package/Json/context/rocrate/isa_data_context.js +0 -61
- package/Json/context/rocrate/isa_factor_context.js +0 -61
- package/Json/context/rocrate/isa_factor_value_context.js +0 -71
- package/Json/context/rocrate/isa_investigation_context.js +0 -97
- package/Json/context/rocrate/isa_material_attribute_context.js +0 -51
- package/Json/context/rocrate/isa_material_attribute_value_context.js +0 -67
- package/Json/context/rocrate/isa_material_context.js +0 -58
- package/Json/context/rocrate/isa_ontology_annotation_context.js +0 -55
- package/Json/context/rocrate/isa_ontology_source_reference_context.js +0 -62
- package/Json/context/rocrate/isa_organization_context.js +0 -42
- package/Json/context/rocrate/isa_person_context.js +0 -113
- package/Json/context/rocrate/isa_process_context.js +0 -81
- package/Json/context/rocrate/isa_process_parameter_value_context.js +0 -67
- package/Json/context/rocrate/isa_protocol_context.js +0 -84
- package/Json/context/rocrate/isa_protocol_parameter_context.js +0 -51
- package/Json/context/rocrate/isa_publication_context.js +0 -65
- package/Json/context/rocrate/isa_sample_context.js +0 -52
- package/Json/context/rocrate/isa_source_context.js +0 -53
- package/Json/context/rocrate/isa_study_context.js +0 -112
- package/Json/context/rocrate/property_value_context.js +0 -60
- package/Json/context/rocrate/rocrate_context.js +0 -63
- package/Json.js +0 -193
- package/JsonIO/Assay.js +0 -99
- package/JsonIO/Comment.js +0 -73
- package/JsonIO/Data.js +0 -50
- package/JsonIO/DataFile.js +0 -49
- package/JsonIO/DataMap/DataMap.js +0 -29
- package/JsonIO/Decode.js +0 -4
- package/JsonIO/Investigation.js +0 -99
- package/JsonIO/LDObject.js +0 -56
- package/JsonIO/OntologyAnnotation.js +0 -73
- package/JsonIO/OntologySourceReference.js +0 -73
- package/JsonIO/Person.js +0 -74
- package/JsonIO/Process/Component.js +0 -50
- package/JsonIO/Process/Factor.js +0 -28
- package/JsonIO/Process/FactorValue.js +0 -29
- package/JsonIO/Process/Material.js +0 -50
- package/JsonIO/Process/MaterialAttribute.js +0 -29
- package/JsonIO/Process/MaterialAttributeValue.js +0 -50
- package/JsonIO/Process/MaterialType.js +0 -28
- package/JsonIO/Process/Process.js +0 -50
- package/JsonIO/Process/ProcessInput.js +0 -29
- package/JsonIO/Process/ProcessOutput.js +0 -50
- package/JsonIO/Process/ProcessParameterValue.js +0 -50
- package/JsonIO/Process/ProcessSequence.js +0 -55
- package/JsonIO/Process/Protocol.js +0 -50
- package/JsonIO/Process/ProtocolParameter.js +0 -28
- package/JsonIO/Process/Sample.js +0 -50
- package/JsonIO/Process/Source.js +0 -50
- package/JsonIO/Process/StudyMaterials.js +0 -22
- package/JsonIO/Process/Value.js +0 -23
- package/JsonIO/Publication.js +0 -74
- package/JsonIO/Study.js +0 -99
- package/JsonIO/Table/ArcTable.js +0 -82
- package/JsonIO/Table/CompositeCell.js +0 -28
- package/JsonIO/Table/CompositeHeader.js +0 -28
- package/JsonIO/Table/Compression.js +0 -48
- package/JsonIO/Table/IOType.js +0 -28
- package/JsonIO/Table/Templates.js +0 -88
- package/ROCrate/ArcROCrateMetadata.js +0 -36
- package/ROCrate/Generic/Comment.js +0 -115
- package/ROCrate/Generic/Dataset.js +0 -669
- package/ROCrate/Generic/DefinedTerm.js +0 -115
- package/ROCrate/Generic/File.js +0 -200
- package/ROCrate/Generic/LabProcess.js +0 -238
- package/ROCrate/Generic/LabProtocol.js +0 -275
- package/ROCrate/Generic/Organization.js +0 -71
- package/ROCrate/Generic/Person.js +0 -411
- package/ROCrate/Generic/PostalAddress.js +0 -159
- package/ROCrate/Generic/PropertyValue.js +0 -548
- package/ROCrate/Generic/Sample.js +0 -139
- package/ROCrate/Generic/ScholarlyArticle.js +0 -187
- package/ROCrate/Helper.js +0 -6
- package/ROCrate/ISAProfile/Assay.js +0 -60
- package/ROCrate/ISAProfile/Data.js +0 -55
- package/ROCrate/ISAProfile/Dataset.js +0 -19
- package/ROCrate/ISAProfile/Investigation.js +0 -63
- package/ROCrate/ISAProfile/LabProcess.js +0 -140
- package/ROCrate/ISAProfile/LabProtocol.js +0 -33
- package/ROCrate/ISAProfile/Person.js +0 -62
- package/ROCrate/ISAProfile/PropertyValue.js +0 -84
- package/ROCrate/ISAProfile/Sample.js +0 -54
- package/ROCrate/ISAProfile/ScholarlyArticle.js +0 -84
- package/ROCrate/ISAProfile/Study.js +0 -63
- package/ROCrate/LDContext.js +0 -283
- package/ROCrate/LDObject.js +0 -971
- package/ROCrate/ROCrateContext.js +0 -44
- package/ROCrateIO.js +0 -62
- package/Spreadsheet/AnnotationTable/ArcTable.js +0 -163
- package/Spreadsheet/AnnotationTable/CompositeCell.js +0 -57
- package/Spreadsheet/AnnotationTable/CompositeColumn.js +0 -78
- package/Spreadsheet/AnnotationTable/CompositeHeader.js +0 -475
- package/Spreadsheet/ArcAssay.js +0 -218
- package/Spreadsheet/ArcInvestigation.js +0 -340
- package/Spreadsheet/ArcStudy.js +0 -129
- package/Spreadsheet/CollectionAux.js +0 -128
- package/Spreadsheet/DataMap.js +0 -39
- package/Spreadsheet/DataMapTable/DataMapColumn.js +0 -42
- package/Spreadsheet/DataMapTable/DataMapHeader.js +0 -442
- package/Spreadsheet/DataMapTable/DataMapTable.js +0 -103
- package/Spreadsheet/Metadata/Assays.js +0 -81
- package/Spreadsheet/Metadata/Comment.js +0 -71
- package/Spreadsheet/Metadata/Contacts.js +0 -102
- package/Spreadsheet/Metadata/Conversions.js +0 -186
- package/Spreadsheet/Metadata/DesignDescriptors.js +0 -27
- package/Spreadsheet/Metadata/Factors.js +0 -86
- package/Spreadsheet/Metadata/OntologyAnnotation.js +0 -64
- package/Spreadsheet/Metadata/OntologySourceReference.js +0 -71
- package/Spreadsheet/Metadata/Protocols.js +0 -116
- package/Spreadsheet/Metadata/Publication.js +0 -94
- package/Spreadsheet/Metadata/SparseTable.js +0 -459
- package/Spreadsheet/Metadata/Study.js +0 -258
- package/Spreadsheet/Template.js +0 -361
- package/Template.Web.js +0 -27
- package/ValidationPackages/ValidationPackage.js +0 -61
- package/ValidationPackages/ValidationPackagesConfig.js +0 -88
- package/WebRequest/WebRequest.Node.js +0 -15
- package/WebRequest/WebRequest.js +0 -19
- package/Xlsx.js +0 -131
- package/Yaml/Encode.js +0 -8
- package/Yaml/ValidationPackage.js +0 -47
- package/Yaml/ValidationPackagesConfig.js +0 -48
- package/fable_modules/DynamicObj.7.0.1/DynObj.fs +0 -249
- package/fable_modules/DynamicObj.7.0.1/DynObj.fs.js +0 -194
- package/fable_modules/DynamicObj.7.0.1/DynamicObj.fableproj +0 -47
- package/fable_modules/DynamicObj.7.0.1/DynamicObj.fs +0 -1025
- package/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +0 -433
- package/fable_modules/DynamicObj.7.0.1/FableJS.fs +0 -178
- package/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +0 -141
- package/fable_modules/DynamicObj.7.0.1/FablePy.fs +0 -229
- package/fable_modules/DynamicObj.7.0.1/HashCodes.fs +0 -64
- package/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +0 -52
- package/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs +0 -33
- package/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +0 -21
- package/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs +0 -72
- package/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +0 -86
- package/fable_modules/DynamicObj.7.0.1/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +0 -3
- package/fable_modules/DynamicObj.7.0.1/obj/Debug/netstandard2.0/DynamicObj.AssemblyInfo.fs +0 -19
- package/fable_modules/DynamicObj.7.0.1/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +0 -3
- package/fable_modules/DynamicObj.7.0.1/obj/Release/netstandard2.0/DynamicObj.AssemblyInfo.fs +0 -19
- package/fable_modules/Fable.Exceljs.1.6.0/Cell.fs +0 -32
- package/fable_modules/Fable.Exceljs.1.6.0/Column.fs +0 -24
- package/fable_modules/Fable.Exceljs.1.6.0/Csv.fs +0 -12
- package/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs +0 -61
- package/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.js +0 -4
- package/fable_modules/Fable.Exceljs.1.6.0/Extensions.fs +0 -36
- package/fable_modules/Fable.Exceljs.1.6.0/Extensions.fs.js +0 -20
- package/fable_modules/Fable.Exceljs.1.6.0/Fable.Exceljs.fableproj +0 -53
- package/fable_modules/Fable.Exceljs.1.6.0/Row.fs +0 -34
- package/fable_modules/Fable.Exceljs.1.6.0/Table.fs +0 -85
- package/fable_modules/Fable.Exceljs.1.6.0/Table.fs.js +0 -22
- package/fable_modules/Fable.Exceljs.1.6.0/Unions.fs +0 -87
- package/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.js +0 -73
- package/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs +0 -37
- package/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs +0 -120
- package/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs +0 -18
- package/fable_modules/Fable.Exceljs.1.6.0/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.fs +0 -3
- package/fable_modules/Fable.Exceljs.1.6.0/obj/Debug/net6.0/Fable.Exceljs.AssemblyInfo.fs +0 -19
- package/fable_modules/Fable.Exceljs.1.6.0/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +0 -3
- package/fable_modules/Fable.Exceljs.1.6.0/obj/Debug/netstandard2.0/Fable.Exceljs.AssemblyInfo.fs +0 -19
- package/fable_modules/Fable.Exceljs.1.6.0/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.fs +0 -3
- package/fable_modules/Fable.Exceljs.1.6.0/obj/Release/net6.0/Fable.Exceljs.AssemblyInfo.fs +0 -19
- package/fable_modules/Fable.Exceljs.1.6.0/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +0 -3
- package/fable_modules/Fable.Exceljs.1.6.0/obj/Release/netstandard2.0/Fable.Exceljs.AssemblyInfo.fs +0 -19
- package/fable_modules/Fable.Fetch.2.6.0/Fable.Fetch.fableproj +0 -21
- package/fable_modules/Fable.Fetch.2.6.0/Fetch.fs +0 -469
- package/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +0 -111
- package/fable_modules/Fable.Promise.3.2.0/AsyncIterable.fs +0 -57
- package/fable_modules/Fable.Promise.3.2.0/AsyncIterable.fs.js +0 -104
- package/fable_modules/Fable.Promise.3.2.0/Fable.Promise.fableproj +0 -20
- package/fable_modules/Fable.Promise.3.2.0/Promise.fs +0 -766
- package/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +0 -217
- package/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs +0 -31
- package/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +0 -19
- package/fable_modules/Fable.SimpleHttp.3.5.0/Fable.SimpleHttp.fableproj +0 -23
- package/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs +0 -357
- package/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +0 -429
- package/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs +0 -52
- package/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +0 -112
- package/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs +0 -436
- package/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.js +0 -272
- package/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs +0 -725
- package/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.js +0 -522
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs +0 -196
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.js +0 -208
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/ColumnBuilder.fs +0 -209
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/ColumnBuilder.fs.js +0 -137
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/DSL.fs +0 -61
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/DSL.fs.js +0 -62
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs +0 -24
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.js +0 -56
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/Operators.fs +0 -102
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/Operators.fs.js +0 -6
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs +0 -200
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.js +0 -137
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/SheetBuilder.fs +0 -139
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/SheetBuilder.fs.js +0 -116
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/TableBuilder.fs +0 -120
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/TableBuilder.fs.js +0 -120
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/Transform.fs +0 -229
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/Transform.fs.js +0 -422
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs +0 -151
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.js +0 -277
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/WorkbookBuilder.fs +0 -114
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/WorkbookBuilder.fs.js +0 -104
- package/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs +0 -191
- package/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.js +0 -259
- package/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs +0 -202
- package/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.js +0 -125
- package/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs +0 -204
- package/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.js +0 -135
- package/fable_modules/FsSpreadsheet.6.3.1/FsSpreadsheet.fableproj +0 -65
- package/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs +0 -183
- package/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.js +0 -138
- package/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs +0 -665
- package/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.js +0 -433
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs +0 -45
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.js +0 -64
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs +0 -28
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.js +0 -39
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs +0 -28
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.js +0 -39
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs +0 -24
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.js +0 -30
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs +0 -70
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.js +0 -73
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs +0 -33
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.js +0 -46
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs +0 -148
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.js +0 -134
- package/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs +0 -19
- package/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.js +0 -41
- package/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs +0 -222
- package/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.js +0 -236
- package/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs +0 -93
- package/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.js +0 -91
- package/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs +0 -65
- package/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.js +0 -74
- package/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs +0 -22
- package/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.js +0 -40
- package/fable_modules/FsSpreadsheet.6.3.1/SheetBuilder.fs +0 -249
- package/fable_modules/FsSpreadsheet.6.3.1/SheetBuilder.fs.js +0 -325
- package/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs +0 -471
- package/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.js +0 -330
- package/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs +0 -140
- package/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.js +0 -173
- package/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableRow.fs +0 -6
- package/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableRow.fs.js +0 -17
- package/fable_modules/FsSpreadsheet.6.3.1/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +0 -3
- package/fable_modules/FsSpreadsheet.6.3.1/obj/Debug/netstandard2.0/FsSpreadsheet.AssemblyInfo.fs +0 -19
- package/fable_modules/FsSpreadsheet.6.3.1/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +0 -3
- package/fable_modules/FsSpreadsheet.6.3.1/obj/Release/netstandard2.0/FsSpreadsheet.AssemblyInfo.fs +0 -19
- package/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs +0 -88
- package/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.js +0 -79
- package/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs +0 -69
- package/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.js +0 -64
- package/fable_modules/FsSpreadsheet.Js.6.3.1/FsSpreadsheet.Js.fableproj +0 -57
- package/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs +0 -59
- package/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.js +0 -39
- package/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs +0 -50
- package/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.js +0 -54
- package/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs +0 -27
- package/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.js +0 -34
- package/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs +0 -41
- package/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.js +0 -63
- package/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs +0 -74
- package/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.js +0 -70
- package/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs +0 -1429
- package/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.js +0 -1259
- package/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs +0 -318
- package/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.js +0 -192
- package/fable_modules/Thoth.Json.Core.0.4.0/Thoth.Json.Core.fableproj +0 -33
- package/fable_modules/Thoth.Json.Core.0.4.0/Types.fs +0 -83
- package/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.js +0 -33
- package/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs +0 -88
- package/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.js +0 -99
- package/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs +0 -40
- package/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.js +0 -58
- package/fable_modules/Thoth.Json.JavaScript.0.3.0/Thoth.Json.JavaScript.fableproj +0 -28
- package/fable_modules/YAMLicious.0.0.3/Decode.fs +0 -399
- package/fable_modules/YAMLicious.0.0.3/Decode.fs.js +0 -1717
- package/fable_modules/YAMLicious.0.0.3/Encode.fs +0 -148
- package/fable_modules/YAMLicious.0.0.3/Encode.fs.js +0 -74
- package/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs +0 -14
- package/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +0 -11
- package/fable_modules/YAMLicious.0.0.3/Interop/PyInterop.fs +0 -9
- package/fable_modules/YAMLicious.0.0.3/Library.fs +0 -138
- package/fable_modules/YAMLicious.0.0.3/Library.fs.js +0 -7
- package/fable_modules/YAMLicious.0.0.3/Persil.fs +0 -86
- package/fable_modules/YAMLicious.0.0.3/Persil.fs.js +0 -49
- package/fable_modules/YAMLicious.0.0.3/Preprocessing.fs +0 -59
- package/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +0 -102
- package/fable_modules/YAMLicious.0.0.3/Reader.fs +0 -295
- package/fable_modules/YAMLicious.0.0.3/Reader.fs.js +0 -530
- package/fable_modules/YAMLicious.0.0.3/Regex.fs +0 -108
- package/fable_modules/YAMLicious.0.0.3/Regex.fs.js +0 -19
- package/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs +0 -166
- package/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +0 -225
- package/fable_modules/YAMLicious.0.0.3/Writer.fs +0 -84
- package/fable_modules/YAMLicious.0.0.3/Writer.fs.js +0 -161
- package/fable_modules/YAMLicious.0.0.3/YAMLicious.fableproj +0 -39
- package/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs +0 -82
- package/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +0 -130
- package/fable_modules/YAMLicious.0.0.3/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +0 -3
- package/fable_modules/YAMLicious.0.0.3/obj/Debug/netstandard2.0/YAMLicious.AssemblyInfo.fs +0 -19
- package/fable_modules/YAMLicious.0.0.3/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +0 -3
- package/fable_modules/YAMLicious.0.0.3/obj/Release/netstandard2.0/YAMLicious.AssemblyInfo.fs +0 -19
- package/fable_modules/fable-library-js.4.24.0/Array.d.ts +0 -123
- package/fable_modules/fable-library-js.4.24.0/Array.js +0 -1242
- package/fable_modules/fable-library-js.4.24.0/Async.d.ts +0 -27
- package/fable_modules/fable-library-js.4.24.0/Async.js +0 -152
- package/fable_modules/fable-library-js.4.24.0/AsyncBuilder.d.ts +0 -59
- package/fable_modules/fable-library-js.4.24.0/AsyncBuilder.js +0 -183
- package/fable_modules/fable-library-js.4.24.0/BigInt.d.ts +0 -115
- package/fable_modules/fable-library-js.4.24.0/BigInt.js +0 -283
- package/fable_modules/fable-library-js.4.24.0/BitConverter.d.ts +0 -27
- package/fable_modules/fable-library-js.4.24.0/BitConverter.js +0 -138
- package/fable_modules/fable-library-js.4.24.0/Boolean.d.ts +0 -3
- package/fable_modules/fable-library-js.4.24.0/Boolean.js +0 -21
- package/fable_modules/fable-library-js.4.24.0/CHANGELOG.md +0 -92
- package/fable_modules/fable-library-js.4.24.0/Char.d.ts +0 -65
- package/fable_modules/fable-library-js.4.24.0/Char.js +0 -169
- package/fable_modules/fable-library-js.4.24.0/Choice.d.ts +0 -121
- package/fable_modules/fable-library-js.4.24.0/Choice.js +0 -184
- package/fable_modules/fable-library-js.4.24.0/CollectionUtil.d.ts +0 -7
- package/fable_modules/fable-library-js.4.24.0/CollectionUtil.js +0 -182
- package/fable_modules/fable-library-js.4.24.0/ConditionalWeakTable.d.ts +0 -9
- package/fable_modules/fable-library-js.4.24.0/ConditionalWeakTable.js +0 -21
- package/fable_modules/fable-library-js.4.24.0/Date.d.ts +0 -70
- package/fable_modules/fable-library-js.4.24.0/Date.js +0 -748
- package/fable_modules/fable-library-js.4.24.0/DateOffset.d.ts +0 -63
- package/fable_modules/fable-library-js.4.24.0/DateOffset.js +0 -268
- package/fable_modules/fable-library-js.4.24.0/DateOnly.d.ts +0 -18
- package/fable_modules/fable-library-js.4.24.0/DateOnly.js +0 -124
- package/fable_modules/fable-library-js.4.24.0/Decimal.d.ts +0 -45
- package/fable_modules/fable-library-js.4.24.0/Decimal.js +0 -212
- package/fable_modules/fable-library-js.4.24.0/Double.d.ts +0 -11
- package/fable_modules/fable-library-js.4.24.0/Double.js +0 -46
- package/fable_modules/fable-library-js.4.24.0/Encoding.d.ts +0 -12
- package/fable_modules/fable-library-js.4.24.0/Encoding.js +0 -173
- package/fable_modules/fable-library-js.4.24.0/Event.d.ts +0 -31
- package/fable_modules/fable-library-js.4.24.0/Event.js +0 -93
- package/fable_modules/fable-library-js.4.24.0/FSharp.Collections.d.ts +0 -7
- package/fable_modules/fable-library-js.4.24.0/FSharp.Collections.js +0 -27
- package/fable_modules/fable-library-js.4.24.0/FSharp.Core.CompilerServices.d.ts +0 -12
- package/fable_modules/fable-library-js.4.24.0/FSharp.Core.CompilerServices.js +0 -27
- package/fable_modules/fable-library-js.4.24.0/FSharp.Core.d.ts +0 -17
- package/fable_modules/fable-library-js.4.24.0/FSharp.Core.js +0 -69
- package/fable_modules/fable-library-js.4.24.0/Global.d.ts +0 -24
- package/fable_modules/fable-library-js.4.24.0/Global.js +0 -8
- package/fable_modules/fable-library-js.4.24.0/Guid.d.ts +0 -10
- package/fable_modules/fable-library-js.4.24.0/Guid.js +0 -142
- package/fable_modules/fable-library-js.4.24.0/Int32.d.ts +0 -28
- package/fable_modules/fable-library-js.4.24.0/Int32.js +0 -135
- package/fable_modules/fable-library-js.4.24.0/List.d.ts +0 -143
- package/fable_modules/fable-library-js.4.24.0/List.js +0 -1273
- package/fable_modules/fable-library-js.4.24.0/Long.d.ts +0 -3
- package/fable_modules/fable-library-js.4.24.0/Long.js +0 -46
- package/fable_modules/fable-library-js.4.24.0/MailboxProcessor.d.ts +0 -25
- package/fable_modules/fable-library-js.4.24.0/MailboxProcessor.js +0 -93
- package/fable_modules/fable-library-js.4.24.0/Map.d.ts +0 -178
- package/fable_modules/fable-library-js.4.24.0/Map.js +0 -1396
- package/fable_modules/fable-library-js.4.24.0/MapUtil.d.ts +0 -12
- package/fable_modules/fable-library-js.4.24.0/MapUtil.js +0 -127
- package/fable_modules/fable-library-js.4.24.0/MutableMap.d.ts +0 -52
- package/fable_modules/fable-library-js.4.24.0/MutableMap.js +0 -327
- package/fable_modules/fable-library-js.4.24.0/MutableSet.d.ts +0 -39
- package/fable_modules/fable-library-js.4.24.0/MutableSet.js +0 -233
- package/fable_modules/fable-library-js.4.24.0/Native.d.ts +0 -2
- package/fable_modules/fable-library-js.4.24.0/Native.js +0 -8
- package/fable_modules/fable-library-js.4.24.0/Numeric.d.ts +0 -19
- package/fable_modules/fable-library-js.4.24.0/Numeric.js +0 -71
- package/fable_modules/fable-library-js.4.24.0/Observable.d.ts +0 -32
- package/fable_modules/fable-library-js.4.24.0/Observable.js +0 -113
- package/fable_modules/fable-library-js.4.24.0/Option.d.ts +0 -28
- package/fable_modules/fable-library-js.4.24.0/Option.js +0 -96
- package/fable_modules/fable-library-js.4.24.0/README.md +0 -3
- package/fable_modules/fable-library-js.4.24.0/Random.d.ts +0 -37
- package/fable_modules/fable-library-js.4.24.0/Random.js +0 -170
- package/fable_modules/fable-library-js.4.24.0/Range.d.ts +0 -12
- package/fable_modules/fable-library-js.4.24.0/Range.js +0 -45
- package/fable_modules/fable-library-js.4.24.0/Reflection.d.ts +0 -119
- package/fable_modules/fable-library-js.4.24.0/Reflection.js +0 -461
- package/fable_modules/fable-library-js.4.24.0/RegExp.d.ts +0 -10
- package/fable_modules/fable-library-js.4.24.0/RegExp.js +0 -131
- package/fable_modules/fable-library-js.4.24.0/Result.d.ts +0 -37
- package/fable_modules/fable-library-js.4.24.0/Result.js +0 -165
- package/fable_modules/fable-library-js.4.24.0/Seq.d.ts +0 -165
- package/fable_modules/fable-library-js.4.24.0/Seq.js +0 -1378
- package/fable_modules/fable-library-js.4.24.0/Seq2.d.ts +0 -18
- package/fable_modules/fable-library-js.4.24.0/Seq2.js +0 -111
- package/fable_modules/fable-library-js.4.24.0/Set.d.ts +0 -190
- package/fable_modules/fable-library-js.4.24.0/Set.js +0 -1789
- package/fable_modules/fable-library-js.4.24.0/String.d.ts +0 -58
- package/fable_modules/fable-library-js.4.24.0/String.js +0 -554
- package/fable_modules/fable-library-js.4.24.0/System.Collections.Generic.d.ts +0 -79
- package/fable_modules/fable-library-js.4.24.0/System.Collections.Generic.js +0 -317
- package/fable_modules/fable-library-js.4.24.0/System.Text.d.ts +0 -38
- package/fable_modules/fable-library-js.4.24.0/System.Text.js +0 -162
- package/fable_modules/fable-library-js.4.24.0/SystemException.d.ts +0 -5
- package/fable_modules/fable-library-js.4.24.0/SystemException.js +0 -5
- package/fable_modules/fable-library-js.4.24.0/TimeOnly.d.ts +0 -15
- package/fable_modules/fable-library-js.4.24.0/TimeOnly.js +0 -122
- package/fable_modules/fable-library-js.4.24.0/TimeSpan.d.ts +0 -34
- package/fable_modules/fable-library-js.4.24.0/TimeSpan.js +0 -177
- package/fable_modules/fable-library-js.4.24.0/Timer.d.ts +0 -19
- package/fable_modules/fable-library-js.4.24.0/Timer.js +0 -67
- package/fable_modules/fable-library-js.4.24.0/Types.d.ts +0 -58
- package/fable_modules/fable-library-js.4.24.0/Types.js +0 -208
- package/fable_modules/fable-library-js.4.24.0/Unicode.13.0.0.d.ts +0 -2
- package/fable_modules/fable-library-js.4.24.0/Unicode.13.0.0.js +0 -4
- package/fable_modules/fable-library-js.4.24.0/Uri.d.ts +0 -31
- package/fable_modules/fable-library-js.4.24.0/Uri.js +0 -159
- package/fable_modules/fable-library-js.4.24.0/Util.d.ts +0 -210
- package/fable_modules/fable-library-js.4.24.0/Util.js +0 -769
- package/fable_modules/fable-library-js.4.24.0/big.d.ts +0 -338
- package/fable_modules/fable-library-js.4.24.0/lib/big.d.ts +0 -5
- package/fable_modules/fable-library-js.4.24.0/lib/big.js +0 -825
- package/fable_modules/fable-library-js.4.24.0/package.json +0 -24
- package/fable_modules/project_cracked.json +0 -1
- package/index.js +0 -16
|
@@ -0,0 +1,948 @@
|
|
|
1
|
+
import { FileSystem } from "./FileSystem/FileSystem.js";
|
|
2
|
+
import { bind, defaultArg, value as value_3, unwrap } from "@fable-org/fable-library-js/Option.js";
|
|
3
|
+
import { ArcInvestigation_$reflection, ArcWorkflow__Copy_6FCE9E49, ArcWorkflow__get_StaticHash, ArcWorkflow__GetLightHashCode, ArcWorkflow__set_StaticHash_Z524259A4, ArcWorkflow__set_DataMap_51F1E59E, ArcWorkflow__get_DataMap, ArcWorkflow__get_Identifier, ArcInvestigation } from "./Core/ArcTypes.js";
|
|
4
|
+
import { fullFillContractBatchAsync } from "./ContractIO/ContractIO.js";
|
|
5
|
+
import { FSharpResult$2_Ok, FSharpResult$2_Error } from "@fable-org/fable-library-js/Result.js";
|
|
6
|
+
import { Contract } from "./Contract/Contract.js";
|
|
7
|
+
import { PromiseBuilder__Delay_62FBFDE1, PromiseBuilder__Run_212F1D4B } from "./fable_modules/Fable.Promise.3.2.0/Promise.fs.js";
|
|
8
|
+
import { promise } from "./fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js";
|
|
9
|
+
import { getAllFilePathsAsync } from "./ContractIO/FileSystemHelper.js";
|
|
10
|
+
import { toList, collect, empty, find, tryFind, iterate, map, singleton, append, delay, contains, toArray } from "@fable-org/fable-library-js/Seq.js";
|
|
11
|
+
import { defaultOf, disposeSafe, getEnumerator, safeHash, curry2, comparePrimitives, stringHash } from "@fable-org/fable-library-js/Util.js";
|
|
12
|
+
import { getStudyFolderPath, getAssayFolderPath } from "./FileSystem/Path.js";
|
|
13
|
+
import { ARCtrl_ArcAssay__ArcAssay_tryFromReadContract_Static_7570923F, ARCtrl_ArcAssay__ArcAssay_ToUpdateContract, ARCtrl_ArcAssay__ArcAssay_ToCreateContract_6FCE9E49, ARCtrl_ArcAssay__ArcAssay_ToDeleteContract } from "./Contract/ArcAssay.js";
|
|
14
|
+
import { ARCtrl_ArcInvestigation__ArcInvestigation_tryFromReadContract_Static_7570923F, ARCtrl_ArcInvestigation__ArcInvestigation_ToUpdateContract } from "./Contract/ArcInvestigation.js";
|
|
15
|
+
import { ARCtrl_ArcStudy__ArcStudy_tryFromReadContract_Static_7570923F, ARCtrl_ArcStudy__ArcStudy_ToCreateContract_6FCE9E49, ARCtrl_ArcStudy__ArcStudy_ToUpdateContract } from "./Contract/ArcStudy.js";
|
|
16
|
+
import { exactlyOne, tryPick, append as append_1, contains as contains_2, concat, fold, choose, map as map_1 } from "@fable-org/fable-library-js/Array.js";
|
|
17
|
+
import { toText, printf, toFail, join, replace } from "@fable-org/fable-library-js/String.js";
|
|
18
|
+
import { Run_datamapFileNameFromIdentifier, Run_fileNameFromIdentifier, Workflow_datamapFileNameFromIdentifier, Workflow_fileNameFromIdentifier, Assay_datamapFileNameFromIdentifier, Assay_fileNameFromIdentifier, Study_datamapFileNameFromIdentifier, Study_fileNameFromIdentifier, createMissingIdentifier } from "./Core/Helper/Identifier.js";
|
|
19
|
+
import { FSharpSet__Contains, unionMany, contains as contains_1, ofSeq } from "@fable-org/fable-library-js/Set.js";
|
|
20
|
+
import { DataMap__get_StaticHash, DataMap__set_StaticHash_Z524259A4, DataMap__get_DataContexts } from "./Core/DataMap.js";
|
|
21
|
+
import { FileSystemTree_Folder, FileSystemTree } from "./FileSystem/FileSystemTree.js";
|
|
22
|
+
import { tryISAReadContractFromPath } from "./Contract/ARC.js";
|
|
23
|
+
import { setInvestigationIdentifier } from "./Core/IdentifierSetters.js";
|
|
24
|
+
import { ArcTables } from "./Core/Table/ArcTables.js";
|
|
25
|
+
import { addToDict } from "@fable-org/fable-library-js/MapUtil.js";
|
|
26
|
+
import { ARCtrl_ArcInvestigation__ArcInvestigation_toFsWorkbook_Static_Z720BD3FF } from "./Spreadsheet/ArcInvestigation.js";
|
|
27
|
+
import { ARCtrl_ArcStudy__ArcStudy_toFsWorkbook_Static_Z4CEFA522 } from "./Spreadsheet/ArcStudy.js";
|
|
28
|
+
import { toFsWorkbook } from "./Spreadsheet/DataMap.js";
|
|
29
|
+
import { ARCtrl_ArcAssay__ArcAssay_toFsWorkbook_Static_Z2508BE4F } from "./Spreadsheet/ArcAssay.js";
|
|
30
|
+
import { ARCtrl_ArcWorkflow__ArcWorkflow_toFsWorkbook_Static_Z1C75CB0E } from "./Spreadsheet/ArcWorkflow.js";
|
|
31
|
+
import { ARCtrl_ArcRun__ArcRun_toFsWorkbook_Static_Z3EFAF6F8 } from "./Spreadsheet/ArcRun.js";
|
|
32
|
+
import { Dictionary_tryGet } from "./fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.js";
|
|
33
|
+
import { ARCtrl_DataMap__DataMap_tryFromReadContractForRun_Static, ARCtrl_DataMap__DataMap_tryFromReadContractForWorkflow_Static, ARCtrl_DataMap__DataMap_tryFromReadContractForStudy_Static, ARCtrl_DataMap__DataMap_tryFromReadContractForAssay_Static, ARCtrl_DataMap__DataMap_ToUpdateContractForRun_Z721C83C5, ARCtrl_DataMap__DataMap_ToCreateContractForRun_Z721C83C5, ARCtrl_DataMap__DataMap_ToUpdateContractForWorkflow_Z721C83C5, ARCtrl_DataMap__DataMap_ToCreateContractForWorkflow_Z721C83C5, ARCtrl_DataMap__DataMap_ToUpdateContractForAssay_Z721C83C5, ARCtrl_DataMap__DataMap_ToCreateContractForAssay_Z721C83C5, ARCtrl_DataMap__DataMap_ToUpdateContractForStudy_Z721C83C5, ARCtrl_DataMap__DataMap_ToCreateContractForStudy_Z721C83C5 } from "./Contract/Datamap.js";
|
|
34
|
+
import { ARCtrl_ArcWorkflow__ArcWorkflow_tryFromReadContract_Static_7570923F, ARCtrl_ArcWorkflow__ArcWorkflow_ToUpdateContract, ARCtrl_ArcWorkflow__ArcWorkflow_ToCreateContract_6FCE9E49 } from "./Contract/ArcWorkflow.js";
|
|
35
|
+
import { ARCtrl_ArcRun__ArcRun_tryFromReadContract_Static_7570923F, ARCtrl_ArcRun__ArcRun_ToUpdateContract, ARCtrl_ArcRun__ArcRun_ToCreateContract_6FCE9E49 } from "./Contract/ArcRun.js";
|
|
36
|
+
import { Clone_createCloneContract_5000466F, Init_createAddRemoteContract_Z721C83C5, gitignoreContract, gitattributesContract, Init_createInitContract_6DFDD678 } from "./Contract/Git.js";
|
|
37
|
+
import { ResizeArray_map } from "./Core/Helper/Collections.js";
|
|
38
|
+
import { ofSeq as ofSeq_1 } from "@fable-org/fable-library-js/Map.js";
|
|
39
|
+
import { fromString } from "./fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.js";
|
|
40
|
+
import { ROCrate_encoder_8A8D439, ROCrate_get_decoder, ROCrate_get_decoderDeprecated } from "./ROCrateIO.js";
|
|
41
|
+
import { toString } from "./fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.js";
|
|
42
|
+
import { defaultSpaces } from "./Json/Encode.js";
|
|
43
|
+
import { ARCtrl_ValidationPackages_ValidationPackagesConfig__ValidationPackagesConfig_tryFromReadContract_Static_7570923F, ValidationPackagesConfigHelper_ReadContract, ARCtrl_ValidationPackages_ValidationPackagesConfig__ValidationPackagesConfig_toDeleteContract_Static_724DAE55, ARCtrl_ValidationPackages_ValidationPackagesConfig__ValidationPackagesConfig_toCreateContract_Static_724DAE55, ValidationPackagesConfigHelper_ConfigFilePath } from "./Contract/ValidationPackagesConfig.js";
|
|
44
|
+
import { FSharpRef } from "@fable-org/fable-library-js/Types.js";
|
|
45
|
+
import { class_type } from "@fable-org/fable-library-js/Reflection.js";
|
|
46
|
+
export class ARC extends ArcInvestigation {
|
|
47
|
+
constructor(identifier, title, description, submissionDate, publicReleaseDate, ontologySourceReferences, publications, contacts, assays, studies, workflows, runs, registeredStudyIdentifiers, comments, remarks, cwl, fs) {
|
|
48
|
+
super(identifier, unwrap(title), unwrap(description), unwrap(submissionDate), unwrap(publicReleaseDate), unwrap(ontologySourceReferences), unwrap(publications), unwrap(contacts), unwrap(assays), unwrap(studies), unwrap(workflows), unwrap(runs), unwrap(registeredStudyIdentifiers), unwrap(comments), unwrap(remarks));
|
|
49
|
+
let fs_1;
|
|
50
|
+
const this$ = new FSharpRef(defaultOf());
|
|
51
|
+
this$.contents = this;
|
|
52
|
+
this._cwl = cwl;
|
|
53
|
+
this._fs = ((fs_1 = defaultArg(fs, FileSystem.create({
|
|
54
|
+
tree: FileSystemTree_Folder("", []),
|
|
55
|
+
})), ARCAux_updateFSByISA(this$.contents, fs_1)));
|
|
56
|
+
this["init@89"] = 1;
|
|
57
|
+
}
|
|
58
|
+
get FileSystem() {
|
|
59
|
+
const this$ = this;
|
|
60
|
+
return this$._fs;
|
|
61
|
+
}
|
|
62
|
+
set FileSystem(fs) {
|
|
63
|
+
const this$ = this;
|
|
64
|
+
this$._fs = fs;
|
|
65
|
+
}
|
|
66
|
+
static fromArcInvestigation(isa, cwl, fs) {
|
|
67
|
+
return new ARC(isa.Identifier, unwrap(isa.Title), unwrap(isa.Description), unwrap(isa.SubmissionDate), unwrap(isa.PublicReleaseDate), isa.OntologySourceReferences, isa.Publications, isa.Contacts, isa.Assays, isa.Studies, isa.Workflows, isa.Runs, isa.RegisteredStudyIdentifiers, isa.Comments, isa.Remarks, cwl, unwrap(fs));
|
|
68
|
+
}
|
|
69
|
+
TryWriteAsync(arcPath) {
|
|
70
|
+
const this$ = this;
|
|
71
|
+
return fullFillContractBatchAsync(arcPath, this$.GetWriteContracts());
|
|
72
|
+
}
|
|
73
|
+
TryUpdateAsync(arcPath) {
|
|
74
|
+
const this$ = this;
|
|
75
|
+
return fullFillContractBatchAsync(arcPath, this$.GetUpdateContracts());
|
|
76
|
+
}
|
|
77
|
+
static tryLoadAsync(arcPath) {
|
|
78
|
+
return PromiseBuilder__Run_212F1D4B(promise, PromiseBuilder__Delay_62FBFDE1(promise, () => (getAllFilePathsAsync(arcPath).then((_arg) => {
|
|
79
|
+
const arc = ARC.fromFilePaths(toArray(_arg));
|
|
80
|
+
const contracts = arc.GetReadContracts();
|
|
81
|
+
return fullFillContractBatchAsync(arcPath, contracts).then((_arg_1) => {
|
|
82
|
+
const fulFilledContracts = _arg_1;
|
|
83
|
+
if (fulFilledContracts.tag === /* Error */ 1) {
|
|
84
|
+
const e = fulFilledContracts.fields[0];
|
|
85
|
+
return Promise.resolve(FSharpResult$2_Error(e));
|
|
86
|
+
}
|
|
87
|
+
else {
|
|
88
|
+
const c = fulFilledContracts.fields[0];
|
|
89
|
+
arc.SetISAFromContracts(c);
|
|
90
|
+
return Promise.resolve(FSharpResult$2_Ok(arc));
|
|
91
|
+
}
|
|
92
|
+
});
|
|
93
|
+
}))));
|
|
94
|
+
}
|
|
95
|
+
GetAssayRemoveContracts(assayIdentifier) {
|
|
96
|
+
const this$ = this;
|
|
97
|
+
if (!contains(assayIdentifier, this$.AssayIdentifiers, {
|
|
98
|
+
Equals: (x, y) => (x === y),
|
|
99
|
+
GetHashCode: stringHash,
|
|
100
|
+
})) {
|
|
101
|
+
throw new Error("ARC does not contain assay with given name");
|
|
102
|
+
}
|
|
103
|
+
const assay = this$.GetAssay(assayIdentifier);
|
|
104
|
+
const studies = assay.StudiesRegisteredIn;
|
|
105
|
+
super.RemoveAssay(assayIdentifier);
|
|
106
|
+
const paths = this$.FileSystem.Tree.ToFilePaths();
|
|
107
|
+
const assayFolderPath = getAssayFolderPath(assayIdentifier);
|
|
108
|
+
const filteredPaths = paths.filter((p) => !p.startsWith(assayFolderPath));
|
|
109
|
+
this$.SetFilePaths(filteredPaths);
|
|
110
|
+
return toArray(delay(() => append(singleton(ARCtrl_ArcAssay__ArcAssay_ToDeleteContract(assay)), delay(() => append(singleton(ARCtrl_ArcInvestigation__ArcInvestigation_ToUpdateContract(this$)), delay(() => map(ARCtrl_ArcStudy__ArcStudy_ToUpdateContract, studies)))))));
|
|
111
|
+
}
|
|
112
|
+
TryRemoveAssayAsync(arcPath, assayIdentifier) {
|
|
113
|
+
const this$ = this;
|
|
114
|
+
return fullFillContractBatchAsync(arcPath, this$.GetAssayRemoveContracts(assayIdentifier));
|
|
115
|
+
}
|
|
116
|
+
GetAssayRenameContracts(oldAssayIdentifier, newAssayIdentifier) {
|
|
117
|
+
const this$ = this;
|
|
118
|
+
if (!contains(oldAssayIdentifier, this$.AssayIdentifiers, {
|
|
119
|
+
Equals: (x, y) => (x === y),
|
|
120
|
+
GetHashCode: stringHash,
|
|
121
|
+
})) {
|
|
122
|
+
throw new Error("ARC does not contain assay with given name");
|
|
123
|
+
}
|
|
124
|
+
super.RenameAssay(oldAssayIdentifier, newAssayIdentifier);
|
|
125
|
+
const paths = this$.FileSystem.Tree.ToFilePaths();
|
|
126
|
+
const oldAssayFolderPath = getAssayFolderPath(oldAssayIdentifier);
|
|
127
|
+
const newAssayFolderPath = getAssayFolderPath(newAssayIdentifier);
|
|
128
|
+
const renamedPaths = map_1((p) => replace(p, oldAssayFolderPath, newAssayFolderPath), paths);
|
|
129
|
+
this$.SetFilePaths(renamedPaths);
|
|
130
|
+
return toArray(delay(() => append(singleton(Contract.createRename(oldAssayFolderPath, newAssayFolderPath)), delay(() => this$.GetUpdateContracts()))));
|
|
131
|
+
}
|
|
132
|
+
TryRenameAssayAsync(arcPath, oldAssayIdentifier, newAssayIdentifier) {
|
|
133
|
+
const this$ = this;
|
|
134
|
+
return fullFillContractBatchAsync(arcPath, this$.GetAssayRenameContracts(oldAssayIdentifier, newAssayIdentifier));
|
|
135
|
+
}
|
|
136
|
+
GetStudyRemoveContracts(studyIdentifier) {
|
|
137
|
+
const this$ = this;
|
|
138
|
+
super.RemoveStudy(studyIdentifier);
|
|
139
|
+
const paths = this$.FileSystem.Tree.ToFilePaths();
|
|
140
|
+
const studyFolderPath = getStudyFolderPath(studyIdentifier);
|
|
141
|
+
const filteredPaths = paths.filter((p) => !p.startsWith(studyFolderPath));
|
|
142
|
+
this$.SetFilePaths(filteredPaths);
|
|
143
|
+
return [Contract.createDelete(studyFolderPath), ARCtrl_ArcInvestigation__ArcInvestigation_ToUpdateContract(this$)];
|
|
144
|
+
}
|
|
145
|
+
TryRemoveStudyAsync(arcPath, studyIdentifier) {
|
|
146
|
+
const this$ = this;
|
|
147
|
+
return fullFillContractBatchAsync(arcPath, this$.GetStudyRemoveContracts(studyIdentifier));
|
|
148
|
+
}
|
|
149
|
+
GetStudyRenameContracts(oldStudyIdentifier, newStudyIdentifier) {
|
|
150
|
+
const this$ = this;
|
|
151
|
+
if (!contains(oldStudyIdentifier, this$.StudyIdentifiers, {
|
|
152
|
+
Equals: (x, y) => (x === y),
|
|
153
|
+
GetHashCode: stringHash,
|
|
154
|
+
})) {
|
|
155
|
+
throw new Error("ARC does not contain study with given name");
|
|
156
|
+
}
|
|
157
|
+
super.RenameStudy(oldStudyIdentifier, newStudyIdentifier);
|
|
158
|
+
const paths = this$.FileSystem.Tree.ToFilePaths();
|
|
159
|
+
const oldStudyFolderPath = getStudyFolderPath(oldStudyIdentifier);
|
|
160
|
+
const newStudyFolderPath = getStudyFolderPath(newStudyIdentifier);
|
|
161
|
+
const renamedPaths = map_1((p) => replace(p, oldStudyFolderPath, newStudyFolderPath), paths);
|
|
162
|
+
this$.SetFilePaths(renamedPaths);
|
|
163
|
+
return toArray(delay(() => append(singleton(Contract.createRename(oldStudyFolderPath, newStudyFolderPath)), delay(() => this$.GetUpdateContracts()))));
|
|
164
|
+
}
|
|
165
|
+
TryRenameStudyAsync(arcPath, oldStudyIdentifier, newStudyIdentifier) {
|
|
166
|
+
const this$ = this;
|
|
167
|
+
return fullFillContractBatchAsync(arcPath, this$.GetStudyRenameContracts(oldStudyIdentifier, newStudyIdentifier));
|
|
168
|
+
}
|
|
169
|
+
WriteAsync(arcPath) {
|
|
170
|
+
const this$ = this;
|
|
171
|
+
return PromiseBuilder__Run_212F1D4B(promise, PromiseBuilder__Delay_62FBFDE1(promise, () => (this$.TryWriteAsync(arcPath).then((_arg) => {
|
|
172
|
+
const result = _arg;
|
|
173
|
+
if (result.tag === /* Error */ 1) {
|
|
174
|
+
const appended = join("\n", map_1((e) => e, result.fields[0]));
|
|
175
|
+
toFail(printf("Could not write ARC, failed with the following errors %s"))(appended);
|
|
176
|
+
return Promise.resolve();
|
|
177
|
+
}
|
|
178
|
+
else {
|
|
179
|
+
return Promise.resolve();
|
|
180
|
+
}
|
|
181
|
+
}))));
|
|
182
|
+
}
|
|
183
|
+
UpdateAsync(arcPath) {
|
|
184
|
+
const this$ = this;
|
|
185
|
+
return PromiseBuilder__Run_212F1D4B(promise, PromiseBuilder__Delay_62FBFDE1(promise, () => (this$.TryUpdateAsync(arcPath).then((_arg) => {
|
|
186
|
+
const result = _arg;
|
|
187
|
+
if (result.tag === /* Error */ 1) {
|
|
188
|
+
const appended = join("\n", map_1((e) => e, result.fields[0]));
|
|
189
|
+
toFail(printf("Could not update ARC, failed with the following errors %s"))(appended);
|
|
190
|
+
return Promise.resolve();
|
|
191
|
+
}
|
|
192
|
+
else {
|
|
193
|
+
return Promise.resolve();
|
|
194
|
+
}
|
|
195
|
+
}))));
|
|
196
|
+
}
|
|
197
|
+
RemoveAssayAsync(arcPath, assayIdentifier) {
|
|
198
|
+
const this$ = this;
|
|
199
|
+
return PromiseBuilder__Run_212F1D4B(promise, PromiseBuilder__Delay_62FBFDE1(promise, () => (this$.TryRemoveAssayAsync(arcPath, assayIdentifier).then((_arg) => {
|
|
200
|
+
const result = _arg;
|
|
201
|
+
if (result.tag === /* Error */ 1) {
|
|
202
|
+
const appended = join("\n", map_1((e) => e, result.fields[0]));
|
|
203
|
+
toFail(printf("Could not remove assay, failed with the following errors %s"))(appended);
|
|
204
|
+
return Promise.resolve();
|
|
205
|
+
}
|
|
206
|
+
else {
|
|
207
|
+
return Promise.resolve();
|
|
208
|
+
}
|
|
209
|
+
}))));
|
|
210
|
+
}
|
|
211
|
+
RenameAssayAsync(arcPath, oldAssayIdentifier, newAssayIdentifier) {
|
|
212
|
+
const this$ = this;
|
|
213
|
+
return PromiseBuilder__Run_212F1D4B(promise, PromiseBuilder__Delay_62FBFDE1(promise, () => (this$.TryRenameAssayAsync(arcPath, oldAssayIdentifier, newAssayIdentifier).then((_arg) => {
|
|
214
|
+
const result = _arg;
|
|
215
|
+
if (result.tag === /* Error */ 1) {
|
|
216
|
+
const appended = join("\n", map_1((e) => e, result.fields[0]));
|
|
217
|
+
toFail(printf("Could not rename assay, failed with the following errors %s"))(appended);
|
|
218
|
+
return Promise.resolve();
|
|
219
|
+
}
|
|
220
|
+
else {
|
|
221
|
+
return Promise.resolve();
|
|
222
|
+
}
|
|
223
|
+
}))));
|
|
224
|
+
}
|
|
225
|
+
RemoveStudyAsync(arcPath, studyIdentifier) {
|
|
226
|
+
const this$ = this;
|
|
227
|
+
return PromiseBuilder__Run_212F1D4B(promise, PromiseBuilder__Delay_62FBFDE1(promise, () => (this$.TryRemoveStudyAsync(arcPath, studyIdentifier).then((_arg) => {
|
|
228
|
+
const result = _arg;
|
|
229
|
+
if (result.tag === /* Error */ 1) {
|
|
230
|
+
const appended = join("\n", map_1((e) => e, result.fields[0]));
|
|
231
|
+
toFail(printf("Could not remove study, failed with the following errors %s"))(appended);
|
|
232
|
+
return Promise.resolve();
|
|
233
|
+
}
|
|
234
|
+
else {
|
|
235
|
+
return Promise.resolve();
|
|
236
|
+
}
|
|
237
|
+
}))));
|
|
238
|
+
}
|
|
239
|
+
RenameStudyAsync(arcPath, oldStudyIdentifier, newStudyIdentifier) {
|
|
240
|
+
const this$ = this;
|
|
241
|
+
return PromiseBuilder__Run_212F1D4B(promise, PromiseBuilder__Delay_62FBFDE1(promise, () => (this$.TryRenameStudyAsync(arcPath, oldStudyIdentifier, newStudyIdentifier).then((_arg) => {
|
|
242
|
+
const result = _arg;
|
|
243
|
+
if (result.tag === /* Error */ 1) {
|
|
244
|
+
const appended = join("\n", map_1((e) => e, result.fields[0]));
|
|
245
|
+
toFail(printf("Could not rename study, failed with the following errors %s"))(appended);
|
|
246
|
+
return Promise.resolve();
|
|
247
|
+
}
|
|
248
|
+
else {
|
|
249
|
+
return Promise.resolve();
|
|
250
|
+
}
|
|
251
|
+
}))));
|
|
252
|
+
}
|
|
253
|
+
static loadAsync(arcPath) {
|
|
254
|
+
return PromiseBuilder__Run_212F1D4B(promise, PromiseBuilder__Delay_62FBFDE1(promise, () => (ARC.tryLoadAsync(arcPath).then((_arg) => {
|
|
255
|
+
const result = _arg;
|
|
256
|
+
if (result.tag === /* Error */ 1) {
|
|
257
|
+
const appended = join("\n", map_1((e) => e, result.fields[0]));
|
|
258
|
+
toFail(printf("Could not load ARC, failed with the following errors %s"))(appended);
|
|
259
|
+
return Promise.resolve(new ARC(createMissingIdentifier()));
|
|
260
|
+
}
|
|
261
|
+
else {
|
|
262
|
+
const arc = result.fields[0];
|
|
263
|
+
return Promise.resolve(arc);
|
|
264
|
+
}
|
|
265
|
+
}))));
|
|
266
|
+
}
|
|
267
|
+
MakeDataFilesAbsolute() {
|
|
268
|
+
const this$ = this;
|
|
269
|
+
const filesPaths = ofSeq(this$.FileSystem.Tree.ToFilePaths(), {
|
|
270
|
+
Compare: comparePrimitives,
|
|
271
|
+
});
|
|
272
|
+
const checkExistenceFromRoot = (p) => contains_1(p, filesPaths);
|
|
273
|
+
const updateColumnOption = (dataNameFunction, col) => {
|
|
274
|
+
let col_1;
|
|
275
|
+
let matchResult, col_2;
|
|
276
|
+
if (col != null) {
|
|
277
|
+
if ((col_1 = value_3(col), col_1.Header.IsDataColumn)) {
|
|
278
|
+
matchResult = 0;
|
|
279
|
+
col_2 = value_3(col);
|
|
280
|
+
}
|
|
281
|
+
else {
|
|
282
|
+
matchResult = 1;
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
else {
|
|
286
|
+
matchResult = 1;
|
|
287
|
+
}
|
|
288
|
+
switch (matchResult) {
|
|
289
|
+
case 0: {
|
|
290
|
+
col_2.Cells.forEach((c) => {
|
|
291
|
+
if (c.AsData.FilePath != null) {
|
|
292
|
+
const newFilePath = dataNameFunction(c.AsData);
|
|
293
|
+
c.AsData.FilePath = newFilePath;
|
|
294
|
+
}
|
|
295
|
+
});
|
|
296
|
+
break;
|
|
297
|
+
}
|
|
298
|
+
case 1: {
|
|
299
|
+
break;
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
};
|
|
303
|
+
const updateTable = (dataNameFunction_1, t) => {
|
|
304
|
+
updateColumnOption(dataNameFunction_1, t.TryGetInputColumn());
|
|
305
|
+
updateColumnOption(dataNameFunction_1, t.TryGetOutputColumn());
|
|
306
|
+
};
|
|
307
|
+
const updateDataMap = (dataNameFunction_2, dm) => {
|
|
308
|
+
iterate((c_1) => {
|
|
309
|
+
if (c_1.FilePath != null) {
|
|
310
|
+
const newFilePath_1 = dataNameFunction_2(c_1);
|
|
311
|
+
c_1.FilePath = newFilePath_1;
|
|
312
|
+
}
|
|
313
|
+
}, DataMap__get_DataContexts(dm));
|
|
314
|
+
};
|
|
315
|
+
iterate((s) => {
|
|
316
|
+
const f = (d) => d.GetAbsolutePathForStudy(s.Identifier, checkExistenceFromRoot);
|
|
317
|
+
const source_1 = s.Tables;
|
|
318
|
+
iterate(curry2(updateTable)(f), source_1);
|
|
319
|
+
if (s.DataMap != null) {
|
|
320
|
+
updateDataMap(f, value_3(s.DataMap));
|
|
321
|
+
}
|
|
322
|
+
}, this$.Studies);
|
|
323
|
+
iterate((a) => {
|
|
324
|
+
const f_1 = (d_1) => d_1.GetAbsolutePathForAssay(a.Identifier, checkExistenceFromRoot);
|
|
325
|
+
const source_3 = a.Tables;
|
|
326
|
+
iterate(curry2(updateTable)(f_1), source_3);
|
|
327
|
+
if (a.DataMap != null) {
|
|
328
|
+
updateDataMap(f_1, value_3(a.DataMap));
|
|
329
|
+
}
|
|
330
|
+
}, this$.Assays);
|
|
331
|
+
}
|
|
332
|
+
static fromFilePaths(filePaths) {
|
|
333
|
+
const fs = FileSystem.fromFilePaths(filePaths);
|
|
334
|
+
return new ARC(createMissingIdentifier(), undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, fs);
|
|
335
|
+
}
|
|
336
|
+
SetFilePaths(filePaths) {
|
|
337
|
+
const this$ = this;
|
|
338
|
+
const tree = FileSystemTree.fromFilePaths(filePaths);
|
|
339
|
+
this$._fs = (new FileSystem(tree, this$._fs.History));
|
|
340
|
+
}
|
|
341
|
+
GetReadContracts() {
|
|
342
|
+
const this$ = this;
|
|
343
|
+
return choose(tryISAReadContractFromPath, this$._fs.Tree.ToFilePaths());
|
|
344
|
+
}
|
|
345
|
+
SetISAFromContracts(contracts) {
|
|
346
|
+
const this$ = this;
|
|
347
|
+
const investigation = ARCAux_getArcInvestigationFromContracts(contracts);
|
|
348
|
+
setInvestigationIdentifier(investigation.Identifier, this$);
|
|
349
|
+
this$.Title = investigation.Title;
|
|
350
|
+
this$.Description = investigation.Description;
|
|
351
|
+
this$.SubmissionDate = investigation.SubmissionDate;
|
|
352
|
+
this$.PublicReleaseDate = investigation.PublicReleaseDate;
|
|
353
|
+
this$.OntologySourceReferences = investigation.OntologySourceReferences;
|
|
354
|
+
this$.Publications = investigation.Publications;
|
|
355
|
+
this$.Contacts = investigation.Contacts;
|
|
356
|
+
this$.Comments = investigation.Comments;
|
|
357
|
+
this$.Remarks = investigation.Remarks;
|
|
358
|
+
this$.RegisteredStudyIdentifiers = investigation.RegisteredStudyIdentifiers;
|
|
359
|
+
const studies = map_1((tuple) => tuple[0], ARCAux_getArcStudiesFromContracts(contracts));
|
|
360
|
+
const assays = ARCAux_getArcAssaysFromContracts(contracts);
|
|
361
|
+
const workflows = ARCAux_getArcWorkflowsFromContracts(contracts);
|
|
362
|
+
const runs = ARCAux_getArcRunsFromContracts(contracts);
|
|
363
|
+
const array_2 = this$.AssayIdentifiers;
|
|
364
|
+
array_2.forEach((ai) => {
|
|
365
|
+
if (!assays.some((a) => (a.Identifier === ai))) {
|
|
366
|
+
this$.DeleteAssay(ai);
|
|
367
|
+
}
|
|
368
|
+
});
|
|
369
|
+
const array_4 = this$.StudyIdentifiers;
|
|
370
|
+
array_4.forEach((si) => {
|
|
371
|
+
if (!studies.some((s) => (s.Identifier === si))) {
|
|
372
|
+
this$.DeleteStudy(si);
|
|
373
|
+
}
|
|
374
|
+
});
|
|
375
|
+
studies.forEach((study) => {
|
|
376
|
+
const registeredStudyOpt = tryFind((s_1) => (s_1.Identifier === study.Identifier), this$.Studies);
|
|
377
|
+
if (registeredStudyOpt == null) {
|
|
378
|
+
this$.AddStudy(study);
|
|
379
|
+
}
|
|
380
|
+
else {
|
|
381
|
+
const registeredStudy = value_3(registeredStudyOpt);
|
|
382
|
+
registeredStudy.UpdateReferenceByStudyFile(study, true);
|
|
383
|
+
}
|
|
384
|
+
const datamap = ARCAux_getAssayDataMapFromContracts(study.Identifier, contracts);
|
|
385
|
+
if (study.DataMap == null) {
|
|
386
|
+
study.DataMap = datamap;
|
|
387
|
+
}
|
|
388
|
+
study.StaticHash = (study.GetLightHashCode() | 0);
|
|
389
|
+
});
|
|
390
|
+
assays.forEach((assay) => {
|
|
391
|
+
const registeredAssayOpt = tryFind((a_1) => (a_1.Identifier === assay.Identifier), this$.Assays);
|
|
392
|
+
if (registeredAssayOpt == null) {
|
|
393
|
+
this$.AddAssay(assay);
|
|
394
|
+
}
|
|
395
|
+
else {
|
|
396
|
+
const registeredAssay = value_3(registeredAssayOpt);
|
|
397
|
+
registeredAssay.UpdateReferenceByAssayFile(assay, true);
|
|
398
|
+
}
|
|
399
|
+
const assay_1 = find((a_2) => (a_2.Identifier === assay.Identifier), this$.Assays);
|
|
400
|
+
let updatedTables;
|
|
401
|
+
const array_6 = assay_1.StudiesRegisteredIn;
|
|
402
|
+
updatedTables = fold((tables, study_1) => ArcTables.updateReferenceTablesBySheets(new ArcTables(study_1.Tables), tables, false), new ArcTables(assay_1.Tables), array_6);
|
|
403
|
+
const datamap_1 = ARCAux_getAssayDataMapFromContracts(assay_1.Identifier, contracts);
|
|
404
|
+
if (assay_1.DataMap == null) {
|
|
405
|
+
assay_1.DataMap = datamap_1;
|
|
406
|
+
}
|
|
407
|
+
assay_1.Tables = updatedTables.Tables;
|
|
408
|
+
});
|
|
409
|
+
workflows.forEach((workflow) => {
|
|
410
|
+
const datamap_2 = ARCAux_getWorkflowDataMapFromContracts(ArcWorkflow__get_Identifier(workflow), contracts);
|
|
411
|
+
if (ArcWorkflow__get_DataMap(workflow) == null) {
|
|
412
|
+
ArcWorkflow__set_DataMap_51F1E59E(workflow, datamap_2);
|
|
413
|
+
}
|
|
414
|
+
this$.AddWorkflow(workflow);
|
|
415
|
+
ArcWorkflow__set_StaticHash_Z524259A4(workflow, ArcWorkflow__GetLightHashCode(workflow));
|
|
416
|
+
});
|
|
417
|
+
runs.forEach((run) => {
|
|
418
|
+
const datamap_3 = ARCAux_getRunDataMapFromContracts(run.Identifier, contracts);
|
|
419
|
+
if (run.DataMap == null) {
|
|
420
|
+
run.DataMap = datamap_3;
|
|
421
|
+
}
|
|
422
|
+
this$.AddRun(run);
|
|
423
|
+
run.StaticHash = (run.GetLightHashCode() | 0);
|
|
424
|
+
});
|
|
425
|
+
iterate((a_3) => {
|
|
426
|
+
a_3.StaticHash = (a_3.GetLightHashCode() | 0);
|
|
427
|
+
}, this$.Assays);
|
|
428
|
+
iterate((s_2) => {
|
|
429
|
+
s_2.StaticHash = (s_2.GetLightHashCode() | 0);
|
|
430
|
+
}, this$.Studies);
|
|
431
|
+
this$.StaticHash = (this$.GetLightHashCode() | 0);
|
|
432
|
+
}
|
|
433
|
+
UpdateFileSystem() {
|
|
434
|
+
const this$ = this;
|
|
435
|
+
const newFS = ARCAux_updateFSByISA(this$, this$._fs);
|
|
436
|
+
this$._fs = newFS;
|
|
437
|
+
}
|
|
438
|
+
GetWriteContracts(skipUpdateFS) {
|
|
439
|
+
const this$ = this;
|
|
440
|
+
if (!defaultArg(skipUpdateFS, false)) {
|
|
441
|
+
this$.UpdateFileSystem();
|
|
442
|
+
}
|
|
443
|
+
const workbooks = new Map([]);
|
|
444
|
+
addToDict(workbooks, "isa.investigation.xlsx", ["ISA_Investigation", ARCtrl_ArcInvestigation__ArcInvestigation_toFsWorkbook_Static_Z720BD3FF(this$)]);
|
|
445
|
+
this$.StaticHash = (this$.GetLightHashCode() | 0);
|
|
446
|
+
iterate((s) => {
|
|
447
|
+
s.StaticHash = (s.GetLightHashCode() | 0);
|
|
448
|
+
addToDict(workbooks, Study_fileNameFromIdentifier(s.Identifier), ["ISA_Study", ARCtrl_ArcStudy__ArcStudy_toFsWorkbook_Static_Z4CEFA522(s)]);
|
|
449
|
+
if (s.DataMap != null) {
|
|
450
|
+
const dm = value_3(s.DataMap);
|
|
451
|
+
DataMap__set_StaticHash_Z524259A4(dm, safeHash(dm));
|
|
452
|
+
addToDict(workbooks, Study_datamapFileNameFromIdentifier(s.Identifier), ["ISA_Datamap", toFsWorkbook(dm)]);
|
|
453
|
+
}
|
|
454
|
+
}, this$.Studies);
|
|
455
|
+
iterate((a) => {
|
|
456
|
+
a.StaticHash = (a.GetLightHashCode() | 0);
|
|
457
|
+
addToDict(workbooks, Assay_fileNameFromIdentifier(a.Identifier), ["ISA_Assay", ARCtrl_ArcAssay__ArcAssay_toFsWorkbook_Static_Z2508BE4F(a)]);
|
|
458
|
+
if (a.DataMap != null) {
|
|
459
|
+
const dm_1 = value_3(a.DataMap);
|
|
460
|
+
DataMap__set_StaticHash_Z524259A4(dm_1, safeHash(dm_1));
|
|
461
|
+
addToDict(workbooks, Assay_datamapFileNameFromIdentifier(a.Identifier), ["ISA_Datamap", toFsWorkbook(dm_1)]);
|
|
462
|
+
}
|
|
463
|
+
}, this$.Assays);
|
|
464
|
+
iterate((w) => {
|
|
465
|
+
ArcWorkflow__set_StaticHash_Z524259A4(w, ArcWorkflow__GetLightHashCode(w));
|
|
466
|
+
addToDict(workbooks, Workflow_fileNameFromIdentifier(ArcWorkflow__get_Identifier(w)), ["ISA_Workflow", ARCtrl_ArcWorkflow__ArcWorkflow_toFsWorkbook_Static_Z1C75CB0E(w)]);
|
|
467
|
+
if (ArcWorkflow__get_DataMap(w) != null) {
|
|
468
|
+
const dm_2 = value_3(ArcWorkflow__get_DataMap(w));
|
|
469
|
+
DataMap__set_StaticHash_Z524259A4(dm_2, safeHash(dm_2));
|
|
470
|
+
addToDict(workbooks, Workflow_datamapFileNameFromIdentifier(ArcWorkflow__get_Identifier(w)), ["ISA_Datamap", toFsWorkbook(dm_2)]);
|
|
471
|
+
}
|
|
472
|
+
}, this$.Workflows);
|
|
473
|
+
iterate((r) => {
|
|
474
|
+
r.StaticHash = (r.GetLightHashCode() | 0);
|
|
475
|
+
addToDict(workbooks, Run_fileNameFromIdentifier(r.Identifier), ["ISA_Run", ARCtrl_ArcRun__ArcRun_toFsWorkbook_Static_Z3EFAF6F8(r)]);
|
|
476
|
+
if (r.DataMap != null) {
|
|
477
|
+
const dm_3 = value_3(r.DataMap);
|
|
478
|
+
DataMap__set_StaticHash_Z524259A4(dm_3, safeHash(dm_3));
|
|
479
|
+
addToDict(workbooks, Run_datamapFileNameFromIdentifier(r.Identifier), ["ISA_Datamap", toFsWorkbook(dm_3)]);
|
|
480
|
+
}
|
|
481
|
+
}, this$.Runs);
|
|
482
|
+
return map_1((fp) => {
|
|
483
|
+
const matchValue = Dictionary_tryGet(fp, workbooks);
|
|
484
|
+
if (matchValue == null) {
|
|
485
|
+
return Contract.createCreate(fp, "PlainText");
|
|
486
|
+
}
|
|
487
|
+
else {
|
|
488
|
+
const wb = value_3(matchValue)[1];
|
|
489
|
+
const dto = value_3(matchValue)[0];
|
|
490
|
+
return Contract.createCreate(fp, dto, wb);
|
|
491
|
+
}
|
|
492
|
+
}, this$._fs.Tree.ToFilePaths(true));
|
|
493
|
+
}
|
|
494
|
+
GetUpdateContracts(skipUpdateFS) {
|
|
495
|
+
const this$ = this;
|
|
496
|
+
if (this$.StaticHash === 0) {
|
|
497
|
+
this$.StaticHash = (this$.GetLightHashCode() | 0);
|
|
498
|
+
return this$.GetWriteContracts(unwrap(skipUpdateFS));
|
|
499
|
+
}
|
|
500
|
+
else {
|
|
501
|
+
return toArray(delay(() => {
|
|
502
|
+
const hash = this$.GetLightHashCode() | 0;
|
|
503
|
+
return append((this$.StaticHash !== hash) ? singleton(ARCtrl_ArcInvestigation__ArcInvestigation_ToUpdateContract(this$)) : empty(), delay(() => {
|
|
504
|
+
this$.StaticHash = (hash | 0);
|
|
505
|
+
return append(collect((s) => {
|
|
506
|
+
const hash_1 = s.GetLightHashCode() | 0;
|
|
507
|
+
return append((s.StaticHash === 0) ? ARCtrl_ArcStudy__ArcStudy_ToCreateContract_6FCE9E49(s, true) : ((s.StaticHash !== hash_1) ? singleton(ARCtrl_ArcStudy__ArcStudy_ToUpdateContract(s)) : empty()), delay(() => {
|
|
508
|
+
let dm_1;
|
|
509
|
+
s.StaticHash = (hash_1 | 0);
|
|
510
|
+
const matchValue = s.DataMap;
|
|
511
|
+
let matchResult, dm_2, dm_3;
|
|
512
|
+
if (matchValue != null) {
|
|
513
|
+
if (DataMap__get_StaticHash(value_3(matchValue)) === 0) {
|
|
514
|
+
matchResult = 0;
|
|
515
|
+
dm_2 = value_3(matchValue);
|
|
516
|
+
}
|
|
517
|
+
else if ((dm_1 = value_3(matchValue), DataMap__get_StaticHash(dm_1) !== safeHash(dm_1))) {
|
|
518
|
+
matchResult = 1;
|
|
519
|
+
dm_3 = value_3(matchValue);
|
|
520
|
+
}
|
|
521
|
+
else {
|
|
522
|
+
matchResult = 2;
|
|
523
|
+
}
|
|
524
|
+
}
|
|
525
|
+
else {
|
|
526
|
+
matchResult = 2;
|
|
527
|
+
}
|
|
528
|
+
switch (matchResult) {
|
|
529
|
+
case 0:
|
|
530
|
+
return append(singleton(ARCtrl_DataMap__DataMap_ToCreateContractForStudy_Z721C83C5(dm_2, s.Identifier)), delay(() => {
|
|
531
|
+
DataMap__set_StaticHash_Z524259A4(dm_2, safeHash(dm_2));
|
|
532
|
+
return empty();
|
|
533
|
+
}));
|
|
534
|
+
case 1:
|
|
535
|
+
return append(singleton(ARCtrl_DataMap__DataMap_ToUpdateContractForStudy_Z721C83C5(dm_3, s.Identifier)), delay(() => {
|
|
536
|
+
DataMap__set_StaticHash_Z524259A4(dm_3, safeHash(dm_3));
|
|
537
|
+
return empty();
|
|
538
|
+
}));
|
|
539
|
+
default: {
|
|
540
|
+
return empty();
|
|
541
|
+
}
|
|
542
|
+
}
|
|
543
|
+
}));
|
|
544
|
+
}, this$.Studies), delay(() => append(collect((a) => {
|
|
545
|
+
const hash_2 = a.GetLightHashCode() | 0;
|
|
546
|
+
return append((a.StaticHash === 0) ? ARCtrl_ArcAssay__ArcAssay_ToCreateContract_6FCE9E49(a, true) : ((a.StaticHash !== hash_2) ? singleton(ARCtrl_ArcAssay__ArcAssay_ToUpdateContract(a)) : empty()), delay(() => {
|
|
547
|
+
let dm_5;
|
|
548
|
+
a.StaticHash = (hash_2 | 0);
|
|
549
|
+
const matchValue_1 = a.DataMap;
|
|
550
|
+
let matchResult_1, dm_6, dm_7;
|
|
551
|
+
if (matchValue_1 != null) {
|
|
552
|
+
if (DataMap__get_StaticHash(value_3(matchValue_1)) === 0) {
|
|
553
|
+
matchResult_1 = 0;
|
|
554
|
+
dm_6 = value_3(matchValue_1);
|
|
555
|
+
}
|
|
556
|
+
else if ((dm_5 = value_3(matchValue_1), DataMap__get_StaticHash(dm_5) !== safeHash(dm_5))) {
|
|
557
|
+
matchResult_1 = 1;
|
|
558
|
+
dm_7 = value_3(matchValue_1);
|
|
559
|
+
}
|
|
560
|
+
else {
|
|
561
|
+
matchResult_1 = 2;
|
|
562
|
+
}
|
|
563
|
+
}
|
|
564
|
+
else {
|
|
565
|
+
matchResult_1 = 2;
|
|
566
|
+
}
|
|
567
|
+
switch (matchResult_1) {
|
|
568
|
+
case 0:
|
|
569
|
+
return append(singleton(ARCtrl_DataMap__DataMap_ToCreateContractForAssay_Z721C83C5(dm_6, a.Identifier)), delay(() => {
|
|
570
|
+
DataMap__set_StaticHash_Z524259A4(dm_6, safeHash(dm_6));
|
|
571
|
+
return empty();
|
|
572
|
+
}));
|
|
573
|
+
case 1:
|
|
574
|
+
return append(singleton(ARCtrl_DataMap__DataMap_ToUpdateContractForAssay_Z721C83C5(dm_7, a.Identifier)), delay(() => {
|
|
575
|
+
DataMap__set_StaticHash_Z524259A4(dm_7, safeHash(dm_7));
|
|
576
|
+
return empty();
|
|
577
|
+
}));
|
|
578
|
+
default: {
|
|
579
|
+
return empty();
|
|
580
|
+
}
|
|
581
|
+
}
|
|
582
|
+
}));
|
|
583
|
+
}, this$.Assays), delay(() => append(collect((w) => {
|
|
584
|
+
const hash_3 = ArcWorkflow__GetLightHashCode(w) | 0;
|
|
585
|
+
return append((ArcWorkflow__get_StaticHash(w) === 0) ? ARCtrl_ArcWorkflow__ArcWorkflow_ToCreateContract_6FCE9E49(w, true) : ((ArcWorkflow__get_StaticHash(w) !== hash_3) ? singleton(ARCtrl_ArcWorkflow__ArcWorkflow_ToUpdateContract(w)) : empty()), delay(() => {
|
|
586
|
+
let dm_9;
|
|
587
|
+
ArcWorkflow__set_StaticHash_Z524259A4(w, hash_3);
|
|
588
|
+
const matchValue_2 = ArcWorkflow__get_DataMap(w);
|
|
589
|
+
let matchResult_2, dm_10, dm_11;
|
|
590
|
+
if (matchValue_2 != null) {
|
|
591
|
+
if (DataMap__get_StaticHash(value_3(matchValue_2)) === 0) {
|
|
592
|
+
matchResult_2 = 0;
|
|
593
|
+
dm_10 = value_3(matchValue_2);
|
|
594
|
+
}
|
|
595
|
+
else if ((dm_9 = value_3(matchValue_2), DataMap__get_StaticHash(dm_9) !== safeHash(dm_9))) {
|
|
596
|
+
matchResult_2 = 1;
|
|
597
|
+
dm_11 = value_3(matchValue_2);
|
|
598
|
+
}
|
|
599
|
+
else {
|
|
600
|
+
matchResult_2 = 2;
|
|
601
|
+
}
|
|
602
|
+
}
|
|
603
|
+
else {
|
|
604
|
+
matchResult_2 = 2;
|
|
605
|
+
}
|
|
606
|
+
switch (matchResult_2) {
|
|
607
|
+
case 0:
|
|
608
|
+
return append(singleton(ARCtrl_DataMap__DataMap_ToCreateContractForWorkflow_Z721C83C5(dm_10, ArcWorkflow__get_Identifier(w))), delay(() => {
|
|
609
|
+
DataMap__set_StaticHash_Z524259A4(dm_10, safeHash(dm_10));
|
|
610
|
+
return empty();
|
|
611
|
+
}));
|
|
612
|
+
case 1:
|
|
613
|
+
return append(singleton(ARCtrl_DataMap__DataMap_ToUpdateContractForWorkflow_Z721C83C5(dm_11, ArcWorkflow__get_Identifier(w))), delay(() => {
|
|
614
|
+
DataMap__set_StaticHash_Z524259A4(dm_11, safeHash(dm_11));
|
|
615
|
+
return empty();
|
|
616
|
+
}));
|
|
617
|
+
default: {
|
|
618
|
+
return empty();
|
|
619
|
+
}
|
|
620
|
+
}
|
|
621
|
+
}));
|
|
622
|
+
}, this$.Workflows), delay(() => collect((r) => {
|
|
623
|
+
const hash_4 = r.GetLightHashCode() | 0;
|
|
624
|
+
return append((r.StaticHash === 0) ? ARCtrl_ArcRun__ArcRun_ToCreateContract_6FCE9E49(r, true) : ((r.StaticHash !== hash_4) ? singleton(ARCtrl_ArcRun__ArcRun_ToUpdateContract(r)) : empty()), delay(() => {
|
|
625
|
+
let dm_13;
|
|
626
|
+
r.StaticHash = (hash_4 | 0);
|
|
627
|
+
const matchValue_3 = r.DataMap;
|
|
628
|
+
let matchResult_3, dm_14, dm_15;
|
|
629
|
+
if (matchValue_3 != null) {
|
|
630
|
+
if (DataMap__get_StaticHash(value_3(matchValue_3)) === 0) {
|
|
631
|
+
matchResult_3 = 0;
|
|
632
|
+
dm_14 = value_3(matchValue_3);
|
|
633
|
+
}
|
|
634
|
+
else if ((dm_13 = value_3(matchValue_3), DataMap__get_StaticHash(dm_13) !== safeHash(dm_13))) {
|
|
635
|
+
matchResult_3 = 1;
|
|
636
|
+
dm_15 = value_3(matchValue_3);
|
|
637
|
+
}
|
|
638
|
+
else {
|
|
639
|
+
matchResult_3 = 2;
|
|
640
|
+
}
|
|
641
|
+
}
|
|
642
|
+
else {
|
|
643
|
+
matchResult_3 = 2;
|
|
644
|
+
}
|
|
645
|
+
switch (matchResult_3) {
|
|
646
|
+
case 0:
|
|
647
|
+
return append(singleton(ARCtrl_DataMap__DataMap_ToCreateContractForRun_Z721C83C5(dm_14, r.Identifier)), delay(() => {
|
|
648
|
+
DataMap__set_StaticHash_Z524259A4(dm_14, safeHash(dm_14));
|
|
649
|
+
return empty();
|
|
650
|
+
}));
|
|
651
|
+
case 1:
|
|
652
|
+
return append(singleton(ARCtrl_DataMap__DataMap_ToUpdateContractForRun_Z721C83C5(dm_15, r.Identifier)), delay(() => {
|
|
653
|
+
DataMap__set_StaticHash_Z524259A4(dm_15, safeHash(dm_15));
|
|
654
|
+
return empty();
|
|
655
|
+
}));
|
|
656
|
+
default: {
|
|
657
|
+
return empty();
|
|
658
|
+
}
|
|
659
|
+
}
|
|
660
|
+
}));
|
|
661
|
+
}, this$.Runs)))))));
|
|
662
|
+
}));
|
|
663
|
+
}));
|
|
664
|
+
}
|
|
665
|
+
}
|
|
666
|
+
GetGitInitContracts(branch, repositoryAddress, defaultGitignore) {
|
|
667
|
+
const defaultGitignore_1 = defaultArg(defaultGitignore, false);
|
|
668
|
+
return toArray(delay(() => append(singleton(Init_createInitContract_6DFDD678(unwrap(branch))), delay(() => append(singleton(gitattributesContract), delay(() => append(defaultGitignore_1 ? singleton(gitignoreContract) : empty(), delay(() => ((repositoryAddress != null) ? singleton(Init_createAddRemoteContract_Z721C83C5(value_3(repositoryAddress))) : empty())))))))));
|
|
669
|
+
}
|
|
670
|
+
static getCloneContract(remoteUrl, merge, branch, token, nolfs) {
|
|
671
|
+
return Clone_createCloneContract_5000466F(remoteUrl, unwrap(merge), unwrap(branch), unwrap(token), unwrap(nolfs));
|
|
672
|
+
}
|
|
673
|
+
Copy() {
|
|
674
|
+
const this$ = this;
|
|
675
|
+
const nextAssays = [];
|
|
676
|
+
const nextStudies = [];
|
|
677
|
+
const nextWorkflows = [];
|
|
678
|
+
const nextRuns = [];
|
|
679
|
+
let enumerator = getEnumerator(this$.Assays);
|
|
680
|
+
try {
|
|
681
|
+
while (enumerator["System.Collections.IEnumerator.MoveNext"]()) {
|
|
682
|
+
const assay = enumerator["System.Collections.Generic.IEnumerator`1.get_Current"]();
|
|
683
|
+
const copy = assay.Copy();
|
|
684
|
+
void (nextAssays.push(copy));
|
|
685
|
+
}
|
|
686
|
+
}
|
|
687
|
+
finally {
|
|
688
|
+
disposeSafe(enumerator);
|
|
689
|
+
}
|
|
690
|
+
let enumerator_1 = getEnumerator(this$.Studies);
|
|
691
|
+
try {
|
|
692
|
+
while (enumerator_1["System.Collections.IEnumerator.MoveNext"]()) {
|
|
693
|
+
const study = enumerator_1["System.Collections.Generic.IEnumerator`1.get_Current"]();
|
|
694
|
+
const copy_1 = study.Copy();
|
|
695
|
+
void (nextStudies.push(copy_1));
|
|
696
|
+
}
|
|
697
|
+
}
|
|
698
|
+
finally {
|
|
699
|
+
disposeSafe(enumerator_1);
|
|
700
|
+
}
|
|
701
|
+
let enumerator_2 = getEnumerator(this$.Workflows);
|
|
702
|
+
try {
|
|
703
|
+
while (enumerator_2["System.Collections.IEnumerator.MoveNext"]()) {
|
|
704
|
+
const workflow = enumerator_2["System.Collections.Generic.IEnumerator`1.get_Current"]();
|
|
705
|
+
void (nextWorkflows.push(ArcWorkflow__Copy_6FCE9E49(workflow)));
|
|
706
|
+
}
|
|
707
|
+
}
|
|
708
|
+
finally {
|
|
709
|
+
disposeSafe(enumerator_2);
|
|
710
|
+
}
|
|
711
|
+
let enumerator_3 = getEnumerator(this$.Runs);
|
|
712
|
+
try {
|
|
713
|
+
while (enumerator_3["System.Collections.IEnumerator.MoveNext"]()) {
|
|
714
|
+
const run = enumerator_3["System.Collections.Generic.IEnumerator`1.get_Current"]();
|
|
715
|
+
const copy_3 = run.Copy();
|
|
716
|
+
void (nextRuns.push(copy_3));
|
|
717
|
+
}
|
|
718
|
+
}
|
|
719
|
+
finally {
|
|
720
|
+
disposeSafe(enumerator_3);
|
|
721
|
+
}
|
|
722
|
+
const nextComments = ResizeArray_map((c) => c.Copy(), this$.Comments);
|
|
723
|
+
const nextRemarks = ResizeArray_map((c_1) => c_1.Copy(), this$.Remarks);
|
|
724
|
+
const nextContacts = ResizeArray_map((c_2) => c_2.Copy(), this$.Contacts);
|
|
725
|
+
const nextPublications = ResizeArray_map((c_3) => c_3.Copy(), this$.Publications);
|
|
726
|
+
const nextOntologySourceReferences = ResizeArray_map((c_4) => c_4.Copy(), this$.OntologySourceReferences);
|
|
727
|
+
const nextStudyIdentifiers = Array.from(this$.RegisteredStudyIdentifiers);
|
|
728
|
+
const fsCopy = this$._fs.Copy();
|
|
729
|
+
return new ARC(this$.Identifier, unwrap(this$.Title), unwrap(this$.Description), unwrap(this$.SubmissionDate), unwrap(this$.PublicReleaseDate), nextOntologySourceReferences, nextPublications, nextContacts, nextAssays, nextStudies, nextWorkflows, nextRuns, nextStudyIdentifiers, nextComments, nextRemarks, this$._cwl, fsCopy);
|
|
730
|
+
}
|
|
731
|
+
GetRegisteredPayload(IgnoreHidden) {
|
|
732
|
+
let tree, paths, array_3;
|
|
733
|
+
const this$ = this;
|
|
734
|
+
const copy = this$.Copy();
|
|
735
|
+
const registeredStudies = copy.Studies.slice();
|
|
736
|
+
const registeredAssays = concat(map_1((s) => s.RegisteredAssays.slice(), registeredStudies));
|
|
737
|
+
const includeFiles = unionMany([ofSeq(["isa.investigation.xlsx", "README.md"], {
|
|
738
|
+
Compare: comparePrimitives,
|
|
739
|
+
}), unionMany(map_1((s_1) => {
|
|
740
|
+
const studyFoldername = `${"studies"}/${s_1.Identifier}`;
|
|
741
|
+
return ofSeq(toList(delay(() => append(singleton(`${studyFoldername}/${"isa.study.xlsx"}`), delay(() => append(singleton(`${studyFoldername}/${"README.md"}`), delay(() => collect((table) => collect((kv) => {
|
|
742
|
+
const textValue = kv[1].ToFreeTextCell().AsFreeText;
|
|
743
|
+
return append(singleton(textValue), delay(() => append(singleton(`${studyFoldername}/${"resources"}/${textValue}`), delay(() => singleton(`${studyFoldername}/${"protocols"}/${textValue}`)))));
|
|
744
|
+
}, table.Values), s_1.Tables))))))), {
|
|
745
|
+
Compare: comparePrimitives,
|
|
746
|
+
});
|
|
747
|
+
}, registeredStudies), {
|
|
748
|
+
Compare: comparePrimitives,
|
|
749
|
+
}), unionMany(map_1((a) => {
|
|
750
|
+
const assayFoldername = `${"assays"}/${a.Identifier}`;
|
|
751
|
+
return ofSeq(toList(delay(() => append(singleton(`${assayFoldername}/${"isa.assay.xlsx"}`), delay(() => append(singleton(`${assayFoldername}/${"README.md"}`), delay(() => collect((table_1) => collect((kv_1) => {
|
|
752
|
+
const textValue_1 = kv_1[1].ToFreeTextCell().AsFreeText;
|
|
753
|
+
return append(singleton(textValue_1), delay(() => append(singleton(`${assayFoldername}/${"dataset"}/${textValue_1}`), delay(() => singleton(`${assayFoldername}/${"protocols"}/${textValue_1}`)))));
|
|
754
|
+
}, table_1.Values), a.Tables))))))), {
|
|
755
|
+
Compare: comparePrimitives,
|
|
756
|
+
});
|
|
757
|
+
}, registeredAssays), {
|
|
758
|
+
Compare: comparePrimitives,
|
|
759
|
+
})], {
|
|
760
|
+
Compare: comparePrimitives,
|
|
761
|
+
});
|
|
762
|
+
const ignoreHidden = defaultArg(IgnoreHidden, true);
|
|
763
|
+
const fsCopy = this$._fs.Copy();
|
|
764
|
+
return defaultArg(bind((tree_1) => {
|
|
765
|
+
if (ignoreHidden) {
|
|
766
|
+
return FileSystemTree.filterFolders((n_1) => !n_1.startsWith("."))(tree_1);
|
|
767
|
+
}
|
|
768
|
+
else {
|
|
769
|
+
return tree_1;
|
|
770
|
+
}
|
|
771
|
+
}, (tree = ((paths = ((array_3 = FileSystemTree.toFilePaths()(fsCopy.Tree), array_3.filter((p) => {
|
|
772
|
+
if (p.startsWith("workflows") ? true : p.startsWith("runs")) {
|
|
773
|
+
return true;
|
|
774
|
+
}
|
|
775
|
+
else {
|
|
776
|
+
return FSharpSet__Contains(includeFiles, p);
|
|
777
|
+
}
|
|
778
|
+
}))), FileSystemTree.fromFilePaths(paths))), ignoreHidden ? FileSystemTree.filterFiles((n) => !n.startsWith("."))(tree) : tree)), FileSystemTree.fromFilePaths([]));
|
|
779
|
+
}
|
|
780
|
+
GetAdditionalPayload(IgnoreHidden) {
|
|
781
|
+
let tree, paths, array;
|
|
782
|
+
const this$ = this;
|
|
783
|
+
const ignoreHidden = defaultArg(IgnoreHidden, true);
|
|
784
|
+
const registeredPayload = ofSeq(FileSystemTree.toFilePaths()(this$.GetRegisteredPayload()), {
|
|
785
|
+
Compare: comparePrimitives,
|
|
786
|
+
});
|
|
787
|
+
return defaultArg(bind((tree_1) => {
|
|
788
|
+
if (ignoreHidden) {
|
|
789
|
+
return FileSystemTree.filterFolders((n_1) => !n_1.startsWith("."))(tree_1);
|
|
790
|
+
}
|
|
791
|
+
else {
|
|
792
|
+
return tree_1;
|
|
793
|
+
}
|
|
794
|
+
}, (tree = ((paths = ((array = FileSystemTree.toFilePaths()(this$._fs.Copy().Tree), array.filter((p) => !FSharpSet__Contains(registeredPayload, p)))), FileSystemTree.fromFilePaths(paths))), ignoreHidden ? FileSystemTree.filterFiles((n) => !n.startsWith("."))(tree) : tree)), FileSystemTree.fromFilePaths([]));
|
|
795
|
+
}
|
|
796
|
+
static get DefaultContracts() {
|
|
797
|
+
return ofSeq_1([[".gitignore", gitignoreContract], [".gitattributes", gitattributesContract]], {
|
|
798
|
+
Compare: comparePrimitives,
|
|
799
|
+
});
|
|
800
|
+
}
|
|
801
|
+
static fromDeprecatedROCrateJsonString(s) {
|
|
802
|
+
let arg;
|
|
803
|
+
try {
|
|
804
|
+
const s_1 = replace(s, "bio:additionalProperty", "sdo:additionalProperty");
|
|
805
|
+
let isa;
|
|
806
|
+
const matchValue = fromString(ROCrate_get_decoderDeprecated(), s_1);
|
|
807
|
+
if (matchValue.tag === /* Error */ 1) {
|
|
808
|
+
throw new Error((arg = matchValue.fields[0], toText(printf("Error decoding string: %O"))(arg)));
|
|
809
|
+
}
|
|
810
|
+
else {
|
|
811
|
+
isa = matchValue.fields[0];
|
|
812
|
+
}
|
|
813
|
+
return ARC.fromArcInvestigation(isa);
|
|
814
|
+
}
|
|
815
|
+
catch (ex) {
|
|
816
|
+
const arg_1 = ex.message;
|
|
817
|
+
return toFail(printf("Could not parse deprecated ARC-RO-Crate metadata: \n%s"))(arg_1);
|
|
818
|
+
}
|
|
819
|
+
}
|
|
820
|
+
static fromROCrateJsonString(s) {
|
|
821
|
+
let arg;
|
|
822
|
+
try {
|
|
823
|
+
let isa;
|
|
824
|
+
const matchValue = fromString(ROCrate_get_decoder(), s);
|
|
825
|
+
if (matchValue.tag === /* Error */ 1) {
|
|
826
|
+
throw new Error((arg = matchValue.fields[0], toText(printf("Error decoding string: %O"))(arg)));
|
|
827
|
+
}
|
|
828
|
+
else {
|
|
829
|
+
isa = matchValue.fields[0];
|
|
830
|
+
}
|
|
831
|
+
return ARC.fromArcInvestigation(isa);
|
|
832
|
+
}
|
|
833
|
+
catch (ex) {
|
|
834
|
+
const arg_1 = ex.message;
|
|
835
|
+
return toFail(printf("Could not parse ARC-RO-Crate metadata: \n%s"))(arg_1);
|
|
836
|
+
}
|
|
837
|
+
}
|
|
838
|
+
ToROCrateJsonString(spaces) {
|
|
839
|
+
const this$ = this;
|
|
840
|
+
this$.MakeDataFilesAbsolute();
|
|
841
|
+
const value = ROCrate_encoder_8A8D439(this$);
|
|
842
|
+
return toString(defaultSpaces(spaces), value);
|
|
843
|
+
}
|
|
844
|
+
static toROCrateJsonString(spaces) {
|
|
845
|
+
return (obj) => obj.ToROCrateJsonString(unwrap(spaces));
|
|
846
|
+
}
|
|
847
|
+
GetValidationPackagesConfigWriteContract(vpc) {
|
|
848
|
+
const this$ = this;
|
|
849
|
+
const paths = this$.FileSystem.Tree.ToFilePaths();
|
|
850
|
+
if (!contains_2(ValidationPackagesConfigHelper_ConfigFilePath, paths, {
|
|
851
|
+
Equals: (x, y) => (x === y),
|
|
852
|
+
GetHashCode: stringHash,
|
|
853
|
+
})) {
|
|
854
|
+
const filePaths = append_1([ValidationPackagesConfigHelper_ConfigFilePath], paths);
|
|
855
|
+
this$.SetFilePaths(filePaths);
|
|
856
|
+
}
|
|
857
|
+
return ARCtrl_ValidationPackages_ValidationPackagesConfig__ValidationPackagesConfig_toCreateContract_Static_724DAE55(vpc);
|
|
858
|
+
}
|
|
859
|
+
GetValidationPackagesConfigDeleteContract(vpc) {
|
|
860
|
+
const this$ = this;
|
|
861
|
+
const paths = this$.FileSystem.Tree.ToFilePaths();
|
|
862
|
+
if (contains_2(ValidationPackagesConfigHelper_ConfigFilePath, paths, {
|
|
863
|
+
Equals: (x, y) => (x === y),
|
|
864
|
+
GetHashCode: stringHash,
|
|
865
|
+
})) {
|
|
866
|
+
const filePaths = paths.filter((p) => !(p === ValidationPackagesConfigHelper_ConfigFilePath));
|
|
867
|
+
this$.SetFilePaths(filePaths);
|
|
868
|
+
}
|
|
869
|
+
return ARCtrl_ValidationPackages_ValidationPackagesConfig__ValidationPackagesConfig_toDeleteContract_Static_724DAE55(vpc);
|
|
870
|
+
}
|
|
871
|
+
GetValidationPackagesConfigReadContract() {
|
|
872
|
+
return ValidationPackagesConfigHelper_ReadContract;
|
|
873
|
+
}
|
|
874
|
+
GetValidationPackagesConfigFromReadContract(contract) {
|
|
875
|
+
return ARCtrl_ValidationPackages_ValidationPackagesConfig__ValidationPackagesConfig_tryFromReadContract_Static_7570923F(contract);
|
|
876
|
+
}
|
|
877
|
+
ToFilePaths(removeRoot, skipUpdateFS) {
|
|
878
|
+
const this$ = this;
|
|
879
|
+
if (!defaultArg(skipUpdateFS, false)) {
|
|
880
|
+
this$.UpdateFileSystem();
|
|
881
|
+
}
|
|
882
|
+
return this$.FileSystem.Tree.ToFilePaths(unwrap(removeRoot));
|
|
883
|
+
}
|
|
884
|
+
}
|
|
885
|
+
export function ARC_$reflection() {
|
|
886
|
+
return class_type("ARCtrl.ARC", undefined, ARC, ArcInvestigation_$reflection());
|
|
887
|
+
}
|
|
888
|
+
export function ARC_$ctor_5BB4A6F7(identifier, title, description, submissionDate, publicReleaseDate, ontologySourceReferences, publications, contacts, assays, studies, workflows, runs, registeredStudyIdentifiers, comments, remarks, cwl, fs) {
|
|
889
|
+
return new ARC(identifier, title, description, submissionDate, publicReleaseDate, ontologySourceReferences, publications, contacts, assays, studies, workflows, runs, registeredStudyIdentifiers, comments, remarks, cwl, fs);
|
|
890
|
+
}
|
|
891
|
+
export function ARCAux_getArcAssaysFromContracts(contracts) {
|
|
892
|
+
return choose(ARCtrl_ArcAssay__ArcAssay_tryFromReadContract_Static_7570923F, contracts);
|
|
893
|
+
}
|
|
894
|
+
export function ARCAux_getArcStudiesFromContracts(contracts) {
|
|
895
|
+
return choose(ARCtrl_ArcStudy__ArcStudy_tryFromReadContract_Static_7570923F, contracts);
|
|
896
|
+
}
|
|
897
|
+
export function ARCAux_getArcWorkflowsFromContracts(contracts) {
|
|
898
|
+
return choose(ARCtrl_ArcWorkflow__ArcWorkflow_tryFromReadContract_Static_7570923F, contracts);
|
|
899
|
+
}
|
|
900
|
+
export function ARCAux_getArcRunsFromContracts(contracts) {
|
|
901
|
+
return choose(ARCtrl_ArcRun__ArcRun_tryFromReadContract_Static_7570923F, contracts);
|
|
902
|
+
}
|
|
903
|
+
export function ARCAux_getAssayDataMapFromContracts(assayIdentifier, contracts) {
|
|
904
|
+
return tryPick((c) => ARCtrl_DataMap__DataMap_tryFromReadContractForAssay_Static(assayIdentifier, c), contracts);
|
|
905
|
+
}
|
|
906
|
+
export function ARCAux_getStudyDataMapFromContracts(studyIdentifier, contracts) {
|
|
907
|
+
return tryPick((c) => ARCtrl_DataMap__DataMap_tryFromReadContractForStudy_Static(studyIdentifier, c), contracts);
|
|
908
|
+
}
|
|
909
|
+
export function ARCAux_getWorkflowDataMapFromContracts(workflowIdentifier, contracts) {
|
|
910
|
+
return tryPick((c) => ARCtrl_DataMap__DataMap_tryFromReadContractForWorkflow_Static(workflowIdentifier, c), contracts);
|
|
911
|
+
}
|
|
912
|
+
export function ARCAux_getRunDataMapFromContracts(runIdentifier, contracts) {
|
|
913
|
+
return tryPick((c) => ARCtrl_DataMap__DataMap_tryFromReadContractForRun_Static(runIdentifier, c), contracts);
|
|
914
|
+
}
|
|
915
|
+
export function ARCAux_getArcInvestigationFromContracts(contracts) {
|
|
916
|
+
return exactlyOne(choose(ARCtrl_ArcInvestigation__ArcInvestigation_tryFromReadContract_Static_7570923F, contracts));
|
|
917
|
+
}
|
|
918
|
+
export function ARCAux_updateFSByISA(isa, fs) {
|
|
919
|
+
let assaysFolder;
|
|
920
|
+
const assays = map_1((a) => FileSystemTree.createAssayFolder(a.Identifier, a.DataMap != null), toArray(isa.Assays));
|
|
921
|
+
assaysFolder = FileSystemTree.createAssaysFolder(assays);
|
|
922
|
+
let studiesFolder;
|
|
923
|
+
const studies = map_1((s) => FileSystemTree.createStudyFolder(s.Identifier, s.DataMap != null), toArray(isa.Studies));
|
|
924
|
+
studiesFolder = FileSystemTree.createStudiesFolder(studies);
|
|
925
|
+
let workflowsFolder;
|
|
926
|
+
const workflows = map_1((w) => FileSystemTree.createWorkflowFolder(ArcWorkflow__get_Identifier(w), ArcWorkflow__get_DataMap(w) != null), toArray(isa.Workflows));
|
|
927
|
+
workflowsFolder = FileSystemTree.createWorkflowsFolder(workflows);
|
|
928
|
+
let runsFolder;
|
|
929
|
+
const runs = map_1((r) => FileSystemTree.createRunFolder(r.Identifier, r.DataMap != null), toArray(isa.Runs));
|
|
930
|
+
runsFolder = FileSystemTree.createRunsFolder(runs);
|
|
931
|
+
const investigation = FileSystemTree.createInvestigationFile();
|
|
932
|
+
let tree_1;
|
|
933
|
+
const tree = FileSystemTree.createRootFolder([investigation, assaysFolder, studiesFolder, workflowsFolder, runsFolder]);
|
|
934
|
+
tree_1 = FileSystem.create({
|
|
935
|
+
tree: tree,
|
|
936
|
+
});
|
|
937
|
+
return fs.Union(tree_1);
|
|
938
|
+
}
|
|
939
|
+
export function ARCAux_updateFSByCWL(cwl, fs) {
|
|
940
|
+
const workflows = FileSystemTree.createWorkflowsFolder([]);
|
|
941
|
+
const runs = FileSystemTree.createRunsFolder([]);
|
|
942
|
+
let tree_1;
|
|
943
|
+
const tree = FileSystemTree.createRootFolder([workflows, runs]);
|
|
944
|
+
tree_1 = FileSystem.create({
|
|
945
|
+
tree: tree,
|
|
946
|
+
});
|
|
947
|
+
return fs.Union(tree_1);
|
|
948
|
+
}
|