@nfdi4plants/arctrl 1.0.7 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ARC.js +47 -11
- package/Contract/Contract.js +3 -3
- package/Contracts/Contracts.ArcTypes.js +30 -18
- package/Contracts/Contracts.Git.js +4 -4
- package/FileSystem/Commit.js +2 -2
- package/FileSystem/FileSystem.js +4 -4
- package/FileSystem/FileSystemTree.js +8 -8
- package/FileSystem/Path.js +2 -2
- package/FileSystemTree.js +1 -1
- package/ISA/ISA/ArcTypes/ArcTable.js +23 -31
- package/ISA/ISA/ArcTypes/ArcTableAux.js +27 -16
- package/ISA/ISA/ArcTypes/ArcTables.js +11 -11
- package/ISA/ISA/ArcTypes/ArcTypes.js +118 -83
- package/ISA/ISA/ArcTypes/CompositeCell.js +4 -4
- package/ISA/ISA/ArcTypes/CompositeColumn.js +8 -7
- package/ISA/ISA/ArcTypes/CompositeHeader.js +5 -5
- package/ISA/ISA/ArcTypes/CompositeRow.js +1 -1
- package/ISA/ISA/Builder/Types.js +5 -5
- package/ISA/ISA/Fable.js +6 -6
- package/ISA/ISA/Helper.js +15 -13
- package/ISA/ISA/Identifier.js +1 -1
- package/ISA/ISA/JsonTypes/Assay.js +8 -8
- package/ISA/ISA/JsonTypes/AssayMaterials.js +4 -4
- package/ISA/ISA/JsonTypes/ColumnIndex.js +5 -5
- package/ISA/ISA/JsonTypes/Comment.js +3 -3
- package/ISA/ISA/JsonTypes/CommentList.js +4 -4
- package/ISA/ISA/JsonTypes/Component.js +4 -4
- package/ISA/ISA/JsonTypes/Data.js +4 -4
- package/ISA/ISA/JsonTypes/DataFile.js +2 -2
- package/ISA/ISA/JsonTypes/Factor.js +6 -6
- package/ISA/ISA/JsonTypes/FactorValue.js +5 -5
- package/ISA/ISA/JsonTypes/Investigation.js +6 -6
- package/ISA/ISA/JsonTypes/Material.js +5 -5
- package/ISA/ISA/JsonTypes/MaterialAttribute.js +3 -3
- package/ISA/ISA/JsonTypes/MaterialAttributeValue.js +5 -5
- package/ISA/ISA/JsonTypes/MaterialType.js +2 -2
- package/ISA/ISA/JsonTypes/OntologyAnnotation.js +6 -6
- package/ISA/ISA/JsonTypes/OntologySourceReference.js +6 -6
- package/ISA/ISA/JsonTypes/Person.js +23 -8
- package/ISA/ISA/JsonTypes/Process.js +13 -13
- package/ISA/ISA/JsonTypes/ProcessInput.js +5 -5
- package/ISA/ISA/JsonTypes/ProcessOutput.js +5 -5
- package/ISA/ISA/JsonTypes/ProcessParameterValue.js +5 -5
- package/ISA/ISA/JsonTypes/ProcessSequence.js +6 -6
- package/ISA/ISA/JsonTypes/Protocol.js +6 -6
- package/ISA/ISA/JsonTypes/ProtocolParameter.js +3 -3
- package/ISA/ISA/JsonTypes/Publication.js +6 -6
- package/ISA/ISA/JsonTypes/Sample.js +5 -5
- package/ISA/ISA/JsonTypes/Source.js +5 -5
- package/ISA/ISA/JsonTypes/Study.js +8 -8
- package/ISA/ISA/JsonTypes/StudyMaterials.js +4 -4
- package/ISA/ISA/JsonTypes/Value.js +22 -29
- package/ISA/ISA/Regex.js +3 -3
- package/ISA/ISA.Json/ArcTypes/ArcAssay.js +157 -65
- package/ISA/ISA.Json/ArcTypes/ArcInvestigation.js +78 -49
- package/ISA/ISA.Json/ArcTypes/ArcStudy.js +136 -24
- package/ISA/ISA.Json/ArcTypes/ArcTable.js +183 -21
- package/ISA/ISA.Json/ArcTypes/CellTable.js +40 -0
- package/ISA/ISA.Json/ArcTypes/CompositeCell.js +34 -23
- package/ISA/ISA.Json/ArcTypes/CompositeHeader.js +18 -46
- package/ISA/ISA.Json/ArcTypes/IOType.js +11 -13
- package/ISA/ISA.Json/ArcTypes/OATable.js +42 -0
- package/ISA/ISA.Json/Assay.js +71 -47
- package/ISA/ISA.Json/Comment.js +31 -35
- package/ISA/ISA.Json/ConverterOptions.js +19 -1
- package/ISA/ISA.Json/Data.js +119 -137
- package/ISA/ISA.Json/Decode.js +51 -36
- package/ISA/ISA.Json/Factor.js +90 -90
- package/ISA/ISA.Json/GEncode.js +31 -6
- package/ISA/ISA.Json/Investigation.js +54 -79
- package/ISA/ISA.Json/Material.js +103 -104
- package/ISA/ISA.Json/Ontology.js +99 -92
- package/ISA/ISA.Json/Person.js +47 -65
- package/ISA/ISA.Json/Process.js +144 -130
- package/ISA/ISA.Json/Protocol.js +144 -105
- package/ISA/ISA.Json/Publication.js +34 -40
- package/ISA/ISA.Json/StringTable.js +44 -0
- package/ISA/ISA.Json/Study.js +70 -96
- package/ISA/ISA.Json/context/rocrate/isa_assay_context.js +34 -0
- package/ISA/ISA.Json/context/rocrate/isa_comment_context.js +23 -0
- package/ISA/ISA.Json/context/rocrate/isa_component_context.js +24 -0
- package/ISA/ISA.Json/context/rocrate/isa_data_context.js +25 -0
- package/ISA/ISA.Json/context/rocrate/isa_factor_context.js +25 -0
- package/ISA/ISA.Json/context/rocrate/isa_factor_value_context.js +25 -0
- package/ISA/ISA.Json/context/rocrate/isa_investigation_context.js +33 -0
- package/ISA/ISA.Json/context/rocrate/isa_material_attribute_context.js +23 -0
- package/ISA/ISA.Json/context/rocrate/isa_material_attribute_value_context.js +25 -0
- package/ISA/ISA.Json/context/rocrate/isa_material_context.js +26 -0
- package/ISA/ISA.Json/context/rocrate/isa_ontology_annotation_context.js +25 -0
- package/ISA/ISA.Json/context/rocrate/isa_ontology_source_reference_context.js +26 -0
- package/ISA/ISA.Json/context/rocrate/isa_organization_context.js +22 -0
- package/ISA/ISA.Json/context/rocrate/isa_person_context.js +31 -0
- package/ISA/ISA.Json/context/rocrate/isa_process_context.js +31 -0
- package/ISA/ISA.Json/context/rocrate/isa_process_parameter_value_context.js +25 -0
- package/ISA/ISA.Json/context/rocrate/isa_protocol_context.js +30 -0
- package/ISA/ISA.Json/context/rocrate/isa_protocol_parameter_context.js +23 -0
- package/ISA/ISA.Json/context/rocrate/isa_publication_context.js +27 -0
- package/ISA/ISA.Json/context/rocrate/isa_sample_context.js +26 -0
- package/ISA/ISA.Json/context/rocrate/isa_source_context.js +25 -0
- package/ISA/ISA.Json/context/rocrate/isa_study_context.js +42 -0
- package/ISA/ISA.Json/context/rocrate/rocrate_context.js +25 -0
- package/ISA/ISA.Spreadsheet/AnnotationTable/ArcTable.js +56 -43
- package/ISA/ISA.Spreadsheet/AnnotationTable/CompositeCell.js +3 -3
- package/ISA/ISA.Spreadsheet/AnnotationTable/CompositeColumn.js +11 -11
- package/ISA/ISA.Spreadsheet/AnnotationTable/CompositeHeader.js +5 -5
- package/ISA/ISA.Spreadsheet/ArcAssay.js +100 -88
- package/ISA/ISA.Spreadsheet/ArcInvestigation.js +12 -12
- package/ISA/ISA.Spreadsheet/ArcStudy.js +36 -24
- package/ISA/ISA.Spreadsheet/CollectionAux.js +8 -8
- package/ISA/ISA.Spreadsheet/Metadata/Assays.js +5 -5
- package/ISA/ISA.Spreadsheet/Metadata/Comment.js +31 -20
- package/ISA/ISA.Spreadsheet/Metadata/Contacts.js +5 -5
- package/ISA/ISA.Spreadsheet/Metadata/Conversions.js +5 -5
- package/ISA/ISA.Spreadsheet/Metadata/DesignDescriptors.js +1 -1
- package/ISA/ISA.Spreadsheet/Metadata/Factors.js +5 -5
- package/ISA/ISA.Spreadsheet/Metadata/OntologyAnnotation.js +5 -5
- package/ISA/ISA.Spreadsheet/Metadata/OntologySourceReference.js +5 -5
- package/ISA/ISA.Spreadsheet/Metadata/Protocols.js +5 -5
- package/ISA/ISA.Spreadsheet/Metadata/Publication.js +5 -5
- package/ISA/ISA.Spreadsheet/Metadata/SparseTable.js +28 -23
- package/ISA/ISA.Spreadsheet/Metadata/Study.js +8 -8
- package/README.md +20 -3
- package/SemVer.js +6 -6
- package/Templates/Template.Json.js +43 -36
- package/Templates/Template.Spreadsheet.js +12 -12
- package/Templates/Template.Web.js +4 -4
- package/Templates/Template.js +7 -7
- package/Templates/Templates.js +7 -7
- package/WebRequest/WebRequest.Node.js +15 -0
- package/WebRequest/WebRequest.js +10 -29
- package/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +7 -7
- package/fable_modules/Fable.Promise.2.2.2/Promise.fs.js +3 -3
- package/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +8 -8
- package/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +2 -2
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Cells/FsCell.fs.js +14 -14
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Cells/FsCellsCollection.fs.js +6 -6
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/CellBuilder.fs.js +4 -4
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/ColumnBuilder.fs.js +3 -3
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/DSL.fs.js +2 -2
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/Expression.fs.js +1 -1
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/RowBuilder.fs.js +3 -3
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/SheetBuilder.fs.js +3 -3
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/TableBuilder.fs.js +3 -3
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/Transform.fs.js +6 -6
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/Types.fs.js +4 -4
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/WorkbookBuilder.fs.js +3 -3
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/FsAddress.fs +22 -8
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/FsAddress.fs.js +24 -14
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/FsColumn.fs.js +3 -3
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/FsRow.fs.js +3 -3
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/FsWorkbook.fs.js +6 -6
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/FsWorksheet.fs +12 -6
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/FsWorksheet.fs.js +21 -17
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Ranges/FsRange.fs.js +3 -3
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Ranges/FsRangeAddress.fs.js +4 -3
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Ranges/FsRangeBase.fs.js +3 -3
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Ranges/FsRangeColumn.fs.js +3 -3
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Ranges/FsRangeRow.fs.js +1 -1
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/SheetBuilder.fs.js +8 -8
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Tables/FsTable.fs.js +7 -7
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Tables/FsTableField.fs.js +4 -4
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Tables/FsTableRow.fs.js +1 -1
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/obj/Release/netstandard2.0/FsSpreadsheet.AssemblyInfo.fs +3 -3
- package/fable_modules/Thoth.Json.Core.0.2.1/Decode.fs +1390 -0
- package/fable_modules/Thoth.Json.Core.0.2.1/Decode.fs.js +1230 -0
- package/fable_modules/Thoth.Json.Core.0.2.1/Encode.fs +233 -0
- package/fable_modules/Thoth.Json.Core.0.2.1/Encode.fs.js +113 -0
- package/fable_modules/Thoth.Json.Core.0.2.1/Thoth.Json.Core.fableproj +28 -0
- package/fable_modules/Thoth.Json.Core.0.2.1/Types.fs +76 -0
- package/fable_modules/Thoth.Json.Core.0.2.1/Types.fs.js +33 -0
- package/fable_modules/Thoth.Json.Core.0.2.1/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +3 -0
- package/fable_modules/{Thoth.Json.10.1.0/obj/Release/netstandard2.0/Thoth.Json.AssemblyInfo.fs → Thoth.Json.Core.0.2.1/obj/Debug/netstandard2.0/Thoth.Json.Core.AssemblyInfo.fs} +8 -7
- package/fable_modules/Thoth.Json.JavaScript.0.1.0/Decode.fs +79 -0
- package/fable_modules/Thoth.Json.JavaScript.0.1.0/Decode.fs.js +85 -0
- package/fable_modules/Thoth.Json.JavaScript.0.1.0/Encode.fs +32 -0
- package/fable_modules/Thoth.Json.JavaScript.0.1.0/Encode.fs.js +45 -0
- package/fable_modules/Thoth.Json.JavaScript.0.1.0/Thoth.Json.JavaScript.fableproj +21 -0
- package/fable_modules/Thoth.Json.JavaScript.0.1.0/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +3 -0
- package/fable_modules/Thoth.Json.JavaScript.0.1.0/obj/Debug/netstandard2.0/Thoth.Json.JavaScript.AssemblyInfo.fs +18 -0
- package/fable_modules/Thoth.Json.JavaScript.0.1.0/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +3 -0
- package/fable_modules/Thoth.Json.JavaScript.0.1.0/obj/Release/netstandard2.0/Thoth.Json.JavaScript.AssemblyInfo.fs +19 -0
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Array.d.ts +4 -1
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Array.js +124 -86
- package/fable_modules/fable-library-js.4.13.0/CHANGELOG.md +29 -0
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Choice.d.ts +0 -17
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Choice.js +0 -43
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Date.js +3 -2
- package/fable_modules/fable-library-js.4.13.0/FSharp.Core.CompilerServices.d.ts +12 -0
- package/fable_modules/fable-library-js.4.13.0/FSharp.Core.CompilerServices.js +27 -0
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/List.js +3 -3
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Map.js +3 -3
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/MutableMap.js +2 -1
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/MutableSet.js +2 -1
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Random.js +7 -7
- package/fable_modules/fable-library-js.4.13.0/Result.d.ts +37 -0
- package/fable_modules/fable-library-js.4.13.0/Result.js +165 -0
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Set.js +2 -2
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/String.d.ts +1 -0
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/String.js +8 -5
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/System.Collections.Generic.d.ts +15 -7
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/System.Collections.Generic.js +46 -36
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/System.Text.d.ts +9 -1
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/System.Text.js +60 -8
- package/fable_modules/fable-library-js.4.13.0/big.d.ts +338 -0
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/package.json +4 -3
- package/fable_modules/project_cracked.json +1 -1
- package/package.json +1 -1
- package/ISA/ISA.Json/Validation/Fable.js +0 -69
- package/ISA/ISA.Json/Validation/JsonSchemaValidation.js +0 -88
- package/ISA/ISA.Json/Validation/ValidationResult.js +0 -45
- package/fable_modules/Thoth.Json.10.1.0/Decode.fs +0 -1366
- package/fable_modules/Thoth.Json.10.1.0/Decode.fs.js +0 -1798
- package/fable_modules/Thoth.Json.10.1.0/Encode.fs +0 -621
- package/fable_modules/Thoth.Json.10.1.0/Encode.fs.js +0 -472
- package/fable_modules/Thoth.Json.10.1.0/Extra.fs +0 -31
- package/fable_modules/Thoth.Json.10.1.0/Extra.fs.js +0 -8
- package/fable_modules/Thoth.Json.10.1.0/Thoth.Json.fableproj +0 -30
- package/fable_modules/Thoth.Json.10.1.0/Types.fs +0 -59
- package/fable_modules/Thoth.Json.10.1.0/Types.fs.js +0 -98
- package/fable_modules/Thoth.Json.10.1.0/package.json +0 -5
- package/fable_modules/fable-library.4.5.0/CHANGELOG.md +0 -11
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Cells/FsCell.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Cells/FsCellsCollection.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/CellBuilder.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/ColumnBuilder.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/DSL.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/Expression.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/Operators.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/Operators.fs.js +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/RowBuilder.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/SheetBuilder.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/TableBuilder.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/Transform.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/Types.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/WorkbookBuilder.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/FsColumn.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/FsRow.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/FsSpreadsheet.fableproj +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/FsWorkbook.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Ranges/FsRange.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Ranges/FsRangeAddress.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Ranges/FsRangeBase.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Ranges/FsRangeColumn.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Ranges/FsRangeRow.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/SheetBuilder.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Tables/FsTable.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Tables/FsTableField.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Tables/FsTableRow.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/obj/Debug/netstandard2.0/FsSpreadsheet.AssemblyInfo.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Async.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Async.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/AsyncBuilder.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/AsyncBuilder.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/BigInt.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/BigInt.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/BitConverter.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/BitConverter.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Boolean.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Boolean.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Char.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Char.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Date.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/DateOffset.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/DateOffset.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/DateOnly.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/DateOnly.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Decimal.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Decimal.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Double.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Double.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Encoding.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Encoding.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Event.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Event.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/FSharp.Collections.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/FSharp.Collections.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/FSharp.Core.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/FSharp.Core.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Global.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Global.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Guid.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Guid.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Int32.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Int32.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/List.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Long.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Long.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/MailboxProcessor.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/MailboxProcessor.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Map.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/MapUtil.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/MapUtil.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/MutableMap.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/MutableSet.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Native.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Native.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Numeric.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Numeric.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Observable.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Observable.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Option.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Option.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/README.md +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Random.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Range.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Range.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Reflection.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Reflection.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/RegExp.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/RegExp.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Seq.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Seq.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Seq2.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Seq2.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Set.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/SystemException.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/SystemException.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/TimeOnly.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/TimeOnly.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/TimeSpan.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/TimeSpan.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Timer.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Timer.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Types.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Types.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Unicode.13.0.0.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Unicode.13.0.0.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Uri.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Uri.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Util.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Util.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/lib/big.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/lib/big.js +0 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Record } from "../../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { record_type, string_type } from "../../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
3
|
+
import { Json } from "../../../../fable_modules/Thoth.Json.Core.0.2.1/Types.fs.js";
|
|
4
|
+
|
|
5
|
+
export class IContext extends Record {
|
|
6
|
+
constructor(sdo, arc, Organization, name) {
|
|
7
|
+
super();
|
|
8
|
+
this.sdo = sdo;
|
|
9
|
+
this.arc = arc;
|
|
10
|
+
this.Organization = Organization;
|
|
11
|
+
this.name = name;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export function IContext_$reflection() {
|
|
16
|
+
return record_type("ARCtrl.ISA.Json.ROCrateContext.Organization.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["Organization", string_type], ["name", string_type]]);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export const context_jsonvalue = new Json(5, [[["sdo", new Json(0, ["http://schema.org/"])], ["arc", new Json(0, ["http://purl.org/nfdi4plants/ontology/"])], ["Organization", new Json(0, ["sdo:Organization"])], ["name", new Json(0, ["sdo:name"])]]]);
|
|
20
|
+
|
|
21
|
+
export const context_str = "\r\n{\r\n \"@context\": {\r\n \"sdo\": \"http://schema.org/\",\r\n \"arc\": \"http://purl.org/nfdi4plants/ontology/\",\r\n\r\n \"Organization\": \"sdo:Organization\",\r\n \r\n \"name\": \"sdo:name\"\r\n }\r\n}\r\n ";
|
|
22
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { Record } from "../../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { record_type, string_type } from "../../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
3
|
+
import { Json } from "../../../../fable_modules/Thoth.Json.Core.0.2.1/Types.fs.js";
|
|
4
|
+
|
|
5
|
+
export class IContext extends Record {
|
|
6
|
+
constructor(sdo, arc, Person, firstName, lastName, midInitials, email, address, phone, fax, comments, roles, affiliation) {
|
|
7
|
+
super();
|
|
8
|
+
this.sdo = sdo;
|
|
9
|
+
this.arc = arc;
|
|
10
|
+
this.Person = Person;
|
|
11
|
+
this.firstName = firstName;
|
|
12
|
+
this.lastName = lastName;
|
|
13
|
+
this.midInitials = midInitials;
|
|
14
|
+
this.email = email;
|
|
15
|
+
this.address = address;
|
|
16
|
+
this.phone = phone;
|
|
17
|
+
this.fax = fax;
|
|
18
|
+
this.comments = comments;
|
|
19
|
+
this.roles = roles;
|
|
20
|
+
this.affiliation = affiliation;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export function IContext_$reflection() {
|
|
25
|
+
return record_type("ARCtrl.ISA.Json.ROCrateContext.Person.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["Person", string_type], ["firstName", string_type], ["lastName", string_type], ["midInitials", string_type], ["email", string_type], ["address", string_type], ["phone", string_type], ["fax", string_type], ["comments", string_type], ["roles", string_type], ["affiliation", string_type]]);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export const context_jsonvalue = new Json(5, [[["sdo", new Json(0, ["http://schema.org/"])], ["arc", new Json(0, ["http://purl.org/nfdi4plants/ontology/"])], ["Person", new Json(0, ["sdo:Person"])], ["firstName", new Json(0, ["sdo:givenName"])], ["lastName", new Json(0, ["sdo:familyName"])], ["midInitials", new Json(0, ["sdo:additionalName"])], ["email", new Json(0, ["sdo:email"])], ["address", new Json(0, ["sdo:address"])], ["phone", new Json(0, ["sdo:telephone"])], ["fax", new Json(0, ["sdo:faxNumber"])], ["comments", new Json(0, ["sdo:disambiguatingDescription"])], ["roles", new Json(0, ["sdo:jobTitle"])], ["affiliation", new Json(0, ["sdo:affiliation"])]]]);
|
|
29
|
+
|
|
30
|
+
export const context_str = "\r\n{\r\n \"@context\": {\r\n \"sdo\": \"http://schema.org/\",\r\n \"arc\": \"http://purl.org/nfdi4plants/ontology/\",\r\n\r\n \"Person\": \"sdo:Person\",\r\n \r\n \"firstName\": \"sdo:givenName\",\r\n \"lastName\": \"sdo:familyName\",\r\n \"midInitials\": \"sdo:additionalName\",\r\n \"email\": \"sdo:email\",\r\n \"address\": \"sdo:address\",\r\n \"phone\": \"sdo:telephone\",\r\n \"fax\": \"sdo:faxNumber\",\r\n \"comments\": \"sdo:disambiguatingDescription\",\r\n \"roles\": \"sdo:jobTitle\",\r\n \"affiliation\": \"sdo:affiliation\"\r\n }\r\n}\r\n ";
|
|
31
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { Record } from "../../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { record_type, string_type } from "../../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
3
|
+
import { Json } from "../../../../fable_modules/Thoth.Json.Core.0.2.1/Types.fs.js";
|
|
4
|
+
|
|
5
|
+
export class IContext extends Record {
|
|
6
|
+
constructor(sdo, arc, Process, ArcProcess, name, executesProtocol, performer, date, previousProcess, nextProcess, input, output, comments) {
|
|
7
|
+
super();
|
|
8
|
+
this.sdo = sdo;
|
|
9
|
+
this.arc = arc;
|
|
10
|
+
this.Process = Process;
|
|
11
|
+
this.ArcProcess = ArcProcess;
|
|
12
|
+
this.name = name;
|
|
13
|
+
this.executesProtocol = executesProtocol;
|
|
14
|
+
this.performer = performer;
|
|
15
|
+
this.date = date;
|
|
16
|
+
this.previousProcess = previousProcess;
|
|
17
|
+
this.nextProcess = nextProcess;
|
|
18
|
+
this.input = input;
|
|
19
|
+
this.output = output;
|
|
20
|
+
this.comments = comments;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export function IContext_$reflection() {
|
|
25
|
+
return record_type("ARCtrl.ISA.Json.ROCrateContext.Process.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["Process", string_type], ["ArcProcess", string_type], ["name", string_type], ["executesProtocol", string_type], ["performer", string_type], ["date", string_type], ["previousProcess", string_type], ["nextProcess", string_type], ["input", string_type], ["output", string_type], ["comments", string_type]]);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export const context_jsonvalue = new Json(5, [[["sdo", new Json(0, ["http://schema.org/"])], ["arc", new Json(0, ["http://purl.org/nfdi4plants/ontology/"])], ["Process", new Json(0, ["sdo:Thing"])], ["ArcProcess", new Json(0, ["arc:ARC#ARC_00000048"])], ["name", new Json(0, ["arc:ARC#ARC_00000019"])], ["executesProtocol", new Json(0, ["arc:ARC#ARC_00000086"])], ["performer", new Json(0, ["arc:ARC#ARC_00000089"])], ["date", new Json(0, ["arc:ARC#ARC_00000090"])], ["previousProcess", new Json(0, ["arc:ARC#ARC_00000091"])], ["nextProcess", new Json(0, ["arc:ARC#ARC_00000092"])], ["input", new Json(0, ["arc:ARC#ARC_00000095"])], ["output", new Json(0, ["arc:ARC#ARC_00000096"])], ["comments", new Json(0, ["sdo:disambiguatingDescription"])]]]);
|
|
29
|
+
|
|
30
|
+
export const context_str = "\r\n{\r\n \"@context\": {\r\n \"sdo\": \"http://schema.org/\",\r\n \"arc\": \"http://purl.org/nfdi4plants/ontology/\",\r\n\r\n \"Process\": \"sdo:Thing\",\r\n \"ArcProcess\": \"arc:ARC#ARC_00000048\",\r\n\r\n \"name\": \"arc:ARC#ARC_00000019\",\r\n \"executesProtocol\": \"arc:ARC#ARC_00000086\",\r\n \"performer\": \"arc:ARC#ARC_00000089\",\r\n \"date\": \"arc:ARC#ARC_00000090\",\r\n \"previousProcess\": \"arc:ARC#ARC_00000091\",\r\n \"nextProcess\": \"arc:ARC#ARC_00000092\",\r\n \"input\": \"arc:ARC#ARC_00000095\",\r\n \"output\": \"arc:ARC#ARC_00000096\",\r\n\r\n \"comments\": \"sdo:disambiguatingDescription\"\r\n }\r\n}\r\n ";
|
|
31
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Record } from "../../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { record_type, string_type } from "../../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
3
|
+
import { Json } from "../../../../fable_modules/Thoth.Json.Core.0.2.1/Types.fs.js";
|
|
4
|
+
|
|
5
|
+
export class IContext extends Record {
|
|
6
|
+
constructor(sdo, arc, ProcessParameterValue, ArcProcessParameterValue, category, value, unit) {
|
|
7
|
+
super();
|
|
8
|
+
this.sdo = sdo;
|
|
9
|
+
this.arc = arc;
|
|
10
|
+
this.ProcessParameterValue = ProcessParameterValue;
|
|
11
|
+
this.ArcProcessParameterValue = ArcProcessParameterValue;
|
|
12
|
+
this.category = category;
|
|
13
|
+
this.value = value;
|
|
14
|
+
this.unit = unit;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export function IContext_$reflection() {
|
|
19
|
+
return record_type("ARCtrl.ISA.Json.ROCrateContext.ProcessParameterValue.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["ProcessParameterValue", string_type], ["ArcProcessParameterValue", string_type], ["category", string_type], ["value", string_type], ["unit", string_type]]);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export const context_jsonvalue = new Json(5, [[["sdo", new Json(0, ["http://schema.org/"])], ["arc", new Json(0, ["http://purl.org/nfdi4plants/ontology/"])], ["ProcessParameterValue", new Json(0, ["sdo:PropertyValue"])], ["ArcProcessParameterValue", new Json(0, ["arc:ARC#ARC_00000088"])], ["category", new Json(0, ["arc:ARC#ARC_00000062"])], ["value", new Json(0, ["arc:ARC#ARC_00000087"])], ["unit", new Json(0, ["arc:ARC#ARC_00000106"])]]]);
|
|
23
|
+
|
|
24
|
+
export const context_str = "\r\n{\r\n \"@context\": {\r\n \"sdo\": \"http://schema.org/\",\r\n \"arc\": \"http://purl.org/nfdi4plants/ontology/\",\r\n\r\n \"ProcessParameterValue\": \"sdo:PropertyValue\",\r\n \"ArcProcessParameterValue\": \"arc:ARC#ARC_00000088\",\r\n\r\n \"category\": \"arc:ARC#ARC_00000062\",\r\n \"value\": \"arc:ARC#ARC_00000087\",\r\n \"unit\": \"arc:ARC#ARC_00000106\"\r\n }\r\n}\r\n ";
|
|
25
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Record } from "../../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { record_type, string_type } from "../../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
3
|
+
import { Json } from "../../../../fable_modules/Thoth.Json.Core.0.2.1/Types.fs.js";
|
|
4
|
+
|
|
5
|
+
export class IContext extends Record {
|
|
6
|
+
constructor(sdo, arc, Protocol, ArcProtocol, name, protocolType, description, version, components, parameters, uri, comments) {
|
|
7
|
+
super();
|
|
8
|
+
this.sdo = sdo;
|
|
9
|
+
this.arc = arc;
|
|
10
|
+
this.Protocol = Protocol;
|
|
11
|
+
this.ArcProtocol = ArcProtocol;
|
|
12
|
+
this.name = name;
|
|
13
|
+
this.protocolType = protocolType;
|
|
14
|
+
this.description = description;
|
|
15
|
+
this.version = version;
|
|
16
|
+
this.components = components;
|
|
17
|
+
this.parameters = parameters;
|
|
18
|
+
this.uri = uri;
|
|
19
|
+
this.comments = comments;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export function IContext_$reflection() {
|
|
24
|
+
return record_type("ARCtrl.ISA.Json.ROCrateContext.Protocol.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["Protocol", string_type], ["ArcProtocol", string_type], ["name", string_type], ["protocolType", string_type], ["description", string_type], ["version", string_type], ["components", string_type], ["parameters", string_type], ["uri", string_type], ["comments", string_type]]);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export const context_jsonvalue = new Json(5, [[["sdo", new Json(0, ["http://schema.org/"])], ["arc", new Json(0, ["http://purl.org/nfdi4plants/ontology/"])], ["Protocol", new Json(0, ["sdo:Thing"])], ["ArcProtocol", new Json(0, ["arc:ARC#ARC_00000040"])], ["name", new Json(0, ["arc:ARC#ARC_00000019"])], ["protocolType", new Json(0, ["arc:ARC#ARC_00000060"])], ["description", new Json(0, ["arc:ARC#ARC_00000004"])], ["version", new Json(0, ["arc:ARC#ARC_00000020"])], ["components", new Json(0, ["arc:ARC#ARC_00000064"])], ["parameters", new Json(0, ["arc:ARC#ARC_00000062"])], ["uri", new Json(0, ["arc:ARC#ARC_00000061"])], ["comments", new Json(0, ["arc:ARC#ARC_00000016"])]]]);
|
|
28
|
+
|
|
29
|
+
export const context_str = "\r\n{\r\n \"@context\": {\r\n \"sdo\": \"http://schema.org/\",\r\n \"arc\": \"http://purl.org/nfdi4plants/ontology/\",\r\n\r\n \"Protocol\": \"sdo:Thing\",\r\n \"ArcProtocol\": \"arc:ARC#ARC_00000040\",\r\n\r\n \"name\": \"arc:ARC#ARC_00000019\",\r\n \"protocolType\": \"arc:ARC#ARC_00000060\",\r\n \"description\": \"arc:ARC#ARC_00000004\",\r\n \"version\": \"arc:ARC#ARC_00000020\",\r\n \"components\": \"arc:ARC#ARC_00000064\",\r\n \"parameters\": \"arc:ARC#ARC_00000062\",\r\n \"uri\": \"arc:ARC#ARC_00000061\",\r\n \"comments\": \"arc:ARC#ARC_00000016\"\r\n }\r\n}\r\n ";
|
|
30
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Record } from "../../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { record_type, string_type } from "../../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
3
|
+
import { Json } from "../../../../fable_modules/Thoth.Json.Core.0.2.1/Types.fs.js";
|
|
4
|
+
|
|
5
|
+
export class IContext extends Record {
|
|
6
|
+
constructor(sdo, arc, ProtocolParamter, ArcProtocolParameter, parameterName) {
|
|
7
|
+
super();
|
|
8
|
+
this.sdo = sdo;
|
|
9
|
+
this.arc = arc;
|
|
10
|
+
this.ProtocolParamter = ProtocolParamter;
|
|
11
|
+
this.ArcProtocolParameter = ArcProtocolParameter;
|
|
12
|
+
this.parameterName = parameterName;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export function IContext_$reflection() {
|
|
17
|
+
return record_type("ARCtrl.ISA.Json.ROCrateContext.ProtocolParameter.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["ProtocolParamter", string_type], ["ArcProtocolParameter", string_type], ["parameterName", string_type]]);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export const context_jsonvalue = new Json(5, [[["sdo", new Json(0, ["http://schema.org/"])], ["arc", new Json(0, ["http://purl.org/nfdi4plants/ontology/"])], ["ProtocolParameter", new Json(0, ["sdo:Thing"])], ["ArcProtocolParameter", new Json(0, ["arc:ARC#ARC_00000063"])], ["parameterName", new Json(0, ["arc:ARC#ARC_00000100"])]]]);
|
|
21
|
+
|
|
22
|
+
export const context_str = "\r\n{\r\n \"@context\": {\r\n \"sdo\": \"http://schema.org/\",\r\n \"arc\": \"http://purl.org/nfdi4plants/ontology/\",\r\n\r\n \"ProtocolParameter\": \"sdo:Thing\",\r\n \"ArcProtocolParameter\": \"arc:ARC#ARC_00000063\",\r\n\r\n \"parameterName\": \"arc:ARC#ARC_00000100\"\r\n }\r\n}\r\n ";
|
|
23
|
+
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { Record } from "../../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { record_type, string_type } from "../../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
3
|
+
import { Json } from "../../../../fable_modules/Thoth.Json.Core.0.2.1/Types.fs.js";
|
|
4
|
+
|
|
5
|
+
export class IContext extends Record {
|
|
6
|
+
constructor(sdo, arc, Publication, pubMedID, doi, title, status, authorList, comments) {
|
|
7
|
+
super();
|
|
8
|
+
this.sdo = sdo;
|
|
9
|
+
this.arc = arc;
|
|
10
|
+
this.Publication = Publication;
|
|
11
|
+
this.pubMedID = pubMedID;
|
|
12
|
+
this.doi = doi;
|
|
13
|
+
this.title = title;
|
|
14
|
+
this.status = status;
|
|
15
|
+
this.authorList = authorList;
|
|
16
|
+
this.comments = comments;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export function IContext_$reflection() {
|
|
21
|
+
return record_type("ARCtrl.ISA.Json.ROCrateContext.Publication.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["Publication", string_type], ["pubMedID", string_type], ["doi", string_type], ["title", string_type], ["status", string_type], ["authorList", string_type], ["comments", string_type]]);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export const context_jsonvalue = new Json(5, [[["sdo", new Json(0, ["http://schema.org/"])], ["arc", new Json(0, ["http://purl.org/nfdi4plants/ontology/"])], ["Publication", new Json(0, ["sdo:ScholarlyArticle"])], ["pubMedID", new Json(0, ["sdo:url"])], ["doi", new Json(0, ["sdo:sameAs"])], ["title", new Json(0, ["sdo:headline"])], ["status", new Json(0, ["sdo:creativeWorkStatus"])], ["authorList", new Json(0, ["sdo:author"])], ["comments", new Json(0, ["sdo:disambiguatingDescription"])]]]);
|
|
25
|
+
|
|
26
|
+
export const context_str = "\r\n{\r\n \"@context\": {\r\n \"sdo\": \"http://schema.org/\",\r\n \"arc\": \"http://purl.org/nfdi4plants/ontology/\",\r\n\r\n \"Publication\": \"sdo:ScholarlyArticle\",\r\n \r\n \"pubMedID\": \"sdo:url\",\r\n \"doi\": \"sdo:sameAs\",\r\n \"title\": \"sdo:headline\",\r\n \"status\": \"sdo:creativeWorkStatus\",\r\n \"authorList\": \"sdo:author\",\r\n \"comments\": \"sdo:disambiguatingDescription\"\r\n }\r\n}\r\n ";
|
|
27
|
+
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { Record } from "../../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { record_type, string_type } from "../../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
3
|
+
import { Json } from "../../../../fable_modules/Thoth.Json.Core.0.2.1/Types.fs.js";
|
|
4
|
+
|
|
5
|
+
export class IContext extends Record {
|
|
6
|
+
constructor(sdo, arc, Sample, ArcSample, name, characteristics, factorValues, derivesFrom) {
|
|
7
|
+
super();
|
|
8
|
+
this.sdo = sdo;
|
|
9
|
+
this.arc = arc;
|
|
10
|
+
this.Sample = Sample;
|
|
11
|
+
this.ArcSample = ArcSample;
|
|
12
|
+
this.name = name;
|
|
13
|
+
this.characteristics = characteristics;
|
|
14
|
+
this.factorValues = factorValues;
|
|
15
|
+
this.derivesFrom = derivesFrom;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export function IContext_$reflection() {
|
|
20
|
+
return record_type("ARCtrl.ISA.Json.ROCrateContext.Sample.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["Sample", string_type], ["ArcSample", string_type], ["name", string_type], ["characteristics", string_type], ["factorValues", string_type], ["derivesFrom", string_type]]);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export const context_jsonvalue = new Json(5, [[["sdo", new Json(0, ["http://schema.org/"])], ["arc", new Json(0, ["http://purl.org/nfdi4plants/ontology/"])], ["Sample", new Json(0, ["sdo:Thing"])], ["ArcSample", new Json(0, ["arc:ARC#ARC_00000070"])], ["name", new Json(0, ["arc:name"])], ["characteristics", new Json(0, ["arc:ARC#ARC_00000080"])], ["factorValues", new Json(0, ["arc:ARC#ARC_00000083"])], ["derivesFrom", new Json(0, ["arc:ARC#ARC_00000082"])]]]);
|
|
24
|
+
|
|
25
|
+
export const context_str = "\r\n{\r\n \"@context\": {\r\n \"sdo\": \"http://schema.org/\",\r\n \"arc\": \"http://purl.org/nfdi4plants/ontology/\",\r\n\r\n \"Sample\": \"sdo:Thing\",\r\n \"ArcSample\": \"arc:ARC#ARC_00000070\",\r\n\r\n \"name\": \"arc:name\",\r\n \"characteristics\": \"arc:ARC#ARC_00000080\",\r\n \"factorValues\": \"arc:ARC#ARC_00000083\",\r\n \"derivesFrom\": \"arc:ARC#ARC_00000082\"\r\n }\r\n}\r\n ";
|
|
26
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Record } from "../../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { record_type, string_type } from "../../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
3
|
+
import { Json } from "../../../../fable_modules/Thoth.Json.Core.0.2.1/Types.fs.js";
|
|
4
|
+
|
|
5
|
+
export class IContext extends Record {
|
|
6
|
+
constructor(sdo, arc, Source, ArcSource, identifier, characteristics, name) {
|
|
7
|
+
super();
|
|
8
|
+
this.sdo = sdo;
|
|
9
|
+
this.arc = arc;
|
|
10
|
+
this.Source = Source;
|
|
11
|
+
this.ArcSource = ArcSource;
|
|
12
|
+
this.identifier = identifier;
|
|
13
|
+
this.characteristics = characteristics;
|
|
14
|
+
this.name = name;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export function IContext_$reflection() {
|
|
19
|
+
return record_type("ARCtrl.ISA.Json.ROCrateContext.Source.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["Source", string_type], ["ArcSource", string_type], ["identifier", string_type], ["characteristics", string_type], ["name", string_type]]);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export const context_jsonvalue = new Json(5, [[["sdo", new Json(0, ["http://schema.org/"])], ["arc", new Json(0, ["http://purl.org/nfdi4plants/ontology/"])], ["Source", new Json(0, ["sdo:Thing"])], ["ArcSource", new Json(0, ["arc:ARC#ARC_00000071"])], ["identifier", new Json(0, ["sdo:identifier"])], ["name", new Json(0, ["arc:ARC#ARC_00000019"])], ["characteristics", new Json(0, ["arc:ARC#ARC_00000080"])]]]);
|
|
23
|
+
|
|
24
|
+
export const context_str = "\r\n{\r\n \"@context\": {\r\n \"sdo\": \"http://schema.org/\",\r\n \"arc\": \"http://purl.org/nfdi4plants/ontology/\",\r\n\r\n \"Source\": \"sdo:Thing\",\r\n \"ArcSource\": \"arc:ARC#ARC_00000071\",\r\n\r\n \"identifier\": \"sdo:identifier\",\r\n\r\n \"name\": \"arc:ARC#ARC_00000019\",\r\n \"characteristics\": \"arc:ARC#ARC_00000080\"\r\n }\r\n}\r\n ";
|
|
25
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { Record } from "../../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { record_type, string_type } from "../../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
3
|
+
import { Json } from "../../../../fable_modules/Thoth.Json.Core.0.2.1/Types.fs.js";
|
|
4
|
+
|
|
5
|
+
export class IContext extends Record {
|
|
6
|
+
constructor(sdo, arc, Study, ArcStudy, identifier, title, description, submissionDate, publicReleaseDate, publications, people, assays, filename, comments, protocols, materials, otherMaterials, sources, samples, processSequence, factors, characteristicCategories, unitCategories, studyDesignDescriptors) {
|
|
7
|
+
super();
|
|
8
|
+
this.sdo = sdo;
|
|
9
|
+
this.arc = arc;
|
|
10
|
+
this.Study = Study;
|
|
11
|
+
this.ArcStudy = ArcStudy;
|
|
12
|
+
this.identifier = identifier;
|
|
13
|
+
this.title = title;
|
|
14
|
+
this.description = description;
|
|
15
|
+
this.submissionDate = submissionDate;
|
|
16
|
+
this.publicReleaseDate = publicReleaseDate;
|
|
17
|
+
this.publications = publications;
|
|
18
|
+
this.people = people;
|
|
19
|
+
this.assays = assays;
|
|
20
|
+
this.filename = filename;
|
|
21
|
+
this.comments = comments;
|
|
22
|
+
this.protocols = protocols;
|
|
23
|
+
this.materials = materials;
|
|
24
|
+
this.otherMaterials = otherMaterials;
|
|
25
|
+
this.sources = sources;
|
|
26
|
+
this.samples = samples;
|
|
27
|
+
this.processSequence = processSequence;
|
|
28
|
+
this.factors = factors;
|
|
29
|
+
this.characteristicCategories = characteristicCategories;
|
|
30
|
+
this.unitCategories = unitCategories;
|
|
31
|
+
this.studyDesignDescriptors = studyDesignDescriptors;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export function IContext_$reflection() {
|
|
36
|
+
return record_type("ARCtrl.ISA.Json.ROCrateContext.Study.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["Study", string_type], ["ArcStudy", string_type], ["identifier", string_type], ["title", string_type], ["description", string_type], ["submissionDate", string_type], ["publicReleaseDate", string_type], ["publications", string_type], ["people", string_type], ["assays", string_type], ["filename", string_type], ["comments", string_type], ["protocols", string_type], ["materials", string_type], ["otherMaterials", string_type], ["sources", string_type], ["samples", string_type], ["processSequence", string_type], ["factors", string_type], ["characteristicCategories", string_type], ["unitCategories", string_type], ["studyDesignDescriptors", string_type]]);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export const context_jsonvalue = new Json(5, [[["sdo", new Json(0, ["http://schema.org/"])], ["arc", new Json(0, ["http://purl.org/nfdi4plants/ontology/"])], ["Study", new Json(0, ["sdo:Dataset"])], ["ArcStudy", new Json(0, ["arc:ARC#ARC_00000014"])], ["identifier", new Json(0, ["sdo:identifier"])], ["title", new Json(0, ["sdo:headline"])], ["description", new Json(0, ["sdo:description"])], ["submissionDate", new Json(0, ["sdo:dateCreated"])], ["publicReleaseDate", new Json(0, ["sdo:datePublished"])], ["publications", new Json(0, ["sdo:citation"])], ["people", new Json(0, ["sdo:creator"])], ["assays", new Json(0, ["sdo:hasPart"])], ["filename", new Json(0, ["sdo:description"])], ["comments", new Json(0, ["sdo:disambiguatingDescription"])], ["protocols", new Json(0, ["arc:ARC#ARC_00000039"])], ["materials", new Json(0, ["arc:ARC#ARC_00000045"])], ["otherMaterials", new Json(0, ["arc:ARC#ARC_00000045"])], ["sources", new Json(0, ["arc:ARC#ARC_00000045"])], ["samples", new Json(0, ["arc:ARC#ARC_00000045"])], ["processSequence", new Json(0, ["arc:ARC#ARC_00000047"])], ["factors", new Json(0, ["arc:ARC#ARC_00000043"])], ["characteristicCategories", new Json(0, ["arc:ARC#ARC_00000049"])], ["unitCategories", new Json(0, ["arc:ARC#ARC_00000051"])], ["studyDesignDescriptors", new Json(0, ["arc:ARC#ARC_00000037"])]]]);
|
|
40
|
+
|
|
41
|
+
export const context_str = "\r\n{\r\n \"@context\": {\r\n \"sdo\": \"http://schema.org/\",\r\n \"arc\": \"http://purl.org/nfdi4plants/ontology/\",\r\n\r\n \"Study\": \"sdo:Dataset\",\r\n \"ArcStudy\": \"arc:ARC#ARC_00000014\",\r\n\r\n \"identifier\": \"sdo:identifier\",\r\n \"title\": \"sdo:headline\",\r\n \"description\": \"sdo:description\",\r\n \"submissionDate\": \"sdo:dateCreated\",\r\n \"publicReleaseDate\": \"sdo:datePublished\",\r\n \"publications\": \"sdo:citation\",\r\n \"people\": \"sdo:creator\",\r\n \"assays\": \"sdo:hasPart\",\r\n \"filename\": \"sdo:description\",\r\n \"comments\": \"sdo:disambiguatingDescription\",\r\n\r\n \"protocols\": \"arc:ARC#ARC_00000039\",\r\n \"materials\": \"arc:ARC#ARC_00000045\",\r\n \"otherMaterials\": \"arc:ARC#ARC_00000045\",\r\n \"sources\": \"arc:ARC#ARC_00000045\",\r\n \"samples\": \"arc:ARC#ARC_00000045\",\r\n \"processSequence\": \"arc:ARC#ARC_00000047\",\r\n \"factors\": \"arc:ARC#ARC_00000043\",\r\n \"characteristicCategories\": \"arc:ARC#ARC_00000049\",\r\n \"unitCategories\": \"arc:ARC#ARC_00000051\",\r\n \"studyDesignDescriptors\": \"arc:ARC#ARC_00000037\"\r\n }\r\n}\r\n ";
|
|
42
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Record } from "../../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { record_type, string_type } from "../../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
3
|
+
import { Json } from "../../../../fable_modules/Thoth.Json.Core.0.2.1/Types.fs.js";
|
|
4
|
+
|
|
5
|
+
export class IContext extends Record {
|
|
6
|
+
constructor(sdo, arc, CreativeWork, about, conformsTo) {
|
|
7
|
+
super();
|
|
8
|
+
this.sdo = sdo;
|
|
9
|
+
this.arc = arc;
|
|
10
|
+
this.CreativeWork = CreativeWork;
|
|
11
|
+
this.about = about;
|
|
12
|
+
this.conformsTo = conformsTo;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export function IContext_$reflection() {
|
|
17
|
+
return record_type("ARCtrl.ISA.Json.ROCrateContext.ROCrate.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["CreativeWork", string_type], ["about", string_type], ["conformsTo", string_type]]);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export const conformsTo_jsonvalue = new Json(5, [[["@id", new Json(0, ["https://w3id.org/ro/crate/1.1"])]]]);
|
|
21
|
+
|
|
22
|
+
export const context_jsonvalue = new Json(5, [[["sdo", new Json(0, ["http://schema.org/"])], ["arc", new Json(0, ["http://purl.org/nfdi4plants/ontology/"])], ["CreativeWork", new Json(0, ["sdo:CreativeWork"])], ["about", new Json(0, ["sdo:about"])], ["conformsTo", new Json(0, ["sdo:conformsTo"])]]]);
|
|
23
|
+
|
|
24
|
+
export const context_str = "\r\n{\r\n \"@context\": {\r\n \"sdo\": \"http://schema.org/\",\r\n \"arc\": \"http://purl.org/nfdi4plants/ontology/\",\r\n \r\n \"CreativeWork\": \"sdo:CreativeWork\",\r\n\r\n \"about\": \"sdo:about\",\r\n \"conformsTo\": \"sdo:conformsTo\"\r\n }\r\n}\r\n ";
|
|
25
|
+
|
|
@@ -1,15 +1,16 @@
|
|
|
1
|
-
import { iterateIndexed, length, ofArray, sortBy, collect, toArray, empty, tail, head, isEmpty, cons, singleton, fold, map, reverse } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { iterateIndexed, length, ofArray, sortBy, collect, toArray, empty, tail, head, isEmpty, cons, singleton, fold, map, reverse } from "../../../fable_modules/fable-library-js.4.13.0/List.js";
|
|
2
2
|
import { tryParseReferenceColumnHeader } from "../../ISA/Regex.js";
|
|
3
|
-
import { map as map_1, toList, tryFind } from "../../../fable_modules/fable-library.4.
|
|
3
|
+
import { map as map_1, toList, tryFind } from "../../../fable_modules/fable-library-js.4.13.0/Seq.js";
|
|
4
4
|
import { toFsColumns, fixDeprecatedIOHeader, fromFsColumns } from "./CompositeColumn.js";
|
|
5
|
+
import { printf, toFail } from "../../../fable_modules/fable-library-js.4.13.0/String.js";
|
|
5
6
|
import { ArcTable } from "../../ISA/ArcTypes/ArcTable.js";
|
|
6
|
-
import { FsWorksheet } from "../../../fable_modules/FsSpreadsheet.5.1.
|
|
7
|
-
import { comparePrimitives } from "../../../fable_modules/fable-library.4.
|
|
8
|
-
import { FsRangeAddress_$ctor_7E77A4A0 } from "../../../fable_modules/FsSpreadsheet.5.1.
|
|
9
|
-
import { FsAddress_$ctor_Z37302880 } from "../../../fable_modules/FsSpreadsheet.5.1.
|
|
10
|
-
import { Dictionary_tryGet } from "../../../fable_modules/FsSpreadsheet.5.1.
|
|
11
|
-
import { addToDict } from "../../../fable_modules/fable-library.4.
|
|
12
|
-
import { FsRangeBase__Cell_Z3407A44B } from "../../../fable_modules/FsSpreadsheet.5.1.
|
|
7
|
+
import { FsWorksheet } from "../../../fable_modules/FsSpreadsheet.5.1.3/FsWorksheet.fs.js";
|
|
8
|
+
import { comparePrimitives } from "../../../fable_modules/fable-library-js.4.13.0/Util.js";
|
|
9
|
+
import { FsRangeAddress_$ctor_7E77A4A0 } from "../../../fable_modules/FsSpreadsheet.5.1.3/Ranges/FsRangeAddress.fs.js";
|
|
10
|
+
import { FsAddress_$ctor_Z37302880 } from "../../../fable_modules/FsSpreadsheet.5.1.3/FsAddress.fs.js";
|
|
11
|
+
import { Dictionary_tryGet } from "../../../fable_modules/FsSpreadsheet.5.1.3/Cells/FsCellsCollection.fs.js";
|
|
12
|
+
import { addToDict } from "../../../fable_modules/fable-library-js.4.13.0/MapUtil.js";
|
|
13
|
+
import { FsRangeBase__Cell_Z3407A44B } from "../../../fable_modules/FsSpreadsheet.5.1.3/Ranges/FsRangeBase.fs.js";
|
|
13
14
|
|
|
14
15
|
/**
|
|
15
16
|
* Iterates over elements of the input list and groups adjacent elements.
|
|
@@ -91,49 +92,61 @@ export function composeColumns(columns) {
|
|
|
91
92
|
* Returns the protocol described by the headers and a function for parsing the values of the matrix to the processes of this protocol
|
|
92
93
|
*/
|
|
93
94
|
export function tryFromFsWorksheet(sheet) {
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
95
|
+
try {
|
|
96
|
+
const matchValue = tryAnnotationTable(sheet);
|
|
97
|
+
if (matchValue == null) {
|
|
98
|
+
return void 0;
|
|
99
|
+
}
|
|
100
|
+
else {
|
|
101
|
+
const t = matchValue;
|
|
102
|
+
const compositeColumns = composeColumns(map_1(fixDeprecatedIOHeader, t.GetColumns(sheet.CellCollection)));
|
|
103
|
+
return ArcTable.addColumns(compositeColumns, void 0, true)(ArcTable.init(sheet.Name));
|
|
104
|
+
}
|
|
97
105
|
}
|
|
98
|
-
|
|
99
|
-
const
|
|
100
|
-
const
|
|
101
|
-
return
|
|
106
|
+
catch (err) {
|
|
107
|
+
const arg = sheet.Name;
|
|
108
|
+
const arg_1 = err.message;
|
|
109
|
+
return toFail(printf("Could not parse table with name \"%s\":\n%s"))(arg)(arg_1);
|
|
102
110
|
}
|
|
103
111
|
}
|
|
104
112
|
|
|
105
113
|
export function toFsWorksheet(table) {
|
|
106
114
|
const stringCount = new Map([]);
|
|
107
115
|
const ws = new FsWorksheet(table.Name);
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
116
|
+
if (table.Columns.length === 0) {
|
|
117
|
+
return ws;
|
|
118
|
+
}
|
|
119
|
+
else {
|
|
120
|
+
const columns = collect(toFsColumns, sortBy(classifyColumnOrder, ofArray(table.Columns), {
|
|
121
|
+
Compare: comparePrimitives,
|
|
122
|
+
}));
|
|
123
|
+
const maxRow = length(head(columns)) | 0;
|
|
124
|
+
const maxCol = length(columns) | 0;
|
|
125
|
+
const fsTable = ws.Table("annotationTable", FsRangeAddress_$ctor_7E77A4A0(FsAddress_$ctor_Z37302880(1, 1), FsAddress_$ctor_Z37302880(maxRow, maxCol)));
|
|
126
|
+
iterateIndexed((colI, col) => {
|
|
127
|
+
iterateIndexed((rowI, cell) => {
|
|
128
|
+
let value;
|
|
129
|
+
const v = cell.ValueAsString();
|
|
130
|
+
if (rowI === 0) {
|
|
131
|
+
const matchValue = Dictionary_tryGet(v, stringCount);
|
|
132
|
+
if (matchValue == null) {
|
|
133
|
+
addToDict(stringCount, cell.ValueAsString(), "");
|
|
134
|
+
value = v;
|
|
135
|
+
}
|
|
136
|
+
else {
|
|
137
|
+
const spaces = matchValue;
|
|
138
|
+
stringCount.set(v, spaces + " ");
|
|
139
|
+
value = ((v + " ") + spaces);
|
|
140
|
+
}
|
|
123
141
|
}
|
|
124
142
|
else {
|
|
125
|
-
|
|
126
|
-
stringCount.set(v, spaces + " ");
|
|
127
|
-
value = ((v + " ") + spaces);
|
|
143
|
+
value = v;
|
|
128
144
|
}
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
}, col);
|
|
136
|
-
}, columns);
|
|
137
|
-
return ws;
|
|
145
|
+
const address = FsAddress_$ctor_Z37302880(rowI + 1, colI + 1);
|
|
146
|
+
FsRangeBase__Cell_Z3407A44B(fsTable, address, ws.CellCollection).SetValueAs(value);
|
|
147
|
+
}, col);
|
|
148
|
+
}, columns);
|
|
149
|
+
return ws;
|
|
150
|
+
}
|
|
138
151
|
}
|
|
139
152
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { singleton, ofArray, head, tail, isEmpty, map } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { singleton, ofArray, head, tail, isEmpty, map } from "../../../fable_modules/fable-library-js.4.13.0/List.js";
|
|
2
2
|
import { CompositeCell } from "../../ISA/ArcTypes/CompositeCell.js";
|
|
3
|
-
import { printf, toFail } from "../../../fable_modules/fable-library.4.
|
|
4
|
-
import { FsCell } from "../../../fable_modules/FsSpreadsheet.5.1.
|
|
3
|
+
import { printf, toFail } from "../../../fable_modules/fable-library-js.4.13.0/String.js";
|
|
4
|
+
import { FsCell } from "../../../fable_modules/FsSpreadsheet.5.1.3/Cells/FsCell.fs.js";
|
|
5
5
|
|
|
6
6
|
export function fromFsCells(cells) {
|
|
7
7
|
const cellValues = map((c) => c.ValueAsString(), cells);
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { CompositeHeader, IOType } from "../../ISA/ArcTypes/CompositeHeader.js";
|
|
2
|
-
import { toString } from "../../../fable_modules/fable-library.4.
|
|
2
|
+
import { toString } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
3
3
|
import { toFsCells, fromFsCells } from "./CompositeHeader.js";
|
|
4
|
-
import { singleton as singleton_1, ofArray, item, map } from "../../../fable_modules/fable-library.4.
|
|
5
|
-
import { FsAddress__get_RowNumber } from "../../../fable_modules/FsSpreadsheet.5.1.
|
|
6
|
-
import { FsRangeAddress__get_LastAddress } from "../../../fable_modules/FsSpreadsheet.5.1.
|
|
7
|
-
import { FsRangeBase__get_RangeAddress } from "../../../fable_modules/FsSpreadsheet.5.1.
|
|
8
|
-
import { singleton, append, toList, exists, map as map_1, delay, toArray } from "../../../fable_modules/fable-library.4.
|
|
4
|
+
import { singleton as singleton_1, ofArray, item, map } from "../../../fable_modules/fable-library-js.4.13.0/List.js";
|
|
5
|
+
import { FsAddress__get_RowNumber } from "../../../fable_modules/FsSpreadsheet.5.1.3/FsAddress.fs.js";
|
|
6
|
+
import { FsRangeAddress__get_LastAddress } from "../../../fable_modules/FsSpreadsheet.5.1.3/Ranges/FsRangeAddress.fs.js";
|
|
7
|
+
import { FsRangeBase__get_RangeAddress } from "../../../fable_modules/FsSpreadsheet.5.1.3/Ranges/FsRangeBase.fs.js";
|
|
8
|
+
import { singleton, append, toList, exists, map as map_1, delay, toArray } from "../../../fable_modules/fable-library-js.4.13.0/Seq.js";
|
|
9
9
|
import { toFsCells as toFsCells_1, fromFsCells as fromFsCells_1 } from "./CompositeCell.js";
|
|
10
|
-
import { rangeDouble } from "../../../fable_modules/fable-library.4.
|
|
10
|
+
import { rangeDouble } from "../../../fable_modules/fable-library-js.4.13.0/Range.js";
|
|
11
11
|
import { CompositeColumn } from "../../ISA/ArcTypes/CompositeColumn.js";
|
|
12
|
-
import { map as map_2 } from "../../../fable_modules/fable-library.4.
|
|
12
|
+
import { item as item_1, map as map_2 } from "../../../fable_modules/fable-library-js.4.13.0/Array.js";
|
|
13
13
|
|
|
14
14
|
/**
|
|
15
15
|
* Checks if the column header is a deprecated IO Header. If so, fixes it.
|
|
@@ -47,13 +47,13 @@ export function toFsColumns(column) {
|
|
|
47
47
|
const header = toFsCells(hasUnit, column.Header);
|
|
48
48
|
const cells = map_2((cell) => toFsCells_1(isTerm, hasUnit, cell), column.Cells);
|
|
49
49
|
if (hasUnit) {
|
|
50
|
-
return ofArray([toList(delay(() => append(singleton(item(0, header)), delay(() => map_1((i) => item(0, cells
|
|
50
|
+
return ofArray([toList(delay(() => append(singleton(item(0, header)), delay(() => map_1((i) => item(0, item_1(i, cells)), rangeDouble(0, 1, column.Cells.length - 1)))))), toList(delay(() => append(singleton(item(1, header)), delay(() => map_1((i_1) => item(1, item_1(i_1, cells)), rangeDouble(0, 1, column.Cells.length - 1)))))), toList(delay(() => append(singleton(item(2, header)), delay(() => map_1((i_2) => item(2, item_1(i_2, cells)), rangeDouble(0, 1, column.Cells.length - 1)))))), toList(delay(() => append(singleton(item(3, header)), delay(() => map_1((i_3) => item(3, item_1(i_3, cells)), rangeDouble(0, 1, column.Cells.length - 1))))))]);
|
|
51
51
|
}
|
|
52
52
|
else if (isTerm) {
|
|
53
|
-
return ofArray([toList(delay(() => append(singleton(item(0, header)), delay(() => map_1((i_4) => item(0, cells
|
|
53
|
+
return ofArray([toList(delay(() => append(singleton(item(0, header)), delay(() => map_1((i_4) => item(0, item_1(i_4, cells)), rangeDouble(0, 1, column.Cells.length - 1)))))), toList(delay(() => append(singleton(item(1, header)), delay(() => map_1((i_5) => item(1, item_1(i_5, cells)), rangeDouble(0, 1, column.Cells.length - 1)))))), toList(delay(() => append(singleton(item(2, header)), delay(() => map_1((i_6) => item(2, item_1(i_6, cells)), rangeDouble(0, 1, column.Cells.length - 1))))))]);
|
|
54
54
|
}
|
|
55
55
|
else {
|
|
56
|
-
return singleton_1(toList(delay(() => append(singleton(item(0, header)), delay(() => map_1((i_7) => item(0, cells
|
|
56
|
+
return singleton_1(toList(delay(() => append(singleton(item(0, header)), delay(() => map_1((i_7) => item(0, item_1(i_7, cells)), rangeDouble(0, 1, column.Cells.length - 1)))))));
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
59
|
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { printf, toFail } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { singleton, tail, head, isEmpty, map } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { printf, toFail } from "../../../fable_modules/fable-library-js.4.13.0/String.js";
|
|
2
|
+
import { singleton, tail, head, isEmpty, map } from "../../../fable_modules/fable-library-js.4.13.0/List.js";
|
|
3
3
|
import { OntologyAnnotation } from "../../ISA/JsonTypes/OntologyAnnotation.js";
|
|
4
4
|
import { ActivePatterns_$007COutputColumnHeader$007C_$007C, ActivePatterns_$007CInputColumnHeader$007C_$007C, tryParseComponentColumnHeader, tryParseCharacteristicColumnHeader, tryParseFactorColumnHeader, tryParseParameterColumnHeader, ActivePatterns_$007CUnitColumnHeader$007C_$007C, ActivePatterns_$007CTANColumnHeader$007C_$007C, ActivePatterns_$007CTSRColumnHeader$007C_$007C } from "../../ISA/Regex.js";
|
|
5
5
|
import { IOType, CompositeHeader } from "../../ISA/ArcTypes/CompositeHeader.js";
|
|
6
|
-
import { FsCell } from "../../../fable_modules/FsSpreadsheet.5.1.
|
|
7
|
-
import { toString } from "../../../fable_modules/fable-library.4.
|
|
8
|
-
import { empty, singleton as singleton_1, append, delay, toList } from "../../../fable_modules/fable-library.4.
|
|
6
|
+
import { FsCell } from "../../../fable_modules/FsSpreadsheet.5.1.3/Cells/FsCell.fs.js";
|
|
7
|
+
import { toString } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
8
|
+
import { empty, singleton as singleton_1, append, delay, toList } from "../../../fable_modules/fable-library-js.4.13.0/Seq.js";
|
|
9
9
|
|
|
10
10
|
export function ActivePattern_mergeIDInfo(idSpace1, localID1, idSpace2, localID2) {
|
|
11
11
|
if (idSpace1 !== idSpace2) {
|