@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
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { tryParse } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { FSharpRef } from "../../../fable_modules/fable-library.4.
|
|
3
|
-
import { int32ToString } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { tryParse } from "../../../fable_modules/fable-library-js.4.13.0/Int32.js";
|
|
2
|
+
import { FSharpRef } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
3
|
+
import { int32ToString } from "../../../fable_modules/fable-library-js.4.13.0/Util.js";
|
|
4
4
|
import { Comment$ } from "./Comment.js";
|
|
5
|
-
import { value as value_1, bind } from "../../../fable_modules/fable-library.4.
|
|
5
|
+
import { value as value_1, bind } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
6
6
|
import { tryItem } from "./CommentList.js";
|
|
7
|
-
import { append } from "../../../fable_modules/fable-library.4.
|
|
7
|
+
import { append } from "../../../fable_modules/fable-library-js.4.13.0/Array.js";
|
|
8
8
|
import { OntologyAnnotation } from "./OntologyAnnotation.js";
|
|
9
9
|
import { Factor } from "./Factor.js";
|
|
10
10
|
import { MaterialAttribute_fromString_Z2304A83C } from "./MaterialAttribute.js";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { defaultArg } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { Record } from "../../../fable_modules/fable-library.4.
|
|
3
|
-
import { int32_type, record_type, option_type, string_type } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { defaultArg } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
2
|
+
import { Record } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
3
|
+
import { int32_type, record_type, option_type, string_type } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
4
4
|
|
|
5
5
|
export class Comment$ extends Record {
|
|
6
6
|
constructor(ID, Name, Value) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { map, append, choose, tryPick } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { value } from "../../../fable_modules/fable-library.4.
|
|
3
|
-
import { ofArray } from "../../../fable_modules/fable-library.4.
|
|
4
|
-
import { equals, comparePrimitives } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { map, append, choose, tryPick } from "../../../fable_modules/fable-library-js.4.13.0/Array.js";
|
|
2
|
+
import { value } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
3
|
+
import { ofArray } from "../../../fable_modules/fable-library-js.4.13.0/Map.js";
|
|
4
|
+
import { equals, comparePrimitives } from "../../../fable_modules/fable-library-js.4.13.0/Util.js";
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* If a comment with the given key exists in the [], return its value, else return None
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Record } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { record_type, option_type, string_type } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { Record } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { record_type, option_type, string_type } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
3
3
|
import { Value as Value_1, Value_$reflection } from "./Value.js";
|
|
4
4
|
import { OntologyAnnotation, OntologyAnnotation_$reflection } from "./OntologyAnnotation.js";
|
|
5
5
|
import { ActivePatterns_$007CRegex$007C_$007C } from "../Regex.js";
|
|
6
|
-
import { map, defaultArg, unwrap } from "../../../fable_modules/fable-library.4.
|
|
6
|
+
import { map, defaultArg, unwrap } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
7
7
|
import { Option_fromValueWithDefault } from "../Helper.js";
|
|
8
|
-
import { printf, toText } from "../../../fable_modules/fable-library.4.
|
|
8
|
+
import { printf, toText } from "../../../fable_modules/fable-library-js.4.13.0/String.js";
|
|
9
9
|
|
|
10
10
|
export class Component extends Record {
|
|
11
11
|
constructor(ComponentName, ComponentValue, ComponentUnit, ComponentType) {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { Record, toString } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { printf, toText } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { Record, toString } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { printf, toText } from "../../../fable_modules/fable-library-js.4.13.0/String.js";
|
|
3
3
|
import { DataFile_$reflection, DataFile__get_AsString } from "./DataFile.js";
|
|
4
|
-
import { record_type, list_type, option_type, string_type } from "../../../fable_modules/fable-library.4.
|
|
4
|
+
import { record_type, list_type, option_type, string_type } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
5
5
|
import { Comment$_$reflection } from "./Comment.js";
|
|
6
|
-
import { defaultArg } from "../../../fable_modules/fable-library.4.
|
|
6
|
+
import { defaultArg } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
7
7
|
|
|
8
8
|
export class Data extends Record {
|
|
9
9
|
constructor(ID, Name, DataType, Comments) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Union } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { union_type } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { Union } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { union_type } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
3
3
|
|
|
4
4
|
export class DataFile extends Union {
|
|
5
5
|
constructor(tag, fields) {
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { OntologyAnnotation_$reflection, OntologyAnnotation } from "./OntologyAnnotation.js";
|
|
2
|
-
import { map, defaultArg, unwrap } from "../../../fable_modules/fable-library.4.
|
|
2
|
+
import { map, defaultArg, unwrap } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
3
3
|
import { Option_fromValueWithDefault } from "../Helper.js";
|
|
4
|
-
import { filter, map as map_1, singleton, append, exists, tryFind } from "../../../fable_modules/fable-library.4.
|
|
5
|
-
import { equals } from "../../../fable_modules/fable-library.4.
|
|
6
|
-
import { record_type, array_type, option_type, string_type, getRecordFields, makeRecord } from "../../../fable_modules/fable-library.4.
|
|
7
|
-
import { map as map_2, map2 } from "../../../fable_modules/fable-library.4.
|
|
4
|
+
import { filter, map as map_1, singleton, append, exists, tryFind } from "../../../fable_modules/fable-library-js.4.13.0/List.js";
|
|
5
|
+
import { equals } from "../../../fable_modules/fable-library-js.4.13.0/Util.js";
|
|
6
|
+
import { record_type, array_type, option_type, string_type, getRecordFields, makeRecord } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
7
|
+
import { map as map_2, map2 } from "../../../fable_modules/fable-library-js.4.13.0/Array.js";
|
|
8
8
|
import { Update_updateOnlyByExistingAppend, Update_updateOnlyByExisting, Update_updateAppend } from "../Helper.js";
|
|
9
|
-
import { Record, toString } from "../../../fable_modules/fable-library.4.
|
|
9
|
+
import { Record, toString } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
10
10
|
import { Comment$_$reflection } from "./Comment.js";
|
|
11
11
|
|
|
12
12
|
export class Factor extends Record {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Record, toString } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { defaultArg, map } from "../../../fable_modules/fable-library.4.
|
|
3
|
-
import { record_type, option_type, string_type } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { Record, toString } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { defaultArg, map } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
3
|
+
import { record_type, option_type, string_type } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
4
4
|
import { Factor, Factor_$reflection } from "./Factor.js";
|
|
5
5
|
import { Value_$reflection } from "./Value.js";
|
|
6
6
|
import { OntologyAnnotation_$reflection } from "./OntologyAnnotation.js";
|
|
7
|
-
import { int32ToString } from "../../../fable_modules/fable-library.4.
|
|
8
|
-
import { printf, toText } from "../../../fable_modules/fable-library.4.
|
|
7
|
+
import { int32ToString } from "../../../fable_modules/fable-library-js.4.13.0/Util.js";
|
|
8
|
+
import { printf, toText } from "../../../fable_modules/fable-library-js.4.13.0/String.js";
|
|
9
9
|
|
|
10
10
|
export class FactorValue extends Record {
|
|
11
11
|
constructor(ID, Category, Value, Unit) {
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { Record } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { getRecordFields, makeRecord, record_type, list_type, option_type, string_type } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { Record } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { getRecordFields, makeRecord, record_type, list_type, option_type, string_type } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
3
3
|
import { OntologySourceReference_$reflection } from "./OntologySourceReference.js";
|
|
4
4
|
import { Publication_$reflection } from "./Publication.js";
|
|
5
5
|
import { Person_$reflection } from "./Person.js";
|
|
6
6
|
import { Study_update_7312BC8B, Study_$reflection } from "./Study.js";
|
|
7
7
|
import { Remark_$reflection, Comment$_$reflection } from "./Comment.js";
|
|
8
|
-
import { map, defaultArg } from "../../../fable_modules/fable-library.4.
|
|
9
|
-
import { map as map_1, empty } from "../../../fable_modules/fable-library.4.
|
|
8
|
+
import { map, defaultArg } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
9
|
+
import { map as map_1, empty } from "../../../fable_modules/fable-library-js.4.13.0/List.js";
|
|
10
10
|
import { Option_mapDefault } from "../Helper.js";
|
|
11
|
-
import { map2 } from "../../../fable_modules/fable-library.4.
|
|
11
|
+
import { map2 } from "../../../fable_modules/fable-library-js.4.13.0/Array.js";
|
|
12
12
|
import { Update_updateOnlyByExistingAppend, Update_updateOnlyByExisting, Update_updateAppend } from "../Helper.js";
|
|
13
|
-
import { toFail } from "../../../fable_modules/fable-library.4.
|
|
13
|
+
import { toFail } from "../../../fable_modules/fable-library-js.4.13.0/String.js";
|
|
14
14
|
|
|
15
15
|
export class Investigation extends Record {
|
|
16
16
|
constructor(ID, FileName, Identifier, Title, Description, SubmissionDate, PublicReleaseDate, OntologySourceReferences, Publications, Contacts, Studies, Comments, Remarks) {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { Record, toString } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { choose, empty, length } from "../../../fable_modules/fable-library.4.
|
|
3
|
-
import { defaultArg } from "../../../fable_modules/fable-library.4.
|
|
4
|
-
import { printf, toText } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { Record, toString } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { choose, empty, length } from "../../../fable_modules/fable-library-js.4.13.0/List.js";
|
|
3
|
+
import { defaultArg } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
4
|
+
import { printf, toText } from "../../../fable_modules/fable-library-js.4.13.0/String.js";
|
|
5
5
|
import { MaterialType_$reflection, MaterialType__get_AsString } from "./MaterialType.js";
|
|
6
|
-
import { record_type, list_type, option_type, string_type } from "../../../fable_modules/fable-library.4.
|
|
6
|
+
import { record_type, list_type, option_type, string_type } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
7
7
|
import { MaterialAttributeValue_$reflection } from "./MaterialAttributeValue.js";
|
|
8
8
|
|
|
9
9
|
export class Material extends Record {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Record, toString } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { record_type, option_type, string_type } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { Record, toString } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { record_type, option_type, string_type } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
3
3
|
import { OntologyAnnotation, OntologyAnnotation_$reflection } from "./OntologyAnnotation.js";
|
|
4
|
-
import { bind, map, defaultArg, unwrap } from "../../../fable_modules/fable-library.4.
|
|
4
|
+
import { bind, map, defaultArg, unwrap } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
5
5
|
import { Option_fromValueWithDefault } from "../Helper.js";
|
|
6
6
|
|
|
7
7
|
export class MaterialAttribute extends Record {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Record, toString } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { bind, defaultArg, map } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { Record, toString } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { bind, defaultArg, map } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
3
3
|
import { MaterialAttribute__SetCategory_Z4C0FE73C, MaterialAttribute_create_Z6C54B221, MaterialAttribute__MapCategory_Z69DD836A, MaterialAttribute__get_TryNameText, MaterialAttribute_$reflection, MaterialAttribute__get_NameText } from "./MaterialAttribute.js";
|
|
4
|
-
import { record_type, option_type, string_type } from "../../../fable_modules/fable-library.4.
|
|
4
|
+
import { record_type, option_type, string_type } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
5
5
|
import { Value_$reflection } from "./Value.js";
|
|
6
6
|
import { OntologyAnnotation_$reflection } from "./OntologyAnnotation.js";
|
|
7
|
-
import { int32ToString } from "../../../fable_modules/fable-library.4.
|
|
8
|
-
import { printf, toText } from "../../../fable_modules/fable-library.4.
|
|
7
|
+
import { int32ToString } from "../../../fable_modules/fable-library-js.4.13.0/Util.js";
|
|
8
|
+
import { printf, toText } from "../../../fable_modules/fable-library-js.4.13.0/String.js";
|
|
9
9
|
|
|
10
10
|
export class MaterialAttributeValue extends Record {
|
|
11
11
|
constructor(ID, Category, Value, Unit) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Union } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { union_type } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { Union } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { union_type } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
3
3
|
|
|
4
4
|
export class MaterialType extends Union {
|
|
5
5
|
constructor(tag, fields) {
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { map as map_1, value as value_4, defaultArg, unwrap } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { map as map_1, value as value_4, defaultArg, unwrap } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
2
2
|
import { Pattern_TermAnnotationShortPattern, ActivePatterns_$007CRegex$007C_$007C, tryParseTermAnnotation } from "../Regex.js";
|
|
3
|
-
import { equals, stringHash } from "../../../fable_modules/fable-library.4.
|
|
4
|
-
import { filter, map, singleton, append, exists, tryFind } from "../../../fable_modules/fable-library.4.
|
|
5
|
-
import { record_type, array_type, option_type, string_type, getRecordFields, makeRecord } from "../../../fable_modules/fable-library.4.
|
|
6
|
-
import { map as map_2, map2 } from "../../../fable_modules/fable-library.4.
|
|
3
|
+
import { equals, stringHash } from "../../../fable_modules/fable-library-js.4.13.0/Util.js";
|
|
4
|
+
import { filter, map, singleton, append, exists, tryFind } from "../../../fable_modules/fable-library-js.4.13.0/List.js";
|
|
5
|
+
import { record_type, array_type, option_type, string_type, getRecordFields, makeRecord } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
6
|
+
import { map as map_2, map2 } from "../../../fable_modules/fable-library-js.4.13.0/Array.js";
|
|
7
7
|
import { Update_updateOnlyByExistingAppend, Update_updateOnlyByExisting, Update_updateAppend } from "../Helper.js";
|
|
8
8
|
import { Option_mapDefault } from "../Helper.js";
|
|
9
|
-
import { Record, toString } from "../../../fable_modules/fable-library.4.
|
|
9
|
+
import { Record, toString } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
10
10
|
import { Comment$_$reflection } from "./Comment.js";
|
|
11
11
|
|
|
12
12
|
export class OntologyAnnotation extends Record {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { filter, map, singleton, append, exists, tryFind } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { equals } from "../../../fable_modules/fable-library.4.
|
|
3
|
-
import { record_type, array_type, option_type, string_type, getRecordFields, makeRecord } from "../../../fable_modules/fable-library.4.
|
|
4
|
-
import { map as map_2, map2 } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { filter, map, singleton, append, exists, tryFind } from "../../../fable_modules/fable-library-js.4.13.0/List.js";
|
|
2
|
+
import { equals } from "../../../fable_modules/fable-library-js.4.13.0/Util.js";
|
|
3
|
+
import { record_type, array_type, option_type, string_type, getRecordFields, makeRecord } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
4
|
+
import { map as map_2, map2 } from "../../../fable_modules/fable-library-js.4.13.0/Array.js";
|
|
5
5
|
import { Update_updateOnlyByExistingAppend, Update_updateOnlyByExisting, Update_updateAppend } from "../Helper.js";
|
|
6
6
|
import { Option_mapDefault } from "../Helper.js";
|
|
7
|
-
import { map as map_1 } from "../../../fable_modules/fable-library.4.
|
|
8
|
-
import { Record } from "../../../fable_modules/fable-library.4.
|
|
7
|
+
import { map as map_1 } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
8
|
+
import { Record } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
9
9
|
import { Comment$_$reflection } from "./Comment.js";
|
|
10
10
|
|
|
11
11
|
export class OntologySourceReference extends Record {
|
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
import { append as append_1, tryPick, map2, map, tryFind } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { equals } from "../../../fable_modules/fable-library.4.
|
|
3
|
-
import { singleton, append } from "../../../fable_modules/fable-library.4.
|
|
4
|
-
import { record_type, array_type, option_type, string_type, getRecordFields, makeRecord } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { append as append_1, tryPick, map2, map, tryFind } from "../../../fable_modules/fable-library-js.4.13.0/Array.js";
|
|
2
|
+
import { numberHash, equals } from "../../../fable_modules/fable-library-js.4.13.0/Util.js";
|
|
3
|
+
import { singleton, append } from "../../../fable_modules/fable-library-js.4.13.0/List.js";
|
|
4
|
+
import { record_type, array_type, option_type, string_type, getRecordFields, makeRecord } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
5
5
|
import { Update_updateOnlyByExistingAppend, Update_updateOnlyByExisting, Update_updateAppend } from "../Helper.js";
|
|
6
|
-
import { Option_fromValueWithDefault, Option_mapDefault } from "../Helper.js";
|
|
7
|
-
import { endsWith } from "../../../fable_modules/fable-library.4.
|
|
8
|
-
import { map as map_1, defaultArg, value as value_2 } from "../../../fable_modules/fable-library.4.
|
|
6
|
+
import { HashCodes_hash, HashCodes_boxHashOption, HashCodes_boxHashArray, Option_fromValueWithDefault, Option_mapDefault } from "../Helper.js";
|
|
7
|
+
import { endsWith } from "../../../fable_modules/fable-library-js.4.13.0/String.js";
|
|
8
|
+
import { map as map_1, defaultArg, value as value_2 } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
9
9
|
import { Comment$_$reflection, Comment$ } from "./Comment.js";
|
|
10
|
-
import {
|
|
10
|
+
import { singleton as singleton_1, append as append_2, delay, toArray } from "../../../fable_modules/fable-library-js.4.13.0/Seq.js";
|
|
11
|
+
import { Record } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
11
12
|
import { OntologyAnnotation_$reflection } from "./OntologyAnnotation.js";
|
|
12
13
|
|
|
13
14
|
export class Person extends Record {
|
|
@@ -129,6 +130,20 @@ export class Person extends Record {
|
|
|
129
130
|
const roles = map_1((array_1) => map((c_1) => c_1.Copy(), array_1), this$.Roles);
|
|
130
131
|
return Person.make(this$.ID, this$.ORCID, this$.LastName, this$.FirstName, this$.MidInitials, this$.EMail, this$.Phone, this$.Fax, this$.Address, this$.Affiliation, roles, nextComments);
|
|
131
132
|
}
|
|
133
|
+
GetHashCode() {
|
|
134
|
+
const this$ = this;
|
|
135
|
+
return HashCodes_boxHashArray(toArray(delay(() => append_2(singleton_1(HashCodes_boxHashOption(this$.ORCID)), delay(() => append_2(singleton_1(HashCodes_boxHashOption(this$.LastName)), delay(() => append_2(singleton_1(HashCodes_boxHashOption(this$.FirstName)), delay(() => append_2(singleton_1(HashCodes_boxHashOption(this$.MidInitials)), delay(() => append_2(singleton_1(HashCodes_boxHashOption(this$.EMail)), delay(() => append_2(singleton_1(HashCodes_boxHashOption(this$.Phone)), delay(() => append_2(singleton_1(HashCodes_boxHashOption(this$.Fax)), delay(() => append_2(singleton_1(HashCodes_boxHashOption(this$.Address)), delay(() => append_2(singleton_1(HashCodes_boxHashOption(this$.Affiliation)), delay(() => {
|
|
136
|
+
let copyOfStruct;
|
|
137
|
+
return append_2((this$.Roles != null) ? singleton_1(HashCodes_boxHashArray(value_2(this$.Roles))) : singleton_1((copyOfStruct = 0, numberHash(copyOfStruct))), delay(() => {
|
|
138
|
+
let copyOfStruct_1;
|
|
139
|
+
return (this$.Comments != null) ? singleton_1(HashCodes_boxHashArray(value_2(this$.Comments))) : singleton_1((copyOfStruct_1 = 0, numberHash(copyOfStruct_1)));
|
|
140
|
+
}));
|
|
141
|
+
}))))))))))))))))))))) | 0;
|
|
142
|
+
}
|
|
143
|
+
Equals(obj) {
|
|
144
|
+
const this$ = this;
|
|
145
|
+
return HashCodes_hash(this$) === HashCodes_hash(obj);
|
|
146
|
+
}
|
|
132
147
|
}
|
|
133
148
|
|
|
134
149
|
export function Person_$reflection() {
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { Record, toString } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { zip, tryPick, map as map_1, tryFind, append, collect, choose, empty, length } from "../../../fable_modules/fable-library.4.
|
|
3
|
-
import { map, value as value_4, bind, defaultArg } from "../../../fable_modules/fable-library.4.
|
|
4
|
-
import { printf, toText } from "../../../fable_modules/fable-library.4.
|
|
5
|
-
import { getRecordFields, makeRecord, record_type, list_type, option_type, string_type } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { Record, toString } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { zip, tryPick, map as map_1, tryFind, append, collect, choose, empty, length } from "../../../fable_modules/fable-library-js.4.13.0/List.js";
|
|
3
|
+
import { map, value as value_4, bind, defaultArg } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
4
|
+
import { printf, toText } from "../../../fable_modules/fable-library-js.4.13.0/String.js";
|
|
5
|
+
import { getRecordFields, makeRecord, record_type, list_type, option_type, string_type } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
6
6
|
import { Protocol_$reflection } from "./Protocol.js";
|
|
7
7
|
import { ProcessParameterValue_$reflection } from "./ProcessParameterValue.js";
|
|
8
8
|
import { ProcessInput_tryMaterial_102B6859, ProcessInput_trySample_102B6859, ProcessInput_tryData_102B6859, ProcessInput_trySource_102B6859, ProcessInput_tryGetCharacteristicValues_102B6859, ProcessInput_$reflection } from "./ProcessInput.js";
|
|
9
|
-
import { ProcessOutput_tryGetFactorValues_11830B70, ProcessOutput_tryGetCharacteristicValues_11830B70, ProcessOutput_$reflection } from "./ProcessOutput.js";
|
|
9
|
+
import { ProcessOutput_tryMaterial_11830B70, ProcessOutput_trySample_11830B70, ProcessOutput_tryData_11830B70, ProcessOutput_tryGetFactorValues_11830B70, ProcessOutput_tryGetCharacteristicValues_11830B70, ProcessOutput_$reflection } from "./ProcessOutput.js";
|
|
10
10
|
import { Comment$_$reflection } from "./Comment.js";
|
|
11
11
|
import { ActivePatterns_$007CRegex$007C_$007C } from "../Regex.js";
|
|
12
|
-
import { parse } from "../../../fable_modules/fable-library.4.
|
|
13
|
-
import { List_distinct } from "../../../fable_modules/fable-library.4.
|
|
14
|
-
import { safeHash, equals } from "../../../fable_modules/fable-library.4.
|
|
12
|
+
import { parse } from "../../../fable_modules/fable-library-js.4.13.0/Int32.js";
|
|
13
|
+
import { List_distinct } from "../../../fable_modules/fable-library-js.4.13.0/Seq2.js";
|
|
14
|
+
import { safeHash, equals } from "../../../fable_modules/fable-library-js.4.13.0/Util.js";
|
|
15
15
|
import { ProtocolParameter } from "./ProtocolParameter.js";
|
|
16
16
|
import { Update_UpdateOptions, Option_fromValueWithDefault } from "../Helper.js";
|
|
17
|
-
import { map2 } from "../../../fable_modules/fable-library.4.
|
|
17
|
+
import { map2 } from "../../../fable_modules/fable-library-js.4.13.0/Array.js";
|
|
18
18
|
import { Update_updateOnlyByExistingAppend, Update_updateOnlyByExisting, Update_updateAppend } from "../Helper.js";
|
|
19
19
|
|
|
20
20
|
export class Process extends Record {
|
|
@@ -349,21 +349,21 @@ export function Process_getSources_716E708F(p) {
|
|
|
349
349
|
}
|
|
350
350
|
|
|
351
351
|
export function Process_getData_716E708F(p) {
|
|
352
|
-
return List_distinct(append(choose(ProcessInput_tryData_102B6859, defaultArg(p.Inputs, empty())), choose(
|
|
352
|
+
return List_distinct(append(choose(ProcessInput_tryData_102B6859, defaultArg(p.Inputs, empty())), choose(ProcessOutput_tryData_11830B70, defaultArg(p.Outputs, empty()))), {
|
|
353
353
|
Equals: equals,
|
|
354
354
|
GetHashCode: safeHash,
|
|
355
355
|
});
|
|
356
356
|
}
|
|
357
357
|
|
|
358
358
|
export function Process_getSamples_716E708F(p) {
|
|
359
|
-
return List_distinct(append(choose(ProcessInput_trySample_102B6859, defaultArg(p.Inputs, empty())), choose(
|
|
359
|
+
return List_distinct(append(choose(ProcessInput_trySample_102B6859, defaultArg(p.Inputs, empty())), choose(ProcessOutput_trySample_11830B70, defaultArg(p.Outputs, empty()))), {
|
|
360
360
|
Equals: equals,
|
|
361
361
|
GetHashCode: safeHash,
|
|
362
362
|
});
|
|
363
363
|
}
|
|
364
364
|
|
|
365
365
|
export function Process_getMaterials_716E708F(p) {
|
|
366
|
-
return List_distinct(append(choose(ProcessInput_tryMaterial_102B6859, defaultArg(p.Inputs, empty())), choose(
|
|
366
|
+
return List_distinct(append(choose(ProcessInput_tryMaterial_102B6859, defaultArg(p.Inputs, empty())), choose(ProcessOutput_tryMaterial_11830B70, defaultArg(p.Outputs, empty()))), {
|
|
367
367
|
Equals: equals,
|
|
368
368
|
GetHashCode: safeHash,
|
|
369
369
|
});
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { Union, toString } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { printf, toText } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { Union, toString } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { printf, toText } from "../../../fable_modules/fable-library-js.4.13.0/String.js";
|
|
3
3
|
import { Source_create_7A281ED9, Source_getUnits_Z28BE5327, Source_setCharacteristicValues, Source_get_empty, Source_$reflection } from "./Source.js";
|
|
4
4
|
import { Sample_create_E50ED22, Sample_getUnits_Z29207F1E, Sample_setCharacteristicValues, Sample_$reflection } from "./Sample.js";
|
|
5
5
|
import { Data_create_Z326CF519, Data_$reflection } from "./Data.js";
|
|
6
6
|
import { Material_create_Z31BE6CDD, Material_getUnits_Z42815C11, Material_setCharacteristicValues, Material_$reflection } from "./Material.js";
|
|
7
|
-
import { union_type } from "../../../fable_modules/fable-library.4.
|
|
8
|
-
import { unwrap, map, defaultArg } from "../../../fable_modules/fable-library.4.
|
|
9
|
-
import { empty, choose } from "../../../fable_modules/fable-library.4.
|
|
7
|
+
import { union_type } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
8
|
+
import { unwrap, map, defaultArg } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
9
|
+
import { empty, choose } from "../../../fable_modules/fable-library-js.4.13.0/List.js";
|
|
10
10
|
import { DataFile } from "./DataFile.js";
|
|
11
11
|
|
|
12
12
|
export class ProcessInput extends Union {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Union, toString } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { printf, toText } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { Union, toString } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { printf, toText } from "../../../fable_modules/fable-library-js.4.13.0/String.js";
|
|
3
3
|
import { Sample_create_E50ED22, Sample_getUnits_Z29207F1E, Sample_setFactorValues, Sample_get_empty, Sample_$reflection } from "./Sample.js";
|
|
4
4
|
import { Data_create_Z326CF519, Data_$reflection } from "./Data.js";
|
|
5
5
|
import { Material_create_Z31BE6CDD, Material_getUnits_Z42815C11, Material_$reflection } from "./Material.js";
|
|
6
|
-
import { union_type } from "../../../fable_modules/fable-library.4.
|
|
7
|
-
import { unwrap, map, defaultArg } from "../../../fable_modules/fable-library.4.
|
|
8
|
-
import { empty, choose } from "../../../fable_modules/fable-library.4.
|
|
6
|
+
import { union_type } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
7
|
+
import { unwrap, map, defaultArg } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
8
|
+
import { empty, choose } from "../../../fable_modules/fable-library-js.4.13.0/List.js";
|
|
9
9
|
import { DataFile } from "./DataFile.js";
|
|
10
10
|
|
|
11
11
|
export class ProcessOutput extends Union {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { bind, unwrap, map, defaultArg } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { int32ToString } from "../../../fable_modules/fable-library.4.
|
|
3
|
-
import { printf, toText } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { bind, unwrap, map, defaultArg } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
2
|
+
import { int32ToString } from "../../../fable_modules/fable-library-js.4.13.0/Util.js";
|
|
3
|
+
import { printf, toText } from "../../../fable_modules/fable-library-js.4.13.0/String.js";
|
|
4
4
|
import { ProtocolParameter_$reflection, ProtocolParameter } from "./ProtocolParameter.js";
|
|
5
|
-
import { Record, toString } from "../../../fable_modules/fable-library.4.
|
|
6
|
-
import { record_type, option_type } from "../../../fable_modules/fable-library.4.
|
|
5
|
+
import { Record, toString } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
6
|
+
import { record_type, option_type } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
7
7
|
import { Value_$reflection } from "./Value.js";
|
|
8
8
|
import { OntologyAnnotation_$reflection } from "./OntologyAnnotation.js";
|
|
9
9
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { List_groupBy, List_distinct } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { singleton, zip, map, empty, collect, concat, filter, choose } from "../../../fable_modules/fable-library.4.
|
|
3
|
-
import { value as value_4, defaultArg, bind } from "../../../fable_modules/fable-library.4.
|
|
4
|
-
import { arrayHash, equalArrays, comparePrimitives, safeHash, equals, stringHash } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { List_groupBy, List_distinct } from "../../../fable_modules/fable-library-js.4.13.0/Seq2.js";
|
|
2
|
+
import { singleton, zip, map, empty, collect, concat, filter, choose } from "../../../fable_modules/fable-library-js.4.13.0/List.js";
|
|
3
|
+
import { value as value_4, defaultArg, bind } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
4
|
+
import { arrayHash, equalArrays, comparePrimitives, safeHash, equals, stringHash } from "../../../fable_modules/fable-library-js.4.13.0/Util.js";
|
|
5
5
|
import { Process_updateProtocol, Process_getMaterials_716E708F, Process_getSamples_716E708F, Process_getSources_716E708F, Process_getData_716E708F, Process_getUnits_716E708F, Process_getFactors_716E708F, Process_tryGetOutputsWithFactorBy, Process_tryGetOutputsWithCharacteristicBy, Process_tryGetInputsWithCharacteristicBy, Process_getCharacteristics_716E708F, Process_getParameters_716E708F, Process_tryGetOutputsWithParameterBy, Process_tryGetInputsWithParameterBy } from "./Process.js";
|
|
6
|
-
import { FSharpSet__Contains, ofList } from "../../../fable_modules/fable-library.4.
|
|
6
|
+
import { FSharpSet__Contains, ofList } from "../../../fable_modules/fable-library-js.4.13.0/Set.js";
|
|
7
7
|
import { ProcessOutput__get_Name, ProcessOutput_getName_11830B70 } from "./ProcessOutput.js";
|
|
8
8
|
import { ProcessInput__get_Name, ProcessInput_getName_102B6859 } from "./ProcessInput.js";
|
|
9
|
-
import { FSharpMap__TryFind, ofList as ofList_1 } from "../../../fable_modules/fable-library.4.
|
|
9
|
+
import { FSharpMap__TryFind, ofList as ofList_1 } from "../../../fable_modules/fable-library-js.4.13.0/Map.js";
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
12
|
* Returns the names of the protocols the given processes impelement
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { Record } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { getRecordFields, makeRecord, record_type, list_type, option_type, string_type } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { Record } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { getRecordFields, makeRecord, record_type, list_type, option_type, string_type } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
3
3
|
import { OntologyAnnotation_$reflection } from "./OntologyAnnotation.js";
|
|
4
4
|
import { ProtocolParameter_$reflection } from "./ProtocolParameter.js";
|
|
5
5
|
import { Component_$reflection } from "./Component.js";
|
|
6
6
|
import { Comment$_$reflection } from "./Comment.js";
|
|
7
|
-
import { empty, filter, map, singleton, append, exists, tryFind } from "../../../fable_modules/fable-library.4.
|
|
8
|
-
import { equals } from "../../../fable_modules/fable-library.4.
|
|
9
|
-
import { map2 } from "../../../fable_modules/fable-library.4.
|
|
7
|
+
import { empty, filter, map, singleton, append, exists, tryFind } from "../../../fable_modules/fable-library-js.4.13.0/List.js";
|
|
8
|
+
import { equals } from "../../../fable_modules/fable-library-js.4.13.0/Util.js";
|
|
9
|
+
import { map2 } from "../../../fable_modules/fable-library-js.4.13.0/Array.js";
|
|
10
10
|
import { Update_updateOnlyByExistingAppend, Update_updateOnlyByExisting, Update_updateAppend } from "../Helper.js";
|
|
11
|
-
import { defaultArg, map as map_1 } from "../../../fable_modules/fable-library.4.
|
|
11
|
+
import { defaultArg, map as map_1 } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
12
12
|
|
|
13
13
|
export class Protocol extends Record {
|
|
14
14
|
constructor(ID, Name, ProtocolType, Description, Uri, Version, Parameters, Components, Comments) {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { OntologyAnnotation_$reflection, OntologyAnnotation } from "./OntologyAnnotation.js";
|
|
2
|
-
import { bind, map, defaultArg, unwrap } from "../../../fable_modules/fable-library.4.
|
|
2
|
+
import { bind, map, defaultArg, unwrap } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
3
3
|
import { Option_fromValueWithDefault } from "../Helper.js";
|
|
4
|
-
import { Record, toString } from "../../../fable_modules/fable-library.4.
|
|
5
|
-
import { record_type, option_type, string_type } from "../../../fable_modules/fable-library.4.
|
|
4
|
+
import { Record, toString } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
5
|
+
import { record_type, option_type, string_type } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
6
6
|
|
|
7
7
|
export class ProtocolParameter extends Record {
|
|
8
8
|
constructor(ID, ParameterName) {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { filter, map, tryFind, exists, singleton, append } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { equals } from "../../../fable_modules/fable-library.4.
|
|
3
|
-
import { record_type, array_type, option_type, string_type, getRecordFields, makeRecord } from "../../../fable_modules/fable-library.4.
|
|
4
|
-
import { map as map_2, map2 } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { filter, map, tryFind, exists, singleton, append } from "../../../fable_modules/fable-library-js.4.13.0/List.js";
|
|
2
|
+
import { equals } from "../../../fable_modules/fable-library-js.4.13.0/Util.js";
|
|
3
|
+
import { record_type, array_type, option_type, string_type, getRecordFields, makeRecord } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
4
|
+
import { map as map_2, map2 } from "../../../fable_modules/fable-library-js.4.13.0/Array.js";
|
|
5
5
|
import { Update_updateOnlyByExistingAppend, Update_updateOnlyByExisting, Update_updateAppend } from "../Helper.js";
|
|
6
|
-
import { map as map_1 } from "../../../fable_modules/fable-library.4.
|
|
6
|
+
import { map as map_1 } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
7
7
|
import { Option_mapDefault } from "../Helper.js";
|
|
8
|
-
import { Record } from "../../../fable_modules/fable-library.4.
|
|
8
|
+
import { Record } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
9
9
|
import { OntologyAnnotation_$reflection } from "./OntologyAnnotation.js";
|
|
10
10
|
import { Comment$_$reflection } from "./Comment.js";
|
|
11
11
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { Record, toString } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { append, choose, empty, length } from "../../../fable_modules/fable-library.4.
|
|
3
|
-
import { defaultArg } from "../../../fable_modules/fable-library.4.
|
|
4
|
-
import { printf, toText } from "../../../fable_modules/fable-library.4.
|
|
5
|
-
import { record_type, list_type, option_type, string_type } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { Record, toString } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { append, choose, empty, length } from "../../../fable_modules/fable-library-js.4.13.0/List.js";
|
|
3
|
+
import { defaultArg } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
4
|
+
import { printf, toText } from "../../../fable_modules/fable-library-js.4.13.0/String.js";
|
|
5
|
+
import { record_type, list_type, option_type, string_type } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
6
6
|
import { MaterialAttributeValue_$reflection } from "./MaterialAttributeValue.js";
|
|
7
7
|
import { FactorValue_$reflection } from "./FactorValue.js";
|
|
8
8
|
import { Source_$reflection } from "./Source.js";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { Record, toString } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { choose, empty, length } from "../../../fable_modules/fable-library.4.
|
|
3
|
-
import { defaultArg } from "../../../fable_modules/fable-library.4.
|
|
4
|
-
import { printf, toText } from "../../../fable_modules/fable-library.4.
|
|
5
|
-
import { record_type, list_type, option_type, string_type } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { Record, toString } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { choose, empty, length } from "../../../fable_modules/fable-library-js.4.13.0/List.js";
|
|
3
|
+
import { defaultArg } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
4
|
+
import { printf, toText } from "../../../fable_modules/fable-library-js.4.13.0/String.js";
|
|
5
|
+
import { record_type, list_type, option_type, string_type } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
6
6
|
import { MaterialAttributeValue_$reflection } from "./MaterialAttributeValue.js";
|
|
7
7
|
|
|
8
8
|
export class Source extends Record {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Record } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { getRecordFields, makeRecord, record_type, list_type, option_type, string_type } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { Record } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { getRecordFields, makeRecord, record_type, list_type, option_type, string_type } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
3
3
|
import { Publication_$reflection } from "./Publication.js";
|
|
4
4
|
import { Person_$reflection } from "./Person.js";
|
|
5
5
|
import { OntologyAnnotation_$reflection } from "./OntologyAnnotation.js";
|
|
@@ -10,19 +10,19 @@ import { Assay_update_722A269D, Assay_updateProtocols, Assay_getMaterials_722A26
|
|
|
10
10
|
import { Factor_$reflection } from "./Factor.js";
|
|
11
11
|
import { MaterialAttribute_$reflection } from "./MaterialAttribute.js";
|
|
12
12
|
import { Comment$_$reflection } from "./Comment.js";
|
|
13
|
-
import { collect, empty, filter, map, singleton, append, exists } from "../../../fable_modules/fable-library.4.
|
|
14
|
-
import { stringHash, safeHash, structuralHash, equals } from "../../../fable_modules/fable-library.4.
|
|
15
|
-
import { map2 as map2_2 } from "../../../fable_modules/fable-library.4.
|
|
13
|
+
import { collect, empty, filter, map, singleton, append, exists } from "../../../fable_modules/fable-library-js.4.13.0/List.js";
|
|
14
|
+
import { stringHash, safeHash, structuralHash, equals } from "../../../fable_modules/fable-library-js.4.13.0/Util.js";
|
|
15
|
+
import { map2 as map2_2 } from "../../../fable_modules/fable-library-js.4.13.0/Array.js";
|
|
16
16
|
import { Dict_tryFind, Dict_ofSeqWithMerge, Update_updateOnlyByExistingAppend, Update_updateOnlyByExisting, Update_updateAppend } from "../Helper.js";
|
|
17
|
-
import { map as map_1, defaultArg } from "../../../fable_modules/fable-library.4.
|
|
17
|
+
import { map as map_1, defaultArg } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
18
18
|
import { Option_fromValueWithDefault, Update_UpdateOptions, Option_mapDefault } from "../Helper.js";
|
|
19
19
|
import { updateProtocols, getMaterials, getSamples, getSources, getUnits, getFactors, getCharacteristics, getProtocols } from "./ProcessSequence.js";
|
|
20
|
-
import { List_distinct } from "../../../fable_modules/fable-library.4.
|
|
20
|
+
import { List_distinct } from "../../../fable_modules/fable-library-js.4.13.0/Seq2.js";
|
|
21
21
|
import { Source_$reflection } from "./Source.js";
|
|
22
22
|
import { Sample_$reflection } from "./Sample.js";
|
|
23
23
|
import { AssayMaterials_getMaterials_35E61745 } from "./AssayMaterials.js";
|
|
24
24
|
import { Material_$reflection } from "./Material.js";
|
|
25
|
-
import { toFail } from "../../../fable_modules/fable-library.4.
|
|
25
|
+
import { toFail } from "../../../fable_modules/fable-library-js.4.13.0/String.js";
|
|
26
26
|
|
|
27
27
|
export class Study extends Record {
|
|
28
28
|
constructor(ID, FileName, Identifier, Title, Description, SubmissionDate, PublicReleaseDate, Publications, Contacts, StudyDesignDescriptors, Protocols, Materials, ProcessSequence, Assays, Factors, CharacteristicCategories, UnitCategories, Comments) {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { Record } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { Record } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
2
|
import { Source_$reflection } from "./Source.js";
|
|
3
|
-
import { record_type, option_type, list_type } from "../../../fable_modules/fable-library.4.
|
|
3
|
+
import { record_type, option_type, list_type } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
4
4
|
import { Sample_$reflection } from "./Sample.js";
|
|
5
5
|
import { Material_$reflection } from "./Material.js";
|
|
6
|
-
import { defaultArg } from "../../../fable_modules/fable-library.4.
|
|
7
|
-
import { empty } from "../../../fable_modules/fable-library.4.
|
|
6
|
+
import { defaultArg } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
7
|
+
import { empty } from "../../../fable_modules/fable-library-js.4.13.0/List.js";
|
|
8
8
|
|
|
9
9
|
export class StudyMaterials extends Record {
|
|
10
10
|
constructor(Sources, Samples, OtherMaterials) {
|