@nfdi4plants/arctrl 1.0.0-beta.4 → 1.0.0-beta.6

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.
Files changed (244) hide show
  1. package/ARC.js +84 -25
  2. package/Contract/Contract.js +16 -5
  3. package/Contracts/Contracts.ARCtrl.js +1 -3
  4. package/Contracts/Contracts.ArcTypes.js +269 -0
  5. package/Contracts/Contracts.Git.js +4 -4
  6. package/FileSystem/Commit.js +2 -2
  7. package/FileSystem/FileSystem.js +4 -4
  8. package/FileSystem/FileSystemTree.js +8 -8
  9. package/FileSystem/Path.js +2 -2
  10. package/FileSystemTree.js +1 -1
  11. package/ISA/ISA/ArcTypes/ArcTable.js +39 -13
  12. package/ISA/ISA/ArcTypes/ArcTableAux.js +12 -12
  13. package/ISA/ISA/ArcTypes/ArcTables.js +24 -14
  14. package/ISA/ISA/ArcTypes/ArcTypes.js +143 -61
  15. package/ISA/ISA/ArcTypes/CompositeCell.js +8 -4
  16. package/ISA/ISA/ArcTypes/CompositeColumn.js +26 -5
  17. package/ISA/ISA/ArcTypes/CompositeHeader.js +32 -8
  18. package/ISA/ISA/ArcTypes/CompositeRow.js +1 -1
  19. package/ISA/ISA/Builder/Types.js +5 -5
  20. package/ISA/ISA/Fable.js +5 -5
  21. package/ISA/ISA/Helper.js +163 -9
  22. package/ISA/ISA/Identifier.js +3 -3
  23. package/ISA/ISA/JsonTypes/AnnotationValue.js +5 -5
  24. package/ISA/ISA/JsonTypes/Assay.js +8 -8
  25. package/ISA/ISA/JsonTypes/AssayMaterials.js +4 -4
  26. package/ISA/ISA/JsonTypes/ColumnIndex.js +5 -5
  27. package/ISA/ISA/JsonTypes/Comment.js +3 -3
  28. package/ISA/ISA/JsonTypes/CommentList.js +4 -4
  29. package/ISA/ISA/JsonTypes/Component.js +5 -5
  30. package/ISA/ISA/JsonTypes/Data.js +4 -4
  31. package/ISA/ISA/JsonTypes/DataFile.js +2 -2
  32. package/ISA/ISA/JsonTypes/Factor.js +6 -6
  33. package/ISA/ISA/JsonTypes/FactorValue.js +5 -5
  34. package/ISA/ISA/JsonTypes/Investigation.js +6 -6
  35. package/ISA/ISA/JsonTypes/Material.js +5 -5
  36. package/ISA/ISA/JsonTypes/MaterialAttribute.js +3 -3
  37. package/ISA/ISA/JsonTypes/MaterialAttributeValue.js +5 -5
  38. package/ISA/ISA/JsonTypes/MaterialType.js +2 -2
  39. package/ISA/ISA/JsonTypes/OntologyAnnotation.js +6 -6
  40. package/ISA/ISA/JsonTypes/OntologySourceReference.js +6 -6
  41. package/ISA/ISA/JsonTypes/Person.js +7 -7
  42. package/ISA/ISA/JsonTypes/Process.js +10 -10
  43. package/ISA/ISA/JsonTypes/ProcessInput.js +5 -5
  44. package/ISA/ISA/JsonTypes/ProcessOutput.js +5 -5
  45. package/ISA/ISA/JsonTypes/ProcessParameterValue.js +5 -5
  46. package/ISA/ISA/JsonTypes/ProcessSequence.js +6 -6
  47. package/ISA/ISA/JsonTypes/Protocol.js +6 -6
  48. package/ISA/ISA/JsonTypes/ProtocolParameter.js +3 -3
  49. package/ISA/ISA/JsonTypes/Publication.js +6 -6
  50. package/ISA/ISA/JsonTypes/Sample.js +5 -5
  51. package/ISA/ISA/JsonTypes/Source.js +5 -5
  52. package/ISA/ISA/JsonTypes/Study.js +8 -8
  53. package/ISA/ISA/JsonTypes/StudyMaterials.js +4 -4
  54. package/ISA/ISA/JsonTypes/Value.js +7 -7
  55. package/ISA/ISA/Regex.js +3 -3
  56. package/ISA/ISA/UIHelper.js +19 -0
  57. package/ISA/ISA.Json/Assay.js +3 -3
  58. package/ISA/ISA.Json/Comment.js +5 -5
  59. package/ISA/ISA.Json/ConverterOptions.js +1 -1
  60. package/ISA/ISA.Json/Data.js +5 -5
  61. package/ISA/ISA.Json/Decode.js +4 -4
  62. package/ISA/ISA.Json/Factor.js +5 -5
  63. package/ISA/ISA.Json/GEncode.js +3 -3
  64. package/ISA/ISA.Json/Investigation.js +4 -4
  65. package/ISA/ISA.Json/Material.js +5 -5
  66. package/ISA/ISA.Json/Ontology.js +6 -6
  67. package/ISA/ISA.Json/Person.js +5 -5
  68. package/ISA/ISA.Json/Process.js +5 -5
  69. package/ISA/ISA.Json/Protocol.js +6 -6
  70. package/ISA/ISA.Json/Publication.js +4 -4
  71. package/ISA/ISA.Json/Study.js +4 -4
  72. package/ISA/ISA.Json/Validation/Fable.js +6 -6
  73. package/ISA/ISA.Json/Validation/JsonSchemaValidation.js +1 -1
  74. package/ISA/ISA.Json/Validation/ValidationResult.js +2 -2
  75. package/ISA/ISA.Spreadsheet/AnnotationTable/ArcTable.js +4 -4
  76. package/ISA/ISA.Spreadsheet/AnnotationTable/CompositeCell.js +2 -2
  77. package/ISA/ISA.Spreadsheet/AnnotationTable/CompositeColumn.js +5 -5
  78. package/ISA/ISA.Spreadsheet/AnnotationTable/CompositeHeader.js +4 -4
  79. package/ISA/ISA.Spreadsheet/ArcAssay.js +5 -5
  80. package/ISA/ISA.Spreadsheet/ArcInvestigation.js +15 -12
  81. package/ISA/ISA.Spreadsheet/ArcStudy.js +5 -5
  82. package/ISA/ISA.Spreadsheet/CollectionAux.js +7 -7
  83. package/ISA/ISA.Spreadsheet/Metadata/Assays.js +5 -5
  84. package/ISA/ISA.Spreadsheet/Metadata/Comment.js +3 -3
  85. package/ISA/ISA.Spreadsheet/Metadata/Contacts.js +5 -5
  86. package/ISA/ISA.Spreadsheet/Metadata/Conversions.js +5 -5
  87. package/ISA/ISA.Spreadsheet/Metadata/DesignDescriptors.js +1 -1
  88. package/ISA/ISA.Spreadsheet/Metadata/Factors.js +5 -5
  89. package/ISA/ISA.Spreadsheet/Metadata/OntologyAnnotation.js +5 -5
  90. package/ISA/ISA.Spreadsheet/Metadata/OntologySourceReference.js +5 -5
  91. package/ISA/ISA.Spreadsheet/Metadata/Protocols.js +5 -5
  92. package/ISA/ISA.Spreadsheet/Metadata/Publication.js +5 -5
  93. package/ISA/ISA.Spreadsheet/Metadata/SparseTable.js +10 -10
  94. package/ISA/ISA.Spreadsheet/Metadata/Study.js +8 -8
  95. package/Path.js +10 -0
  96. package/SemVer.js +7 -7
  97. package/Templates/Template.Json.js +7 -7
  98. package/Templates/Template.Spreadsheet.js +10 -10
  99. package/Templates/Template.Web.js +4 -4
  100. package/Templates/Template.js +7 -7
  101. package/Templates/Templates.js +5 -5
  102. package/WebRequest/WebRequest.js +4 -4
  103. package/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +7 -7
  104. package/fable_modules/Fable.Promise.2.2.2/Promise.fs.js +3 -3
  105. package/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +8 -8
  106. package/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +2 -2
  107. package/fable_modules/FsSpreadsheet.5.0.1/Cells/FsCell.fs.js +14 -14
  108. package/fable_modules/FsSpreadsheet.5.0.1/Cells/FsCellsCollection.fs.js +6 -6
  109. package/fable_modules/FsSpreadsheet.5.0.1/DSL/CellBuilder.fs.js +4 -4
  110. package/fable_modules/FsSpreadsheet.5.0.1/DSL/ColumnBuilder.fs.js +3 -3
  111. package/fable_modules/FsSpreadsheet.5.0.1/DSL/DSL.fs.js +2 -2
  112. package/fable_modules/FsSpreadsheet.5.0.1/DSL/Expression.fs.js +1 -1
  113. package/fable_modules/FsSpreadsheet.5.0.1/DSL/RowBuilder.fs.js +3 -3
  114. package/fable_modules/FsSpreadsheet.5.0.1/DSL/SheetBuilder.fs.js +3 -3
  115. package/fable_modules/FsSpreadsheet.5.0.1/DSL/TableBuilder.fs.js +3 -3
  116. package/fable_modules/FsSpreadsheet.5.0.1/DSL/Transform.fs.js +6 -6
  117. package/fable_modules/FsSpreadsheet.5.0.1/DSL/Types.fs.js +4 -4
  118. package/fable_modules/FsSpreadsheet.5.0.1/DSL/WorkbookBuilder.fs.js +3 -3
  119. package/fable_modules/FsSpreadsheet.5.0.1/FsAddress.fs.js +5 -5
  120. package/fable_modules/FsSpreadsheet.5.0.1/FsColumn.fs.js +3 -3
  121. package/fable_modules/FsSpreadsheet.5.0.1/FsRow.fs.js +3 -3
  122. package/fable_modules/FsSpreadsheet.5.0.1/FsWorkbook.fs.js +6 -6
  123. package/fable_modules/FsSpreadsheet.5.0.1/FsWorksheet.fs.js +9 -9
  124. package/fable_modules/FsSpreadsheet.5.0.1/Ranges/FsRange.fs.js +3 -3
  125. package/fable_modules/FsSpreadsheet.5.0.1/Ranges/FsRangeAddress.fs.js +2 -2
  126. package/fable_modules/FsSpreadsheet.5.0.1/Ranges/FsRangeBase.fs.js +3 -3
  127. package/fable_modules/FsSpreadsheet.5.0.1/Ranges/FsRangeColumn.fs.js +3 -3
  128. package/fable_modules/FsSpreadsheet.5.0.1/Ranges/FsRangeRow.fs.js +1 -1
  129. package/fable_modules/FsSpreadsheet.5.0.1/SheetBuilder.fs.js +8 -8
  130. package/fable_modules/FsSpreadsheet.5.0.1/Tables/FsTable.fs.js +7 -7
  131. package/fable_modules/FsSpreadsheet.5.0.1/Tables/FsTableField.fs.js +4 -4
  132. package/fable_modules/FsSpreadsheet.5.0.1/Tables/FsTableRow.fs.js +1 -1
  133. package/fable_modules/Thoth.Json.10.1.0/Decode.fs.js +20 -20
  134. package/fable_modules/Thoth.Json.10.1.0/Encode.fs.js +13 -13
  135. package/fable_modules/Thoth.Json.10.1.0/Extra.fs.js +2 -2
  136. package/fable_modules/Thoth.Json.10.1.0/Types.fs.js +6 -6
  137. package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Util.js +1 -2
  138. package/fable_modules/project_cracked.json +1 -1
  139. package/package.json +1 -1
  140. package/Contracts/Contracts.ArcAssay.js +0 -65
  141. package/Contracts/Contracts.ArcInvestigation.js +0 -58
  142. package/Contracts/Contracts.ArcStudy.js +0 -65
  143. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Array.d.ts +0 -0
  144. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Array.js +0 -0
  145. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Async.d.ts +0 -0
  146. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Async.js +0 -0
  147. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/AsyncBuilder.d.ts +0 -0
  148. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/AsyncBuilder.js +0 -0
  149. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/BigInt.d.ts +0 -0
  150. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/BigInt.js +0 -0
  151. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/BitConverter.d.ts +0 -0
  152. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/BitConverter.js +0 -0
  153. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Boolean.d.ts +0 -0
  154. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Boolean.js +0 -0
  155. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/CHANGELOG.md +0 -0
  156. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Char.d.ts +0 -0
  157. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Char.js +0 -0
  158. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Choice.d.ts +0 -0
  159. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Choice.js +0 -0
  160. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Date.d.ts +0 -0
  161. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Date.js +0 -0
  162. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/DateOffset.d.ts +0 -0
  163. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/DateOffset.js +0 -0
  164. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/DateOnly.d.ts +0 -0
  165. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/DateOnly.js +0 -0
  166. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Decimal.d.ts +0 -0
  167. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Decimal.js +0 -0
  168. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Double.d.ts +0 -0
  169. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Double.js +0 -0
  170. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Encoding.d.ts +0 -0
  171. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Encoding.js +0 -0
  172. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Event.d.ts +0 -0
  173. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Event.js +0 -0
  174. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/FSharp.Collections.d.ts +0 -0
  175. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/FSharp.Collections.js +0 -0
  176. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/FSharp.Core.d.ts +0 -0
  177. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/FSharp.Core.js +0 -0
  178. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Global.d.ts +0 -0
  179. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Global.js +0 -0
  180. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Guid.d.ts +0 -0
  181. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Guid.js +0 -0
  182. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Int32.d.ts +0 -0
  183. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Int32.js +0 -0
  184. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/List.d.ts +0 -0
  185. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/List.js +0 -0
  186. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Long.d.ts +0 -0
  187. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Long.js +0 -0
  188. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/MailboxProcessor.d.ts +0 -0
  189. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/MailboxProcessor.js +0 -0
  190. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Map.d.ts +0 -0
  191. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Map.js +0 -0
  192. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/MapUtil.d.ts +0 -0
  193. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/MapUtil.js +0 -0
  194. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/MutableMap.d.ts +0 -0
  195. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/MutableMap.js +0 -0
  196. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/MutableSet.d.ts +0 -0
  197. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/MutableSet.js +0 -0
  198. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Native.d.ts +0 -0
  199. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Native.js +0 -0
  200. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Numeric.d.ts +0 -0
  201. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Numeric.js +0 -0
  202. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Observable.d.ts +0 -0
  203. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Observable.js +0 -0
  204. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Option.d.ts +0 -0
  205. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Option.js +0 -0
  206. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/README.md +0 -0
  207. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Random.d.ts +0 -0
  208. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Random.js +0 -0
  209. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Range.d.ts +0 -0
  210. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Range.js +0 -0
  211. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Reflection.d.ts +0 -0
  212. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Reflection.js +0 -0
  213. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/RegExp.d.ts +0 -0
  214. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/RegExp.js +0 -0
  215. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Seq.d.ts +0 -0
  216. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Seq.js +0 -0
  217. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Seq2.d.ts +0 -0
  218. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Seq2.js +0 -0
  219. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Set.d.ts +0 -0
  220. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Set.js +0 -0
  221. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/String.d.ts +0 -0
  222. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/String.js +0 -0
  223. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/System.Collections.Generic.d.ts +0 -0
  224. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/System.Collections.Generic.js +0 -0
  225. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/System.Text.d.ts +0 -0
  226. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/System.Text.js +0 -0
  227. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/SystemException.d.ts +0 -0
  228. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/SystemException.js +0 -0
  229. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/TimeOnly.d.ts +0 -0
  230. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/TimeOnly.js +0 -0
  231. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/TimeSpan.d.ts +0 -0
  232. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/TimeSpan.js +0 -0
  233. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Timer.d.ts +0 -0
  234. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Timer.js +0 -0
  235. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Types.d.ts +0 -0
  236. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Types.js +0 -0
  237. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Unicode.13.0.0.d.ts +0 -0
  238. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Unicode.13.0.0.js +0 -0
  239. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Uri.d.ts +0 -0
  240. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Uri.js +0 -0
  241. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Util.d.ts +0 -0
  242. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/lib/big.d.ts +0 -0
  243. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/lib/big.js +0 -0
  244. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/package.json +0 -0
