@nfdi4plants/arctrl 1.1.0 → 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 +9 -9
- package/Contract/Contract.js +3 -3
- package/Contracts/Contracts.ArcTypes.js +11 -11
- 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 +19 -19
- package/ISA/ISA/ArcTypes/ArcTableAux.js +16 -16
- package/ISA/ISA/ArcTypes/ArcTables.js +11 -11
- package/ISA/ISA/ArcTypes/ArcTypes.js +10 -10
- 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 +105 -84
- package/ISA/ISA.Json/ArcTypes/ArcInvestigation.js +78 -49
- package/ISA/ISA.Json/ArcTypes/ArcStudy.js +74 -41
- package/ISA/ISA.Json/ArcTypes/ArcTable.js +112 -71
- package/ISA/ISA.Json/ArcTypes/CellTable.js +13 -19
- package/ISA/ISA.Json/ArcTypes/CompositeCell.js +23 -38
- 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 +13 -19
- 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 +86 -109
- 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 +25 -24
- 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 +5 -5
- package/ISA/ISA.Spreadsheet/AnnotationTable/CompositeCell.js +2 -2
- package/ISA/ISA.Spreadsheet/AnnotationTable/CompositeColumn.js +8 -8
- package/ISA/ISA.Spreadsheet/AnnotationTable/CompositeHeader.js +4 -4
- package/ISA/ISA.Spreadsheet/ArcAssay.js +5 -5
- package/ISA/ISA.Spreadsheet/ArcInvestigation.js +10 -10
- package/ISA/ISA.Spreadsheet/ArcStudy.js +5 -5
- 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 +21 -16
- 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 +10 -10
- 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.3/Cells/FsCell.fs.js +14 -14
- package/fable_modules/FsSpreadsheet.5.1.3/Cells/FsCellsCollection.fs.js +6 -6
- package/fable_modules/FsSpreadsheet.5.1.3/DSL/CellBuilder.fs.js +4 -4
- package/fable_modules/FsSpreadsheet.5.1.3/DSL/ColumnBuilder.fs.js +3 -3
- package/fable_modules/FsSpreadsheet.5.1.3/DSL/DSL.fs.js +2 -2
- package/fable_modules/FsSpreadsheet.5.1.3/DSL/Expression.fs.js +1 -1
- package/fable_modules/FsSpreadsheet.5.1.3/DSL/RowBuilder.fs.js +3 -3
- package/fable_modules/FsSpreadsheet.5.1.3/DSL/SheetBuilder.fs.js +3 -3
- package/fable_modules/FsSpreadsheet.5.1.3/DSL/TableBuilder.fs.js +3 -3
- package/fable_modules/FsSpreadsheet.5.1.3/DSL/Transform.fs.js +6 -6
- package/fable_modules/FsSpreadsheet.5.1.3/DSL/Types.fs.js +4 -4
- package/fable_modules/FsSpreadsheet.5.1.3/DSL/WorkbookBuilder.fs.js +3 -3
- package/fable_modules/FsSpreadsheet.5.1.3/FsAddress.fs.js +8 -8
- package/fable_modules/FsSpreadsheet.5.1.3/FsColumn.fs.js +3 -3
- package/fable_modules/FsSpreadsheet.5.1.3/FsRow.fs.js +3 -3
- package/fable_modules/FsSpreadsheet.5.1.3/FsWorkbook.fs.js +6 -6
- package/fable_modules/FsSpreadsheet.5.1.3/FsWorksheet.fs.js +9 -9
- package/fable_modules/FsSpreadsheet.5.1.3/Ranges/FsRange.fs.js +3 -3
- package/fable_modules/FsSpreadsheet.5.1.3/Ranges/FsRangeAddress.fs.js +4 -3
- package/fable_modules/FsSpreadsheet.5.1.3/Ranges/FsRangeBase.fs.js +3 -3
- package/fable_modules/FsSpreadsheet.5.1.3/Ranges/FsRangeColumn.fs.js +3 -3
- package/fable_modules/FsSpreadsheet.5.1.3/Ranges/FsRangeRow.fs.js +1 -1
- package/fable_modules/FsSpreadsheet.5.1.3/SheetBuilder.fs.js +8 -8
- package/fable_modules/FsSpreadsheet.5.1.3/Tables/FsTable.fs.js +7 -7
- package/fable_modules/FsSpreadsheet.5.1.3/Tables/FsTableField.fs.js +4 -4
- package/fable_modules/FsSpreadsheet.5.1.3/Tables/FsTableRow.fs.js +1 -1
- 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/{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
package/ARC.js
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { concat, fold, map, exactlyOne, choose } from "./fable_modules/fable-library.4.
|
|
1
|
+
import { concat, fold, map, exactlyOne, choose } from "./fable_modules/fable-library-js.4.13.0/Array.js";
|
|
2
2
|
import { ARCtrl_ISA_ArcAssay__ArcAssay_ToUpdateContract, ARCtrl_ISA_ArcAssay__ArcAssay_ToCreateContract_6FCE9E49, ARCtrl_ISA_ArcStudy__ArcStudy_ToCreateContract_6FCE9E49, ARCtrl_ISA_ArcStudy__ArcStudy_ToUpdateContract, ARCtrl_ISA_ArcInvestigation__ArcInvestigation_ToUpdateContract_6FCE9E49, ARCtrl_ISA_ArcAssay__ArcAssay_ToDeleteContract, ARCtrl_ISA_ArcInvestigation__ArcInvestigation_tryFromReadContract_Static_7570923F, ARCtrl_ISA_ArcStudy__ArcStudy_tryFromReadContract_Static_7570923F, ARCtrl_ISA_ArcAssay__ArcAssay_tryFromReadContract_Static_7570923F } from "./Contracts/Contracts.ArcTypes.js";
|
|
3
|
-
import { collect, empty, iterate, find, tryFind, map as map_1, singleton, append, delay, toList, toArray } from "./fable_modules/fable-library.4.
|
|
3
|
+
import { collect, empty, iterate, find, tryFind, map as map_1, singleton, append, delay, toList, toArray } from "./fable_modules/fable-library-js.4.13.0/Seq.js";
|
|
4
4
|
import { createRunsFolder, createWorkflowsFolder, createInvestigationFile, createStudyFolder, createStudiesFolder, createAssayFolder, createAssaysFolder } from "./FileSystemTree.js";
|
|
5
5
|
import { FileSystemTree } from "./FileSystem/FileSystemTree.js";
|
|
6
6
|
import { FileSystem } from "./FileSystem/FileSystem.js";
|
|
7
|
-
import { bind, map as map_2, value as value_2, defaultArg, unwrap } from "./fable_modules/fable-library.4.
|
|
7
|
+
import { bind, map as map_2, value as value_2, defaultArg, unwrap } from "./fable_modules/fable-library-js.4.13.0/Option.js";
|
|
8
8
|
import { getStudyFolderPath, getAssayFolderPath } from "./Path.js";
|
|
9
9
|
import { Contract } from "./Contract/Contract.js";
|
|
10
|
-
import { ofArray } from "./fable_modules/fable-library.4.
|
|
10
|
+
import { ofArray } from "./fable_modules/fable-library-js.4.13.0/List.js";
|
|
11
11
|
import { tryISAReadContractFromPath } from "./Contracts/Contracts.ARCtrl.js";
|
|
12
12
|
import { ArcTables } from "./ISA/ISA/ArcTypes/ArcTables.js";
|
|
13
|
-
import { comparePrimitives, safeHash } from "./fable_modules/fable-library.4.
|
|
14
|
-
import { addToDict } from "./fable_modules/fable-library.4.
|
|
13
|
+
import { comparePrimitives, safeHash } from "./fable_modules/fable-library-js.4.13.0/Util.js";
|
|
14
|
+
import { addToDict } from "./fable_modules/fable-library-js.4.13.0/MapUtil.js";
|
|
15
15
|
import { toFsWorkbook, toLightFsWorkbook } from "./ISA/ISA.Spreadsheet/ArcInvestigation.js";
|
|
16
16
|
import { ArcInvestigation } from "./ISA/ISA/ArcTypes/ArcTypes.js";
|
|
17
17
|
import { Assay_fileNameFromIdentifier, Study_fileNameFromIdentifier } from "./ISA/ISA/Identifier.js";
|
|
@@ -19,9 +19,9 @@ import { ARCtrl_ISA_ArcStudy__ArcStudy_toFsWorkbook_Static_Z2A9662E9 } from "./I
|
|
|
19
19
|
import { toFsWorkbook as toFsWorkbook_1 } from "./ISA/ISA.Spreadsheet/ArcAssay.js";
|
|
20
20
|
import { Dictionary_tryGet } from "./fable_modules/FsSpreadsheet.5.1.3/Cells/FsCellsCollection.fs.js";
|
|
21
21
|
import { Clone_createCloneContract_5000466F, Init_createAddRemoteContract_Z721C83C5, gitignoreContract, Init_createInitContract_6DFDD678 } from "./Contracts/Contracts.Git.js";
|
|
22
|
-
import { FSharpSet__Contains, ofSeq, unionMany } from "./fable_modules/fable-library.4.
|
|
23
|
-
import { ofSeq as ofSeq_1 } from "./fable_modules/fable-library.4.
|
|
24
|
-
import { class_type } from "./fable_modules/fable-library.4.
|
|
22
|
+
import { FSharpSet__Contains, ofSeq, unionMany } from "./fable_modules/fable-library-js.4.13.0/Set.js";
|
|
23
|
+
import { ofSeq as ofSeq_1 } from "./fable_modules/fable-library-js.4.13.0/Map.js";
|
|
24
|
+
import { class_type } from "./fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
25
25
|
|
|
26
26
|
export function ARCAux_getArcAssaysFromContracts(contracts) {
|
|
27
27
|
return choose(ARCtrl_ISA_ArcAssay__ArcAssay_tryFromReadContract_Static_7570923F, contracts);
|
package/Contract/Contract.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Record } from "../fable_modules/fable-library.4.
|
|
2
|
-
import { class_type, option_type, record_type, array_type, string_type } from "../fable_modules/fable-library.4.
|
|
3
|
-
import { defaultArg } from "../fable_modules/fable-library.4.
|
|
1
|
+
import { Record } from "../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { class_type, option_type, record_type, array_type, string_type } from "../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
3
|
+
import { defaultArg } from "../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
4
4
|
|
|
5
5
|
export class CLITool extends Record {
|
|
6
6
|
constructor(Name, Arguments) {
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
+
import { equalsWith, item } from "../fable_modules/fable-library-js.4.13.0/Array.js";
|
|
1
2
|
import { combineMany } from "../FileSystem/Path.js";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import { unwrap, defaultArg } from "../fable_modules/fable-library.4.5.0/Option.js";
|
|
3
|
+
import { defaultOf } from "../fable_modules/fable-library-js.4.13.0/Util.js";
|
|
4
|
+
import { unwrap, defaultArg } from "../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
5
5
|
import { fromFsWorkbook, toFsWorkbook, toLightFsWorkbook } from "../ISA/ISA.Spreadsheet/ArcInvestigation.js";
|
|
6
6
|
import { Contract } from "../Contract/Contract.js";
|
|
7
7
|
import { Assay_fileNameFromIdentifier, Study_fileNameFromIdentifier } from "../ISA/ISA/Identifier.js";
|
|
8
8
|
import { ARCtrl_ISA_ArcStudy__ArcStudy_fromFsWorkbook_Static_32154C9D, ARCtrl_ISA_ArcStudy__ArcStudy_toFsWorkbook_Static_Z2A9662E9 } from "../ISA/ISA.Spreadsheet/ArcStudy.js";
|
|
9
|
-
import { empty, singleton, collect, append, delay, toArray } from "../fable_modules/fable-library.4.
|
|
9
|
+
import { empty, singleton, collect, append, delay, toArray } from "../fable_modules/fable-library-js.4.13.0/Seq.js";
|
|
10
10
|
import { createAssayFolder, createStudyFolder, createStudiesFolder } from "../FileSystemTree.js";
|
|
11
11
|
import { getAssayFolderPath, getStudyFolderPath } from "../Path.js";
|
|
12
12
|
import { fromFsWorkbook as fromFsWorkbook_1, toFsWorkbook as toFsWorkbook_1 } from "../ISA/ISA.Spreadsheet/ArcAssay.js";
|
|
@@ -14,8 +14,8 @@ import { fromFsWorkbook as fromFsWorkbook_1, toFsWorkbook as toFsWorkbook_1 } fr
|
|
|
14
14
|
export function $007CStudyPath$007C_$007C(input) {
|
|
15
15
|
let matchResult;
|
|
16
16
|
if (!equalsWith((x, y) => (x === y), input, defaultOf()) && (input.length === 3)) {
|
|
17
|
-
if (
|
|
18
|
-
if (
|
|
17
|
+
if (item(0, input) === "studies") {
|
|
18
|
+
if (item(2, input) === "isa.study.xlsx") {
|
|
19
19
|
matchResult = 0;
|
|
20
20
|
}
|
|
21
21
|
else {
|
|
@@ -31,7 +31,7 @@ export function $007CStudyPath$007C_$007C(input) {
|
|
|
31
31
|
}
|
|
32
32
|
switch (matchResult) {
|
|
33
33
|
case 0: {
|
|
34
|
-
const anyStudyName = input
|
|
34
|
+
const anyStudyName = item(1, input);
|
|
35
35
|
return combineMany(input);
|
|
36
36
|
}
|
|
37
37
|
default:
|
|
@@ -42,8 +42,8 @@ export function $007CStudyPath$007C_$007C(input) {
|
|
|
42
42
|
export function $007CAssayPath$007C_$007C(input) {
|
|
43
43
|
let matchResult;
|
|
44
44
|
if (!equalsWith((x, y) => (x === y), input, defaultOf()) && (input.length === 3)) {
|
|
45
|
-
if (
|
|
46
|
-
if (
|
|
45
|
+
if (item(0, input) === "assays") {
|
|
46
|
+
if (item(2, input) === "isa.assay.xlsx") {
|
|
47
47
|
matchResult = 0;
|
|
48
48
|
}
|
|
49
49
|
else {
|
|
@@ -59,7 +59,7 @@ export function $007CAssayPath$007C_$007C(input) {
|
|
|
59
59
|
}
|
|
60
60
|
switch (matchResult) {
|
|
61
61
|
case 0: {
|
|
62
|
-
const anyAssayName = input
|
|
62
|
+
const anyAssayName = item(1, input);
|
|
63
63
|
return combineMany(input);
|
|
64
64
|
}
|
|
65
65
|
default:
|
|
@@ -70,7 +70,7 @@ export function $007CAssayPath$007C_$007C(input) {
|
|
|
70
70
|
export function $007CInvestigationPath$007C_$007C(input) {
|
|
71
71
|
let matchResult;
|
|
72
72
|
if (!equalsWith((x, y) => (x === y), input, defaultOf()) && (input.length === 1)) {
|
|
73
|
-
if (
|
|
73
|
+
if (item(0, input) === "isa.investigation.xlsx") {
|
|
74
74
|
matchResult = 0;
|
|
75
75
|
}
|
|
76
76
|
else {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { Contract, CLITool } from "../Contract/Contract.js";
|
|
2
2
|
import { dgi } from "../FileSystem/DefaultGitignore.js";
|
|
3
|
-
import { class_type } from "../fable_modules/fable-library.4.
|
|
4
|
-
import { value, defaultArg } from "../fable_modules/fable-library.4.
|
|
5
|
-
import { replace } from "../fable_modules/fable-library.4.
|
|
6
|
-
import { empty, singleton, append, delay, toArray } from "../fable_modules/fable-library.4.
|
|
3
|
+
import { class_type } from "../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
4
|
+
import { value, defaultArg } from "../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
5
|
+
import { replace } from "../fable_modules/fable-library-js.4.13.0/String.js";
|
|
6
|
+
import { empty, singleton, append, delay, toArray } from "../fable_modules/fable-library-js.4.13.0/Seq.js";
|
|
7
7
|
|
|
8
8
|
export function gitWithArgs(arguments$) {
|
|
9
9
|
return CLITool.create("git", arguments$);
|
package/FileSystem/Commit.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Record } from "../fable_modules/fable-library.4.
|
|
2
|
-
import { record_type, class_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, class_type, string_type } from "../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
3
3
|
|
|
4
4
|
export class Commit extends Record {
|
|
5
5
|
constructor(Hash, UserName, UserEmail, Date$, Message) {
|
package/FileSystem/FileSystem.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { defaultArg } from "../fable_modules/fable-library.4.
|
|
1
|
+
import { defaultArg } from "../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
2
2
|
import { FileSystemTree_$reflection, FileSystemTree } from "./FileSystemTree.js";
|
|
3
|
-
import { map, append } from "../fable_modules/fable-library.4.
|
|
4
|
-
import { Record } from "../fable_modules/fable-library.4.
|
|
3
|
+
import { map, append } from "../fable_modules/fable-library-js.4.13.0/Array.js";
|
|
4
|
+
import { Record } from "../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
5
5
|
import { Commit_$reflection } from "./Commit.js";
|
|
6
|
-
import { record_type, array_type } from "../fable_modules/fable-library.4.
|
|
6
|
+
import { record_type, array_type } from "../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
7
7
|
|
|
8
8
|
export class FileSystem extends Record {
|
|
9
9
|
constructor(Tree, History) {
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { unwrap, defaultArg } from "../fable_modules/fable-library.4.
|
|
2
|
-
import { append as append_1, choose, equalsWith, tail, head, map, tryFind } from "../fable_modules/fable-library.4.
|
|
3
|
-
import { singleton, append, delay, toArray } from "../fable_modules/fable-library.4.
|
|
4
|
-
import { Array_distinct, Array_groupBy } from "../fable_modules/fable-library.4.
|
|
5
|
-
import { curry2, arrayHash, stringHash } from "../fable_modules/fable-library.4.
|
|
1
|
+
import { unwrap, defaultArg } from "../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
2
|
+
import { append as append_1, choose, equalsWith, tail, head, map, tryFind } from "../fable_modules/fable-library-js.4.13.0/Array.js";
|
|
3
|
+
import { singleton, append, delay, toArray } from "../fable_modules/fable-library-js.4.13.0/Seq.js";
|
|
4
|
+
import { Array_distinct, Array_groupBy } from "../fable_modules/fable-library-js.4.13.0/Seq2.js";
|
|
5
|
+
import { curry2, arrayHash, stringHash } from "../fable_modules/fable-library-js.4.13.0/Util.js";
|
|
6
6
|
import { combineMany, split } from "./Path.js";
|
|
7
|
-
import { empty, reverse, toArray as toArray_1, cons } from "../fable_modules/fable-library.4.
|
|
8
|
-
import { Union } from "../fable_modules/fable-library.4.
|
|
9
|
-
import { union_type, array_type, string_type } from "../fable_modules/fable-library.4.
|
|
7
|
+
import { empty, reverse, toArray as toArray_1, cons } from "../fable_modules/fable-library-js.4.13.0/List.js";
|
|
8
|
+
import { Union } from "../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
9
|
+
import { union_type, array_type, string_type } from "../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
10
10
|
|
|
11
11
|
export class FileSystemTree extends Union {
|
|
12
12
|
constructor(tag, fields) {
|
package/FileSystem/Path.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { trim, join, trimStart, trimEnd, split as split_1 } from "../fable_modules/fable-library.4.
|
|
2
|
-
import { last, mapIndexed } from "../fable_modules/fable-library.4.
|
|
1
|
+
import { trim, join, trimStart, trimEnd, split as split_1 } from "../fable_modules/fable-library-js.4.13.0/String.js";
|
|
2
|
+
import { last, mapIndexed } from "../fable_modules/fable-library-js.4.13.0/Array.js";
|
|
3
3
|
|
|
4
4
|
export const seperators = ["/", "\\"];
|
|
5
5
|
|
package/FileSystemTree.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FileSystemTree } from "./FileSystem/FileSystemTree.js";
|
|
2
|
-
import { append } from "./fable_modules/fable-library.4.
|
|
2
|
+
import { append } from "./fable_modules/fable-library-js.4.13.0/Array.js";
|
|
3
3
|
|
|
4
4
|
export function createGitKeepFile() {
|
|
5
5
|
return FileSystemTree.createFile(".gitkeep");
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { Dictionary } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { compareArrays, safeHash, disposeSafe, getEnumerator, comparePrimitives, equals, arrayHash, equalArrays } from "../../../fable_modules/fable-library.4.
|
|
3
|
-
import { value as value_9, map as map_2, defaultArg, unwrap } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { Dictionary } from "../../../fable_modules/fable-library-js.4.13.0/MutableMap.js";
|
|
2
|
+
import { compareArrays, safeHash, disposeSafe, getEnumerator, comparePrimitives, equals, arrayHash, equalArrays } from "../../../fable_modules/fable-library-js.4.13.0/Util.js";
|
|
3
|
+
import { value as value_9, map as map_2, defaultArg, unwrap } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
4
4
|
import { boxHashValues, Unchecked_extendToRowCount, ProcessParsing_processToRows, ProcessParsing_alignByHeaders, ProcessParsing_mergeIdenticalProcesses, ProcessParsing_getProcessGetter, Unchecked_removeRowCells_withIndexChange, Unchecked_addRows, Unchecked_addRow, Unchecked_getEmptyCellForHeader, Unchecked_removeColumnCells_withIndexChange, tryFindDuplicateUniqueInArray, Unchecked_removeColumnCells, Unchecked_removeHeader, Unchecked_fillMissingCells, Unchecked_addColumn, tryFindDuplicateUnique, Unchecked_setCellAt, SanityChecks_validateColumn, SanityChecks_validateRowIndex, SanityChecks_validateColumnIndex, Unchecked_tryGetCellAt, getRowCount, getColumnCount } from "./ArcTableAux.js";
|
|
5
|
-
import { item, append as append_1, indexed as indexed_1, choose, toList, zip, fold, filter, length, tryFindIndex, empty, singleton, collect, removeAt, map, delay, toArray } from "../../../fable_modules/fable-library.4.
|
|
6
|
-
import { rangeDouble } from "../../../fable_modules/fable-library.4.
|
|
5
|
+
import { item as item_1, append as append_1, indexed as indexed_1, choose, toList, zip, fold, filter, length, tryFindIndex, empty, singleton, collect, removeAt, map, delay, toArray } from "../../../fable_modules/fable-library-js.4.13.0/Seq.js";
|
|
6
|
+
import { rangeDouble } from "../../../fable_modules/fable-library-js.4.13.0/Range.js";
|
|
7
7
|
import { CompositeColumn } from "./CompositeColumn.js";
|
|
8
|
-
import { sortBy, indexed, mapIndexed, singleton as singleton_1, initialize, sortDescending, iterateIndexed, map as map_1 } from "../../../fable_modules/fable-library.4.
|
|
9
|
-
import { append, collect as collect_1, initialize as initialize_1, singleton as singleton_2, empty as empty_1, iterate, isEmpty } from "../../../fable_modules/fable-library.4.
|
|
10
|
-
import { StringBuilder__AppendLine_Z721C83C5, StringBuilder_$ctor } from "../../../fable_modules/fable-library.4.
|
|
11
|
-
import { toString } from "../../../fable_modules/fable-library.4.
|
|
12
|
-
import { join, printf, toFail } from "../../../fable_modules/fable-library.4.
|
|
8
|
+
import { sortBy, indexed, mapIndexed, singleton as singleton_1, initialize, item, sortDescending, iterateIndexed, map as map_1 } from "../../../fable_modules/fable-library-js.4.13.0/Array.js";
|
|
9
|
+
import { append, collect as collect_1, initialize as initialize_1, singleton as singleton_2, empty as empty_1, iterate, isEmpty } from "../../../fable_modules/fable-library-js.4.13.0/List.js";
|
|
10
|
+
import { StringBuilder__AppendLine_Z721C83C5, StringBuilder_$ctor } from "../../../fable_modules/fable-library-js.4.13.0/System.Text.js";
|
|
11
|
+
import { toString } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
12
|
+
import { join, printf, toFail } from "../../../fable_modules/fable-library-js.4.13.0/String.js";
|
|
13
13
|
import { CompositeCell } from "./CompositeCell.js";
|
|
14
14
|
import { CompositeHeader } from "./CompositeHeader.js";
|
|
15
15
|
import { createMissingIdentifier } from "../Identifier.js";
|
|
@@ -18,12 +18,12 @@ import { Protocol_create_Z7DFD6E67, Protocol_addComponent, Protocol_addParameter
|
|
|
18
18
|
import { OntologyAnnotation } from "../JsonTypes/OntologyAnnotation.js";
|
|
19
19
|
import { ProtocolParameter } from "../JsonTypes/ProtocolParameter.js";
|
|
20
20
|
import { Component_create_61502994 } from "../JsonTypes/Component.js";
|
|
21
|
-
import { Array_groupBy, List_distinct } from "../../../fable_modules/fable-library.4.
|
|
21
|
+
import { Array_groupBy, List_distinct } from "../../../fable_modules/fable-library-js.4.13.0/Seq2.js";
|
|
22
22
|
import { toProtocol } from "./CompositeRow.js";
|
|
23
23
|
import { Process_create_Z42860F3E } from "../JsonTypes/Process.js";
|
|
24
|
-
import { getItemFromDict } from "../../../fable_modules/fable-library.4.
|
|
24
|
+
import { getItemFromDict } from "../../../fable_modules/fable-library-js.4.13.0/MapUtil.js";
|
|
25
25
|
import { HashCodes_boxHashSeq, HashCodes_boxHashArray } from "../Helper.js";
|
|
26
|
-
import { class_type } from "../../../fable_modules/fable-library.4.
|
|
26
|
+
import { class_type } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
27
27
|
|
|
28
28
|
export class ArcTable {
|
|
29
29
|
constructor(name, headers, values) {
|
|
@@ -422,7 +422,7 @@ export class ArcTable {
|
|
|
422
422
|
}
|
|
423
423
|
for (let columnIndex_1 = 0; columnIndex_1 <= (this$.ColumnCount - 1); columnIndex_1++) {
|
|
424
424
|
const h_1 = this$.Headers[columnIndex_1];
|
|
425
|
-
SanityChecks_validateColumn(CompositeColumn.create(h_1, [cells_1
|
|
425
|
+
SanityChecks_validateColumn(CompositeColumn.create(h_1, [item(columnIndex_1, cells_1)]));
|
|
426
426
|
}
|
|
427
427
|
Unchecked_addRow(index_1, cells_1, this$.Headers, this$.Values);
|
|
428
428
|
}
|
|
@@ -496,10 +496,10 @@ export class ArcTable {
|
|
|
496
496
|
}
|
|
497
497
|
});
|
|
498
498
|
for (let idx = 0; idx <= (rows.length - 1); idx++) {
|
|
499
|
-
const row_1 = rows
|
|
499
|
+
const row_1 = item(idx, rows);
|
|
500
500
|
for (let columnIndex = 0; columnIndex <= (this$.ColumnCount - 1); columnIndex++) {
|
|
501
501
|
const h = this$.Headers[columnIndex];
|
|
502
|
-
SanityChecks_validateColumn(CompositeColumn.create(h, [row_1
|
|
502
|
+
SanityChecks_validateColumn(CompositeColumn.create(h, [item(columnIndex, row_1)]));
|
|
503
503
|
}
|
|
504
504
|
}
|
|
505
505
|
Unchecked_addRows(index_1, rows, this$.Headers, this$.Values);
|
|
@@ -807,7 +807,7 @@ export class ArcTable {
|
|
|
807
807
|
Unchecked_extendToRowCount(annotationTable_1.RowCount, refTable_1.Headers, refTable_1.Values);
|
|
808
808
|
const arr = annotationTable_1.Columns;
|
|
809
809
|
for (let idx = 0; idx <= (arr.length - 1); idx++) {
|
|
810
|
-
const c = arr
|
|
810
|
+
const c = item(idx, arr);
|
|
811
811
|
refTable_1.AddColumn(c.Header, c.Cells, void 0, true);
|
|
812
812
|
}
|
|
813
813
|
return refTable_1;
|
|
@@ -834,7 +834,7 @@ export class ArcTable {
|
|
|
834
834
|
else {
|
|
835
835
|
return false;
|
|
836
836
|
}
|
|
837
|
-
}, true, toList(delay(() => map((i) => equals(
|
|
837
|
+
}, true, toList(delay(() => map((i) => equals(item_1(i, a), item_1(i, b)), rangeDouble(0, 1, length(a) - 1))))))))) {
|
|
838
838
|
const a_1 = sort(this$.Values);
|
|
839
839
|
const b_1 = sort(other.Values);
|
|
840
840
|
return (length(a_1) === length(b_1)) && fold((acc_1, e_1) => {
|
|
@@ -844,7 +844,7 @@ export class ArcTable {
|
|
|
844
844
|
else {
|
|
845
845
|
return false;
|
|
846
846
|
}
|
|
847
|
-
}, true, toList(delay(() => map((i_1) => equals(
|
|
847
|
+
}, true, toList(delay(() => map((i_1) => equals(item_1(i_1, a_1), item_1(i_1, b_1)), rangeDouble(0, 1, length(a_1) - 1)))));
|
|
848
848
|
}
|
|
849
849
|
else {
|
|
850
850
|
return false;
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { addToDict, getItemFromDict } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { map as map_2, defaultArg, unwrap, value as value_9, some } from "../../../fable_modules/fable-library.4.
|
|
3
|
-
import { empty as empty_1, singleton as singleton_1, append, delay, map as map_1, tryPick, toList, indexed, head as head_1, toArray, filter, tryFindIndex, maxBy } from "../../../fable_modules/fable-library.4.
|
|
4
|
-
import { arrayHash, equalArrays, stringHash, int32ToString, numberHash, disposeSafe, getEnumerator, compare, equals, safeHash, comparePrimitives } from "../../../fable_modules/fable-library.4.
|
|
5
|
-
import { pick, exists, zip, append as append_1, sortBy, tryPick as tryPick_1, collect, mapIndexed, item, length, map as map_3, ofArray as ofArray_2, singleton, choose, ofSeq, empty, head, tail as tail_1, isEmpty, cons } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { addToDict, getItemFromDict } from "../../../fable_modules/fable-library-js.4.13.0/MapUtil.js";
|
|
2
|
+
import { map as map_2, defaultArg, unwrap, value as value_9, some } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
3
|
+
import { empty as empty_1, singleton as singleton_1, append, delay, map as map_1, tryPick, toList, indexed, head as head_1, toArray, filter, tryFindIndex, maxBy } from "../../../fable_modules/fable-library-js.4.13.0/Seq.js";
|
|
4
|
+
import { arrayHash, equalArrays, stringHash, int32ToString, numberHash, disposeSafe, getEnumerator, compare, equals, safeHash, comparePrimitives } from "../../../fable_modules/fable-library-js.4.13.0/Util.js";
|
|
5
|
+
import { pick, exists, zip, append as append_1, sortBy, tryPick as tryPick_1, collect, mapIndexed, item as item_1, length, map as map_3, ofArray as ofArray_2, singleton, choose, ofSeq, empty, head, tail as tail_1, isEmpty, cons } from "../../../fable_modules/fable-library-js.4.13.0/List.js";
|
|
6
6
|
import { CompositeCell } from "./CompositeCell.js";
|
|
7
|
-
import { max } from "../../../fable_modules/fable-library.4.
|
|
8
|
-
import { map, iterateIndexed } from "../../../fable_modules/fable-library.4.
|
|
9
|
-
import { tryFind, ofArray } from "../../../fable_modules/fable-library.4.
|
|
10
|
-
import { List_groupBy, Array_groupBy } from "../../../fable_modules/fable-library.4.
|
|
11
|
-
import { FSharpSet__Contains, ofArray as ofArray_1 } from "../../../fable_modules/fable-library.4.
|
|
7
|
+
import { max } from "../../../fable_modules/fable-library-js.4.13.0/Double.js";
|
|
8
|
+
import { item, map, iterateIndexed } from "../../../fable_modules/fable-library-js.4.13.0/Array.js";
|
|
9
|
+
import { tryFind, ofArray } from "../../../fable_modules/fable-library-js.4.13.0/Map.js";
|
|
10
|
+
import { List_groupBy, Array_groupBy } from "../../../fable_modules/fable-library-js.4.13.0/Seq2.js";
|
|
11
|
+
import { FSharpSet__Contains, ofArray as ofArray_1 } from "../../../fable_modules/fable-library-js.4.13.0/Set.js";
|
|
12
12
|
import { Value as Value_1 } from "../JsonTypes/Value.js";
|
|
13
13
|
import { Component_fromOptions } from "../JsonTypes/Component.js";
|
|
14
14
|
import { ProtocolParameter } from "../JsonTypes/ProtocolParameter.js";
|
|
15
15
|
import { ProcessParameterValue } from "../JsonTypes/ProcessParameterValue.js";
|
|
16
16
|
import { FactorValue_create_18335379 } from "../JsonTypes/FactorValue.js";
|
|
17
17
|
import { Factor } from "../JsonTypes/Factor.js";
|
|
18
|
-
import { toString } from "../../../fable_modules/fable-library.4.
|
|
18
|
+
import { toString } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
19
19
|
import { MaterialAttributeValue_create_7F714043 } from "../JsonTypes/MaterialAttributeValue.js";
|
|
20
20
|
import { MaterialAttribute_create_Z6C54B221 } from "../JsonTypes/MaterialAttribute.js";
|
|
21
21
|
import { ProcessInput_getCharacteristicValues_102B6859, ProcessInput__isMaterial, ProcessInput__isData, ProcessInput_setCharacteristicValues, ProcessInput__get_Name, ProcessInput__isSource, ProcessInput__isSample, ProcessInput, ProcessInput_createDerivedData_Z721C83C5, ProcessInput_createRawData_Z721C83C5, ProcessInput_createImageFile_Z721C83C5, ProcessInput_createMaterial_2363974C, ProcessInput_createSample_Z6DF16D07, ProcessInput_createSource_7888CE42 } from "../JsonTypes/ProcessInput.js";
|
|
22
|
-
import { remove, printf, toFail } from "../../../fable_modules/fable-library.4.
|
|
22
|
+
import { remove, printf, toFail } from "../../../fable_modules/fable-library-js.4.13.0/String.js";
|
|
23
23
|
import { ProcessOutput_getFactorValues_11830B70, ProcessOutput__isMaterial, ProcessOutput__isData, ProcessOutput_setFactorValues, ProcessOutput__get_Name, ProcessOutput__isSample, ProcessOutput, ProcessOutput_createDerivedData_Z721C83C5, ProcessOutput_createRawData_Z721C83C5, ProcessOutput_createImageFile_Z721C83C5, ProcessOutput_createMaterial_2363974C, ProcessOutput_createSample_Z6DF16D07 } from "../JsonTypes/ProcessOutput.js";
|
|
24
24
|
import { IOType, CompositeHeader } from "./CompositeHeader.js";
|
|
25
25
|
import { tryGetFactorColumnIndex, tryGetCharacteristicColumnIndex, tryGetComponentIndex, tryGetParameterColumnIndex, ARCtrl_ISA_OntologyAnnotation__OntologyAnnotation_SetColumnIndex_Z524259A4 } from "../JsonTypes/ColumnIndex.js";
|
|
@@ -29,7 +29,7 @@ import { Process_create_Z42860F3E, Process_decomposeName_Z721C83C5, Process_make
|
|
|
29
29
|
import { List_tryPickAndRemove, HashCodes_boxHashSeq, Option_fromValueWithDefault } from "../Helper.js";
|
|
30
30
|
import { Protocol_make } from "../JsonTypes/Protocol.js";
|
|
31
31
|
import { createMissingIdentifier } from "../Identifier.js";
|
|
32
|
-
import { Dictionary } from "../../../fable_modules/fable-library.4.
|
|
32
|
+
import { Dictionary } from "../../../fable_modules/fable-library-js.4.13.0/MutableMap.js";
|
|
33
33
|
|
|
34
34
|
/**
|
|
35
35
|
* Lookup an element in the dictionary, returning a <c>Some</c> value if the element is in the domain
|
|
@@ -455,7 +455,7 @@ export function Unchecked_addRows(index, newRows, headers, values) {
|
|
|
455
455
|
for (let idx = 0; idx <= (newRows.length - 1); idx++) {
|
|
456
456
|
const setNewCells = iterateIndexed((columnIndex_1, cell) => {
|
|
457
457
|
Unchecked_setCellAt(columnIndex_1, currentRowIndex, cell, values);
|
|
458
|
-
}, newRows
|
|
458
|
+
}, item(idx, newRows));
|
|
459
459
|
currentRowIndex = ((currentRowIndex + 1) | 0);
|
|
460
460
|
}
|
|
461
461
|
}
|
|
@@ -945,7 +945,7 @@ export function ProcessParsing_getProcessGetter(processNameRoot, headers) {
|
|
|
945
945
|
let patternInput;
|
|
946
946
|
const inputs = inputGetter_1(matrix_4)(i_4);
|
|
947
947
|
const outputs = outputGetter_1(matrix_4)(i_4);
|
|
948
|
-
patternInput = (((length(inputs) === 1) && (length(outputs) === 2)) ? [ofArray_2([
|
|
948
|
+
patternInput = (((length(inputs) === 1) && (length(outputs) === 2)) ? [ofArray_2([item_1(0, inputs), item_1(0, inputs)]), outputs] : (((length(inputs) === 2) && (length(outputs) === 1)) ? [inputs, ofArray_2([item_1(0, outputs), item_1(0, outputs)])] : [inputs, outputs]));
|
|
949
949
|
return Process_make(void 0, pn, protocol, paramvalues, void 0, void 0, void 0, void 0, patternInput[0], patternInput[1], void 0);
|
|
950
950
|
});
|
|
951
951
|
}
|
|
@@ -1006,7 +1006,7 @@ export function ProcessParsing_mergeIdenticalProcesses(processes) {
|
|
|
1006
1006
|
const _arg = tupledArg[0];
|
|
1007
1007
|
const processes_1 = tupledArg[1];
|
|
1008
1008
|
const n = _arg[0];
|
|
1009
|
-
const pVs =
|
|
1009
|
+
const pVs = item_1(0, processes_1).ParameterValues;
|
|
1010
1010
|
const inputs = Option_fromValueWithDefault(empty(), collect((p) => defaultArg(p.Inputs, empty()), processes_1));
|
|
1011
1011
|
const outputs = Option_fromValueWithDefault(empty(), collect((p_1) => defaultArg(p_1.Outputs, empty()), processes_1));
|
|
1012
1012
|
return Process_create_Z42860F3E(void 0, (length(l) > 1) ? Process_composeName(n, i) : n, _arg[1], pVs, void 0, void 0, void 0, void 0, inputs, outputs);
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { append, toArray, reduce, choose, map as map_1, delay, toList, length, findIndex, tryFindIndex } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { append, toArray, reduce, choose, map as map_1, delay, toList, length, findIndex, tryFindIndex } from "../../../fable_modules/fable-library-js.4.13.0/Seq.js";
|
|
2
2
|
import { Dict_tryFind } from "../Helper.js";
|
|
3
|
-
import { addToSet, addToDict } from "../../../fable_modules/fable-library.4.
|
|
4
|
-
import { toIterator, equals, comparePrimitives, stringHash, compare, disposeSafe, getEnumerator } from "../../../fable_modules/fable-library.4.
|
|
5
|
-
import { bind, map as map_3, unwrap, defaultArg, value as value_2 } from "../../../fable_modules/fable-library.4.
|
|
6
|
-
import { collect as collect_1, map as map_4, insertRangeInPlace, fold } from "../../../fable_modules/fable-library.4.
|
|
3
|
+
import { addToSet, addToDict } from "../../../fable_modules/fable-library-js.4.13.0/MapUtil.js";
|
|
4
|
+
import { toIterator, equals, comparePrimitives, stringHash, compare, disposeSafe, getEnumerator } from "../../../fable_modules/fable-library-js.4.13.0/Util.js";
|
|
5
|
+
import { bind, map as map_3, unwrap, defaultArg, value as value_2 } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
6
|
+
import { collect as collect_1, map as map_4, item, insertRangeInPlace, fold } from "../../../fable_modules/fable-library-js.4.13.0/Array.js";
|
|
7
7
|
import { CompositeHeader } from "./CompositeHeader.js";
|
|
8
|
-
import { Array_groupBy, distinct } from "../../../fable_modules/fable-library.4.
|
|
9
|
-
import { FSharpSet__get_IsEmpty, ofSeq, intersect } from "../../../fable_modules/fable-library.4.
|
|
8
|
+
import { Array_groupBy, distinct } from "../../../fable_modules/fable-library-js.4.13.0/Seq2.js";
|
|
9
|
+
import { FSharpSet__get_IsEmpty, ofSeq, intersect } from "../../../fable_modules/fable-library-js.4.13.0/Set.js";
|
|
10
10
|
import { ArcTable } from "./ArcTable.js";
|
|
11
|
-
import { map as map_2, collect } from "../../../fable_modules/fable-library.4.
|
|
11
|
+
import { map as map_2, collect } from "../../../fable_modules/fable-library-js.4.13.0/List.js";
|
|
12
12
|
import { Unchecked_fillMissingCells, ProcessParsing_groupProcesses, ProcessParsing_processToRows, ProcessParsing_alignByHeaders } from "./ArcTableAux.js";
|
|
13
|
-
import { tryFind, ofSeq as ofSeq_1 } from "../../../fable_modules/fable-library.4.
|
|
14
|
-
import { class_type } from "../../../fable_modules/fable-library.4.
|
|
13
|
+
import { tryFind, ofSeq as ofSeq_1 } from "../../../fable_modules/fable-library-js.4.13.0/Map.js";
|
|
14
|
+
import { class_type } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
15
15
|
|
|
16
16
|
/**
|
|
17
17
|
* If a table with the given name exists in the TableList, returns it, else returns None.
|
|
@@ -433,7 +433,7 @@ export class ArcTables {
|
|
|
433
433
|
let collection, s, array;
|
|
434
434
|
const keepUnusedRefTables_1 = defaultArg(keepUnusedRefTables, false);
|
|
435
435
|
const usedTables = new Set([]);
|
|
436
|
-
const referenceTableMap = ofSeq_1(choose((t) => map_3((c) => [c.Cells
|
|
436
|
+
const referenceTableMap = ofSeq_1(choose((t) => map_3((c) => [item(0, c.Cells).AsFreeText, t], t.TryGetProtocolNameColumn()), referenceTables.Tables), {
|
|
437
437
|
Compare: comparePrimitives,
|
|
438
438
|
});
|
|
439
439
|
return new ArcTables((collection = ((s = map_4((t_3) => {
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { map as map_1, defaultArg, unwrap } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { concat, collect, append as append_4, tryFind, removeAt, tryFindIndex, exists, choose, item, map as map_2, delay, toList, fold, length, forAll, contains, filter, toArray } from "../../../fable_modules/fable-library.4.
|
|
3
|
-
import { defaultOf, safeHash, equals, disposeSafe, getEnumerator, stringHash } from "../../../fable_modules/fable-library.4.
|
|
4
|
-
import { addRangeInPlace, removeInPlace, equalsWith, append as append_3, contains as contains_1, map } from "../../../fable_modules/fable-library.4.
|
|
5
|
-
import { distinctBy, Array_distinct } from "../../../fable_modules/fable-library.4.
|
|
6
|
-
import { printf, toText } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { map as map_1, defaultArg, unwrap } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
2
|
+
import { concat, collect, append as append_4, tryFind, removeAt, tryFindIndex, exists, choose, item, map as map_2, delay, toList, fold, length, forAll, contains, filter, toArray } from "../../../fable_modules/fable-library-js.4.13.0/Seq.js";
|
|
3
|
+
import { defaultOf, safeHash, equals, disposeSafe, getEnumerator, stringHash } from "../../../fable_modules/fable-library-js.4.13.0/Util.js";
|
|
4
|
+
import { addRangeInPlace, removeInPlace, equalsWith, append as append_3, contains as contains_1, map } from "../../../fable_modules/fable-library-js.4.13.0/Array.js";
|
|
5
|
+
import { distinctBy, Array_distinct } from "../../../fable_modules/fable-library-js.4.13.0/Seq2.js";
|
|
6
|
+
import { printf, toText } from "../../../fable_modules/fable-library-js.4.13.0/String.js";
|
|
7
7
|
import { ActivePatterns_$007CRegex$007C_$007C } from "../Regex.js";
|
|
8
8
|
import { OntologyAnnotation } from "../JsonTypes/OntologyAnnotation.js";
|
|
9
9
|
import { Value } from "../JsonTypes/Value.js";
|
|
10
10
|
import { ArcTablesAux_applyIOMap, ArcTablesAux_getIOMap, ArcTables_$reflection, ArcTables } from "./ArcTables.js";
|
|
11
11
|
import { AssayMaterials_get_empty, AssayMaterials_create_Z253F0553 } from "../JsonTypes/AssayMaterials.js";
|
|
12
12
|
import { ResizeArray_choose, ResizeArray_filter, ResizeArray_map, HashCodes_boxHashOption, HashCodes_boxHashArray, Option_fromValueWithDefault } from "../Helper.js";
|
|
13
|
-
import { unzip, ofSeq, map as map_3, toArray as toArray_1, ofArray, empty } from "../../../fable_modules/fable-library.4.
|
|
13
|
+
import { unzip, ofSeq, map as map_3, toArray as toArray_1, ofArray, empty } from "../../../fable_modules/fable-library-js.4.13.0/List.js";
|
|
14
14
|
import { getSources, getProtocols, getUnits, getCharacteristics, getData, getMaterials, getSamples } from "../JsonTypes/ProcessSequence.js";
|
|
15
15
|
import { Assay_create_3D372A24 } from "../JsonTypes/Assay.js";
|
|
16
16
|
import { Study_identifierFromFileName, Study_fileNameFromIdentifier, Assay_identifierFromFileName, createMissingIdentifier, Assay_fileNameFromIdentifier, isMissingIdentifier } from "../Identifier.js";
|
|
17
|
-
import { rangeDouble } from "../../../fable_modules/fable-library.4.
|
|
18
|
-
import { class_type } from "../../../fable_modules/fable-library.4.
|
|
17
|
+
import { rangeDouble } from "../../../fable_modules/fable-library-js.4.13.0/Range.js";
|
|
18
|
+
import { class_type } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
19
19
|
import { StudyMaterials_get_empty, StudyMaterials_create_1BE9FA55 } from "../JsonTypes/StudyMaterials.js";
|
|
20
20
|
import { Study_create_Z2D28E954 } from "../JsonTypes/Study.js";
|
|
21
21
|
import { Investigation_create_4AD66BBE } from "../JsonTypes/Investigation.js";
|
|
22
|
-
import { FSharpRef } from "../../../fable_modules/fable-library.4.
|
|
22
|
+
import { FSharpRef } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
23
23
|
|
|
24
24
|
export class ArcAssay extends ArcTables {
|
|
25
25
|
constructor(identifier, measurementType, technologyType, technologyPlatform, tables, performers, comments) {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { int32ToString } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { defaultArg } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { int32ToString } from "../../../fable_modules/fable-library-js.4.13.0/Util.js";
|
|
2
|
+
import { defaultArg } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
3
3
|
import { OntologyAnnotation_$reflection, OntologyAnnotation } from "../JsonTypes/OntologyAnnotation.js";
|
|
4
|
-
import { Union } from "../../../fable_modules/fable-library.4.
|
|
5
|
-
import { union_type, string_type } from "../../../fable_modules/fable-library.4.
|
|
4
|
+
import { Union } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
5
|
+
import { union_type, string_type } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
6
6
|
|
|
7
7
|
export class CompositeCell extends Union {
|
|
8
8
|
constructor(tag, fields) {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { defaultArg } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import {
|
|
1
|
+
import { defaultArg } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
2
|
+
import { item } from "../../../fable_modules/fable-library-js.4.13.0/Array.js";
|
|
3
|
+
import { fold, empty, singleton, collect, delay, toArray } from "../../../fable_modules/fable-library-js.4.13.0/Seq.js";
|
|
3
4
|
import { CompositeCell_$reflection, CompositeCell } from "./CompositeCell.js";
|
|
4
|
-
import { Record } from "../../../fable_modules/fable-library.4.
|
|
5
|
+
import { Record } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
5
6
|
import { CompositeHeader_$reflection } from "./CompositeHeader.js";
|
|
6
|
-
import { record_type, array_type } from "../../../fable_modules/fable-library.4.
|
|
7
|
+
import { record_type, array_type } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
7
8
|
|
|
8
9
|
export class CompositeColumn extends Record {
|
|
9
10
|
constructor(Header, Cells) {
|
|
@@ -22,15 +23,15 @@ export class CompositeColumn extends Record {
|
|
|
22
23
|
if (cells.length === 0) {
|
|
23
24
|
return true;
|
|
24
25
|
}
|
|
25
|
-
else if (header.IsTermColumn && (cells
|
|
26
|
+
else if (header.IsTermColumn && (item(0, cells).isTerm ? true : item(0, cells).isUnitized)) {
|
|
26
27
|
return true;
|
|
27
28
|
}
|
|
28
|
-
else if (!header.IsTermColumn && cells
|
|
29
|
+
else if (!header.IsTermColumn && item(0, cells).isFreeText) {
|
|
29
30
|
return true;
|
|
30
31
|
}
|
|
31
32
|
else {
|
|
32
33
|
if (raiseExeption) {
|
|
33
|
-
throw new Error(`Invalid combination of header \`${header}\` and cells \`${cells
|
|
34
|
+
throw new Error(`Invalid combination of header \`${header}\` and cells \`${item(0, cells)}\``);
|
|
34
35
|
}
|
|
35
36
|
return false;
|
|
36
37
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { map } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { union_type, string_type, getUnionCases, name } from "../../../fable_modules/fable-library.4.
|
|
3
|
-
import { Union, toString } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { map } from "../../../fable_modules/fable-library-js.4.13.0/Array.js";
|
|
2
|
+
import { union_type, string_type, getUnionCases, name } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
3
|
+
import { Union, toString } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
4
4
|
import { ActivePatterns_$007CTermColumn$007C_$007C, Pattern_OutputPattern, Pattern_InputPattern, ActivePatterns_$007CRegex$007C_$007C, tryParseIOTypeHeader } from "../Regex.js";
|
|
5
|
-
import { equals } from "../../../fable_modules/fable-library.4.
|
|
6
|
-
import { printf, toFail } from "../../../fable_modules/fable-library.4.
|
|
5
|
+
import { equals } from "../../../fable_modules/fable-library-js.4.13.0/Util.js";
|
|
6
|
+
import { printf, toFail } from "../../../fable_modules/fable-library-js.4.13.0/String.js";
|
|
7
7
|
import { OntologyAnnotation_$reflection, OntologyAnnotation } from "../JsonTypes/OntologyAnnotation.js";
|
|
8
8
|
import { ProtocolParameter } from "../JsonTypes/ProtocolParameter.js";
|
|
9
9
|
import { Factor } from "../JsonTypes/Factor.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { fold } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { fold } from "../../../fable_modules/fable-library-js.4.13.0/Seq.js";
|
|
2
2
|
import { Protocol_create_Z7DFD6E67, Protocol_addComponent, Protocol_addParameter, Protocol_setName, Protocol_setDescription, Protocol_setUri, Protocol_setVersion, Protocol_setProtocolType } from "../JsonTypes/Protocol.js";
|
|
3
3
|
import { ProtocolParameter } from "../JsonTypes/ProtocolParameter.js";
|
|
4
4
|
import { Component_create_61502994 } from "../JsonTypes/Component.js";
|
package/ISA/ISA/Builder/Types.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { Union } from "../../../fable_modules/fable-library.4.
|
|
2
|
-
import { list_type, union_type, string_type } from "../../../fable_modules/fable-library.4.
|
|
1
|
+
import { Union } from "../../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { list_type, union_type, string_type } from "../../../fable_modules/fable-library-js.4.13.0/Reflection.js";
|
|
3
3
|
import { OntologyAnnotation_$reflection } from "../JsonTypes/OntologyAnnotation.js";
|
|
4
4
|
import { Protocol_get_empty, Protocol } from "../JsonTypes/Protocol.js";
|
|
5
5
|
import { ProcessParameterValue_$reflection } from "../JsonTypes/ProcessParameterValue.js";
|
|
6
6
|
import { MaterialAttributeValue_$reflection } from "../JsonTypes/MaterialAttributeValue.js";
|
|
7
7
|
import { FactorValue_$reflection } from "../JsonTypes/FactorValue.js";
|
|
8
|
-
import { map as map_1, exists, fold, singleton, empty, append } from "../../../fable_modules/fable-library.4.
|
|
9
|
-
import { map, value as value_4, defaultArg } from "../../../fable_modules/fable-library.4.
|
|
8
|
+
import { map as map_1, exists, fold, singleton, empty, append } from "../../../fable_modules/fable-library-js.4.13.0/List.js";
|
|
9
|
+
import { map, value as value_4, defaultArg } from "../../../fable_modules/fable-library-js.4.13.0/Option.js";
|
|
10
10
|
import { Process_get_empty, Process } from "../JsonTypes/Process.js";
|
|
11
11
|
import { Assay_get_empty, Assay } from "../JsonTypes/Assay.js";
|
|
12
|
-
import { printf, toFail } from "../../../fable_modules/fable-library.4.
|
|
12
|
+
import { printf, toFail } from "../../../fable_modules/fable-library-js.4.13.0/String.js";
|
|
13
13
|
import { Study } from "../JsonTypes/Study.js";
|
|
14
14
|
|
|
15
15
|
export class ProtocolTransformation extends Union {
|
package/ISA/ISA/Fable.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { toString } from "../../fable_modules/fable-library.4.
|
|
2
|
-
import { map, reduce, append } from "../../fable_modules/fable-library.4.
|
|
3
|
-
import { append as append_1 } from "../../fable_modules/fable-library.4.
|
|
4
|
-
import { append as append_2 } from "../../fable_modules/fable-library.4.
|
|
5
|
-
import { Array_distinct, List_distinct, distinct } from "../../fable_modules/fable-library.4.
|
|
6
|
-
import { identityHash, structuralHash, equals } from "../../fable_modules/fable-library.4.
|
|
1
|
+
import { toString } from "../../fable_modules/fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { map, reduce, append } from "../../fable_modules/fable-library-js.4.13.0/Seq.js";
|
|
3
|
+
import { append as append_1 } from "../../fable_modules/fable-library-js.4.13.0/List.js";
|
|
4
|
+
import { append as append_2 } from "../../fable_modules/fable-library-js.4.13.0/Array.js";
|
|
5
|
+
import { Array_distinct, List_distinct, distinct } from "../../fable_modules/fable-library-js.4.13.0/Seq2.js";
|
|
6
|
+
import { identityHash, structuralHash, equals } from "../../fable_modules/fable-library-js.4.13.0/Util.js";
|
|
7
7
|
|
|
8
8
|
export function isList_python(l1) {
|
|
9
9
|
return (to_string(type(l1))).indexOf("FSharpList") >= 0;
|