@@ -1,11 +1,11 @@
1
- import { filter, map, singleton, append, exists, tryFind } from "../../../fable_modules/fable-library.4.4.1/List.js";
2
- import { equals } from "../../../fable_modules/fable-library.4.4.1/Util.js";
3
- import { record_type, array_type, option_type, string_type, getRecordFields, makeRecord } from "../../../fable_modules/fable-library.4.4.1/Reflection.js";
4
- import { map as map_2, map2 } from "../../../fable_modules/fable-library.4.4.1/Array.js";
1
+ import { filter, map, singleton, append, exists, tryFind } from "../../../fable_modules/fable-library.4.5.0/List.js";
2
+ import { equals } from "../../../fable_modules/fable-library.4.5.0/Util.js";
3
+ import { record_type, array_type, option_type, string_type, getRecordFields, makeRecord } from "../../../fable_modules/fable-library.4.5.0/Reflection.js";
4
+ import { map as map_2, map2 } from "../../../fable_modules/fable-library.4.5.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.4.1/Option.js";
8
- import { Record } from "../../../fable_modules/fable-library.4.4.1/Types.js";
7
+ import { map as map_1 } from "../../../fable_modules/fable-library.4.5.0/Option.js";
8
+ import { Record } from "../../../fable_modules/fable-library.4.5.0/Types.js";
9
9
  import { Comment$_$reflection } from "./Comment.js";
10
10
 
11
11
  export class OntologySourceReference extends Record {
@@ -1,13 +1,13 @@
1
- import { append as append_1, tryPick, map2, map, tryFind } from "../../../fable_modules/fable-library.4.4.1/Array.js";
2
- import { equals } from "../../../fable_modules/fable-library.4.4.1/Util.js";
3
- import { singleton, append } from "../../../fable_modules/fable-library.4.4.1/List.js";
4
- import { record_type, array_type, option_type, string_type, getRecordFields, makeRecord } from "../../../fable_modules/fable-library.4.4.1/Reflection.js";
1
+ import { append as append_1, tryPick, map2, map, tryFind } from "../../../fable_modules/fable-library.4.5.0/Array.js";
2
+ import { equals } from "../../../fable_modules/fable-library.4.5.0/Util.js";
3
+ import { singleton, append } from "../../../fable_modules/fable-library.4.5.0/List.js";
4
+ import { record_type, array_type, option_type, string_type, getRecordFields, makeRecord } from "../../../fable_modules/fable-library.4.5.0/Reflection.js";
5
5
  import { Update_updateOnlyByExistingAppend, Update_updateOnlyByExisting, Update_updateAppend } from "../Helper.js";
6
6
  import { Option_fromValueWithDefault, Option_mapDefault } from "../Helper.js";
7
- import { endsWith } from "../../../fable_modules/fable-library.4.4.1/String.js";
8
- import { map as map_1, defaultArg, value as value_2 } from "../../../fable_modules/fable-library.4.4.1/Option.js";
7
+ import { endsWith } from "../../../fable_modules/fable-library.4.5.0/String.js";
8
+ import { map as map_1, defaultArg, value as value_2 } from "../../../fable_modules/fable-library.4.5.0/Option.js";
9
9
  import { Comment$_$reflection, Comment$ } from "./Comment.js";
10
- import { Record } from "../../../fable_modules/fable-library.4.4.1/Types.js";
10
+ import { Record } from "../../../fable_modules/fable-library.4.5.0/Types.js";
11
11
  import { OntologyAnnotation_$reflection } from "./OntologyAnnotation.js";
12
12
 
13
13
  export class Person extends Record {
@@ -1,20 +1,20 @@
1
- import { Record, toString } from "../../../fable_modules/fable-library.4.4.1/Types.js";
2
- import { zip, tryPick, map as map_1, tryFind, append, collect, choose, empty, length } from "../../../fable_modules/fable-library.4.4.1/List.js";
3
- import { map, value as value_4, bind, defaultArg } from "../../../fable_modules/fable-library.4.4.1/Option.js";
4
- import { printf, toText } from "../../../fable_modules/fable-library.4.4.1/String.js";
5
- import { getRecordFields, makeRecord, record_type, list_type, option_type, string_type } from "../../../fable_modules/fable-library.4.4.1/Reflection.js";
1
+ import { Record, toString } from "../../../fable_modules/fable-library.4.5.0/Types.js";
2
+ import { zip, tryPick, map as map_1, tryFind, append, collect, choose, empty, length } from "../../../fable_modules/fable-library.4.5.0/List.js";
3
+ import { map, value as value_4, bind, defaultArg } from "../../../fable_modules/fable-library.4.5.0/Option.js";
4
+ import { printf, toText } from "../../../fable_modules/fable-library.4.5.0/String.js";
5
+ import { getRecordFields, makeRecord, record_type, list_type, option_type, string_type } from "../../../fable_modules/fable-library.4.5.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
9
  import { ProcessOutput_tryGetFactorValues_11830B70, ProcessOutput_tryGetCharacteristicValues_11830B70, ProcessOutput_$reflection } from "./ProcessOutput.js";
10
10
  import { Comment$_$reflection } from "./Comment.js";
11
- import { create, match } from "../../../fable_modules/fable-library.4.4.1/RegExp.js";
12
- import { parse } from "../../../fable_modules/fable-library.4.4.1/Int32.js";
13
- import { List_distinct } from "../../../fable_modules/fable-library.4.4.1/Seq2.js";
14
- import { safeHash, equals } from "../../../fable_modules/fable-library.4.4.1/Util.js";
11
+ import { create, match } from "../../../fable_modules/fable-library.4.5.0/RegExp.js";
12
+ import { parse } from "../../../fable_modules/fable-library.4.5.0/Int32.js";
13
+ import { List_distinct } from "../../../fable_modules/fable-library.4.5.0/Seq2.js";
14
+ import { safeHash, equals } from "../../../fable_modules/fable-library.4.5.0/Util.js";
15
15
  import { ProtocolParameter_get_empty } from "./ProtocolParameter.js";
16
16
  import { Update_UpdateOptions, Option_fromValueWithDefault } from "../Helper.js";
17
- import { map2 } from "../../../fable_modules/fable-library.4.4.1/Array.js";
17
+ import { map2 } from "../../../fable_modules/fable-library.4.5.0/Array.js";
18
18
  import { Update_updateOnlyByExistingAppend, Update_updateOnlyByExisting, Update_updateAppend } from "../Helper.js";
19
19
 
20
20
  export class Process extends Record {
@@ -1,12 +1,12 @@
1
- import { Union, toString } from "../../../fable_modules/fable-library.4.4.1/Types.js";
2
- import { printf, toText } from "../../../fable_modules/fable-library.4.4.1/String.js";
1
+ import { Union, toString } from "../../../fable_modules/fable-library.4.5.0/Types.js";
2
+ import { printf, toText } from "../../../fable_modules/fable-library.4.5.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.4.1/Reflection.js";
8
- import { unwrap, map, defaultArg } from "../../../fable_modules/fable-library.4.4.1/Option.js";
9
- import { empty, choose } from "../../../fable_modules/fable-library.4.4.1/List.js";
7
+ import { union_type } from "../../../fable_modules/fable-library.4.5.0/Reflection.js";
8
+ import { unwrap, map, defaultArg } from "../../../fable_modules/fable-library.4.5.0/Option.js";
9
+ import { empty, choose } from "../../../fable_modules/fable-library.4.5.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.4.1/Types.js";
2
- import { printf, toText } from "../../../fable_modules/fable-library.4.4.1/String.js";
1
+ import { Union, toString } from "../../../fable_modules/fable-library.4.5.0/Types.js";
2
+ import { printf, toText } from "../../../fable_modules/fable-library.4.5.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.4.1/Reflection.js";
7
- import { unwrap, map, defaultArg } from "../../../fable_modules/fable-library.4.4.1/Option.js";
8
- import { empty, choose } from "../../../fable_modules/fable-library.4.4.1/List.js";
6
+ import { union_type } from "../../../fable_modules/fable-library.4.5.0/Reflection.js";
7
+ import { unwrap, map, defaultArg } from "../../../fable_modules/fable-library.4.5.0/Option.js";
8
+ import { empty, choose } from "../../../fable_modules/fable-library.4.5.0/List.js";
9
9
  import { DataFile } from "./DataFile.js";
10
10
 
11
11
  export class ProcessOutput extends Union {
@@ -1,11 +1,11 @@
1
- import { Record, toString } from "../../../fable_modules/fable-library.4.4.1/Types.js";
2
- import { bind, defaultArg, map } from "../../../fable_modules/fable-library.4.4.1/Option.js";
1
+ import { Record, toString } from "../../../fable_modules/fable-library.4.5.0/Types.js";
2
+ import { bind, defaultArg, map } from "../../../fable_modules/fable-library.4.5.0/Option.js";
3
3
  import { ProtocolParameter__SetCategory_Z4C0FE73C, ProtocolParameter_create_Z6C54B221, ProtocolParameter__MapCategory_Z69DD836A, ProtocolParameter__get_TryNameText, ProtocolParameter_$reflection, ProtocolParameter__get_NameText } from "./ProtocolParameter.js";
4
- import { record_type, option_type } from "../../../fable_modules/fable-library.4.4.1/Reflection.js";
4
+ import { record_type, option_type } from "../../../fable_modules/fable-library.4.5.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.4.1/Util.js";
8
- import { printf, toText } from "../../../fable_modules/fable-library.4.4.1/String.js";
7
+ import { int32ToString } from "../../../fable_modules/fable-library.4.5.0/Util.js";
8
+ import { printf, toText } from "../../../fable_modules/fable-library.4.5.0/String.js";
9
9
 
10
10
  export class ProcessParameterValue extends Record {
11
11
  constructor(Category, Value, Unit) {
@@ -1,12 +1,12 @@
1
- import { List_groupBy, List_distinct } from "../../../fable_modules/fable-library.4.4.1/Seq2.js";
2
- import { singleton, zip, map, empty, collect, concat, filter, choose } from "../../../fable_modules/fable-library.4.4.1/List.js";
3
- import { value as value_4, defaultArg, bind } from "../../../fable_modules/fable-library.4.4.1/Option.js";
4
- import { arrayHash, equalArrays, comparePrimitives, safeHash, equals, stringHash } from "../../../fable_modules/fable-library.4.4.1/Util.js";
1
+ import { List_groupBy, List_distinct } from "../../../fable_modules/fable-library.4.5.0/Seq2.js";
2
+ import { singleton, zip, map, empty, collect, concat, filter, choose } from "../../../fable_modules/fable-library.4.5.0/List.js";
3
+ import { value as value_4, defaultArg, bind } from "../../../fable_modules/fable-library.4.5.0/Option.js";
4
+ import { arrayHash, equalArrays, comparePrimitives, safeHash, equals, stringHash } from "../../../fable_modules/fable-library.4.5.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.4.1/Set.js";
6
+ import { FSharpSet__Contains, ofList } from "../../../fable_modules/fable-library.4.5.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.4.1/Map.js";
9
+ import { FSharpMap__TryFind, ofList as ofList_1 } from "../../../fable_modules/fable-library.4.5.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.4.1/Types.js";
2
- import { getRecordFields, makeRecord, record_type, list_type, option_type, string_type } from "../../../fable_modules/fable-library.4.4.1/Reflection.js";
1
+ import { Record } from "../../../fable_modules/fable-library.4.5.0/Types.js";
2
+ import { getRecordFields, makeRecord, record_type, list_type, option_type, string_type } from "../../../fable_modules/fable-library.4.5.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.4.1/List.js";
8
- import { equals } from "../../../fable_modules/fable-library.4.4.1/Util.js";
9
- import { map2 } from "../../../fable_modules/fable-library.4.4.1/Array.js";
7
+ import { empty, filter, map, singleton, append, exists, tryFind } from "../../../fable_modules/fable-library.4.5.0/List.js";
8
+ import { equals } from "../../../fable_modules/fable-library.4.5.0/Util.js";
9
+ import { map2 } from "../../../fable_modules/fable-library.4.5.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.4.1/Option.js";
11
+ import { defaultArg, map as map_1 } from "../../../fable_modules/fable-library.4.5.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,7 +1,7 @@
1
- import { Record, toString } from "../../../fable_modules/fable-library.4.4.1/Types.js";
2
- import { record_type, option_type, string_type } from "../../../fable_modules/fable-library.4.4.1/Reflection.js";
1
+ import { Record, toString } from "../../../fable_modules/fable-library.4.5.0/Types.js";
2
+ import { record_type, option_type, string_type } from "../../../fable_modules/fable-library.4.5.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.1/Option.js";
4
+ import { bind, map, defaultArg, unwrap } from "../../../fable_modules/fable-library.4.5.0/Option.js";
5
5
  import { Option_fromValueWithDefault } from "../Helper.js";
6
6
 
7
7
  export class ProtocolParameter extends Record {
@@ -1,11 +1,11 @@
1
- import { filter, map, tryFind, exists, singleton, append } from "../../../fable_modules/fable-library.4.4.1/List.js";
2
- import { equals } from "../../../fable_modules/fable-library.4.4.1/Util.js";
3
- import { record_type, array_type, option_type, string_type, getRecordFields, makeRecord } from "../../../fable_modules/fable-library.4.4.1/Reflection.js";
4
- import { map as map_2, map2 } from "../../../fable_modules/fable-library.4.4.1/Array.js";
1
+ import { filter, map, tryFind, exists, singleton, append } from "../../../fable_modules/fable-library.4.5.0/List.js";
2
+ import { equals } from "../../../fable_modules/fable-library.4.5.0/Util.js";
3
+ import { record_type, array_type, option_type, string_type, getRecordFields, makeRecord } from "../../../fable_modules/fable-library.4.5.0/Reflection.js";
4
+ import { map as map_2, map2 } from "../../../fable_modules/fable-library.4.5.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.4.1/Option.js";
6
+ import { map as map_1 } from "../../../fable_modules/fable-library.4.5.0/Option.js";
7
7
  import { Option_mapDefault } from "../Helper.js";
8
- import { Record } from "../../../fable_modules/fable-library.4.4.1/Types.js";
8
+ import { Record } from "../../../fable_modules/fable-library.4.5.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.4.1/Types.js";
2
- import { append, choose, empty, length } from "../../../fable_modules/fable-library.4.4.1/List.js";
3
- import { defaultArg } from "../../../fable_modules/fable-library.4.4.1/Option.js";
4
- import { printf, toText } from "../../../fable_modules/fable-library.4.4.1/String.js";
5
- import { record_type, list_type, option_type, string_type } from "../../../fable_modules/fable-library.4.4.1/Reflection.js";
1
+ import { Record, toString } from "../../../fable_modules/fable-library.4.5.0/Types.js";
2
+ import { append, choose, empty, length } from "../../../fable_modules/fable-library.4.5.0/List.js";
3
+ import { defaultArg } from "../../../fable_modules/fable-library.4.5.0/Option.js";
4
+ import { printf, toText } from "../../../fable_modules/fable-library.4.5.0/String.js";
5
+ import { record_type, list_type, option_type, string_type } from "../../../fable_modules/fable-library.4.5.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.4.1/Types.js";
2
- import { choose, empty, length } from "../../../fable_modules/fable-library.4.4.1/List.js";
3
- import { defaultArg } from "../../../fable_modules/fable-library.4.4.1/Option.js";
4
- import { printf, toText } from "../../../fable_modules/fable-library.4.4.1/String.js";
5
- import { record_type, list_type, option_type, string_type } from "../../../fable_modules/fable-library.4.4.1/Reflection.js";
1
+ import { Record, toString } from "../../../fable_modules/fable-library.4.5.0/Types.js";
2
+ import { choose, empty, length } from "../../../fable_modules/fable-library.4.5.0/List.js";
3
+ import { defaultArg } from "../../../fable_modules/fable-library.4.5.0/Option.js";
4
+ import { printf, toText } from "../../../fable_modules/fable-library.4.5.0/String.js";
5
+ import { record_type, list_type, option_type, string_type } from "../../../fable_modules/fable-library.4.5.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.4.1/Types.js";
2
- import { getRecordFields, makeRecord, record_type, list_type, option_type, string_type } from "../../../fable_modules/fable-library.4.4.1/Reflection.js";
1
+ import { Record } from "../../../fable_modules/fable-library.4.5.0/Types.js";
2
+ import { getRecordFields, makeRecord, record_type, list_type, option_type, string_type } from "../../../fable_modules/fable-library.4.5.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.4.1/List.js";
14
- import { stringHash, safeHash, structuralHash, equals } from "../../../fable_modules/fable-library.4.4.1/Util.js";
15
- import { map2 as map2_2 } from "../../../fable_modules/fable-library.4.4.1/Array.js";
13
+ import { collect, empty, filter, map, singleton, append, exists } from "../../../fable_modules/fable-library.4.5.0/List.js";
14
+ import { stringHash, safeHash, structuralHash, equals } from "../../../fable_modules/fable-library.4.5.0/Util.js";
15
+ import { map2 as map2_2 } from "../../../fable_modules/fable-library.4.5.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.4.1/Option.js";
17
+ import { map as map_1, defaultArg } from "../../../fable_modules/fable-library.4.5.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.4.1/Seq2.js";
20
+ import { List_distinct } from "../../../fable_modules/fable-library.4.5.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.4.1/String.js";
25
+ import { toFail } from "../../../fable_modules/fable-library.4.5.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.4.1/Types.js";
1
+ import { Record } from "../../../fable_modules/fable-library.4.5.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.4.1/Reflection.js";
3
+ import { record_type, option_type, list_type } from "../../../fable_modules/fable-library.4.5.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.4.1/Option.js";
7
- import { empty } from "../../../fable_modules/fable-library.4.4.1/List.js";
6
+ import { defaultArg } from "../../../fable_modules/fable-library.4.5.0/Option.js";
7
+ import { empty } from "../../../fable_modules/fable-library.4.5.0/List.js";
8
8
 
9
9
  export class StudyMaterials extends Record {
10
10
  constructor(Sources, Samples, OtherMaterials) {
@@ -1,11 +1,11 @@
1
- import { Union, toString } from "../../../fable_modules/fable-library.4.4.1/Types.js";
2
- import { printf, toText } from "../../../fable_modules/fable-library.4.4.1/String.js";
1
+ import { Union, toString } from "../../../fable_modules/fable-library.4.5.0/Types.js";
2
+ import { printf, toText } from "../../../fable_modules/fable-library.4.5.0/String.js";
3
3
  import { OntologyAnnotation, OntologyAnnotation_$reflection } from "./OntologyAnnotation.js";
4
- import { union_type, string_type, float64_type, int32_type } from "../../../fable_modules/fable-library.4.4.1/Reflection.js";
5
- import { parse } from "../../../fable_modules/fable-library.4.4.1/Double.js";
6
- import { parse as parse_1 } from "../../../fable_modules/fable-library.4.4.1/Int32.js";
7
- import { map, defaultArg } from "../../../fable_modules/fable-library.4.4.1/Option.js";
8
- import { int32ToString } from "../../../fable_modules/fable-library.4.4.1/Util.js";
4
+ import { union_type, string_type, float64_type, int32_type } from "../../../fable_modules/fable-library.4.5.0/Reflection.js";
5
+ import { parse } from "../../../fable_modules/fable-library.4.5.0/Double.js";
6
+ import { parse as parse_1 } from "../../../fable_modules/fable-library.4.5.0/Int32.js";
7
+ import { map, defaultArg } from "../../../fable_modules/fable-library.4.5.0/Option.js";
8
+ import { int32ToString } from "../../../fable_modules/fable-library.4.5.0/Util.js";
9
9
  import { AnnotationValue_toString_Z6FAD7738 } from "./AnnotationValue.js";
10
10
 
11
11
  export class Value extends Union {
package/ISA/ISA/Regex.js CHANGED
@@ -1,6 +1,6 @@
1
- import { create, match } from "../../fable_modules/fable-library.4.4.1/RegExp.js";
2
- import { value as value_1, map, some } from "../../fable_modules/fable-library.4.4.1/Option.js";
3
- import { parse } from "../../fable_modules/fable-library.4.4.1/Int32.js";
1
+ import { create, match } from "../../fable_modules/fable-library.4.5.0/RegExp.js";
2
+ import { value as value_1, map, some } from "../../fable_modules/fable-library.4.5.0/Option.js";
3
+ import { parse } from "../../fable_modules/fable-library.4.5.0/Int32.js";
4
4
 
5
5
  export const Pattern_ExcelNumberFormat = `"(?<${"numberFormat"}>(.*?))"`;
6
6
 
@@ -0,0 +1,19 @@
1
+ import { CompositeCell } from "./ArcTypes/CompositeCell.js";
2
+
3
+ /**
4
+ * Updates current CompositeCell with information from OntologyAnnotation.
5
+ *
6
+ * For `Term`, OntologyAnnotation (oa) is fully set. For `Unitized`, oa is set as unit while value is untouched.
7
+ * For `FreeText` oa.NameText is set.
8
+ */
9
+ export function updateWithOA(oa, cell) {
10
+ switch (cell.tag) {
11
+ case 2:
12
+ return CompositeCell.createUnitized(cell.fields[0], oa);
13
+ case 1:
14
+ return CompositeCell.createFreeText(oa.NameText);
15
+ default:
16
+ return CompositeCell.createTerm(oa);
17
+ }
18
+ }
19
+
@@ -1,13 +1,13 @@
1
1
  import { toString, nil, object as object_22 } from "../../fable_modules/Thoth.Json.10.1.0/Encode.fs.js";
2
- import { ofArray, choose } from "../../fable_modules/fable-library.4.4.1/List.js";
3
- import { uncurry2, equals } from "../../fable_modules/fable-library.4.4.1/Util.js";
2
+ import { ofArray, choose } from "../../fable_modules/fable-library.4.5.0/List.js";
3
+ import { uncurry2, equals } from "../../fable_modules/fable-library.4.5.0/Util.js";
4
4
  import { tryInclude } from "./GEncode.js";
5
5
  import { Data_decoder, Data_encoder, Sample_decoder, Sample_encoder } from "./Data.js";
6
6
  import { MaterialAttribute_decoder, MaterialAttribute_encoder, Material_decoder, Material_encoder } from "./Material.js";
7
7
  import { string, list as list_1, object as object_23 } from "../../fable_modules/Thoth.Json.10.1.0/Decode.fs.js";
8
8
  import { AssayMaterials } from "../ISA/JsonTypes/AssayMaterials.js";
9
9
  import { URIModule_toString } from "../ISA/JsonTypes/URI.js";
10
- import { empty, singleton, append, delay, toList } from "../../fable_modules/fable-library.4.4.1/Seq.js";
10
+ import { empty, singleton, append, delay, toList } from "../../fable_modules/fable-library.4.5.0/Seq.js";
11
11
  import { ConverterOptions__set_IncludeType_Z1FBCCD16, ConverterOptions__set_SetID_Z1FBCCD16, ConverterOptions_$ctor, ConverterOptions__get_IncludeType, ConverterOptions__get_SetID } from "./ConverterOptions.js";
12
12
  import { OntologyAnnotation_decoder, OntologyAnnotation_encoder } from "./Ontology.js";
13
13
  import { Process_decoder, Process_encoder } from "./Process.js";
@@ -1,10 +1,10 @@
1
- import { replace } from "../../fable_modules/fable-library.4.4.1/String.js";
2
- import { value as value_13 } from "../../fable_modules/fable-library.4.4.1/Option.js";
1
+ import { replace } from "../../fable_modules/fable-library.4.5.0/String.js";
2
+ import { value as value_13 } from "../../fable_modules/fable-library.4.5.0/Option.js";
3
3
  import { URIModule_toString } from "../ISA/JsonTypes/URI.js";
4
4
  import { toString, nil, object as object_6 } from "../../fable_modules/Thoth.Json.10.1.0/Encode.fs.js";
5
- import { choose } from "../../fable_modules/fable-library.4.4.1/List.js";
6
- import { uncurry2, equals } from "../../fable_modules/fable-library.4.4.1/Util.js";
7
- import { empty, singleton, append, delay, toList } from "../../fable_modules/fable-library.4.4.1/Seq.js";
5
+ import { choose } from "../../fable_modules/fable-library.4.5.0/List.js";
6
+ import { uncurry2, equals } from "../../fable_modules/fable-library.4.5.0/Util.js";
7
+ import { empty, singleton, append, delay, toList } from "../../fable_modules/fable-library.4.5.0/Seq.js";
8
8
  import { ConverterOptions__set_IncludeType_Z1FBCCD16, ConverterOptions__set_SetID_Z1FBCCD16, ConverterOptions_$ctor, ConverterOptions__get_IncludeType, ConverterOptions__get_SetID } from "./ConverterOptions.js";
9
9
  import { tryInclude } from "./GEncode.js";
10
10
  import { string, object as object_7 } from "../../fable_modules/Thoth.Json.10.1.0/Decode.fs.js";
@@ -1,4 +1,4 @@
1
- import { class_type } from "../../fable_modules/fable-library.4.4.1/Reflection.js";
1
+ import { class_type } from "../../fable_modules/fable-library.4.5.0/Reflection.js";
2
2
 
3
3
  export class ConverterOptions {
4
4
  constructor() {
@@ -1,18 +1,18 @@
1
1
  import { DataFile } from "../ISA/JsonTypes/DataFile.js";
2
2
  import { toString, object as object_10, nil } from "../../fable_modules/Thoth.Json.10.1.0/Encode.fs.js";
3
3
  import { list as list_1, object as object_11, string } from "../../fable_modules/Thoth.Json.10.1.0/Decode.fs.js";
4
- import { FSharpResult$2 } from "../../fable_modules/fable-library.4.4.1/Choice.js";
4
+ import { FSharpResult$2 } from "../../fable_modules/fable-library.4.5.0/Choice.js";
5
5
  import { ErrorReason } from "../../fable_modules/Thoth.Json.10.1.0/Types.fs.js";
6
6
  import { URIModule_toString } from "../ISA/JsonTypes/URI.js";
7
- import { ofArray, choose } from "../../fable_modules/fable-library.4.4.1/List.js";
8
- import { uncurry2, equals } from "../../fable_modules/fable-library.4.4.1/Util.js";
9
- import { empty, singleton, append, delay, toList } from "../../fable_modules/fable-library.4.4.1/Seq.js";
7
+ import { ofArray, choose } from "../../fable_modules/fable-library.4.5.0/List.js";
8
+ import { uncurry2, equals } from "../../fable_modules/fable-library.4.5.0/Util.js";
9
+ import { empty, singleton, append, delay, toList } from "../../fable_modules/fable-library.4.5.0/Seq.js";
10
10
  import { ConverterOptions__set_IncludeType_Z1FBCCD16, ConverterOptions__set_SetID_Z1FBCCD16, ConverterOptions_$ctor, ConverterOptions__get_IncludeType, ConverterOptions__get_SetID } from "./ConverterOptions.js";
11
11
  import { tryInclude } from "./GEncode.js";
12
12
  import { decoder as decoder_3, encoder } from "./Comment.js";
13
13
  import { fromJsonString, uri, hasUnknownFields } from "./Decode.js";
14
14
  import { Data } from "../ISA/JsonTypes/Data.js";
15
- import { replace } from "../../fable_modules/fable-library.4.4.1/String.js";
15
+ import { replace } from "../../fable_modules/fable-library.4.5.0/String.js";
16
16
  import { MaterialAttributeValue_decoder, MaterialAttributeValue_encoder } from "./Material.js";
17
17
  import { Source } from "../ISA/JsonTypes/Source.js";
18
18
  import { FactorValue_decoder, FactorValue_encoder } from "./Factor.js";
@@ -1,9 +1,9 @@
1
1
  import { fromString, string } from "../../fable_modules/Thoth.Json.10.1.0/Decode.fs.js";
2
- import { FSharpResult$2 } from "../../fable_modules/fable-library.4.4.1/Choice.js";
3
- import { printf, toText } from "../../fable_modules/fable-library.4.4.1/String.js";
2
+ import { FSharpResult$2 } from "../../fable_modules/fable-library.4.5.0/Choice.js";
3
+ import { printf, toText } from "../../fable_modules/fable-library.4.5.0/String.js";
4
4
  import { ErrorReason } from "../../fable_modules/Thoth.Json.10.1.0/Types.fs.js";
5
- import { contains, exists } from "../../fable_modules/fable-library.4.4.1/Seq.js";
6
- import { stringHash } from "../../fable_modules/fable-library.4.4.1/Util.js";
5
+ import { contains, exists } from "../../fable_modules/fable-library.4.5.0/Seq.js";
6
+ import { stringHash } from "../../fable_modules/fable-library.4.5.0/Util.js";
7
7
 
8
8
  export function isURI(s) {
9
9
  return true;
@@ -2,14 +2,14 @@ import { Value } from "../ISA/JsonTypes/Value.js";
2
2
  import { OntologyAnnotation_decoder, OntologyAnnotation_encoder } from "./Ontology.js";
3
3
  import { object as object_8, toString, nil } from "../../fable_modules/Thoth.Json.10.1.0/Encode.fs.js";
4
4
  import { array, object as object_9, string, float, int } from "../../fable_modules/Thoth.Json.10.1.0/Decode.fs.js";
5
- import { FSharpResult$2 } from "../../fable_modules/fable-library.4.4.1/Choice.js";
5
+ import { FSharpResult$2 } from "../../fable_modules/fable-library.4.5.0/Choice.js";
6
6
  import { uri, fromJsonString } from "./Decode.js";
7
- import { equals, uncurry2 } from "../../fable_modules/fable-library.4.4.1/Util.js";
7
+ import { equals, uncurry2 } from "../../fable_modules/fable-library.4.5.0/Util.js";
8
8
  import { ConverterOptions__set_IncludeType_Z1FBCCD16, ConverterOptions__set_SetID_Z1FBCCD16, ConverterOptions__get_IncludeType, ConverterOptions__get_SetID, ConverterOptions_$ctor } from "./ConverterOptions.js";
9
- import { replace } from "../../fable_modules/fable-library.4.4.1/String.js";
9
+ import { replace } from "../../fable_modules/fable-library.4.5.0/String.js";
10
10
  import { URIModule_toString } from "../ISA/JsonTypes/URI.js";
11
- import { choose } from "../../fable_modules/fable-library.4.4.1/List.js";
12
- import { empty, singleton, append, delay, toList } from "../../fable_modules/fable-library.4.4.1/Seq.js";
11
+ import { choose } from "../../fable_modules/fable-library.4.5.0/List.js";
12
+ import { empty, singleton, append, delay, toList } from "../../fable_modules/fable-library.4.5.0/Seq.js";
13
13
  import { tryInclude } from "./GEncode.js";
14
14
  import { decoder as decoder_1, encoder } from "./Comment.js";
15
15
  import { Factor } from "../ISA/JsonTypes/Factor.js";
@@ -1,7 +1,7 @@
1
- import { value as value_1 } from "../../fable_modules/fable-library.4.4.1/Option.js";
2
- import { isIterable } from "../../fable_modules/fable-library.4.4.1/Util.js";
1
+ import { value as value_1 } from "../../fable_modules/fable-library.4.5.0/Option.js";
2
+ import { isIterable } from "../../fable_modules/fable-library.4.5.0/Util.js";
3
3
  import { nil, seq } from "../../fable_modules/Thoth.Json.10.1.0/Encode.fs.js";
4
- import { map } from "../../fable_modules/fable-library.4.4.1/Seq.js";
4
+ import { map } from "../../fable_modules/fable-library.4.5.0/Seq.js";
5
5
 
6
6
  /**
7
7
  * Try to encode the given object using the given encoder, or return Encode.nil if the object is null
@@ -1,9 +1,9 @@
1
- import { replace } from "../../fable_modules/fable-library.4.4.1/String.js";
1
+ import { replace } from "../../fable_modules/fable-library.4.5.0/String.js";
2
2
  import { URIModule_toString } from "../ISA/JsonTypes/URI.js";
3
3
  import { toString, nil, object as object_24 } from "../../fable_modules/Thoth.Json.10.1.0/Encode.fs.js";
4
- import { empty as empty_1, choose } from "../../fable_modules/fable-library.4.4.1/List.js";
5
- import { uncurry2, equals } from "../../fable_modules/fable-library.4.4.1/Util.js";
6
- import { empty, singleton, append, delay, toList } from "../../fable_modules/fable-library.4.4.1/Seq.js";
4
+ import { empty as empty_1, choose } from "../../fable_modules/fable-library.4.5.0/List.js";
5
+ import { uncurry2, equals } from "../../fable_modules/fable-library.4.5.0/Util.js";
6
+ import { empty, singleton, append, delay, toList } from "../../fable_modules/fable-library.4.5.0/Seq.js";
7
7
  import { ConverterOptions__set_IncludeType_Z1FBCCD16, ConverterOptions__set_SetID_Z1FBCCD16, ConverterOptions_$ctor, ConverterOptions__get_IncludeType, ConverterOptions__get_SetID } from "./ConverterOptions.js";
8
8
  import { tryInclude } from "./GEncode.js";
9
9
  import { OntologySourceReference_decoder, OntologySourceReference_encoder } from "./Ontology.js";
@@ -1,12 +1,12 @@
1
1
  import { MaterialType } from "../ISA/JsonTypes/MaterialType.js";
2
2
  import { toString, object as object_10, nil } from "../../fable_modules/Thoth.Json.10.1.0/Encode.fs.js";
3
3
  import { list as list_1, object as object_11, string } from "../../fable_modules/Thoth.Json.10.1.0/Decode.fs.js";
4
- import { FSharpResult$2 } from "../../fable_modules/fable-library.4.4.1/Choice.js";
4
+ import { FSharpResult$2 } from "../../fable_modules/fable-library.4.5.0/Choice.js";
5
5
  import { ErrorReason } from "../../fable_modules/Thoth.Json.10.1.0/Types.fs.js";
6
6
  import { URIModule_toString } from "../ISA/JsonTypes/URI.js";
7
- import { ofArray, choose } from "../../fable_modules/fable-library.4.4.1/List.js";
8
- import { uncurry2, equals } from "../../fable_modules/fable-library.4.4.1/Util.js";
9
- import { empty, singleton, append, delay, toList } from "../../fable_modules/fable-library.4.4.1/Seq.js";
7
+ import { ofArray, choose } from "../../fable_modules/fable-library.4.5.0/List.js";
8
+ import { uncurry2, equals } from "../../fable_modules/fable-library.4.5.0/Util.js";
9
+ import { empty, singleton, append, delay, toList } from "../../fable_modules/fable-library.4.5.0/Seq.js";
10
10
  import { ConverterOptions__set_IncludeType_Z1FBCCD16, ConverterOptions__set_SetID_Z1FBCCD16, ConverterOptions_$ctor, ConverterOptions__get_IncludeType, ConverterOptions__get_SetID } from "./ConverterOptions.js";
11
11
  import { tryInclude } from "./GEncode.js";
12
12
  import { OntologyAnnotation_decoder, OntologyAnnotation_encoder } from "./Ontology.js";
@@ -14,7 +14,7 @@ import { hasUnknownFields, fromJsonString, uri } from "./Decode.js";
14
14
  import { MaterialAttribute } from "../ISA/JsonTypes/MaterialAttribute.js";
15
15
  import { Value_decoder, Value_encoder } from "./Factor.js";
16
16
  import { MaterialAttributeValue } from "../ISA/JsonTypes/MaterialAttributeValue.js";
17
- import { replace } from "../../fable_modules/fable-library.4.4.1/String.js";
17
+ import { replace } from "../../fable_modules/fable-library.4.5.0/String.js";
18
18
  import { Material } from "../ISA/JsonTypes/Material.js";
19
19
 
20
20
  export function MaterialType_encoder(options, value) {
@@ -1,11 +1,11 @@
1
1
  import { AnnotationValue } from "../ISA/JsonTypes/AnnotationValue.js";
2
2
  import { toString, object as object_10, nil } from "../../fable_modules/Thoth.Json.10.1.0/Encode.fs.js";
3
3
  import { array, object as object_11, string, float, int } from "../../fable_modules/Thoth.Json.10.1.0/Decode.fs.js";
4
- import { FSharpResult$2 } from "../../fable_modules/fable-library.4.4.1/Choice.js";
5
- import { replace } from "../../fable_modules/fable-library.4.4.1/String.js";
6
- import { choose } from "../../fable_modules/fable-library.4.4.1/List.js";
7
- import { uncurry2, equals } from "../../fable_modules/fable-library.4.4.1/Util.js";
8
- import { empty, singleton, append, delay, toList } from "../../fable_modules/fable-library.4.4.1/Seq.js";
4
+ import { FSharpResult$2 } from "../../fable_modules/fable-library.4.5.0/Choice.js";
5
+ import { replace } from "../../fable_modules/fable-library.4.5.0/String.js";
6
+ import { choose } from "../../fable_modules/fable-library.4.5.0/List.js";
7
+ import { uncurry2, equals } from "../../fable_modules/fable-library.4.5.0/Util.js";
8
+ import { empty, singleton, append, delay, toList } from "../../fable_modules/fable-library.4.5.0/Seq.js";
9
9
  import { ConverterOptions__set_IncludeType_Z1FBCCD16, ConverterOptions__set_SetID_Z1FBCCD16, ConverterOptions_$ctor, ConverterOptions__get_IncludeType, ConverterOptions__get_SetID } from "./ConverterOptions.js";
10
10
  import { tryInclude } from "./GEncode.js";
11
11
  import { decoder as decoder_1, encoder } from "./Comment.js";
@@ -13,7 +13,7 @@ import { fromJsonString, uri } from "./Decode.js";
13
13
  import { OntologySourceReference } from "../ISA/JsonTypes/OntologySourceReference.js";
14
14
  import { URIModule_toString } from "../ISA/JsonTypes/URI.js";
15
15
  import { OntologyAnnotation } from "../ISA/JsonTypes/OntologyAnnotation.js";
16
- import { unwrap } from "../../fable_modules/fable-library.4.4.1/Option.js";
16
+ import { unwrap } from "../../fable_modules/fable-library.4.5.0/Option.js";
17
17
 
18
18
  export function AnnotationValue_encoder(options, value) {
19
19
  if (value instanceof AnnotationValue) {
@@ -1,11 +1,11 @@
1
- import { tryPick } from "../../fable_modules/fable-library.4.4.1/Array.js";
2
- import { replace } from "../../fable_modules/fable-library.4.4.1/String.js";
1
+ import { tryPick } from "../../fable_modules/fable-library.4.5.0/Array.js";
2
+ import { replace } from "../../fable_modules/fable-library.4.5.0/String.js";
3
3
  import { URIModule_toString } from "../ISA/JsonTypes/URI.js";
4
4
  import { Person } from "../ISA/JsonTypes/Person.js";
5
5
  import { toString, nil, object as object_22 } from "../../fable_modules/Thoth.Json.10.1.0/Encode.fs.js";
6
- import { choose } from "../../fable_modules/fable-library.4.4.1/List.js";
7
- import { uncurry2, equals } from "../../fable_modules/fable-library.4.4.1/Util.js";
8
- import { empty, singleton, append, delay, toList } from "../../fable_modules/fable-library.4.4.1/Seq.js";
6
+ import { choose } from "../../fable_modules/fable-library.4.5.0/List.js";
7
+ import { uncurry2, equals } from "../../fable_modules/fable-library.4.5.0/Util.js";
8
+ import { empty, singleton, append, delay, toList } from "../../fable_modules/fable-library.4.5.0/Seq.js";
9
9
  import { ConverterOptions__set_IncludeType_Z1FBCCD16, ConverterOptions__set_SetID_Z1FBCCD16, ConverterOptions_$ctor, ConverterOptions__get_IncludeType, ConverterOptions__get_SetID } from "./ConverterOptions.js";
10
10
  import { tryInclude } from "./GEncode.js";
11
11
  import { OntologyAnnotation_decoder, OntologyAnnotation_encoder } from "./Ontology.js";