@nfdi4plants/arctrl 3.0.0-beta.2 → 3.0.0-beta.4

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 (1713) hide show
  1. package/README.md +2 -0
  2. package/dist/ts/index.d.ts +61 -0
  3. package/dist/ts/index.d.ts.map +1 -0
  4. package/dist/ts/index.js +63 -0
  5. package/dist/ts/node_modules/@fable-org/fable-library-js/Array.js +354 -0
  6. package/dist/ts/node_modules/@fable-org/fable-library-js/Async.js +28 -0
  7. package/dist/ts/node_modules/@fable-org/fable-library-js/AsyncBuilder.js +186 -0
  8. package/dist/ts/node_modules/@fable-org/fable-library-js/BigInt.js +8 -0
  9. package/dist/ts/node_modules/@fable-org/fable-library-js/Boolean.js +24 -0
  10. package/dist/ts/node_modules/@fable-org/fable-library-js/Char.js +73 -0
  11. package/dist/ts/node_modules/@fable-org/fable-library-js/CollectionUtil.js +31 -0
  12. package/dist/ts/node_modules/@fable-org/fable-library-js/Date.js +574 -0
  13. package/dist/ts/node_modules/@fable-org/fable-library-js/DateOffset.js +59 -0
  14. package/dist/ts/node_modules/@fable-org/fable-library-js/Decimal.js +65 -0
  15. package/dist/ts/node_modules/@fable-org/fable-library-js/Double.js +30 -0
  16. package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Core.js +5 -0
  17. package/dist/ts/node_modules/@fable-org/fable-library-js/Global.js +5 -0
  18. package/dist/ts/node_modules/@fable-org/fable-library-js/Guid.js +48 -0
  19. package/dist/ts/node_modules/@fable-org/fable-library-js/Int32.js +120 -0
  20. package/dist/ts/node_modules/@fable-org/fable-library-js/List.js +680 -0
  21. package/dist/ts/node_modules/@fable-org/fable-library-js/Long.js +40 -0
  22. package/dist/ts/node_modules/@fable-org/fable-library-js/Map.js +655 -0
  23. package/dist/ts/node_modules/@fable-org/fable-library-js/MapUtil.js +105 -0
  24. package/dist/ts/node_modules/@fable-org/fable-library-js/MutableMap.js +320 -0
  25. package/dist/ts/node_modules/@fable-org/fable-library-js/MutableSet.js +204 -0
  26. package/dist/ts/node_modules/@fable-org/fable-library-js/Native.js +10 -0
  27. package/dist/ts/node_modules/@fable-org/fable-library-js/Numeric.js +73 -0
  28. package/dist/ts/node_modules/@fable-org/fable-library-js/Option.js +65 -0
  29. package/dist/ts/node_modules/@fable-org/fable-library-js/Range.js +23 -0
  30. package/dist/ts/node_modules/@fable-org/fable-library-js/Reflection.js +111 -0
  31. package/dist/ts/node_modules/@fable-org/fable-library-js/RegExp.js +114 -0
  32. package/dist/ts/node_modules/@fable-org/fable-library-js/Result.js +36 -0
  33. package/dist/ts/node_modules/@fable-org/fable-library-js/Seq.js +846 -0
  34. package/dist/ts/node_modules/@fable-org/fable-library-js/Seq2.js +65 -0
  35. package/dist/ts/node_modules/@fable-org/fable-library-js/Set.js +1160 -0
  36. package/dist/ts/node_modules/@fable-org/fable-library-js/String.js +364 -0
  37. package/dist/ts/node_modules/@fable-org/fable-library-js/System.Text.js +40 -0
  38. package/dist/ts/node_modules/@fable-org/fable-library-js/Types.js +193 -0
  39. package/dist/ts/node_modules/@fable-org/fable-library-js/Unicode.13.0.0.js +6 -0
  40. package/dist/ts/node_modules/@fable-org/fable-library-js/Uri.js +160 -0
  41. package/dist/ts/node_modules/@fable-org/fable-library-js/Util.js +367 -0
  42. package/dist/ts/node_modules/@fable-org/fable-library-js/lib/big.js +825 -0
  43. package/dist/ts/ts/ARC.d.ts +80 -0
  44. package/dist/ts/ts/ARC.d.ts.map +1 -0
  45. package/dist/ts/ts/ARC.js +914 -0
  46. package/dist/ts/ts/Contract/ARC.d.ts +7 -0
  47. package/dist/ts/ts/Contract/ARC.d.ts.map +1 -0
  48. package/dist/ts/ts/Contract/ARC.js +52 -0
  49. package/dist/ts/ts/Contract/ArcAssay.d.ts +12 -0
  50. package/dist/ts/ts/Contract/ArcAssay.d.ts.map +1 -0
  51. package/dist/ts/ts/Contract/ArcAssay.js +80 -0
  52. package/dist/ts/ts/Contract/ArcInvestigation.d.ts +10 -0
  53. package/dist/ts/ts/Contract/ArcInvestigation.d.ts.map +1 -0
  54. package/dist/ts/ts/Contract/ArcInvestigation.js +57 -0
  55. package/dist/ts/ts/Contract/ArcRun.d.ts +12 -0
  56. package/dist/ts/ts/Contract/ArcRun.d.ts.map +1 -0
  57. package/dist/ts/ts/Contract/ArcRun.js +76 -0
  58. package/dist/ts/ts/Contract/ArcStudy.d.ts +13 -0
  59. package/dist/ts/ts/Contract/ArcStudy.d.ts.map +1 -0
  60. package/dist/ts/ts/Contract/ArcStudy.js +76 -0
  61. package/dist/ts/ts/Contract/ArcWorkflow.d.ts +12 -0
  62. package/dist/ts/ts/Contract/ArcWorkflow.d.ts.map +1 -0
  63. package/dist/ts/ts/Contract/ArcWorkflow.js +77 -0
  64. package/dist/ts/ts/Contract/Contract.d.ts +39 -0
  65. package/dist/ts/ts/Contract/Contract.d.ts.map +1 -0
  66. package/dist/ts/ts/Contract/Contract.js +45 -0
  67. package/dist/ts/ts/Contract/Datamap.d.ts +29 -0
  68. package/dist/ts/ts/Contract/Datamap.d.ts.map +1 -0
  69. package/dist/ts/ts/Contract/Datamap.js +221 -0
  70. package/dist/ts/ts/Contract/Git.d.ts +28 -0
  71. package/dist/ts/ts/Contract/Git.d.ts.map +1 -0
  72. package/dist/ts/ts/Contract/Git.js +57 -0
  73. package/dist/ts/ts/Contract/ValidationPackagesConfig.d.ts +12 -0
  74. package/dist/ts/ts/Contract/ValidationPackagesConfig.d.ts.map +1 -0
  75. package/dist/ts/ts/Contract/ValidationPackagesConfig.js +57 -0
  76. package/dist/ts/ts/ContractIO/ContractIO.d.ts +11 -0
  77. package/dist/ts/ts/ContractIO/ContractIO.d.ts.map +1 -0
  78. package/dist/ts/ts/ContractIO/ContractIO.js +202 -0
  79. package/dist/ts/ts/ContractIO/FileSystemHelper.d.ts +44 -0
  80. package/dist/ts/ts/ContractIO/FileSystemHelper.d.ts.map +1 -0
  81. package/dist/ts/ts/ContractIO/FileSystemHelper.js +273 -0
  82. package/dist/ts/ts/Conversion.d.ts +292 -0
  83. package/dist/ts/ts/Conversion.d.ts.map +1 -0
  84. package/dist/ts/ts/Conversion.js +1247 -0
  85. package/dist/ts/ts/Core/ArcTypes.d.ts +620 -0
  86. package/dist/ts/ts/Core/ArcTypes.d.ts.map +1 -0
  87. package/dist/ts/ts/Core/ArcTypes.js +3393 -0
  88. package/dist/ts/ts/Core/Comment.d.ts +35 -0
  89. package/dist/ts/ts/Core/Comment.d.ts.map +1 -0
  90. package/dist/ts/ts/Core/Comment.js +91 -0
  91. package/dist/ts/ts/Core/CommentList.d.ts +28 -0
  92. package/dist/ts/ts/Core/CommentList.d.ts.map +1 -0
  93. package/dist/ts/ts/Core/CommentList.js +27 -0
  94. package/dist/ts/ts/Core/Conversion.d.ts +215 -0
  95. package/dist/ts/ts/Core/Conversion.d.ts.map +1 -0
  96. package/dist/ts/ts/Core/Conversion.js +923 -0
  97. package/dist/ts/ts/Core/Data.d.ts +49 -0
  98. package/dist/ts/ts/Core/Data.d.ts.map +1 -0
  99. package/dist/ts/ts/Core/Data.js +179 -0
  100. package/dist/ts/ts/Core/DataContext.d.ts +47 -0
  101. package/dist/ts/ts/Core/DataContext.d.ts.map +1 -0
  102. package/dist/ts/ts/Core/DataContext.js +108 -0
  103. package/dist/ts/ts/Core/DataFile.d.ts +27 -0
  104. package/dist/ts/ts/Core/DataFile.d.ts.map +1 -0
  105. package/dist/ts/ts/Core/DataFile.js +50 -0
  106. package/dist/ts/ts/Core/DataMap.d.ts +52 -0
  107. package/dist/ts/ts/Core/DataMap.d.ts.map +1 -0
  108. package/dist/ts/ts/Core/DataMap.js +53 -0
  109. package/dist/ts/ts/Core/Helper/Collections.d.ts +61 -0
  110. package/dist/ts/ts/Core/Helper/Collections.d.ts.map +1 -0
  111. package/dist/ts/ts/Core/Helper/Collections.js +323 -0
  112. package/dist/ts/ts/Core/Helper/HashCodes.d.ts +9 -0
  113. package/dist/ts/ts/Core/Helper/HashCodes.d.ts.map +1 -0
  114. package/dist/ts/ts/Core/Helper/HashCodes.js +35 -0
  115. package/dist/ts/ts/Core/Helper/Identifier.d.ts +119 -0
  116. package/dist/ts/ts/Core/Helper/Identifier.d.ts.map +1 -0
  117. package/dist/ts/ts/Core/Helper/Identifier.js +96 -0
  118. package/dist/ts/ts/Core/Helper/ORCID.d.ts +7 -0
  119. package/dist/ts/ts/Core/Helper/ORCID.d.ts.map +1 -0
  120. package/dist/ts/ts/Core/Helper/ORCID.js +34 -0
  121. package/dist/ts/ts/Core/Helper/Regex.d.ts +194 -0
  122. package/dist/ts/ts/Core/Helper/Regex.d.ts.map +1 -0
  123. package/dist/ts/ts/Core/Helper/Regex.js +296 -0
  124. package/dist/ts/ts/Core/Helper/SemVer.d.ts +20 -0
  125. package/dist/ts/ts/Core/Helper/SemVer.d.ts.map +1 -0
  126. package/dist/ts/ts/Core/Helper/SemVer.js +31 -0
  127. package/dist/ts/ts/Core/Helper/Url.d.ts +10 -0
  128. package/dist/ts/ts/Core/Helper/Url.d.ts.map +1 -0
  129. package/dist/ts/ts/Core/Helper/Url.js +32 -0
  130. package/dist/ts/ts/Core/IdentifierSetters.d.ts +7 -0
  131. package/dist/ts/ts/Core/IdentifierSetters.d.ts.map +1 -0
  132. package/dist/ts/ts/Core/IdentifierSetters.js +9 -0
  133. package/dist/ts/ts/Core/OntologyAnnotation.d.ts +57 -0
  134. package/dist/ts/ts/Core/OntologyAnnotation.d.ts.map +1 -0
  135. package/dist/ts/ts/Core/OntologyAnnotation.js +207 -0
  136. package/dist/ts/ts/Core/OntologySourceReference.d.ts +31 -0
  137. package/dist/ts/ts/Core/OntologySourceReference.d.ts.map +1 -0
  138. package/dist/ts/ts/Core/OntologySourceReference.js +84 -0
  139. package/dist/ts/ts/Core/Person.d.ts +56 -0
  140. package/dist/ts/ts/Core/Person.d.ts.map +1 -0
  141. package/dist/ts/ts/Core/Person.js +183 -0
  142. package/dist/ts/ts/Core/Process/ColumnIndex.d.ts +79 -0
  143. package/dist/ts/ts/Core/Process/ColumnIndex.d.ts.map +1 -0
  144. package/dist/ts/ts/Core/Process/ColumnIndex.js +73 -0
  145. package/dist/ts/ts/Core/Process/Component.d.ts +65 -0
  146. package/dist/ts/ts/Core/Process/Component.d.ts.map +1 -0
  147. package/dist/ts/ts/Core/Process/Component.js +121 -0
  148. package/dist/ts/ts/Core/Process/Factor.d.ts +44 -0
  149. package/dist/ts/ts/Core/Process/Factor.d.ts.map +1 -0
  150. package/dist/ts/ts/Core/Process/Factor.js +104 -0
  151. package/dist/ts/ts/Core/Process/FactorValue.d.ts +44 -0
  152. package/dist/ts/ts/Core/Process/FactorValue.d.ts.map +1 -0
  153. package/dist/ts/ts/Core/Process/FactorValue.js +68 -0
  154. package/dist/ts/ts/Core/Process/Material.d.ts +27 -0
  155. package/dist/ts/ts/Core/Process/Material.d.ts.map +1 -0
  156. package/dist/ts/ts/Core/Process/Material.js +49 -0
  157. package/dist/ts/ts/Core/Process/MaterialAttribute.d.ts +53 -0
  158. package/dist/ts/ts/Core/Process/MaterialAttribute.d.ts.map +1 -0
  159. package/dist/ts/ts/Core/Process/MaterialAttribute.js +30 -0
  160. package/dist/ts/ts/Core/Process/MaterialAttributeValue.d.ts +55 -0
  161. package/dist/ts/ts/Core/Process/MaterialAttributeValue.d.ts.map +1 -0
  162. package/dist/ts/ts/Core/Process/MaterialAttributeValue.js +68 -0
  163. package/dist/ts/ts/Core/Process/MaterialType.d.ts +22 -0
  164. package/dist/ts/ts/Core/Process/MaterialType.d.ts.map +1 -0
  165. package/dist/ts/ts/Core/Process/MaterialType.js +28 -0
  166. package/dist/ts/ts/Core/Process/Process.d.ts +113 -0
  167. package/dist/ts/ts/Core/Process/Process.d.ts.map +1 -0
  168. package/dist/ts/ts/Core/Process/Process.js +136 -0
  169. package/dist/ts/ts/Core/Process/ProcessInput.d.ts +117 -0
  170. package/dist/ts/ts/Core/Process/ProcessInput.d.ts.map +1 -0
  171. package/dist/ts/ts/Core/Process/ProcessInput.js +207 -0
  172. package/dist/ts/ts/Core/Process/ProcessOutput.d.ts +106 -0
  173. package/dist/ts/ts/Core/Process/ProcessOutput.d.ts.map +1 -0
  174. package/dist/ts/ts/Core/Process/ProcessOutput.js +178 -0
  175. package/dist/ts/ts/Core/Process/ProcessParameterValue.d.ts +40 -0
  176. package/dist/ts/ts/Core/Process/ProcessParameterValue.d.ts.map +1 -0
  177. package/dist/ts/ts/Core/Process/ProcessParameterValue.js +135 -0
  178. package/dist/ts/ts/Core/Process/ProcessSequence.d.ts +89 -0
  179. package/dist/ts/ts/Core/Process/ProcessSequence.d.ts.map +1 -0
  180. package/dist/ts/ts/Core/Process/ProcessSequence.js +56 -0
  181. package/dist/ts/ts/Core/Process/Protocol.d.ts +141 -0
  182. package/dist/ts/ts/Core/Process/Protocol.d.ts.map +1 -0
  183. package/dist/ts/ts/Core/Process/Protocol.js +54 -0
  184. package/dist/ts/ts/Core/Process/ProtocolParameter.d.ts +32 -0
  185. package/dist/ts/ts/Core/Process/ProtocolParameter.d.ts.map +1 -0
  186. package/dist/ts/ts/Core/Process/ProtocolParameter.js +69 -0
  187. package/dist/ts/ts/Core/Process/Sample.d.ts +31 -0
  188. package/dist/ts/ts/Core/Process/Sample.d.ts.map +1 -0
  189. package/dist/ts/ts/Core/Process/Sample.js +44 -0
  190. package/dist/ts/ts/Core/Process/Source.d.ts +24 -0
  191. package/dist/ts/ts/Core/Process/Source.d.ts.map +1 -0
  192. package/dist/ts/ts/Core/Process/Source.js +38 -0
  193. package/dist/ts/ts/Core/Publication.d.ts +36 -0
  194. package/dist/ts/ts/Core/Publication.d.ts.map +1 -0
  195. package/dist/ts/ts/Core/Publication.js +108 -0
  196. package/dist/ts/ts/Core/Table/ArcTable.d.ts +137 -0
  197. package/dist/ts/ts/Core/Table/ArcTable.d.ts.map +1 -0
  198. package/dist/ts/ts/Core/Table/ArcTable.js +889 -0
  199. package/dist/ts/ts/Core/Table/ArcTableAux.d.ts +154 -0
  200. package/dist/ts/ts/Core/Table/ArcTableAux.d.ts.map +1 -0
  201. package/dist/ts/ts/Core/Table/ArcTableAux.js +993 -0
  202. package/dist/ts/ts/Core/Table/ArcTables.d.ts +91 -0
  203. package/dist/ts/ts/Core/Table/ArcTables.d.ts.map +1 -0
  204. package/dist/ts/ts/Core/Table/ArcTables.js +415 -0
  205. package/dist/ts/ts/Core/Table/CompositeCell.d.ts +58 -0
  206. package/dist/ts/ts/Core/Table/CompositeCell.d.ts.map +1 -0
  207. package/dist/ts/ts/Core/Table/CompositeCell.js +334 -0
  208. package/dist/ts/ts/Core/Table/CompositeColumn.d.ts +19 -0
  209. package/dist/ts/ts/Core/Table/CompositeColumn.d.ts.map +1 -0
  210. package/dist/ts/ts/Core/Table/CompositeColumn.js +52 -0
  211. package/dist/ts/ts/Core/Table/CompositeHeader.d.ts +130 -0
  212. package/dist/ts/ts/Core/Table/CompositeHeader.d.ts.map +1 -0
  213. package/dist/ts/ts/Core/Table/CompositeHeader.js +792 -0
  214. package/dist/ts/ts/Core/Template.d.ts +69 -0
  215. package/dist/ts/ts/Core/Template.d.ts.map +1 -0
  216. package/dist/ts/ts/Core/Template.js +180 -0
  217. package/dist/ts/ts/Core/Templates.d.ts +18 -0
  218. package/dist/ts/ts/Core/Templates.d.ts.map +1 -0
  219. package/dist/ts/ts/Core/Templates.js +75 -0
  220. package/dist/ts/ts/Core/URI.d.ts.map +1 -0
  221. package/dist/ts/ts/Core/URI.js +8 -0
  222. package/dist/ts/ts/Core/Value.d.ts +41 -0
  223. package/dist/ts/ts/Core/Value.d.ts.map +1 -0
  224. package/dist/ts/ts/Core/Value.js +194 -0
  225. package/dist/ts/ts/CrossAsync.d.ts +9 -0
  226. package/dist/ts/ts/CrossAsync.d.ts.map +1 -0
  227. package/dist/ts/ts/CrossAsync.js +20 -0
  228. package/dist/ts/ts/FileSystem/Commit.d.ts +13 -0
  229. package/dist/ts/ts/FileSystem/Commit.d.ts.map +1 -0
  230. package/dist/ts/ts/FileSystem/DefaultGitattributes.d.ts.map +1 -0
  231. package/dist/ts/ts/FileSystem/DefaultGitattributes.js +3 -0
  232. package/dist/ts/ts/FileSystem/DefaultGitignore.d.ts.map +1 -0
  233. package/dist/ts/ts/FileSystem/DefaultGitignore.js +3 -0
  234. package/dist/ts/ts/FileSystem/FileSystem.d.ts +21 -0
  235. package/dist/ts/ts/FileSystem/FileSystem.d.ts.map +1 -0
  236. package/dist/ts/ts/FileSystem/FileSystem.js +48 -0
  237. package/dist/ts/ts/FileSystem/FileSystemTree.d.ts +55 -0
  238. package/dist/ts/ts/FileSystem/FileSystemTree.d.ts.map +1 -0
  239. package/dist/ts/ts/FileSystem/FileSystemTree.js +339 -0
  240. package/dist/ts/ts/FileSystem/Path.d.ts.map +1 -0
  241. package/dist/ts/ts/FileSystem/Path.js +36 -0
  242. package/dist/ts/ts/Json/Assay.d.ts +19 -0
  243. package/dist/ts/ts/Json/Assay.d.ts.map +1 -0
  244. package/dist/ts/ts/Json/Assay.js +221 -0
  245. package/dist/ts/ts/Json/Comment.d.ts +14 -0
  246. package/dist/ts/ts/Json/Comment.d.ts.map +1 -0
  247. package/dist/ts/ts/Json/Comment.js +112 -0
  248. package/dist/ts/ts/Json/Data.d.ts +17 -0
  249. package/dist/ts/ts/Json/Data.d.ts.map +1 -0
  250. package/dist/ts/ts/Json/Data.js +138 -0
  251. package/dist/ts/ts/Json/DataFile.d.ts +7 -0
  252. package/dist/ts/ts/Json/DataFile.d.ts.map +1 -0
  253. package/dist/ts/ts/Json/DataFile.js +55 -0
  254. package/dist/ts/ts/Json/DataMap/DataContext.d.ts +5 -0
  255. package/dist/ts/ts/Json/DataMap/DataContext.d.ts.map +1 -0
  256. package/dist/ts/ts/Json/DataMap/DataContext.js +39 -0
  257. package/dist/ts/ts/Json/DataMap/DataMap.d.ts +11 -0
  258. package/dist/ts/ts/Json/DataMap/DataMap.d.ts.map +1 -0
  259. package/dist/ts/ts/Json/DataMap/DataMap.js +27 -0
  260. package/dist/ts/ts/Json/Decode.d.ts +18 -0
  261. package/dist/ts/ts/Json/Decode.d.ts.map +1 -0
  262. package/dist/ts/ts/Json/Decode.js +209 -0
  263. package/dist/ts/ts/Json/Encode.d.ts +23 -0
  264. package/dist/ts/ts/Json/Encode.d.ts.map +1 -0
  265. package/dist/ts/ts/Json/Encode.js +65 -0
  266. package/dist/ts/ts/Json/IDTable.d.ts +5 -0
  267. package/dist/ts/ts/Json/IDTable.d.ts.map +1 -0
  268. package/dist/ts/ts/Json/IDTable.js +28 -0
  269. package/dist/ts/ts/Json/Investigation.d.ts +20 -0
  270. package/dist/ts/ts/Json/Investigation.d.ts.map +1 -0
  271. package/dist/ts/ts/Json/Investigation.js +229 -0
  272. package/dist/ts/ts/Json/OntologyAnnotation.d.ts +18 -0
  273. package/dist/ts/ts/Json/OntologyAnnotation.d.ts.map +1 -0
  274. package/dist/ts/ts/Json/OntologyAnnotation.js +194 -0
  275. package/dist/ts/ts/Json/OntologySourceReference.d.ts +12 -0
  276. package/dist/ts/ts/Json/OntologySourceReference.d.ts.map +1 -0
  277. package/dist/ts/ts/Json/OntologySourceReference.js +119 -0
  278. package/dist/ts/ts/Json/Person.d.ts +22 -0
  279. package/dist/ts/ts/Json/Person.d.ts.map +1 -0
  280. package/dist/ts/ts/Json/Person.js +316 -0
  281. package/dist/ts/ts/Json/Process/AssayMaterials.d.ts +7 -0
  282. package/dist/ts/ts/Json/Process/AssayMaterials.d.ts.map +1 -0
  283. package/dist/ts/ts/Json/Process/AssayMaterials.js +21 -0
  284. package/dist/ts/ts/Json/Process/Component.d.ts +11 -0
  285. package/dist/ts/ts/Json/Process/Component.d.ts.map +1 -0
  286. package/dist/ts/ts/Json/Process/Component.js +41 -0
  287. package/dist/ts/ts/Json/Process/Factor.d.ts +8 -0
  288. package/dist/ts/ts/Json/Process/Factor.d.ts.map +1 -0
  289. package/dist/ts/ts/Json/Process/Factor.js +53 -0
  290. package/dist/ts/ts/Json/Process/FactorValue.d.ts +11 -0
  291. package/dist/ts/ts/Json/Process/FactorValue.d.ts.map +1 -0
  292. package/dist/ts/ts/Json/Process/FactorValue.js +44 -0
  293. package/dist/ts/ts/Json/Process/Material.d.ts +12 -0
  294. package/dist/ts/ts/Json/Process/Material.d.ts.map +1 -0
  295. package/dist/ts/ts/Json/Process/Material.js +112 -0
  296. package/dist/ts/ts/Json/Process/MaterialAttribute.d.ts +8 -0
  297. package/dist/ts/ts/Json/Process/MaterialAttribute.d.ts.map +1 -0
  298. package/dist/ts/ts/Json/Process/MaterialAttribute.js +43 -0
  299. package/dist/ts/ts/Json/Process/MaterialAttributeValue.d.ts +11 -0
  300. package/dist/ts/ts/Json/Process/MaterialAttributeValue.d.ts.map +1 -0
  301. package/dist/ts/ts/Json/Process/MaterialAttributeValue.js +44 -0
  302. package/dist/ts/ts/Json/Process/MaterialType.d.ts +7 -0
  303. package/dist/ts/ts/Json/Process/MaterialType.d.ts.map +1 -0
  304. package/dist/ts/ts/Json/Process/MaterialType.js +45 -0
  305. package/dist/ts/ts/Json/Process/Process.d.ts +10 -0
  306. package/dist/ts/ts/Json/Process/Process.d.ts.map +1 -0
  307. package/dist/ts/ts/Json/Process/Process.js +103 -0
  308. package/dist/ts/ts/Json/Process/ProcessInput.d.ts +9 -0
  309. package/dist/ts/ts/Json/Process/ProcessInput.d.ts.map +1 -0
  310. package/dist/ts/ts/Json/Process/ProcessInput.js +42 -0
  311. package/dist/ts/ts/Json/Process/ProcessOutput.d.ts +9 -0
  312. package/dist/ts/ts/Json/Process/ProcessOutput.d.ts.map +1 -0
  313. package/dist/ts/ts/Json/Process/ProcessOutput.js +35 -0
  314. package/dist/ts/ts/Json/Process/ProcessParameterValue.d.ts +11 -0
  315. package/dist/ts/ts/Json/Process/ProcessParameterValue.d.ts.map +1 -0
  316. package/dist/ts/ts/Json/Process/ProcessParameterValue.js +28 -0
  317. package/dist/ts/ts/Json/Process/Protocol.d.ts +10 -0
  318. package/dist/ts/ts/Json/Process/Protocol.d.ts.map +1 -0
  319. package/dist/ts/ts/Json/Process/Protocol.js +166 -0
  320. package/dist/ts/ts/Json/Process/ProtocolParameter.d.ts +8 -0
  321. package/dist/ts/ts/Json/Process/ProtocolParameter.d.ts.map +1 -0
  322. package/dist/ts/ts/Json/Process/ProtocolParameter.js +43 -0
  323. package/dist/ts/ts/Json/Process/Sample.d.ts +15 -0
  324. package/dist/ts/ts/Json/Process/Sample.d.ts.map +1 -0
  325. package/dist/ts/ts/Json/Process/Sample.js +165 -0
  326. package/dist/ts/ts/Json/Process/Source.d.ts +12 -0
  327. package/dist/ts/ts/Json/Process/Source.d.ts.map +1 -0
  328. package/dist/ts/ts/Json/Process/Source.js +133 -0
  329. package/dist/ts/ts/Json/Process/StudyMaterials.d.ts +7 -0
  330. package/dist/ts/ts/Json/Process/StudyMaterials.d.ts.map +1 -0
  331. package/dist/ts/ts/Json/Process/StudyMaterials.js +23 -0
  332. package/dist/ts/ts/Json/Process/Value.d.ts +7 -0
  333. package/dist/ts/ts/Json/Process/Value.d.ts.map +1 -0
  334. package/dist/ts/ts/Json/Process/Value.js +41 -0
  335. package/dist/ts/ts/Json/PropertyValue.d.ts +9 -0
  336. package/dist/ts/ts/Json/PropertyValue.d.ts.map +1 -0
  337. package/dist/ts/ts/Json/PropertyValue.js +280 -0
  338. package/dist/ts/ts/Json/Publication.d.ts +14 -0
  339. package/dist/ts/ts/Json/Publication.d.ts.map +1 -0
  340. package/dist/ts/ts/Json/Publication.js +123 -0
  341. package/dist/ts/ts/Json/ROCrate/LDContext.d.ts +5 -0
  342. package/dist/ts/ts/Json/ROCrate/LDContext.d.ts.map +1 -0
  343. package/dist/ts/ts/Json/ROCrate/LDContext.js +115 -0
  344. package/dist/ts/ts/Json/ROCrate/LDGraph.d.ts +5 -0
  345. package/dist/ts/ts/Json/ROCrate/LDGraph.d.ts.map +1 -0
  346. package/dist/ts/ts/Json/ROCrate/LDGraph.js +83 -0
  347. package/dist/ts/ts/Json/ROCrate/LDNode.d.ts +13 -0
  348. package/dist/ts/ts/Json/ROCrate/LDNode.d.ts.map +1 -0
  349. package/dist/ts/ts/Json/ROCrate/LDNode.js +190 -0
  350. package/dist/ts/ts/Json/ROCrate/LDRef.d.ts +5 -0
  351. package/dist/ts/ts/Json/ROCrate/LDRef.d.ts.map +1 -0
  352. package/dist/ts/ts/Json/ROCrate/LDRef.js +24 -0
  353. package/dist/ts/ts/Json/ROCrate/LDValue.d.ts +7 -0
  354. package/dist/ts/ts/Json/ROCrate/LDValue.d.ts.map +1 -0
  355. package/dist/ts/ts/Json/ROCrate/LDValue.js +63 -0
  356. package/dist/ts/ts/Json/StringTable.d.ts +9 -0
  357. package/dist/ts/ts/Json/StringTable.d.ts.map +1 -0
  358. package/dist/ts/ts/Json/StringTable.js +66 -0
  359. package/dist/ts/ts/Json/Study.d.ts +26 -0
  360. package/dist/ts/ts/Json/Study.d.ts.map +1 -0
  361. package/dist/ts/ts/Json/Study.js +326 -0
  362. package/dist/ts/ts/Json/Table/ArcTable.d.ts +15 -0
  363. package/dist/ts/ts/Json/Table/ArcTable.d.ts.map +1 -0
  364. package/dist/ts/ts/Json/Table/ArcTable.js +210 -0
  365. package/dist/ts/ts/Json/Table/CellTable.d.ts +11 -0
  366. package/dist/ts/ts/Json/Table/CellTable.d.ts.map +1 -0
  367. package/dist/ts/ts/Json/Table/CellTable.js +53 -0
  368. package/dist/ts/ts/Json/Table/CompositeCell.d.ts +10 -0
  369. package/dist/ts/ts/Json/Table/CompositeCell.d.ts.map +1 -0
  370. package/dist/ts/ts/Json/Table/CompositeCell.js +106 -0
  371. package/dist/ts/ts/Json/Table/CompositeHeader.d.ts +5 -0
  372. package/dist/ts/ts/Json/Table/CompositeHeader.d.ts.map +1 -0
  373. package/dist/ts/ts/Json/Table/CompositeHeader.js +121 -0
  374. package/dist/ts/ts/Json/Table/IOType.d.ts +5 -0
  375. package/dist/ts/ts/Json/Table/IOType.d.ts.map +1 -0
  376. package/dist/ts/ts/Json/Table/IOType.js +15 -0
  377. package/dist/ts/ts/Json/Table/OATable.d.ts +10 -0
  378. package/dist/ts/ts/Json/Table/OATable.d.ts.map +1 -0
  379. package/dist/ts/ts/Json/Table/OATable.js +50 -0
  380. package/dist/ts/ts/Json/Table/Templates.d.ts +15 -0
  381. package/dist/ts/ts/Json/Table/Templates.d.ts.map +1 -0
  382. package/dist/ts/ts/Json/Table/Templates.js +15 -0
  383. package/dist/ts/ts/Json/context/rocrate/isa_assay_context.d.ts +26 -0
  384. package/dist/ts/ts/Json/context/rocrate/isa_assay_context.d.ts.map +1 -0
  385. package/dist/ts/ts/Json/context/rocrate/isa_assay_context.js +61 -0
  386. package/dist/ts/ts/Json/context/rocrate/isa_comment_context.d.ts +16 -0
  387. package/dist/ts/ts/Json/context/rocrate/isa_comment_context.d.ts.map +1 -0
  388. package/dist/ts/ts/Json/context/rocrate/isa_comment_context.js +29 -0
  389. package/dist/ts/ts/Json/context/rocrate/isa_data_context.d.ts +18 -0
  390. package/dist/ts/ts/Json/context/rocrate/isa_data_context.d.ts.map +1 -0
  391. package/dist/ts/ts/Json/context/rocrate/isa_data_context.js +41 -0
  392. package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.d.ts +26 -0
  393. package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.d.ts.map +1 -0
  394. package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.js +69 -0
  395. package/dist/ts/ts/Json/context/rocrate/isa_material_context.d.ts +19 -0
  396. package/dist/ts/ts/Json/context/rocrate/isa_material_context.d.ts.map +1 -0
  397. package/dist/ts/ts/Json/context/rocrate/isa_material_context.js +37 -0
  398. package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts +17 -0
  399. package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts.map +1 -0
  400. package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.js +37 -0
  401. package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts +19 -0
  402. package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts.map +1 -0
  403. package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +41 -0
  404. package/dist/ts/ts/Json/context/rocrate/isa_organization_context.d.ts +15 -0
  405. package/dist/ts/ts/Json/context/rocrate/isa_organization_context.d.ts.map +1 -0
  406. package/dist/ts/ts/Json/context/rocrate/isa_organization_context.js +25 -0
  407. package/dist/ts/ts/Json/context/rocrate/isa_person_context.d.ts +25 -0
  408. package/dist/ts/ts/Json/context/rocrate/isa_person_context.d.ts.map +1 -0
  409. package/dist/ts/ts/Json/context/rocrate/isa_person_context.js +86 -0
  410. package/dist/ts/ts/Json/context/rocrate/isa_process_context.d.ts +23 -0
  411. package/dist/ts/ts/Json/context/rocrate/isa_process_context.d.ts.map +1 -0
  412. package/dist/ts/ts/Json/context/rocrate/isa_process_context.js +57 -0
  413. package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.d.ts +22 -0
  414. package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.d.ts.map +1 -0
  415. package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.js +61 -0
  416. package/dist/ts/ts/Json/context/rocrate/isa_publication_context.d.ts +19 -0
  417. package/dist/ts/ts/Json/context/rocrate/isa_publication_context.d.ts.map +1 -0
  418. package/dist/ts/ts/Json/context/rocrate/isa_publication_context.js +45 -0
  419. package/dist/ts/ts/Json/context/rocrate/isa_sample_context.d.ts +18 -0
  420. package/dist/ts/ts/Json/context/rocrate/isa_sample_context.d.ts.map +1 -0
  421. package/dist/ts/ts/Json/context/rocrate/isa_sample_context.js +33 -0
  422. package/dist/ts/ts/Json/context/rocrate/isa_source_context.d.ts +18 -0
  423. package/dist/ts/ts/Json/context/rocrate/isa_source_context.d.ts.map +1 -0
  424. package/dist/ts/ts/Json/context/rocrate/isa_source_context.js +33 -0
  425. package/dist/ts/ts/Json/context/rocrate/isa_study_context.d.ts +34 -0
  426. package/dist/ts/ts/Json/context/rocrate/isa_study_context.d.ts.map +1 -0
  427. package/dist/ts/ts/Json/context/rocrate/isa_study_context.js +77 -0
  428. package/dist/ts/ts/Json/context/rocrate/property_value_context.d.ts +3 -0
  429. package/dist/ts/ts/Json/context/rocrate/property_value_context.d.ts.map +1 -0
  430. package/dist/ts/ts/Json/context/rocrate/property_value_context.js +61 -0
  431. package/dist/ts/ts/Json/context/rocrate/rocrate_context.d.ts +16 -0
  432. package/dist/ts/ts/Json/context/rocrate/rocrate_context.d.ts.map +1 -0
  433. package/dist/ts/ts/Json.d.ts +90 -0
  434. package/dist/ts/ts/Json.d.ts.map +1 -0
  435. package/dist/ts/ts/Json.js +171 -0
  436. package/dist/ts/ts/JsonIO/Assay.d.ts +19 -0
  437. package/dist/ts/ts/JsonIO/Assay.d.ts.map +1 -0
  438. package/dist/ts/ts/JsonIO/Assay.js +77 -0
  439. package/dist/ts/ts/JsonIO/Investigation.d.ts +19 -0
  440. package/dist/ts/ts/JsonIO/Investigation.d.ts.map +1 -0
  441. package/dist/ts/ts/JsonIO/Investigation.js +77 -0
  442. package/dist/ts/ts/JsonIO/LDObject.d.ts +29 -0
  443. package/dist/ts/ts/JsonIO/LDObject.d.ts.map +1 -0
  444. package/dist/ts/ts/JsonIO/LDObject.js +77 -0
  445. package/dist/ts/ts/JsonIO/OntologyAnnotation.d.ts +16 -0
  446. package/dist/ts/ts/JsonIO/OntologyAnnotation.d.ts.map +1 -0
  447. package/dist/ts/ts/JsonIO/OntologyAnnotation.js +56 -0
  448. package/dist/ts/ts/JsonIO/Study.d.ts +20 -0
  449. package/dist/ts/ts/JsonIO/Study.d.ts.map +1 -0
  450. package/dist/ts/ts/JsonIO/Study.js +77 -0
  451. package/dist/ts/ts/JsonIO/Table/Compression.d.ts +8 -0
  452. package/dist/ts/ts/JsonIO/Table/Compression.d.ts.map +1 -0
  453. package/dist/ts/ts/JsonIO/Table/Compression.js +39 -0
  454. package/dist/ts/ts/JsonIO/Table/Templates.d.ts +15 -0
  455. package/dist/ts/ts/JsonIO/Table/Templates.d.ts.map +1 -0
  456. package/dist/ts/ts/JsonIO/Table/Templates.js +25 -0
  457. package/dist/ts/ts/ROCrate/Generic/Comment.d.ts +21 -0
  458. package/dist/ts/ts/ROCrate/Generic/Comment.d.ts.map +1 -0
  459. package/dist/ts/ts/ROCrate/Generic/Comment.js +103 -0
  460. package/dist/ts/ts/ROCrate/Generic/Dataset.d.ts +92 -0
  461. package/dist/ts/ts/ROCrate/Generic/Dataset.d.ts.map +1 -0
  462. package/dist/ts/ts/ROCrate/Generic/Dataset.js +624 -0
  463. package/dist/ts/ts/ROCrate/Generic/DefinedTerm.d.ts +21 -0
  464. package/dist/ts/ts/ROCrate/Generic/DefinedTerm.d.ts.map +1 -0
  465. package/dist/ts/ts/ROCrate/Generic/DefinedTerm.js +103 -0
  466. package/dist/ts/ts/ROCrate/Generic/File.d.ts +35 -0
  467. package/dist/ts/ts/ROCrate/Generic/File.d.ts.map +1 -0
  468. package/dist/ts/ts/ROCrate/Generic/File.js +184 -0
  469. package/dist/ts/ts/ROCrate/Generic/LabProcess.d.ts +43 -0
  470. package/dist/ts/ts/ROCrate/Generic/LabProcess.d.ts.map +1 -0
  471. package/dist/ts/ts/ROCrate/Generic/LabProcess.js +222 -0
  472. package/dist/ts/ts/ROCrate/Generic/LabProtocol.d.ts +44 -0
  473. package/dist/ts/ts/ROCrate/Generic/LabProtocol.d.ts.map +1 -0
  474. package/dist/ts/ts/ROCrate/Generic/LabProtocol.js +257 -0
  475. package/dist/ts/ts/ROCrate/Generic/Organization.d.ts +17 -0
  476. package/dist/ts/ts/ROCrate/Generic/Organization.d.ts.map +1 -0
  477. package/dist/ts/ts/ROCrate/Generic/Organization.js +63 -0
  478. package/dist/ts/ts/ROCrate/Generic/Person.d.ts +51 -0
  479. package/dist/ts/ts/ROCrate/Generic/Person.d.ts.map +1 -0
  480. package/dist/ts/ts/ROCrate/Generic/Person.js +377 -0
  481. package/dist/ts/ts/ROCrate/Generic/PostalAddress.d.ts +25 -0
  482. package/dist/ts/ts/ROCrate/Generic/PostalAddress.d.ts.map +1 -0
  483. package/dist/ts/ts/ROCrate/Generic/PostalAddress.js +143 -0
  484. package/dist/ts/ts/ROCrate/Generic/PropertyValue.d.ts +73 -0
  485. package/dist/ts/ts/ROCrate/Generic/PropertyValue.d.ts.map +1 -0
  486. package/dist/ts/ts/ROCrate/Generic/PropertyValue.js +512 -0
  487. package/dist/ts/ts/ROCrate/Generic/Sample.d.ts +30 -0
  488. package/dist/ts/ts/ROCrate/Generic/Sample.d.ts.map +1 -0
  489. package/dist/ts/ts/ROCrate/Generic/Sample.js +131 -0
  490. package/dist/ts/ts/ROCrate/Generic/ScholarlyArticle.d.ts +34 -0
  491. package/dist/ts/ts/ROCrate/Generic/ScholarlyArticle.d.ts.map +1 -0
  492. package/dist/ts/ts/ROCrate/Generic/ScholarlyArticle.js +173 -0
  493. package/dist/ts/ts/ROCrate/Helper.d.ts.map +1 -0
  494. package/dist/ts/ts/ROCrate/Helper.js +7 -0
  495. package/dist/ts/ts/ROCrate/LDContext.d.ts +43 -0
  496. package/dist/ts/ts/ROCrate/LDContext.d.ts.map +1 -0
  497. package/dist/ts/ts/ROCrate/LDContext.js +288 -0
  498. package/dist/ts/ts/ROCrate/LDObject.d.ts +97 -0
  499. package/dist/ts/ts/ROCrate/LDObject.d.ts.map +1 -0
  500. package/dist/ts/ts/ROCrate/LDObject.js +855 -0
  501. package/dist/ts/ts/ROCrate/ROCrateContext.d.ts +7 -0
  502. package/dist/ts/ts/ROCrate/ROCrateContext.d.ts.map +1 -0
  503. package/dist/ts/ts/ROCrate/ROCrateContext.js +39 -0
  504. package/dist/ts/ts/ROCrateIO.d.ts +16 -0
  505. package/dist/ts/ts/ROCrateIO.d.ts.map +1 -0
  506. package/dist/ts/ts/ROCrateIO.js +58 -0
  507. package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts +40 -0
  508. package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts.map +1 -0
  509. package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.js +149 -0
  510. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts +9 -0
  511. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts.map +1 -0
  512. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.js +63 -0
  513. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts +24 -0
  514. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts.map +1 -0
  515. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +108 -0
  516. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts +22 -0
  517. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts.map +1 -0
  518. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +410 -0
  519. package/dist/ts/ts/Spreadsheet/ArcAssay.d.ts +31 -0
  520. package/dist/ts/ts/Spreadsheet/ArcAssay.d.ts.map +1 -0
  521. package/dist/ts/ts/Spreadsheet/ArcAssay.js +169 -0
  522. package/dist/ts/ts/Spreadsheet/ArcInvestigation.d.ts +42 -0
  523. package/dist/ts/ts/Spreadsheet/ArcInvestigation.d.ts.map +1 -0
  524. package/dist/ts/ts/Spreadsheet/ArcInvestigation.js +316 -0
  525. package/dist/ts/ts/Spreadsheet/ArcRun.d.ts +27 -0
  526. package/dist/ts/ts/Spreadsheet/ArcRun.d.ts.map +1 -0
  527. package/dist/ts/ts/Spreadsheet/ArcRun.js +136 -0
  528. package/dist/ts/ts/Spreadsheet/ArcStudy.d.ts +26 -0
  529. package/dist/ts/ts/Spreadsheet/ArcStudy.d.ts.map +1 -0
  530. package/dist/ts/ts/Spreadsheet/ArcStudy.js +92 -0
  531. package/dist/ts/ts/Spreadsheet/ArcWorkflow.d.ts +27 -0
  532. package/dist/ts/ts/Spreadsheet/ArcWorkflow.d.ts.map +1 -0
  533. package/dist/ts/ts/Spreadsheet/ArcWorkflow.js +125 -0
  534. package/dist/ts/ts/Spreadsheet/CollectionAux.d.ts +23 -0
  535. package/dist/ts/ts/Spreadsheet/CollectionAux.d.ts.map +1 -0
  536. package/dist/ts/ts/Spreadsheet/CollectionAux.js +34 -0
  537. package/dist/ts/ts/Spreadsheet/DataMap.d.ts +8 -0
  538. package/dist/ts/ts/Spreadsheet/DataMap.d.ts.map +1 -0
  539. package/dist/ts/ts/Spreadsheet/DataMap.js +33 -0
  540. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapColumn.d.ts +7 -0
  541. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapColumn.d.ts.map +1 -0
  542. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapColumn.js +41 -0
  543. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapHeader.d.ts +23 -0
  544. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapHeader.d.ts.map +1 -0
  545. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapHeader.js +418 -0
  546. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapTable.d.ts +23 -0
  547. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapTable.d.ts.map +1 -0
  548. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapTable.js +85 -0
  549. package/dist/ts/ts/Spreadsheet/Metadata/Assays.d.ts +14 -0
  550. package/dist/ts/ts/Spreadsheet/Metadata/Assays.d.ts.map +1 -0
  551. package/dist/ts/ts/Spreadsheet/Metadata/Assays.js +90 -0
  552. package/dist/ts/ts/Spreadsheet/Metadata/Comment.d.ts +14 -0
  553. package/dist/ts/ts/Spreadsheet/Metadata/Comment.d.ts.map +1 -0
  554. package/dist/ts/ts/Spreadsheet/Metadata/Comment.js +58 -0
  555. package/dist/ts/ts/Spreadsheet/Metadata/Contacts.d.ts +25 -0
  556. package/dist/ts/ts/Spreadsheet/Metadata/Contacts.d.ts.map +1 -0
  557. package/dist/ts/ts/Spreadsheet/Metadata/Contacts.js +85 -0
  558. package/dist/ts/ts/Spreadsheet/Metadata/Conversions.d.ts +60 -0
  559. package/dist/ts/ts/Spreadsheet/Metadata/Conversions.d.ts.map +1 -0
  560. package/dist/ts/ts/Spreadsheet/Metadata/Conversions.js +133 -0
  561. package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts +16 -0
  562. package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts.map +1 -0
  563. package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.js +15 -0
  564. package/dist/ts/ts/Spreadsheet/Metadata/Factors.d.ts +18 -0
  565. package/dist/ts/ts/Spreadsheet/Metadata/Factors.d.ts.map +1 -0
  566. package/dist/ts/ts/Spreadsheet/Metadata/Factors.js +74 -0
  567. package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts +12 -0
  568. package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts.map +1 -0
  569. package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.js +58 -0
  570. package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts +18 -0
  571. package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts.map +1 -0
  572. package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.js +62 -0
  573. package/dist/ts/ts/Spreadsheet/Metadata/Protocols.d.ts +28 -0
  574. package/dist/ts/ts/Spreadsheet/Metadata/Protocols.d.ts.map +1 -0
  575. package/dist/ts/ts/Spreadsheet/Metadata/Protocols.js +94 -0
  576. package/dist/ts/ts/Spreadsheet/Metadata/Publication.d.ts +21 -0
  577. package/dist/ts/ts/Spreadsheet/Metadata/Publication.d.ts.map +1 -0
  578. package/dist/ts/ts/Spreadsheet/Metadata/Publication.js +81 -0
  579. package/dist/ts/ts/Spreadsheet/Metadata/Run.d.ts +14 -0
  580. package/dist/ts/ts/Spreadsheet/Metadata/Run.d.ts.map +1 -0
  581. package/dist/ts/ts/Spreadsheet/Metadata/Run.js +91 -0
  582. package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.d.ts +37 -0
  583. package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.d.ts.map +1 -0
  584. package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.js +193 -0
  585. package/dist/ts/ts/Spreadsheet/Metadata/Study.d.ts +38 -0
  586. package/dist/ts/ts/Spreadsheet/Metadata/Study.d.ts.map +1 -0
  587. package/dist/ts/ts/Spreadsheet/Metadata/Study.js +238 -0
  588. package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts +31 -0
  589. package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts.map +1 -0
  590. package/dist/ts/ts/Spreadsheet/Metadata/Workflow.js +105 -0
  591. package/dist/ts/ts/Template.Web.d.ts +11 -0
  592. package/dist/ts/ts/Template.Web.d.ts.map +1 -0
  593. package/dist/ts/ts/Template.Web.js +22 -0
  594. package/dist/ts/ts/ValidationPackages/ValidationPackage.d.ts +21 -0
  595. package/dist/ts/ts/ValidationPackages/ValidationPackage.d.ts.map +1 -0
  596. package/dist/ts/ts/ValidationPackages/ValidationPackage.js +53 -0
  597. package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.d.ts +23 -0
  598. package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.d.ts.map +1 -0
  599. package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.js +78 -0
  600. package/dist/ts/ts/WebRequest/WebRequest.Node.d.ts +4 -0
  601. package/dist/ts/ts/WebRequest/WebRequest.Node.d.ts.map +1 -0
  602. package/dist/ts/ts/WebRequest/WebRequest.Node.js +13 -0
  603. package/dist/ts/ts/WebRequest/WebRequest.d.ts +3 -0
  604. package/dist/ts/ts/WebRequest/WebRequest.d.ts.map +1 -0
  605. package/dist/ts/ts/WebRequest/WebRequest.js +19 -0
  606. package/dist/ts/ts/Xlsx.d.ts +50 -0
  607. package/dist/ts/ts/Xlsx.d.ts.map +1 -0
  608. package/dist/ts/ts/Xlsx.js +91 -0
  609. package/dist/ts/ts/Yaml/Encode.d.ts +5 -0
  610. package/dist/ts/ts/Yaml/Encode.d.ts.map +1 -0
  611. package/dist/ts/ts/Yaml/Encode.js +8 -0
  612. package/dist/ts/ts/Yaml/ValidationPackage.d.ts +10 -0
  613. package/dist/ts/ts/Yaml/ValidationPackage.d.ts.map +1 -0
  614. package/dist/ts/ts/Yaml/ValidationPackage.js +26 -0
  615. package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts +10 -0
  616. package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts.map +1 -0
  617. package/dist/ts/ts/Yaml/ValidationPackagesConfig.js +40 -0
  618. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +344 -0
  619. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +103 -0
  620. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +19 -0
  621. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +17 -0
  622. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +7 -0
  623. package/dist/ts/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.js +5 -0
  624. package/dist/ts/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +18 -0
  625. package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +44 -0
  626. package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +5 -0
  627. package/dist/ts/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +142 -0
  628. package/dist/ts/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +76 -0
  629. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Cells/FsCell.fs.js +359 -0
  630. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Cells/FsCellsCollection.fs.js +344 -0
  631. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsAddress.fs.js +154 -0
  632. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsColumn.fs.js +116 -0
  633. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsRow.fs.js +126 -0
  634. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsWorkbook.fs.js +135 -0
  635. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsWorksheet.fs.js +422 -0
  636. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/HashCodes.fs.js +5 -0
  637. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Value.fs.js +25 -0
  638. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRange.fs.js +28 -0
  639. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeAddress.fs.js +82 -0
  640. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeBase.fs.js +69 -0
  641. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeColumn.fs.js +42 -0
  642. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeRow.fs.js +29 -0
  643. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Tables/FsTable.fs.js +348 -0
  644. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Tables/FsTableField.fs.js +86 -0
  645. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Cell.fs.js +68 -0
  646. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/FsExtensions.fs.js +12 -0
  647. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Table.fs.js +54 -0
  648. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Workbook.fs.js +33 -0
  649. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Worksheet.fs.js +63 -0
  650. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Xlsx.fs.js +66 -0
  651. package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Decode.fs.js +544 -0
  652. package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Encode.fs.js +31 -0
  653. package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Types.fs.js +38 -0
  654. package/dist/ts/ts/fable_modules/Thoth.Json.JavaScript.0.4.1/Decode.fs.js +79 -0
  655. package/dist/ts/ts/fable_modules/Thoth.Json.JavaScript.0.4.1/Encode.fs.js +57 -0
  656. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.js +235 -0
  657. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.js +16 -0
  658. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +45 -0
  659. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +89 -0
  660. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +480 -0
  661. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.js +11 -0
  662. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +212 -0
  663. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +164 -0
  664. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +136 -0
  665. package/package.json +16 -10
  666. package/dist/ts/cjs/index.js +0 -85
  667. package/dist/ts/cjs/ts/ARC.js +0 -976
  668. package/dist/ts/cjs/ts/Contract/ARC.js +0 -61
  669. package/dist/ts/cjs/ts/Contract/ArcAssay.js +0 -103
  670. package/dist/ts/cjs/ts/Contract/ArcInvestigation.js +0 -77
  671. package/dist/ts/cjs/ts/Contract/ArcRun.js +0 -103
  672. package/dist/ts/cjs/ts/Contract/ArcStudy.js +0 -103
  673. package/dist/ts/cjs/ts/Contract/ArcWorkflow.js +0 -104
  674. package/dist/ts/cjs/ts/Contract/Contract.js +0 -100
  675. package/dist/ts/cjs/ts/Contract/Datamap.js +0 -314
  676. package/dist/ts/cjs/ts/Contract/Git.js +0 -94
  677. package/dist/ts/cjs/ts/Contract/ValidationPackagesConfig.js +0 -97
  678. package/dist/ts/cjs/ts/ContractIO/ContractIO.js +0 -217
  679. package/dist/ts/cjs/ts/ContractIO/FileSystemHelper.js +0 -205
  680. package/dist/ts/cjs/ts/Conversion.js +0 -1774
  681. package/dist/ts/cjs/ts/Core/ArcTypes.js +0 -3803
  682. package/dist/ts/cjs/ts/Core/Comment.js +0 -106
  683. package/dist/ts/cjs/ts/Core/CommentList.js +0 -134
  684. package/dist/ts/cjs/ts/Core/Conversion.js +0 -1198
  685. package/dist/ts/cjs/ts/Core/Data.js +0 -196
  686. package/dist/ts/cjs/ts/Core/DataContext.js +0 -141
  687. package/dist/ts/cjs/ts/Core/DataFile.js +0 -98
  688. package/dist/ts/cjs/ts/Core/DataMap.js +0 -185
  689. package/dist/ts/cjs/ts/Core/Helper/Collections.js +0 -502
  690. package/dist/ts/cjs/ts/Core/Helper/HashCodes.js +0 -40
  691. package/dist/ts/cjs/ts/Core/Helper/Identifier.js +0 -329
  692. package/dist/ts/cjs/ts/Core/Helper/ORCID.js +0 -40
  693. package/dist/ts/cjs/ts/Core/Helper/Printer.js +0 -2
  694. package/dist/ts/cjs/ts/Core/Helper/Regex.js +0 -616
  695. package/dist/ts/cjs/ts/Core/Helper/SemVer.js +0 -59
  696. package/dist/ts/cjs/ts/Core/Helper/Url.js +0 -40
  697. package/dist/ts/cjs/ts/Core/IPropertyValue.js +0 -2
  698. package/dist/ts/cjs/ts/Core/IdentifierSetters.js +0 -27
  699. package/dist/ts/cjs/ts/Core/OntologyAnnotation.js +0 -219
  700. package/dist/ts/cjs/ts/Core/OntologySourceReference.js +0 -94
  701. package/dist/ts/cjs/ts/Core/Person.js +0 -196
  702. package/dist/ts/cjs/ts/Core/Process/ColumnIndex.js +0 -258
  703. package/dist/ts/cjs/ts/Core/Process/Component.js +0 -200
  704. package/dist/ts/cjs/ts/Core/Process/Factor.js +0 -111
  705. package/dist/ts/cjs/ts/Core/Process/FactorValue.js +0 -143
  706. package/dist/ts/cjs/ts/Core/Process/Material.js +0 -68
  707. package/dist/ts/cjs/ts/Core/Process/MaterialAttribute.js +0 -103
  708. package/dist/ts/cjs/ts/Core/Process/MaterialAttributeValue.js +0 -160
  709. package/dist/ts/cjs/ts/Core/Process/MaterialType.js +0 -51
  710. package/dist/ts/cjs/ts/Core/Process/Process.js +0 -371
  711. package/dist/ts/cjs/ts/Core/Process/ProcessInput.js +0 -321
  712. package/dist/ts/cjs/ts/Core/Process/ProcessOutput.js +0 -282
  713. package/dist/ts/cjs/ts/Core/Process/ProcessParameterValue.js +0 -141
  714. package/dist/ts/cjs/ts/Core/Process/ProcessSequence.js +0 -250
  715. package/dist/ts/cjs/ts/Core/Process/Protocol.js +0 -248
  716. package/dist/ts/cjs/ts/Core/Process/ProtocolParameter.js +0 -75
  717. package/dist/ts/cjs/ts/Core/Process/Sample.js +0 -73
  718. package/dist/ts/cjs/ts/Core/Process/Source.js +0 -56
  719. package/dist/ts/cjs/ts/Core/Publication.js +0 -118
  720. package/dist/ts/cjs/ts/Core/Table/ArcTable.js +0 -923
  721. package/dist/ts/cjs/ts/Core/Table/ArcTableAux.js +0 -1262
  722. package/dist/ts/cjs/ts/Core/Table/ArcTables.js +0 -476
  723. package/dist/ts/cjs/ts/Core/Table/CompositeCell.js +0 -317
  724. package/dist/ts/cjs/ts/Core/Table/CompositeColumn.js +0 -60
  725. package/dist/ts/cjs/ts/Core/Table/CompositeHeader.js +0 -718
  726. package/dist/ts/cjs/ts/Core/Template.js +0 -196
  727. package/dist/ts/cjs/ts/Core/Templates.js +0 -86
  728. package/dist/ts/cjs/ts/Core/URI.js +0 -20
  729. package/dist/ts/cjs/ts/Core/Value.js +0 -191
  730. package/dist/ts/cjs/ts/CrossAsync.js +0 -35
  731. package/dist/ts/cjs/ts/FileSystem/Commit.js +0 -20
  732. package/dist/ts/cjs/ts/FileSystem/DefaultGitattributes.js +0 -4
  733. package/dist/ts/cjs/ts/FileSystem/DefaultGitignore.js +0 -4
  734. package/dist/ts/cjs/ts/FileSystem/FileSystem.js +0 -55
  735. package/dist/ts/cjs/ts/FileSystem/FileSystemTree.js +0 -322
  736. package/dist/ts/cjs/ts/FileSystem/Path.js +0 -63
  737. package/dist/ts/cjs/ts/Json/Assay.js +0 -234
  738. package/dist/ts/cjs/ts/Json/Comment.js +0 -119
  739. package/dist/ts/cjs/ts/Json/Data.js +0 -147
  740. package/dist/ts/cjs/ts/Json/DataFile.js +0 -54
  741. package/dist/ts/cjs/ts/Json/DataMap/DataContext.js +0 -40
  742. package/dist/ts/cjs/ts/Json/DataMap/DataMap.js +0 -30
  743. package/dist/ts/cjs/ts/Json/Decode.js +0 -231
  744. package/dist/ts/cjs/ts/Json/Encode.js +0 -117
  745. package/dist/ts/cjs/ts/Json/IDTable.js +0 -30
  746. package/dist/ts/cjs/ts/Json/Investigation.js +0 -254
  747. package/dist/ts/cjs/ts/Json/OntologyAnnotation.js +0 -207
  748. package/dist/ts/cjs/ts/Json/OntologySourceReference.js +0 -125
  749. package/dist/ts/cjs/ts/Json/Person.js +0 -338
  750. package/dist/ts/cjs/ts/Json/Process/AssayMaterials.js +0 -21
  751. package/dist/ts/cjs/ts/Json/Process/Component.js +0 -47
  752. package/dist/ts/cjs/ts/Json/Process/Factor.js +0 -58
  753. package/dist/ts/cjs/ts/Json/Process/FactorValue.js +0 -47
  754. package/dist/ts/cjs/ts/Json/Process/Material.js +0 -120
  755. package/dist/ts/cjs/ts/Json/Process/MaterialAttribute.js +0 -47
  756. package/dist/ts/cjs/ts/Json/Process/MaterialAttributeValue.js +0 -47
  757. package/dist/ts/cjs/ts/Json/Process/MaterialType.js +0 -46
  758. package/dist/ts/cjs/ts/Json/Process/Process.js +0 -109
  759. package/dist/ts/cjs/ts/Json/Process/ProcessInput.js +0 -38
  760. package/dist/ts/cjs/ts/Json/Process/ProcessOutput.js +0 -33
  761. package/dist/ts/cjs/ts/Json/Process/ProcessParameterValue.js +0 -33
  762. package/dist/ts/cjs/ts/Json/Process/Protocol.js +0 -180
  763. package/dist/ts/cjs/ts/Json/Process/ProtocolParameter.js +0 -47
  764. package/dist/ts/cjs/ts/Json/Process/Sample.js +0 -176
  765. package/dist/ts/cjs/ts/Json/Process/Source.js +0 -145
  766. package/dist/ts/cjs/ts/Json/Process/StudyMaterials.js +0 -23
  767. package/dist/ts/cjs/ts/Json/Process/Value.js +0 -39
  768. package/dist/ts/cjs/ts/Json/PropertyValue.js +0 -300
  769. package/dist/ts/cjs/ts/Json/Publication.js +0 -130
  770. package/dist/ts/cjs/ts/Json/ROCrate/LDContext.js +0 -123
  771. package/dist/ts/cjs/ts/Json/ROCrate/LDGraph.js +0 -88
  772. package/dist/ts/cjs/ts/Json/ROCrate/LDNode.js +0 -213
  773. package/dist/ts/cjs/ts/Json/ROCrate/LDRef.js +0 -25
  774. package/dist/ts/cjs/ts/Json/ROCrate/LDValue.js +0 -70
  775. package/dist/ts/cjs/ts/Json/StringTable.js +0 -70
  776. package/dist/ts/cjs/ts/Json/Study.js +0 -347
  777. package/dist/ts/cjs/ts/Json/Table/ArcTable.js +0 -217
  778. package/dist/ts/cjs/ts/Json/Table/CellTable.js +0 -58
  779. package/dist/ts/cjs/ts/Json/Table/CompositeCell.js +0 -103
  780. package/dist/ts/cjs/ts/Json/Table/CompositeHeader.js +0 -108
  781. package/dist/ts/cjs/ts/Json/Table/IOType.js +0 -16
  782. package/dist/ts/cjs/ts/Json/Table/OATable.js +0 -55
  783. package/dist/ts/cjs/ts/Json/Table/Templates.js +0 -106
  784. package/dist/ts/cjs/ts/Json/context/rocrate/isa_assay_context.js +0 -89
  785. package/dist/ts/cjs/ts/Json/context/rocrate/isa_comment_context.js +0 -47
  786. package/dist/ts/cjs/ts/Json/context/rocrate/isa_data_context.js +0 -61
  787. package/dist/ts/cjs/ts/Json/context/rocrate/isa_investigation_context.js +0 -97
  788. package/dist/ts/cjs/ts/Json/context/rocrate/isa_material_context.js +0 -58
  789. package/dist/ts/cjs/ts/Json/context/rocrate/isa_ontology_annotation_context.js +0 -56
  790. package/dist/ts/cjs/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +0 -62
  791. package/dist/ts/cjs/ts/Json/context/rocrate/isa_organization_context.js +0 -42
  792. package/dist/ts/cjs/ts/Json/context/rocrate/isa_person_context.js +0 -112
  793. package/dist/ts/cjs/ts/Json/context/rocrate/isa_process_context.js +0 -82
  794. package/dist/ts/cjs/ts/Json/context/rocrate/isa_protocol_context.js +0 -85
  795. package/dist/ts/cjs/ts/Json/context/rocrate/isa_publication_context.js +0 -66
  796. package/dist/ts/cjs/ts/Json/context/rocrate/isa_sample_context.js +0 -53
  797. package/dist/ts/cjs/ts/Json/context/rocrate/isa_source_context.js +0 -53
  798. package/dist/ts/cjs/ts/Json/context/rocrate/isa_study_context.js +0 -113
  799. package/dist/ts/cjs/ts/Json/context/rocrate/property_value_context.js +0 -61
  800. package/dist/ts/cjs/ts/Json/context/rocrate/rocrate_context.js +0 -63
  801. package/dist/ts/cjs/ts/Json.js +0 -240
  802. package/dist/ts/cjs/ts/JsonIO/Assay.js +0 -104
  803. package/dist/ts/cjs/ts/JsonIO/Investigation.js +0 -104
  804. package/dist/ts/cjs/ts/JsonIO/LDObject.js +0 -107
  805. package/dist/ts/cjs/ts/JsonIO/OntologyAnnotation.js +0 -77
  806. package/dist/ts/cjs/ts/JsonIO/Study.js +0 -104
  807. package/dist/ts/cjs/ts/JsonIO/Table/Compression.js +0 -40
  808. package/dist/ts/cjs/ts/JsonIO/Table/Templates.js +0 -92
  809. package/dist/ts/cjs/ts/ROCrate/Generic/Comment.js +0 -117
  810. package/dist/ts/cjs/ts/ROCrate/Generic/Dataset.js +0 -671
  811. package/dist/ts/cjs/ts/ROCrate/Generic/DefinedTerm.js +0 -117
  812. package/dist/ts/cjs/ts/ROCrate/Generic/File.js +0 -202
  813. package/dist/ts/cjs/ts/ROCrate/Generic/LabProcess.js +0 -240
  814. package/dist/ts/cjs/ts/ROCrate/Generic/LabProtocol.js +0 -277
  815. package/dist/ts/cjs/ts/ROCrate/Generic/Organization.js +0 -73
  816. package/dist/ts/cjs/ts/ROCrate/Generic/Person.js +0 -413
  817. package/dist/ts/cjs/ts/ROCrate/Generic/PostalAddress.js +0 -161
  818. package/dist/ts/cjs/ts/ROCrate/Generic/PropertyValue.js +0 -550
  819. package/dist/ts/cjs/ts/ROCrate/Generic/Sample.js +0 -141
  820. package/dist/ts/cjs/ts/ROCrate/Generic/ScholarlyArticle.js +0 -189
  821. package/dist/ts/cjs/ts/ROCrate/Helper.js +0 -7
  822. package/dist/ts/cjs/ts/ROCrate/LDContext.js +0 -322
  823. package/dist/ts/cjs/ts/ROCrate/LDObject.js +0 -984
  824. package/dist/ts/cjs/ts/ROCrate/ROCrateContext.js +0 -44
  825. package/dist/ts/cjs/ts/ROCrateIO.js +0 -75
  826. package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/ArcTable.js +0 -176
  827. package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/CompositeCell.js +0 -68
  828. package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +0 -150
  829. package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +0 -476
  830. package/dist/ts/cjs/ts/Spreadsheet/ArcAssay.js +0 -218
  831. package/dist/ts/cjs/ts/Spreadsheet/ArcInvestigation.js +0 -356
  832. package/dist/ts/cjs/ts/Spreadsheet/ArcRun.js +0 -177
  833. package/dist/ts/cjs/ts/Spreadsheet/ArcStudy.js +0 -130
  834. package/dist/ts/cjs/ts/Spreadsheet/ArcWorkflow.js +0 -166
  835. package/dist/ts/cjs/ts/Spreadsheet/CollectionAux.js +0 -128
  836. package/dist/ts/cjs/ts/Spreadsheet/DataMap.js +0 -41
  837. package/dist/ts/cjs/ts/Spreadsheet/DataMapTable/DataMapColumn.js +0 -43
  838. package/dist/ts/cjs/ts/Spreadsheet/DataMapTable/DataMapHeader.js +0 -480
  839. package/dist/ts/cjs/ts/Spreadsheet/DataMapTable/DataMapTable.js +0 -105
  840. package/dist/ts/cjs/ts/Spreadsheet/Metadata/Assays.js +0 -98
  841. package/dist/ts/cjs/ts/Spreadsheet/Metadata/Comment.js +0 -68
  842. package/dist/ts/cjs/ts/Spreadsheet/Metadata/Contacts.js +0 -92
  843. package/dist/ts/cjs/ts/Spreadsheet/Metadata/Conversions.js +0 -187
  844. package/dist/ts/cjs/ts/Spreadsheet/Metadata/DesignDescriptors.js +0 -25
  845. package/dist/ts/cjs/ts/Spreadsheet/Metadata/Factors.js +0 -83
  846. package/dist/ts/cjs/ts/Spreadsheet/Metadata/OntologyAnnotation.js +0 -65
  847. package/dist/ts/cjs/ts/Spreadsheet/Metadata/OntologySourceReference.js +0 -68
  848. package/dist/ts/cjs/ts/Spreadsheet/Metadata/Protocols.js +0 -103
  849. package/dist/ts/cjs/ts/Spreadsheet/Metadata/Publication.js +0 -88
  850. package/dist/ts/cjs/ts/Spreadsheet/Metadata/Run.js +0 -99
  851. package/dist/ts/cjs/ts/Spreadsheet/Metadata/SparseTable.js +0 -457
  852. package/dist/ts/cjs/ts/Spreadsheet/Metadata/Study.js +0 -259
  853. package/dist/ts/cjs/ts/Spreadsheet/Metadata/Workflow.js +0 -111
  854. package/dist/ts/cjs/ts/Template.Web.js +0 -29
  855. package/dist/ts/cjs/ts/ValidationPackages/ValidationPackage.js +0 -63
  856. package/dist/ts/cjs/ts/ValidationPackages/ValidationPackagesConfig.js +0 -90
  857. package/dist/ts/cjs/ts/WebRequest/WebRequest.Node.js +0 -17
  858. package/dist/ts/cjs/ts/WebRequest/WebRequest.js +0 -20
  859. package/dist/ts/cjs/ts/Xlsx.js +0 -133
  860. package/dist/ts/cjs/ts/Yaml/Encode.js +0 -9
  861. package/dist/ts/cjs/ts/Yaml/ValidationPackage.js +0 -49
  862. package/dist/ts/cjs/ts/Yaml/ValidationPackagesConfig.js +0 -50
  863. package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +0 -444
  864. package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +0 -142
  865. package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +0 -53
  866. package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +0 -23
  867. package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +0 -87
  868. package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.js +0 -2
  869. package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.js +0 -2
  870. package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.js +0 -5
  871. package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.js +0 -2
  872. package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.js +0 -123
  873. package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.js +0 -2
  874. package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.js +0 -2
  875. package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.js +0 -2
  876. package/dist/ts/cjs/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +0 -360
  877. package/dist/ts/cjs/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +0 -220
  878. package/dist/ts/cjs/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +0 -20
  879. package/dist/ts/cjs/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +0 -431
  880. package/dist/ts/cjs/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +0 -186
  881. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.js +0 -477
  882. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.js +0 -521
  883. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.js +0 -211
  884. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.js +0 -58
  885. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.js +0 -139
  886. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.js +0 -365
  887. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.js +0 -259
  888. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.js +0 -127
  889. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.js +0 -137
  890. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.js +0 -140
  891. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.js +0 -435
  892. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.js +0 -69
  893. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.js +0 -40
  894. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.js +0 -40
  895. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.js +0 -31
  896. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.js +0 -78
  897. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.js +0 -46
  898. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.js +0 -134
  899. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.js +0 -43
  900. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.js +0 -238
  901. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.js +0 -93
  902. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.js +0 -76
  903. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.js +0 -42
  904. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.js +0 -332
  905. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.js +0 -175
  906. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.js +0 -80
  907. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.js +0 -65
  908. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.js +0 -53
  909. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.js +0 -55
  910. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.js +0 -34
  911. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.js +0 -68
  912. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.js +0 -72
  913. package/dist/ts/cjs/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.js +0 -1316
  914. package/dist/ts/cjs/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.js +0 -200
  915. package/dist/ts/cjs/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.js +0 -103
  916. package/dist/ts/cjs/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.js +0 -97
  917. package/dist/ts/cjs/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.js +0 -59
  918. package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.js +0 -1723
  919. package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.js +0 -75
  920. package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +0 -13
  921. package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +0 -50
  922. package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +0 -104
  923. package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +0 -527
  924. package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.js +0 -12
  925. package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +0 -235
  926. package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +0 -166
  927. package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +0 -174
  928. package/dist/ts/esm/index.js +0 -60
  929. package/dist/ts/esm/ts/ARC.js +0 -959
  930. package/dist/ts/esm/ts/Contract/ARC.js +0 -58
  931. package/dist/ts/esm/ts/Contract/ArcAssay.js +0 -93
  932. package/dist/ts/esm/ts/Contract/ArcInvestigation.js +0 -69
  933. package/dist/ts/esm/ts/Contract/ArcRun.js +0 -93
  934. package/dist/ts/esm/ts/Contract/ArcStudy.js +0 -93
  935. package/dist/ts/esm/ts/Contract/ArcWorkflow.js +0 -94
  936. package/dist/ts/esm/ts/Contract/Contract.js +0 -87
  937. package/dist/ts/esm/ts/Contract/Datamap.js +0 -287
  938. package/dist/ts/esm/ts/Contract/Git.js +0 -72
  939. package/dist/ts/esm/ts/Contract/ValidationPackagesConfig.js +0 -88
  940. package/dist/ts/esm/ts/ContractIO/ContractIO.js +0 -207
  941. package/dist/ts/esm/ts/ContractIO/FileSystemHelper.js +0 -176
  942. package/dist/ts/esm/ts/Conversion.js +0 -1654
  943. package/dist/ts/esm/ts/Core/ArcTypes.js +0 -3728
  944. package/dist/ts/esm/ts/Core/Comment.js +0 -98
  945. package/dist/ts/esm/ts/Core/CommentList.js +0 -126
  946. package/dist/ts/esm/ts/Core/Conversion.js +0 -1145
  947. package/dist/ts/esm/ts/Core/Data.js +0 -188
  948. package/dist/ts/esm/ts/Core/DataContext.js +0 -119
  949. package/dist/ts/esm/ts/Core/DataFile.js +0 -82
  950. package/dist/ts/esm/ts/Core/DataMap.js +0 -156
  951. package/dist/ts/esm/ts/Core/Helper/Collections.js +0 -462
  952. package/dist/ts/esm/ts/Core/Helper/HashCodes.js +0 -32
  953. package/dist/ts/esm/ts/Core/Helper/Identifier.js +0 -298
  954. package/dist/ts/esm/ts/Core/Helper/ORCID.js +0 -34
  955. package/dist/ts/esm/ts/Core/Helper/Printer.js +0 -1
  956. package/dist/ts/esm/ts/Core/Helper/Regex.js +0 -579
  957. package/dist/ts/esm/ts/Core/Helper/SemVer.js +0 -50
  958. package/dist/ts/esm/ts/Core/Helper/Url.js +0 -30
  959. package/dist/ts/esm/ts/Core/IPropertyValue.js +0 -1
  960. package/dist/ts/esm/ts/Core/IdentifierSetters.js +0 -21
  961. package/dist/ts/esm/ts/Core/OntologyAnnotation.js +0 -213
  962. package/dist/ts/esm/ts/Core/OntologySourceReference.js +0 -88
  963. package/dist/ts/esm/ts/Core/Person.js +0 -190
  964. package/dist/ts/esm/ts/Core/Process/ColumnIndex.js +0 -204
  965. package/dist/ts/esm/ts/Core/Process/Component.js +0 -180
  966. package/dist/ts/esm/ts/Core/Process/Factor.js +0 -106
  967. package/dist/ts/esm/ts/Core/Process/FactorValue.js +0 -127
  968. package/dist/ts/esm/ts/Core/Process/Material.js +0 -57
  969. package/dist/ts/esm/ts/Core/Process/MaterialAttribute.js +0 -86
  970. package/dist/ts/esm/ts/Core/Process/MaterialAttributeValue.js +0 -142
  971. package/dist/ts/esm/ts/Core/Process/MaterialType.js +0 -42
  972. package/dist/ts/esm/ts/Core/Process/Process.js +0 -341
  973. package/dist/ts/esm/ts/Core/Process/ProcessInput.js +0 -283
  974. package/dist/ts/esm/ts/Core/Process/ProcessOutput.js +0 -248
  975. package/dist/ts/esm/ts/Core/Process/ProcessParameterValue.js +0 -136
  976. package/dist/ts/esm/ts/Core/Process/ProcessSequence.js +0 -227
  977. package/dist/ts/esm/ts/Core/Process/Protocol.js +0 -210
  978. package/dist/ts/esm/ts/Core/Process/ProtocolParameter.js +0 -70
  979. package/dist/ts/esm/ts/Core/Process/Sample.js +0 -59
  980. package/dist/ts/esm/ts/Core/Process/Source.js +0 -45
  981. package/dist/ts/esm/ts/Core/Publication.js +0 -112
  982. package/dist/ts/esm/ts/Core/Table/ArcTable.js +0 -917
  983. package/dist/ts/esm/ts/Core/Table/ArcTableAux.js +0 -1213
  984. package/dist/ts/esm/ts/Core/Table/ArcTables.js +0 -461
  985. package/dist/ts/esm/ts/Core/Table/CompositeCell.js +0 -308
  986. package/dist/ts/esm/ts/Core/Table/CompositeColumn.js +0 -55
  987. package/dist/ts/esm/ts/Core/Table/CompositeHeader.js +0 -691
  988. package/dist/ts/esm/ts/Core/Template.js +0 -186
  989. package/dist/ts/esm/ts/Core/Templates.js +0 -79
  990. package/dist/ts/esm/ts/Core/URI.js +0 -16
  991. package/dist/ts/esm/ts/Core/Value.js +0 -182
  992. package/dist/ts/esm/ts/CrossAsync.js +0 -27
  993. package/dist/ts/esm/ts/FileSystem/Commit.js +0 -15
  994. package/dist/ts/esm/ts/FileSystem/DefaultGitattributes.js +0 -1
  995. package/dist/ts/esm/ts/FileSystem/DefaultGitignore.js +0 -1
  996. package/dist/ts/esm/ts/FileSystem/FileSystem.js +0 -50
  997. package/dist/ts/esm/ts/FileSystem/FileSystemTree.js +0 -315
  998. package/dist/ts/esm/ts/FileSystem/Path.js +0 -51
  999. package/dist/ts/esm/ts/Json/Assay.js +0 -225
  1000. package/dist/ts/esm/ts/Json/Comment.js +0 -111
  1001. package/dist/ts/esm/ts/Json/Data.js +0 -138
  1002. package/dist/ts/esm/ts/Json/DataFile.js +0 -50
  1003. package/dist/ts/esm/ts/Json/DataMap/DataContext.js +0 -36
  1004. package/dist/ts/esm/ts/Json/DataMap/DataMap.js +0 -24
  1005. package/dist/ts/esm/ts/Json/Decode.js +0 -219
  1006. package/dist/ts/esm/ts/Json/Encode.js +0 -103
  1007. package/dist/ts/esm/ts/Json/IDTable.js +0 -26
  1008. package/dist/ts/esm/ts/Json/Investigation.js +0 -244
  1009. package/dist/ts/esm/ts/Json/OntologyAnnotation.js +0 -197
  1010. package/dist/ts/esm/ts/Json/OntologySourceReference.js +0 -118
  1011. package/dist/ts/esm/ts/Json/Person.js +0 -329
  1012. package/dist/ts/esm/ts/Json/Process/AssayMaterials.js +0 -18
  1013. package/dist/ts/esm/ts/Json/Process/Component.js +0 -42
  1014. package/dist/ts/esm/ts/Json/Process/Factor.js +0 -53
  1015. package/dist/ts/esm/ts/Json/Process/FactorValue.js +0 -42
  1016. package/dist/ts/esm/ts/Json/Process/Material.js +0 -114
  1017. package/dist/ts/esm/ts/Json/Process/MaterialAttribute.js +0 -42
  1018. package/dist/ts/esm/ts/Json/Process/MaterialAttributeValue.js +0 -42
  1019. package/dist/ts/esm/ts/Json/Process/MaterialType.js +0 -42
  1020. package/dist/ts/esm/ts/Json/Process/Process.js +0 -103
  1021. package/dist/ts/esm/ts/Json/Process/ProcessInput.js +0 -33
  1022. package/dist/ts/esm/ts/Json/Process/ProcessOutput.js +0 -28
  1023. package/dist/ts/esm/ts/Json/Process/ProcessParameterValue.js +0 -28
  1024. package/dist/ts/esm/ts/Json/Process/Protocol.js +0 -174
  1025. package/dist/ts/esm/ts/Json/Process/ProtocolParameter.js +0 -42
  1026. package/dist/ts/esm/ts/Json/Process/Sample.js +0 -170
  1027. package/dist/ts/esm/ts/Json/Process/Source.js +0 -139
  1028. package/dist/ts/esm/ts/Json/Process/StudyMaterials.js +0 -20
  1029. package/dist/ts/esm/ts/Json/Process/Value.js +0 -35
  1030. package/dist/ts/esm/ts/Json/PropertyValue.js +0 -295
  1031. package/dist/ts/esm/ts/Json/Publication.js +0 -123
  1032. package/dist/ts/esm/ts/Json/ROCrate/LDContext.js +0 -119
  1033. package/dist/ts/esm/ts/Json/ROCrate/LDGraph.js +0 -84
  1034. package/dist/ts/esm/ts/Json/ROCrate/LDNode.js +0 -207
  1035. package/dist/ts/esm/ts/Json/ROCrate/LDRef.js +0 -21
  1036. package/dist/ts/esm/ts/Json/ROCrate/LDValue.js +0 -65
  1037. package/dist/ts/esm/ts/Json/StringTable.js +0 -63
  1038. package/dist/ts/esm/ts/Json/Study.js +0 -337
  1039. package/dist/ts/esm/ts/Json/Table/ArcTable.js +0 -208
  1040. package/dist/ts/esm/ts/Json/Table/CellTable.js +0 -51
  1041. package/dist/ts/esm/ts/Json/Table/CompositeCell.js +0 -97
  1042. package/dist/ts/esm/ts/Json/Table/CompositeHeader.js +0 -104
  1043. package/dist/ts/esm/ts/Json/Table/IOType.js +0 -12
  1044. package/dist/ts/esm/ts/Json/Table/OATable.js +0 -48
  1045. package/dist/ts/esm/ts/Json/Table/Templates.js +0 -98
  1046. package/dist/ts/esm/ts/Json/context/rocrate/isa_assay_context.js +0 -84
  1047. package/dist/ts/esm/ts/Json/context/rocrate/isa_comment_context.js +0 -42
  1048. package/dist/ts/esm/ts/Json/context/rocrate/isa_data_context.js +0 -56
  1049. package/dist/ts/esm/ts/Json/context/rocrate/isa_investigation_context.js +0 -92
  1050. package/dist/ts/esm/ts/Json/context/rocrate/isa_material_context.js +0 -53
  1051. package/dist/ts/esm/ts/Json/context/rocrate/isa_ontology_annotation_context.js +0 -51
  1052. package/dist/ts/esm/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +0 -57
  1053. package/dist/ts/esm/ts/Json/context/rocrate/isa_organization_context.js +0 -37
  1054. package/dist/ts/esm/ts/Json/context/rocrate/isa_person_context.js +0 -107
  1055. package/dist/ts/esm/ts/Json/context/rocrate/isa_process_context.js +0 -77
  1056. package/dist/ts/esm/ts/Json/context/rocrate/isa_protocol_context.js +0 -80
  1057. package/dist/ts/esm/ts/Json/context/rocrate/isa_publication_context.js +0 -61
  1058. package/dist/ts/esm/ts/Json/context/rocrate/isa_sample_context.js +0 -48
  1059. package/dist/ts/esm/ts/Json/context/rocrate/isa_source_context.js +0 -48
  1060. package/dist/ts/esm/ts/Json/context/rocrate/isa_study_context.js +0 -108
  1061. package/dist/ts/esm/ts/Json/context/rocrate/property_value_context.js +0 -58
  1062. package/dist/ts/esm/ts/Json/context/rocrate/rocrate_context.js +0 -58
  1063. package/dist/ts/esm/ts/Json.js +0 -214
  1064. package/dist/ts/esm/ts/JsonIO/Assay.js +0 -90
  1065. package/dist/ts/esm/ts/JsonIO/Investigation.js +0 -90
  1066. package/dist/ts/esm/ts/JsonIO/LDObject.js +0 -94
  1067. package/dist/ts/esm/ts/JsonIO/OntologyAnnotation.js +0 -66
  1068. package/dist/ts/esm/ts/JsonIO/Study.js +0 -90
  1069. package/dist/ts/esm/ts/JsonIO/Table/Compression.js +0 -36
  1070. package/dist/ts/esm/ts/JsonIO/Table/Templates.js +0 -80
  1071. package/dist/ts/esm/ts/ROCrate/Generic/Comment.js +0 -112
  1072. package/dist/ts/esm/ts/ROCrate/Generic/Dataset.js +0 -666
  1073. package/dist/ts/esm/ts/ROCrate/Generic/DefinedTerm.js +0 -112
  1074. package/dist/ts/esm/ts/ROCrate/Generic/File.js +0 -197
  1075. package/dist/ts/esm/ts/ROCrate/Generic/LabProcess.js +0 -235
  1076. package/dist/ts/esm/ts/ROCrate/Generic/LabProtocol.js +0 -272
  1077. package/dist/ts/esm/ts/ROCrate/Generic/Organization.js +0 -68
  1078. package/dist/ts/esm/ts/ROCrate/Generic/Person.js +0 -408
  1079. package/dist/ts/esm/ts/ROCrate/Generic/PostalAddress.js +0 -156
  1080. package/dist/ts/esm/ts/ROCrate/Generic/PropertyValue.js +0 -545
  1081. package/dist/ts/esm/ts/ROCrate/Generic/Sample.js +0 -136
  1082. package/dist/ts/esm/ts/ROCrate/Generic/ScholarlyArticle.js +0 -184
  1083. package/dist/ts/esm/ts/ROCrate/Helper.js +0 -4
  1084. package/dist/ts/esm/ts/ROCrate/LDContext.js +0 -313
  1085. package/dist/ts/esm/ts/ROCrate/LDObject.js +0 -967
  1086. package/dist/ts/esm/ts/ROCrate/ROCrateContext.js +0 -38
  1087. package/dist/ts/esm/ts/ROCrateIO.js +0 -65
  1088. package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/ArcTable.js +0 -164
  1089. package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/CompositeCell.js +0 -61
  1090. package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +0 -141
  1091. package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +0 -460
  1092. package/dist/ts/esm/ts/Spreadsheet/ArcAssay.js +0 -204
  1093. package/dist/ts/esm/ts/Spreadsheet/ArcInvestigation.js +0 -334
  1094. package/dist/ts/esm/ts/Spreadsheet/ArcRun.js +0 -163
  1095. package/dist/ts/esm/ts/Spreadsheet/ArcStudy.js +0 -117
  1096. package/dist/ts/esm/ts/Spreadsheet/ArcWorkflow.js +0 -152
  1097. package/dist/ts/esm/ts/Spreadsheet/CollectionAux.js +0 -117
  1098. package/dist/ts/esm/ts/Spreadsheet/DataMap.js +0 -37
  1099. package/dist/ts/esm/ts/Spreadsheet/DataMapTable/DataMapColumn.js +0 -39
  1100. package/dist/ts/esm/ts/Spreadsheet/DataMapTable/DataMapHeader.js +0 -463
  1101. package/dist/ts/esm/ts/Spreadsheet/DataMapTable/DataMapTable.js +0 -97
  1102. package/dist/ts/esm/ts/Spreadsheet/Metadata/Assays.js +0 -90
  1103. package/dist/ts/esm/ts/Spreadsheet/Metadata/Comment.js +0 -59
  1104. package/dist/ts/esm/ts/Spreadsheet/Metadata/Contacts.js +0 -84
  1105. package/dist/ts/esm/ts/Spreadsheet/Metadata/Conversions.js +0 -176
  1106. package/dist/ts/esm/ts/Spreadsheet/Metadata/DesignDescriptors.js +0 -18
  1107. package/dist/ts/esm/ts/Spreadsheet/Metadata/Factors.js +0 -75
  1108. package/dist/ts/esm/ts/Spreadsheet/Metadata/OntologyAnnotation.js +0 -59
  1109. package/dist/ts/esm/ts/Spreadsheet/Metadata/OntologySourceReference.js +0 -60
  1110. package/dist/ts/esm/ts/Spreadsheet/Metadata/Protocols.js +0 -95
  1111. package/dist/ts/esm/ts/Spreadsheet/Metadata/Publication.js +0 -80
  1112. package/dist/ts/esm/ts/Spreadsheet/Metadata/Run.js +0 -91
  1113. package/dist/ts/esm/ts/Spreadsheet/Metadata/SparseTable.js +0 -434
  1114. package/dist/ts/esm/ts/Spreadsheet/Metadata/Study.js +0 -245
  1115. package/dist/ts/esm/ts/Spreadsheet/Metadata/Workflow.js +0 -103
  1116. package/dist/ts/esm/ts/Template.Web.js +0 -23
  1117. package/dist/ts/esm/ts/ValidationPackages/ValidationPackage.js +0 -57
  1118. package/dist/ts/esm/ts/ValidationPackages/ValidationPackagesConfig.js +0 -84
  1119. package/dist/ts/esm/ts/WebRequest/WebRequest.Node.js +0 -13
  1120. package/dist/ts/esm/ts/WebRequest/WebRequest.js +0 -17
  1121. package/dist/ts/esm/ts/Xlsx.js +0 -116
  1122. package/dist/ts/esm/ts/Yaml/Encode.js +0 -5
  1123. package/dist/ts/esm/ts/Yaml/ValidationPackage.js +0 -41
  1124. package/dist/ts/esm/ts/Yaml/ValidationPackagesConfig.js +0 -42
  1125. package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +0 -432
  1126. package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +0 -118
  1127. package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +0 -43
  1128. package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +0 -18
  1129. package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +0 -79
  1130. package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.js +0 -1
  1131. package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.js +0 -1
  1132. package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.js +0 -2
  1133. package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.js +0 -1
  1134. package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.js +0 -102
  1135. package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.js +0 -1
  1136. package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.js +0 -1
  1137. package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.js +0 -1
  1138. package/dist/ts/esm/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +0 -281
  1139. package/dist/ts/esm/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +0 -203
  1140. package/dist/ts/esm/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +0 -16
  1141. package/dist/ts/esm/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +0 -380
  1142. package/dist/ts/esm/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +0 -151
  1143. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.js +0 -463
  1144. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.js +0 -473
  1145. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.js +0 -189
  1146. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.js +0 -43
  1147. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.js +0 -122
  1148. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.js +0 -306
  1149. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.js +0 -224
  1150. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.js +0 -121
  1151. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.js +0 -131
  1152. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.js +0 -134
  1153. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.js +0 -429
  1154. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.js +0 -62
  1155. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.js +0 -35
  1156. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.js +0 -35
  1157. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.js +0 -27
  1158. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.js +0 -74
  1159. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.js +0 -41
  1160. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.js +0 -129
  1161. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.js +0 -33
  1162. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.js +0 -206
  1163. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.js +0 -80
  1164. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.js +0 -60
  1165. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.js +0 -31
  1166. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.js +0 -326
  1167. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.js +0 -152
  1168. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.js +0 -76
  1169. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.js +0 -48
  1170. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.js +0 -48
  1171. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.js +0 -51
  1172. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.js +0 -30
  1173. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.js +0 -64
  1174. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.js +0 -67
  1175. package/dist/ts/esm/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.js +0 -1269
  1176. package/dist/ts/esm/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.js +0 -178
  1177. package/dist/ts/esm/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.js +0 -79
  1178. package/dist/ts/esm/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.js +0 -91
  1179. package/dist/ts/esm/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.js +0 -55
  1180. package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.js +0 -1692
  1181. package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.js +0 -57
  1182. package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +0 -9
  1183. package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +0 -43
  1184. package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +0 -96
  1185. package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +0 -522
  1186. package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.js +0 -9
  1187. package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +0 -221
  1188. package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +0 -156
  1189. package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +0 -148
  1190. package/dist/ts/types/index.d.ts +0 -60
  1191. package/dist/ts/types/index.d.ts.map +0 -1
  1192. package/dist/ts/types/ts/ARC.d.ts +0 -80
  1193. package/dist/ts/types/ts/ARC.d.ts.map +0 -1
  1194. package/dist/ts/types/ts/Contract/ARC.d.ts +0 -7
  1195. package/dist/ts/types/ts/Contract/ARC.d.ts.map +0 -1
  1196. package/dist/ts/types/ts/Contract/ArcAssay.d.ts +0 -12
  1197. package/dist/ts/types/ts/Contract/ArcAssay.d.ts.map +0 -1
  1198. package/dist/ts/types/ts/Contract/ArcInvestigation.d.ts +0 -10
  1199. package/dist/ts/types/ts/Contract/ArcInvestigation.d.ts.map +0 -1
  1200. package/dist/ts/types/ts/Contract/ArcRun.d.ts +0 -12
  1201. package/dist/ts/types/ts/Contract/ArcRun.d.ts.map +0 -1
  1202. package/dist/ts/types/ts/Contract/ArcStudy.d.ts +0 -13
  1203. package/dist/ts/types/ts/Contract/ArcStudy.d.ts.map +0 -1
  1204. package/dist/ts/types/ts/Contract/ArcWorkflow.d.ts +0 -12
  1205. package/dist/ts/types/ts/Contract/ArcWorkflow.d.ts.map +0 -1
  1206. package/dist/ts/types/ts/Contract/Contract.d.ts +0 -39
  1207. package/dist/ts/types/ts/Contract/Contract.d.ts.map +0 -1
  1208. package/dist/ts/types/ts/Contract/Datamap.d.ts +0 -29
  1209. package/dist/ts/types/ts/Contract/Datamap.d.ts.map +0 -1
  1210. package/dist/ts/types/ts/Contract/Git.d.ts +0 -28
  1211. package/dist/ts/types/ts/Contract/Git.d.ts.map +0 -1
  1212. package/dist/ts/types/ts/Contract/ValidationPackagesConfig.d.ts +0 -12
  1213. package/dist/ts/types/ts/Contract/ValidationPackagesConfig.d.ts.map +0 -1
  1214. package/dist/ts/types/ts/ContractIO/ContractIO.d.ts +0 -11
  1215. package/dist/ts/types/ts/ContractIO/ContractIO.d.ts.map +0 -1
  1216. package/dist/ts/types/ts/ContractIO/FileSystemHelper.d.ts +0 -33
  1217. package/dist/ts/types/ts/ContractIO/FileSystemHelper.d.ts.map +0 -1
  1218. package/dist/ts/types/ts/Conversion.d.ts +0 -291
  1219. package/dist/ts/types/ts/Conversion.d.ts.map +0 -1
  1220. package/dist/ts/types/ts/Core/ArcTypes.d.ts +0 -620
  1221. package/dist/ts/types/ts/Core/ArcTypes.d.ts.map +0 -1
  1222. package/dist/ts/types/ts/Core/Comment.d.ts +0 -35
  1223. package/dist/ts/types/ts/Core/Comment.d.ts.map +0 -1
  1224. package/dist/ts/types/ts/Core/CommentList.d.ts +0 -28
  1225. package/dist/ts/types/ts/Core/CommentList.d.ts.map +0 -1
  1226. package/dist/ts/types/ts/Core/Conversion.d.ts +0 -215
  1227. package/dist/ts/types/ts/Core/Conversion.d.ts.map +0 -1
  1228. package/dist/ts/types/ts/Core/Data.d.ts +0 -49
  1229. package/dist/ts/types/ts/Core/Data.d.ts.map +0 -1
  1230. package/dist/ts/types/ts/Core/DataContext.d.ts +0 -47
  1231. package/dist/ts/types/ts/Core/DataContext.d.ts.map +0 -1
  1232. package/dist/ts/types/ts/Core/DataFile.d.ts +0 -27
  1233. package/dist/ts/types/ts/Core/DataFile.d.ts.map +0 -1
  1234. package/dist/ts/types/ts/Core/DataMap.d.ts +0 -52
  1235. package/dist/ts/types/ts/Core/DataMap.d.ts.map +0 -1
  1236. package/dist/ts/types/ts/Core/Helper/Collections.d.ts +0 -61
  1237. package/dist/ts/types/ts/Core/Helper/Collections.d.ts.map +0 -1
  1238. package/dist/ts/types/ts/Core/Helper/HashCodes.d.ts +0 -9
  1239. package/dist/ts/types/ts/Core/Helper/HashCodes.d.ts.map +0 -1
  1240. package/dist/ts/types/ts/Core/Helper/Identifier.d.ts +0 -119
  1241. package/dist/ts/types/ts/Core/Helper/Identifier.d.ts.map +0 -1
  1242. package/dist/ts/types/ts/Core/Helper/ORCID.d.ts +0 -7
  1243. package/dist/ts/types/ts/Core/Helper/ORCID.d.ts.map +0 -1
  1244. package/dist/ts/types/ts/Core/Helper/Printer.d.ts +0 -5
  1245. package/dist/ts/types/ts/Core/Helper/Printer.d.ts.map +0 -1
  1246. package/dist/ts/types/ts/Core/Helper/Regex.d.ts +0 -194
  1247. package/dist/ts/types/ts/Core/Helper/Regex.d.ts.map +0 -1
  1248. package/dist/ts/types/ts/Core/Helper/SemVer.d.ts +0 -20
  1249. package/dist/ts/types/ts/Core/Helper/SemVer.d.ts.map +0 -1
  1250. package/dist/ts/types/ts/Core/Helper/Url.d.ts +0 -10
  1251. package/dist/ts/types/ts/Core/Helper/Url.d.ts.map +0 -1
  1252. package/dist/ts/types/ts/Core/IPropertyValue.d.ts +0 -13
  1253. package/dist/ts/types/ts/Core/IPropertyValue.d.ts.map +0 -1
  1254. package/dist/ts/types/ts/Core/IdentifierSetters.d.ts +0 -7
  1255. package/dist/ts/types/ts/Core/IdentifierSetters.d.ts.map +0 -1
  1256. package/dist/ts/types/ts/Core/OntologyAnnotation.d.ts +0 -57
  1257. package/dist/ts/types/ts/Core/OntologyAnnotation.d.ts.map +0 -1
  1258. package/dist/ts/types/ts/Core/OntologySourceReference.d.ts +0 -31
  1259. package/dist/ts/types/ts/Core/OntologySourceReference.d.ts.map +0 -1
  1260. package/dist/ts/types/ts/Core/Person.d.ts +0 -56
  1261. package/dist/ts/types/ts/Core/Person.d.ts.map +0 -1
  1262. package/dist/ts/types/ts/Core/Process/ColumnIndex.d.ts +0 -79
  1263. package/dist/ts/types/ts/Core/Process/ColumnIndex.d.ts.map +0 -1
  1264. package/dist/ts/types/ts/Core/Process/Component.d.ts +0 -65
  1265. package/dist/ts/types/ts/Core/Process/Component.d.ts.map +0 -1
  1266. package/dist/ts/types/ts/Core/Process/Factor.d.ts +0 -44
  1267. package/dist/ts/types/ts/Core/Process/Factor.d.ts.map +0 -1
  1268. package/dist/ts/types/ts/Core/Process/FactorValue.d.ts +0 -44
  1269. package/dist/ts/types/ts/Core/Process/FactorValue.d.ts.map +0 -1
  1270. package/dist/ts/types/ts/Core/Process/Material.d.ts +0 -27
  1271. package/dist/ts/types/ts/Core/Process/Material.d.ts.map +0 -1
  1272. package/dist/ts/types/ts/Core/Process/MaterialAttribute.d.ts +0 -53
  1273. package/dist/ts/types/ts/Core/Process/MaterialAttribute.d.ts.map +0 -1
  1274. package/dist/ts/types/ts/Core/Process/MaterialAttributeValue.d.ts +0 -55
  1275. package/dist/ts/types/ts/Core/Process/MaterialAttributeValue.d.ts.map +0 -1
  1276. package/dist/ts/types/ts/Core/Process/MaterialType.d.ts +0 -22
  1277. package/dist/ts/types/ts/Core/Process/MaterialType.d.ts.map +0 -1
  1278. package/dist/ts/types/ts/Core/Process/Process.d.ts +0 -113
  1279. package/dist/ts/types/ts/Core/Process/Process.d.ts.map +0 -1
  1280. package/dist/ts/types/ts/Core/Process/ProcessInput.d.ts +0 -117
  1281. package/dist/ts/types/ts/Core/Process/ProcessInput.d.ts.map +0 -1
  1282. package/dist/ts/types/ts/Core/Process/ProcessOutput.d.ts +0 -106
  1283. package/dist/ts/types/ts/Core/Process/ProcessOutput.d.ts.map +0 -1
  1284. package/dist/ts/types/ts/Core/Process/ProcessParameterValue.d.ts +0 -40
  1285. package/dist/ts/types/ts/Core/Process/ProcessParameterValue.d.ts.map +0 -1
  1286. package/dist/ts/types/ts/Core/Process/ProcessSequence.d.ts +0 -89
  1287. package/dist/ts/types/ts/Core/Process/ProcessSequence.d.ts.map +0 -1
  1288. package/dist/ts/types/ts/Core/Process/Protocol.d.ts +0 -141
  1289. package/dist/ts/types/ts/Core/Process/Protocol.d.ts.map +0 -1
  1290. package/dist/ts/types/ts/Core/Process/ProtocolParameter.d.ts +0 -32
  1291. package/dist/ts/types/ts/Core/Process/ProtocolParameter.d.ts.map +0 -1
  1292. package/dist/ts/types/ts/Core/Process/Sample.d.ts +0 -31
  1293. package/dist/ts/types/ts/Core/Process/Sample.d.ts.map +0 -1
  1294. package/dist/ts/types/ts/Core/Process/Source.d.ts +0 -24
  1295. package/dist/ts/types/ts/Core/Process/Source.d.ts.map +0 -1
  1296. package/dist/ts/types/ts/Core/Publication.d.ts +0 -36
  1297. package/dist/ts/types/ts/Core/Publication.d.ts.map +0 -1
  1298. package/dist/ts/types/ts/Core/Table/ArcTable.d.ts +0 -137
  1299. package/dist/ts/types/ts/Core/Table/ArcTable.d.ts.map +0 -1
  1300. package/dist/ts/types/ts/Core/Table/ArcTableAux.d.ts +0 -154
  1301. package/dist/ts/types/ts/Core/Table/ArcTableAux.d.ts.map +0 -1
  1302. package/dist/ts/types/ts/Core/Table/ArcTables.d.ts +0 -91
  1303. package/dist/ts/types/ts/Core/Table/ArcTables.d.ts.map +0 -1
  1304. package/dist/ts/types/ts/Core/Table/CompositeCell.d.ts +0 -58
  1305. package/dist/ts/types/ts/Core/Table/CompositeCell.d.ts.map +0 -1
  1306. package/dist/ts/types/ts/Core/Table/CompositeColumn.d.ts +0 -19
  1307. package/dist/ts/types/ts/Core/Table/CompositeColumn.d.ts.map +0 -1
  1308. package/dist/ts/types/ts/Core/Table/CompositeHeader.d.ts +0 -130
  1309. package/dist/ts/types/ts/Core/Table/CompositeHeader.d.ts.map +0 -1
  1310. package/dist/ts/types/ts/Core/Template.d.ts +0 -69
  1311. package/dist/ts/types/ts/Core/Template.d.ts.map +0 -1
  1312. package/dist/ts/types/ts/Core/Templates.d.ts +0 -18
  1313. package/dist/ts/types/ts/Core/Templates.d.ts.map +0 -1
  1314. package/dist/ts/types/ts/Core/URI.d.ts.map +0 -1
  1315. package/dist/ts/types/ts/Core/Value.d.ts +0 -41
  1316. package/dist/ts/types/ts/Core/Value.d.ts.map +0 -1
  1317. package/dist/ts/types/ts/CrossAsync.d.ts +0 -9
  1318. package/dist/ts/types/ts/CrossAsync.d.ts.map +0 -1
  1319. package/dist/ts/types/ts/FileSystem/Commit.d.ts +0 -13
  1320. package/dist/ts/types/ts/FileSystem/Commit.d.ts.map +0 -1
  1321. package/dist/ts/types/ts/FileSystem/DefaultGitattributes.d.ts.map +0 -1
  1322. package/dist/ts/types/ts/FileSystem/DefaultGitignore.d.ts.map +0 -1
  1323. package/dist/ts/types/ts/FileSystem/FileSystem.d.ts +0 -21
  1324. package/dist/ts/types/ts/FileSystem/FileSystem.d.ts.map +0 -1
  1325. package/dist/ts/types/ts/FileSystem/FileSystemTree.d.ts +0 -54
  1326. package/dist/ts/types/ts/FileSystem/FileSystemTree.d.ts.map +0 -1
  1327. package/dist/ts/types/ts/FileSystem/Path.d.ts.map +0 -1
  1328. package/dist/ts/types/ts/Json/Assay.d.ts +0 -19
  1329. package/dist/ts/types/ts/Json/Assay.d.ts.map +0 -1
  1330. package/dist/ts/types/ts/Json/Comment.d.ts +0 -14
  1331. package/dist/ts/types/ts/Json/Comment.d.ts.map +0 -1
  1332. package/dist/ts/types/ts/Json/Data.d.ts +0 -17
  1333. package/dist/ts/types/ts/Json/Data.d.ts.map +0 -1
  1334. package/dist/ts/types/ts/Json/DataFile.d.ts +0 -7
  1335. package/dist/ts/types/ts/Json/DataFile.d.ts.map +0 -1
  1336. package/dist/ts/types/ts/Json/DataMap/DataContext.d.ts +0 -5
  1337. package/dist/ts/types/ts/Json/DataMap/DataContext.d.ts.map +0 -1
  1338. package/dist/ts/types/ts/Json/DataMap/DataMap.d.ts +0 -11
  1339. package/dist/ts/types/ts/Json/DataMap/DataMap.d.ts.map +0 -1
  1340. package/dist/ts/types/ts/Json/Decode.d.ts +0 -18
  1341. package/dist/ts/types/ts/Json/Decode.d.ts.map +0 -1
  1342. package/dist/ts/types/ts/Json/Encode.d.ts +0 -23
  1343. package/dist/ts/types/ts/Json/Encode.d.ts.map +0 -1
  1344. package/dist/ts/types/ts/Json/IDTable.d.ts +0 -5
  1345. package/dist/ts/types/ts/Json/IDTable.d.ts.map +0 -1
  1346. package/dist/ts/types/ts/Json/Investigation.d.ts +0 -20
  1347. package/dist/ts/types/ts/Json/Investigation.d.ts.map +0 -1
  1348. package/dist/ts/types/ts/Json/OntologyAnnotation.d.ts +0 -18
  1349. package/dist/ts/types/ts/Json/OntologyAnnotation.d.ts.map +0 -1
  1350. package/dist/ts/types/ts/Json/OntologySourceReference.d.ts +0 -12
  1351. package/dist/ts/types/ts/Json/OntologySourceReference.d.ts.map +0 -1
  1352. package/dist/ts/types/ts/Json/Person.d.ts +0 -22
  1353. package/dist/ts/types/ts/Json/Person.d.ts.map +0 -1
  1354. package/dist/ts/types/ts/Json/Process/AssayMaterials.d.ts +0 -7
  1355. package/dist/ts/types/ts/Json/Process/AssayMaterials.d.ts.map +0 -1
  1356. package/dist/ts/types/ts/Json/Process/Component.d.ts +0 -11
  1357. package/dist/ts/types/ts/Json/Process/Component.d.ts.map +0 -1
  1358. package/dist/ts/types/ts/Json/Process/Factor.d.ts +0 -8
  1359. package/dist/ts/types/ts/Json/Process/Factor.d.ts.map +0 -1
  1360. package/dist/ts/types/ts/Json/Process/FactorValue.d.ts +0 -11
  1361. package/dist/ts/types/ts/Json/Process/FactorValue.d.ts.map +0 -1
  1362. package/dist/ts/types/ts/Json/Process/Material.d.ts +0 -12
  1363. package/dist/ts/types/ts/Json/Process/Material.d.ts.map +0 -1
  1364. package/dist/ts/types/ts/Json/Process/MaterialAttribute.d.ts +0 -8
  1365. package/dist/ts/types/ts/Json/Process/MaterialAttribute.d.ts.map +0 -1
  1366. package/dist/ts/types/ts/Json/Process/MaterialAttributeValue.d.ts +0 -11
  1367. package/dist/ts/types/ts/Json/Process/MaterialAttributeValue.d.ts.map +0 -1
  1368. package/dist/ts/types/ts/Json/Process/MaterialType.d.ts +0 -7
  1369. package/dist/ts/types/ts/Json/Process/MaterialType.d.ts.map +0 -1
  1370. package/dist/ts/types/ts/Json/Process/Process.d.ts +0 -10
  1371. package/dist/ts/types/ts/Json/Process/Process.d.ts.map +0 -1
  1372. package/dist/ts/types/ts/Json/Process/ProcessInput.d.ts +0 -9
  1373. package/dist/ts/types/ts/Json/Process/ProcessInput.d.ts.map +0 -1
  1374. package/dist/ts/types/ts/Json/Process/ProcessOutput.d.ts +0 -9
  1375. package/dist/ts/types/ts/Json/Process/ProcessOutput.d.ts.map +0 -1
  1376. package/dist/ts/types/ts/Json/Process/ProcessParameterValue.d.ts +0 -11
  1377. package/dist/ts/types/ts/Json/Process/ProcessParameterValue.d.ts.map +0 -1
  1378. package/dist/ts/types/ts/Json/Process/Protocol.d.ts +0 -10
  1379. package/dist/ts/types/ts/Json/Process/Protocol.d.ts.map +0 -1
  1380. package/dist/ts/types/ts/Json/Process/ProtocolParameter.d.ts +0 -8
  1381. package/dist/ts/types/ts/Json/Process/ProtocolParameter.d.ts.map +0 -1
  1382. package/dist/ts/types/ts/Json/Process/Sample.d.ts +0 -15
  1383. package/dist/ts/types/ts/Json/Process/Sample.d.ts.map +0 -1
  1384. package/dist/ts/types/ts/Json/Process/Source.d.ts +0 -12
  1385. package/dist/ts/types/ts/Json/Process/Source.d.ts.map +0 -1
  1386. package/dist/ts/types/ts/Json/Process/StudyMaterials.d.ts +0 -7
  1387. package/dist/ts/types/ts/Json/Process/StudyMaterials.d.ts.map +0 -1
  1388. package/dist/ts/types/ts/Json/Process/Value.d.ts +0 -7
  1389. package/dist/ts/types/ts/Json/Process/Value.d.ts.map +0 -1
  1390. package/dist/ts/types/ts/Json/PropertyValue.d.ts +0 -9
  1391. package/dist/ts/types/ts/Json/PropertyValue.d.ts.map +0 -1
  1392. package/dist/ts/types/ts/Json/Publication.d.ts +0 -14
  1393. package/dist/ts/types/ts/Json/Publication.d.ts.map +0 -1
  1394. package/dist/ts/types/ts/Json/ROCrate/LDContext.d.ts +0 -5
  1395. package/dist/ts/types/ts/Json/ROCrate/LDContext.d.ts.map +0 -1
  1396. package/dist/ts/types/ts/Json/ROCrate/LDGraph.d.ts +0 -5
  1397. package/dist/ts/types/ts/Json/ROCrate/LDGraph.d.ts.map +0 -1
  1398. package/dist/ts/types/ts/Json/ROCrate/LDNode.d.ts +0 -13
  1399. package/dist/ts/types/ts/Json/ROCrate/LDNode.d.ts.map +0 -1
  1400. package/dist/ts/types/ts/Json/ROCrate/LDRef.d.ts +0 -5
  1401. package/dist/ts/types/ts/Json/ROCrate/LDRef.d.ts.map +0 -1
  1402. package/dist/ts/types/ts/Json/ROCrate/LDValue.d.ts +0 -7
  1403. package/dist/ts/types/ts/Json/ROCrate/LDValue.d.ts.map +0 -1
  1404. package/dist/ts/types/ts/Json/StringTable.d.ts +0 -9
  1405. package/dist/ts/types/ts/Json/StringTable.d.ts.map +0 -1
  1406. package/dist/ts/types/ts/Json/Study.d.ts +0 -26
  1407. package/dist/ts/types/ts/Json/Study.d.ts.map +0 -1
  1408. package/dist/ts/types/ts/Json/Table/ArcTable.d.ts +0 -15
  1409. package/dist/ts/types/ts/Json/Table/ArcTable.d.ts.map +0 -1
  1410. package/dist/ts/types/ts/Json/Table/CellTable.d.ts +0 -11
  1411. package/dist/ts/types/ts/Json/Table/CellTable.d.ts.map +0 -1
  1412. package/dist/ts/types/ts/Json/Table/CompositeCell.d.ts +0 -10
  1413. package/dist/ts/types/ts/Json/Table/CompositeCell.d.ts.map +0 -1
  1414. package/dist/ts/types/ts/Json/Table/CompositeHeader.d.ts +0 -5
  1415. package/dist/ts/types/ts/Json/Table/CompositeHeader.d.ts.map +0 -1
  1416. package/dist/ts/types/ts/Json/Table/IOType.d.ts +0 -5
  1417. package/dist/ts/types/ts/Json/Table/IOType.d.ts.map +0 -1
  1418. package/dist/ts/types/ts/Json/Table/OATable.d.ts +0 -10
  1419. package/dist/ts/types/ts/Json/Table/OATable.d.ts.map +0 -1
  1420. package/dist/ts/types/ts/Json/Table/Templates.d.ts +0 -15
  1421. package/dist/ts/types/ts/Json/Table/Templates.d.ts.map +0 -1
  1422. package/dist/ts/types/ts/Json/context/rocrate/isa_assay_context.d.ts +0 -26
  1423. package/dist/ts/types/ts/Json/context/rocrate/isa_assay_context.d.ts.map +0 -1
  1424. package/dist/ts/types/ts/Json/context/rocrate/isa_comment_context.d.ts +0 -16
  1425. package/dist/ts/types/ts/Json/context/rocrate/isa_comment_context.d.ts.map +0 -1
  1426. package/dist/ts/types/ts/Json/context/rocrate/isa_data_context.d.ts +0 -18
  1427. package/dist/ts/types/ts/Json/context/rocrate/isa_data_context.d.ts.map +0 -1
  1428. package/dist/ts/types/ts/Json/context/rocrate/isa_investigation_context.d.ts +0 -26
  1429. package/dist/ts/types/ts/Json/context/rocrate/isa_investigation_context.d.ts.map +0 -1
  1430. package/dist/ts/types/ts/Json/context/rocrate/isa_material_context.d.ts +0 -19
  1431. package/dist/ts/types/ts/Json/context/rocrate/isa_material_context.d.ts.map +0 -1
  1432. package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts +0 -17
  1433. package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts.map +0 -1
  1434. package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts +0 -19
  1435. package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts.map +0 -1
  1436. package/dist/ts/types/ts/Json/context/rocrate/isa_organization_context.d.ts +0 -15
  1437. package/dist/ts/types/ts/Json/context/rocrate/isa_organization_context.d.ts.map +0 -1
  1438. package/dist/ts/types/ts/Json/context/rocrate/isa_person_context.d.ts +0 -25
  1439. package/dist/ts/types/ts/Json/context/rocrate/isa_person_context.d.ts.map +0 -1
  1440. package/dist/ts/types/ts/Json/context/rocrate/isa_process_context.d.ts +0 -23
  1441. package/dist/ts/types/ts/Json/context/rocrate/isa_process_context.d.ts.map +0 -1
  1442. package/dist/ts/types/ts/Json/context/rocrate/isa_protocol_context.d.ts +0 -22
  1443. package/dist/ts/types/ts/Json/context/rocrate/isa_protocol_context.d.ts.map +0 -1
  1444. package/dist/ts/types/ts/Json/context/rocrate/isa_publication_context.d.ts +0 -19
  1445. package/dist/ts/types/ts/Json/context/rocrate/isa_publication_context.d.ts.map +0 -1
  1446. package/dist/ts/types/ts/Json/context/rocrate/isa_sample_context.d.ts +0 -18
  1447. package/dist/ts/types/ts/Json/context/rocrate/isa_sample_context.d.ts.map +0 -1
  1448. package/dist/ts/types/ts/Json/context/rocrate/isa_source_context.d.ts +0 -18
  1449. package/dist/ts/types/ts/Json/context/rocrate/isa_source_context.d.ts.map +0 -1
  1450. package/dist/ts/types/ts/Json/context/rocrate/isa_study_context.d.ts +0 -34
  1451. package/dist/ts/types/ts/Json/context/rocrate/isa_study_context.d.ts.map +0 -1
  1452. package/dist/ts/types/ts/Json/context/rocrate/property_value_context.d.ts +0 -3
  1453. package/dist/ts/types/ts/Json/context/rocrate/property_value_context.d.ts.map +0 -1
  1454. package/dist/ts/types/ts/Json/context/rocrate/rocrate_context.d.ts +0 -16
  1455. package/dist/ts/types/ts/Json/context/rocrate/rocrate_context.d.ts.map +0 -1
  1456. package/dist/ts/types/ts/Json.d.ts +0 -90
  1457. package/dist/ts/types/ts/Json.d.ts.map +0 -1
  1458. package/dist/ts/types/ts/JsonIO/Assay.d.ts +0 -19
  1459. package/dist/ts/types/ts/JsonIO/Assay.d.ts.map +0 -1
  1460. package/dist/ts/types/ts/JsonIO/Investigation.d.ts +0 -19
  1461. package/dist/ts/types/ts/JsonIO/Investigation.d.ts.map +0 -1
  1462. package/dist/ts/types/ts/JsonIO/LDObject.d.ts +0 -29
  1463. package/dist/ts/types/ts/JsonIO/LDObject.d.ts.map +0 -1
  1464. package/dist/ts/types/ts/JsonIO/OntologyAnnotation.d.ts +0 -16
  1465. package/dist/ts/types/ts/JsonIO/OntologyAnnotation.d.ts.map +0 -1
  1466. package/dist/ts/types/ts/JsonIO/Study.d.ts +0 -20
  1467. package/dist/ts/types/ts/JsonIO/Study.d.ts.map +0 -1
  1468. package/dist/ts/types/ts/JsonIO/Table/Compression.d.ts +0 -8
  1469. package/dist/ts/types/ts/JsonIO/Table/Compression.d.ts.map +0 -1
  1470. package/dist/ts/types/ts/JsonIO/Table/Templates.d.ts +0 -15
  1471. package/dist/ts/types/ts/JsonIO/Table/Templates.d.ts.map +0 -1
  1472. package/dist/ts/types/ts/ROCrate/Generic/Comment.d.ts +0 -21
  1473. package/dist/ts/types/ts/ROCrate/Generic/Comment.d.ts.map +0 -1
  1474. package/dist/ts/types/ts/ROCrate/Generic/Dataset.d.ts +0 -92
  1475. package/dist/ts/types/ts/ROCrate/Generic/Dataset.d.ts.map +0 -1
  1476. package/dist/ts/types/ts/ROCrate/Generic/DefinedTerm.d.ts +0 -21
  1477. package/dist/ts/types/ts/ROCrate/Generic/DefinedTerm.d.ts.map +0 -1
  1478. package/dist/ts/types/ts/ROCrate/Generic/File.d.ts +0 -35
  1479. package/dist/ts/types/ts/ROCrate/Generic/File.d.ts.map +0 -1
  1480. package/dist/ts/types/ts/ROCrate/Generic/LabProcess.d.ts +0 -43
  1481. package/dist/ts/types/ts/ROCrate/Generic/LabProcess.d.ts.map +0 -1
  1482. package/dist/ts/types/ts/ROCrate/Generic/LabProtocol.d.ts +0 -44
  1483. package/dist/ts/types/ts/ROCrate/Generic/LabProtocol.d.ts.map +0 -1
  1484. package/dist/ts/types/ts/ROCrate/Generic/Organization.d.ts +0 -17
  1485. package/dist/ts/types/ts/ROCrate/Generic/Organization.d.ts.map +0 -1
  1486. package/dist/ts/types/ts/ROCrate/Generic/Person.d.ts +0 -51
  1487. package/dist/ts/types/ts/ROCrate/Generic/Person.d.ts.map +0 -1
  1488. package/dist/ts/types/ts/ROCrate/Generic/PostalAddress.d.ts +0 -25
  1489. package/dist/ts/types/ts/ROCrate/Generic/PostalAddress.d.ts.map +0 -1
  1490. package/dist/ts/types/ts/ROCrate/Generic/PropertyValue.d.ts +0 -73
  1491. package/dist/ts/types/ts/ROCrate/Generic/PropertyValue.d.ts.map +0 -1
  1492. package/dist/ts/types/ts/ROCrate/Generic/Sample.d.ts +0 -30
  1493. package/dist/ts/types/ts/ROCrate/Generic/Sample.d.ts.map +0 -1
  1494. package/dist/ts/types/ts/ROCrate/Generic/ScholarlyArticle.d.ts +0 -34
  1495. package/dist/ts/types/ts/ROCrate/Generic/ScholarlyArticle.d.ts.map +0 -1
  1496. package/dist/ts/types/ts/ROCrate/Helper.d.ts.map +0 -1
  1497. package/dist/ts/types/ts/ROCrate/LDContext.d.ts +0 -43
  1498. package/dist/ts/types/ts/ROCrate/LDContext.d.ts.map +0 -1
  1499. package/dist/ts/types/ts/ROCrate/LDObject.d.ts +0 -97
  1500. package/dist/ts/types/ts/ROCrate/LDObject.d.ts.map +0 -1
  1501. package/dist/ts/types/ts/ROCrate/ROCrateContext.d.ts +0 -7
  1502. package/dist/ts/types/ts/ROCrate/ROCrateContext.d.ts.map +0 -1
  1503. package/dist/ts/types/ts/ROCrateIO.d.ts +0 -15
  1504. package/dist/ts/types/ts/ROCrateIO.d.ts.map +0 -1
  1505. package/dist/ts/types/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts +0 -40
  1506. package/dist/ts/types/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts.map +0 -1
  1507. package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts +0 -9
  1508. package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts.map +0 -1
  1509. package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts +0 -24
  1510. package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts.map +0 -1
  1511. package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts +0 -22
  1512. package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts.map +0 -1
  1513. package/dist/ts/types/ts/Spreadsheet/ArcAssay.d.ts +0 -31
  1514. package/dist/ts/types/ts/Spreadsheet/ArcAssay.d.ts.map +0 -1
  1515. package/dist/ts/types/ts/Spreadsheet/ArcInvestigation.d.ts +0 -42
  1516. package/dist/ts/types/ts/Spreadsheet/ArcInvestigation.d.ts.map +0 -1
  1517. package/dist/ts/types/ts/Spreadsheet/ArcRun.d.ts +0 -27
  1518. package/dist/ts/types/ts/Spreadsheet/ArcRun.d.ts.map +0 -1
  1519. package/dist/ts/types/ts/Spreadsheet/ArcStudy.d.ts +0 -26
  1520. package/dist/ts/types/ts/Spreadsheet/ArcStudy.d.ts.map +0 -1
  1521. package/dist/ts/types/ts/Spreadsheet/ArcWorkflow.d.ts +0 -27
  1522. package/dist/ts/types/ts/Spreadsheet/ArcWorkflow.d.ts.map +0 -1
  1523. package/dist/ts/types/ts/Spreadsheet/CollectionAux.d.ts +0 -23
  1524. package/dist/ts/types/ts/Spreadsheet/CollectionAux.d.ts.map +0 -1
  1525. package/dist/ts/types/ts/Spreadsheet/DataMap.d.ts +0 -8
  1526. package/dist/ts/types/ts/Spreadsheet/DataMap.d.ts.map +0 -1
  1527. package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapColumn.d.ts +0 -7
  1528. package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapColumn.d.ts.map +0 -1
  1529. package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapHeader.d.ts +0 -23
  1530. package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapHeader.d.ts.map +0 -1
  1531. package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapTable.d.ts +0 -23
  1532. package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapTable.d.ts.map +0 -1
  1533. package/dist/ts/types/ts/Spreadsheet/Metadata/Assays.d.ts +0 -14
  1534. package/dist/ts/types/ts/Spreadsheet/Metadata/Assays.d.ts.map +0 -1
  1535. package/dist/ts/types/ts/Spreadsheet/Metadata/Comment.d.ts +0 -14
  1536. package/dist/ts/types/ts/Spreadsheet/Metadata/Comment.d.ts.map +0 -1
  1537. package/dist/ts/types/ts/Spreadsheet/Metadata/Contacts.d.ts +0 -25
  1538. package/dist/ts/types/ts/Spreadsheet/Metadata/Contacts.d.ts.map +0 -1
  1539. package/dist/ts/types/ts/Spreadsheet/Metadata/Conversions.d.ts +0 -60
  1540. package/dist/ts/types/ts/Spreadsheet/Metadata/Conversions.d.ts.map +0 -1
  1541. package/dist/ts/types/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts +0 -16
  1542. package/dist/ts/types/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts.map +0 -1
  1543. package/dist/ts/types/ts/Spreadsheet/Metadata/Factors.d.ts +0 -18
  1544. package/dist/ts/types/ts/Spreadsheet/Metadata/Factors.d.ts.map +0 -1
  1545. package/dist/ts/types/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts +0 -12
  1546. package/dist/ts/types/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts.map +0 -1
  1547. package/dist/ts/types/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts +0 -18
  1548. package/dist/ts/types/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts.map +0 -1
  1549. package/dist/ts/types/ts/Spreadsheet/Metadata/Protocols.d.ts +0 -28
  1550. package/dist/ts/types/ts/Spreadsheet/Metadata/Protocols.d.ts.map +0 -1
  1551. package/dist/ts/types/ts/Spreadsheet/Metadata/Publication.d.ts +0 -21
  1552. package/dist/ts/types/ts/Spreadsheet/Metadata/Publication.d.ts.map +0 -1
  1553. package/dist/ts/types/ts/Spreadsheet/Metadata/Run.d.ts +0 -14
  1554. package/dist/ts/types/ts/Spreadsheet/Metadata/Run.d.ts.map +0 -1
  1555. package/dist/ts/types/ts/Spreadsheet/Metadata/SparseTable.d.ts +0 -37
  1556. package/dist/ts/types/ts/Spreadsheet/Metadata/SparseTable.d.ts.map +0 -1
  1557. package/dist/ts/types/ts/Spreadsheet/Metadata/Study.d.ts +0 -38
  1558. package/dist/ts/types/ts/Spreadsheet/Metadata/Study.d.ts.map +0 -1
  1559. package/dist/ts/types/ts/Spreadsheet/Metadata/Workflow.d.ts +0 -31
  1560. package/dist/ts/types/ts/Spreadsheet/Metadata/Workflow.d.ts.map +0 -1
  1561. package/dist/ts/types/ts/Template.Web.d.ts +0 -11
  1562. package/dist/ts/types/ts/Template.Web.d.ts.map +0 -1
  1563. package/dist/ts/types/ts/ValidationPackages/ValidationPackage.d.ts +0 -21
  1564. package/dist/ts/types/ts/ValidationPackages/ValidationPackage.d.ts.map +0 -1
  1565. package/dist/ts/types/ts/ValidationPackages/ValidationPackagesConfig.d.ts +0 -23
  1566. package/dist/ts/types/ts/ValidationPackages/ValidationPackagesConfig.d.ts.map +0 -1
  1567. package/dist/ts/types/ts/WebRequest/WebRequest.Node.d.ts +0 -4
  1568. package/dist/ts/types/ts/WebRequest/WebRequest.Node.d.ts.map +0 -1
  1569. package/dist/ts/types/ts/WebRequest/WebRequest.d.ts +0 -4
  1570. package/dist/ts/types/ts/WebRequest/WebRequest.d.ts.map +0 -1
  1571. package/dist/ts/types/ts/Xlsx.d.ts +0 -50
  1572. package/dist/ts/types/ts/Xlsx.d.ts.map +0 -1
  1573. package/dist/ts/types/ts/Yaml/Encode.d.ts +0 -5
  1574. package/dist/ts/types/ts/Yaml/Encode.d.ts.map +0 -1
  1575. package/dist/ts/types/ts/Yaml/ValidationPackage.d.ts +0 -10
  1576. package/dist/ts/types/ts/Yaml/ValidationPackage.d.ts.map +0 -1
  1577. package/dist/ts/types/ts/Yaml/ValidationPackagesConfig.d.ts +0 -10
  1578. package/dist/ts/types/ts/Yaml/ValidationPackagesConfig.d.ts.map +0 -1
  1579. package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.d.ts +0 -69
  1580. package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.d.ts.map +0 -1
  1581. package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.d.ts +0 -25
  1582. package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.d.ts.map +0 -1
  1583. package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.d.ts +0 -11
  1584. package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.d.ts.map +0 -1
  1585. package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.d.ts +0 -15
  1586. package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.d.ts.map +0 -1
  1587. package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.d.ts +0 -15
  1588. package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.d.ts.map +0 -1
  1589. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.d.ts +0 -34
  1590. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.d.ts.map +0 -1
  1591. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.d.ts +0 -14
  1592. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.d.ts.map +0 -1
  1593. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.d.ts +0 -4
  1594. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.d.ts.map +0 -1
  1595. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.d.ts +0 -30
  1596. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.d.ts.map +0 -1
  1597. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.d.ts +0 -49
  1598. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.d.ts.map +0 -1
  1599. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.d.ts +0 -35
  1600. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.d.ts.map +0 -1
  1601. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.d.ts +0 -123
  1602. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.d.ts.map +0 -1
  1603. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.d.ts +0 -27
  1604. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.d.ts.map +0 -1
  1605. package/dist/ts/types/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.d.ts +0 -253
  1606. package/dist/ts/types/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.d.ts.map +0 -1
  1607. package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.d.ts +0 -112
  1608. package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.d.ts.map +0 -1
  1609. package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.d.ts +0 -8
  1610. package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.d.ts.map +0 -1
  1611. package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.d.ts +0 -123
  1612. package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.d.ts.map +0 -1
  1613. package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.d.ts +0 -113
  1614. package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.d.ts.map +0 -1
  1615. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.d.ts +0 -91
  1616. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.d.ts.map +0 -1
  1617. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.d.ts +0 -181
  1618. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.d.ts.map +0 -1
  1619. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.d.ts +0 -36
  1620. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.d.ts.map +0 -1
  1621. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.d.ts +0 -23
  1622. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.d.ts.map +0 -1
  1623. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.d.ts +0 -21
  1624. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.d.ts.map +0 -1
  1625. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.d.ts +0 -157
  1626. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.d.ts.map +0 -1
  1627. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.d.ts +0 -97
  1628. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.d.ts.map +0 -1
  1629. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.d.ts +0 -37
  1630. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.d.ts.map +0 -1
  1631. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.d.ts +0 -39
  1632. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.d.ts.map +0 -1
  1633. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.d.ts +0 -36
  1634. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.d.ts.map +0 -1
  1635. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.d.ts +0 -88
  1636. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.d.ts.map +0 -1
  1637. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.d.ts +0 -10
  1638. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.d.ts.map +0 -1
  1639. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.d.ts +0 -9
  1640. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.d.ts.map +0 -1
  1641. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.d.ts +0 -9
  1642. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.d.ts.map +0 -1
  1643. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.d.ts +0 -5
  1644. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.d.ts.map +0 -1
  1645. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.d.ts +0 -6
  1646. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.d.ts.map +0 -1
  1647. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.d.ts +0 -7
  1648. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.d.ts.map +0 -1
  1649. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.d.ts +0 -7
  1650. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.d.ts.map +0 -1
  1651. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.d.ts +0 -15
  1652. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.d.ts.map +0 -1
  1653. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.d.ts +0 -94
  1654. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.d.ts.map +0 -1
  1655. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.d.ts +0 -33
  1656. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.d.ts.map +0 -1
  1657. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.d.ts +0 -31
  1658. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.d.ts.map +0 -1
  1659. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.d.ts +0 -17
  1660. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.d.ts.map +0 -1
  1661. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.d.ts +0 -71
  1662. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.d.ts.map +0 -1
  1663. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.d.ts +0 -89
  1664. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.d.ts.map +0 -1
  1665. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.d.ts +0 -10
  1666. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.d.ts.map +0 -1
  1667. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.d.ts +0 -19
  1668. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.d.ts.map +0 -1
  1669. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.d.ts +0 -15
  1670. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.d.ts.map +0 -1
  1671. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.d.ts +0 -6
  1672. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.d.ts.map +0 -1
  1673. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.d.ts +0 -5
  1674. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.d.ts.map +0 -1
  1675. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.d.ts +0 -7
  1676. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.d.ts.map +0 -1
  1677. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.d.ts +0 -20
  1678. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.d.ts.map +0 -1
  1679. package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.d.ts +0 -105
  1680. package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.d.ts.map +0 -1
  1681. package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.d.ts +0 -26
  1682. package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.d.ts.map +0 -1
  1683. package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.d.ts +0 -99
  1684. package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.d.ts.map +0 -1
  1685. package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.d.ts +0 -7
  1686. package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.d.ts.map +0 -1
  1687. package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.d.ts +0 -5
  1688. package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.d.ts.map +0 -1
  1689. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.d.ts +0 -64
  1690. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.d.ts.map +0 -1
  1691. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.d.ts +0 -24
  1692. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.d.ts.map +0 -1
  1693. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.d.ts +0 -3
  1694. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.d.ts.map +0 -1
  1695. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.d.ts +0 -12
  1696. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.d.ts.map +0 -1
  1697. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.d.ts +0 -10
  1698. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.d.ts.map +0 -1
  1699. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.d.ts +0 -6
  1700. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.d.ts.map +0 -1
  1701. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.d.ts +0 -10
  1702. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.d.ts.map +0 -1
  1703. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.d.ts +0 -46
  1704. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.d.ts.map +0 -1
  1705. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.d.ts +0 -12
  1706. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.d.ts.map +0 -1
  1707. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.d.ts +0 -70
  1708. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.d.ts.map +0 -1
  1709. /package/dist/ts/{types/ts → ts}/Core/URI.d.ts +0 -0
  1710. /package/dist/ts/{types/ts → ts}/FileSystem/DefaultGitattributes.d.ts +0 -0
  1711. /package/dist/ts/{types/ts → ts}/FileSystem/DefaultGitignore.d.ts +0 -0
  1712. /package/dist/ts/{types/ts → ts}/FileSystem/Path.d.ts +0 -0
  1713. /package/dist/ts/{types/ts → ts}/ROCrate/Helper.d.ts +0 -0
@@ -0,0 +1,1247 @@
1
+ import { fromString } from './fable_modules/Thoth.Json.JavaScript.0.4.1/Decode.fs.js';
2
+ import { Decode_datetime } from './Json/Decode.js';
3
+ import { toText, printf, join, toFail } from '../node_modules/@fable-org/fable-library-js/String.js';
4
+ import { unwrap, map, value, bind, defaultArg } from '../node_modules/@fable-org/fable-library-js/Option.js';
5
+ import { toString as toString$1 } from './fable_modules/Thoth.Json.JavaScript.0.4.1/Encode.fs.js';
6
+ import { dateTime } from './Json/Encode.js';
7
+ import { tryParse, parse } from '../node_modules/@fable-org/fable-library-js/Int32.js';
8
+ import { toString, FSharpRef } from '../node_modules/@fable-org/fable-library-js/Types.js';
9
+ import { LDRef, LDNode } from './ROCrate/LDObject.js';
10
+ import { getEnumerator, disposeSafe, int32ToString, comparePrimitives, stringHash } from '../node_modules/@fable-org/fable-library-js/Util.js';
11
+ import { LDComment } from './ROCrate/Generic/Comment.js';
12
+ import { Comment$ } from './Core/Comment.js';
13
+ import { OntologyAnnotation } from './Core/OntologyAnnotation.js';
14
+ import { Option_fromSeq, ResizeArray_map, ResizeArray_singleton, ResizeArray_appendSingleton, Option_fromValueWithDefault, ResizeArray_append, ResizeArray_filter, ResizeArray_distinct, ResizeArray_collect, ResizeArray_choose, ResizeArray_groupBy, ResizeArray_tryFind, ResizeArray_tryPick, ResizeArray_create, ResizeArray_zip } from './Core/Helper/Collections.js';
15
+ import { LDDefinedTerm } from './ROCrate/Generic/DefinedTerm.js';
16
+ import { LDPropertyValue } from './ROCrate/Generic/PropertyValue.js';
17
+ import { DataAux_pathAndSelectorFromName, Data } from './Core/Data.js';
18
+ import { CompositeCell_FreeText, CompositeCell_Term, CompositeCell_Unitized, CompositeCell_Data } from './Core/Table/CompositeCell.js';
19
+ import { CompositeHeader_Comment, CompositeHeader_Parameter, CompositeHeader_Component, CompositeHeader_Characteristic, CompositeHeader_Factor, CompositeHeader_ProtocolREF, CompositeHeader_Input, IOType_Source, IOType_Material, IOType_Sample, IOType_Data, IOType_FreeText, CompositeHeader_ProtocolDescription, CompositeHeader_ProtocolUri, CompositeHeader_ProtocolVersion, CompositeHeader_ProtocolType, CompositeHeader_Output } from './Core/Table/CompositeHeader.js';
20
+ import { DataFile__get_AsString, DataFile_fromString_Z721C83C5 } from './Core/DataFile.js';
21
+ import { LDFile } from './ROCrate/Generic/File.js';
22
+ import { LDDataset } from './ROCrate/Generic/Dataset.js';
23
+ import { map as map$3 } from '../node_modules/@fable-org/fable-library-js/Array.js';
24
+ import { combine } from './FileSystem/Path.js';
25
+ import { DataContext__get_Explication, DataContext__get_Unit, DataContext__get_ObjectType, DataContext__get_GeneratedBy, DataContext__get_Description, DataContext__get_Label, DataContext_$ctor_Z780A8A2A } from './Core/DataContext.js';
26
+ import { LDSample } from './ROCrate/Generic/Sample.js';
27
+ import { ActivePatterns_$007CRegex$007C_$007C } from './Core/Helper/Regex.js';
28
+ import { LDLabProtocol } from './ROCrate/Generic/LabProtocol.js';
29
+ import { Unchecked_alignByHeaders, Unchecked_tryGetCellAt, getEmptyCellForHeader } from './Core/Table/ArcTableAux.js';
30
+ import { ArcTable } from './Core/Table/ArcTable.js';
31
+ import { LDPerson } from './ROCrate/Generic/Person.js';
32
+ import { toList, delay, isEmpty, filter, map as map$2, indexed, tryPick, choose as choose$1, append, empty as empty$1, singleton as singleton$1 } from '../node_modules/@fable-org/fable-library-js/Seq.js';
33
+ import { ofSeq, collect, map as map$1, singleton, empty, sortBy, choose, length } from '../node_modules/@fable-org/fable-library-js/List.js';
34
+ import { LDLabProcess } from './ROCrate/Generic/LabProcess.js';
35
+ import { List_groupBy } from '../node_modules/@fable-org/fable-library-js/Seq2.js';
36
+ import { createMissingIdentifier } from './Core/Helper/Identifier.js';
37
+ import { rangeDouble } from '../node_modules/@fable-org/fable-library-js/Range.js';
38
+ import { ArcTables } from './Core/Table/ArcTables.js';
39
+ import { DataMap_init, DataMap__get_DataContexts, DataMap_$ctor_4E3220A7 } from './Core/DataMap.js';
40
+ import { LDOrganization } from './ROCrate/Generic/Organization.js';
41
+ import { decoder, encoder } from './Json/ROCrate/LDNode.js';
42
+ import { Person } from './Core/Person.js';
43
+ import { tryGetOrcidNumber } from './Core/Helper/ORCID.js';
44
+ import { StringBuilder_$ctor, StringBuilder__Clear, StringBuilder__Append_244C7CD6 } from '../node_modules/@fable-org/fable-library-js/System.Text.js';
45
+ import { LDScholarlyArticle } from './ROCrate/Generic/ScholarlyArticle.js';
46
+ import { Publication } from './Core/Publication.js';
47
+ import { ArcAssay, ArcStudy, ArcInvestigation } from './Core/ArcTypes.js';
48
+ import { now } from '../node_modules/@fable-org/fable-library-js/Date.js';
49
+
50
+ function DateTime_tryFromString(s) {
51
+ let matchValue;
52
+ try {
53
+ return matchValue = fromString(Decode_datetime, s), matchValue.tag === /* Error */
54
+ 1 ? (() => {
55
+ let arg;
56
+ throw new Error((arg = matchValue.fields[0], toText(printf("Error decoding string: %O"))(arg)));
57
+ })() : matchValue.fields[0];
58
+ } catch (matchValue_1) {
59
+ return void 0;
60
+ }
61
+ }
62
+ function DateTime_toString(d) {
63
+ return toString$1(0, dateTime(d));
64
+ }
65
+ function ColumnIndex_tryInt(str) {
66
+ let matchValue;
67
+ let outArg = 0;
68
+ matchValue = [tryParse(str, 511, false, 32, new FSharpRef(() => outArg, (v) => {
69
+ outArg = v | 0;
70
+ })), outArg];
71
+ if (matchValue[0]) {
72
+ return matchValue[1];
73
+ } else {
74
+ return void 0;
75
+ }
76
+ }
77
+ const ColumnIndex_orderName = "columnIndex";
78
+ function ColumnIndex_tryGetIndex(node) {
79
+ const matchValue = node.TryGetPropertyAsSingleton(ColumnIndex_orderName);
80
+ let matchResult, ci;
81
+ if (matchValue != null) {
82
+ if (typeof value(matchValue) === "string") {
83
+ matchResult = 0;
84
+ ci = value(matchValue);
85
+ } else {
86
+ matchResult = 1;
87
+ }
88
+ } else {
89
+ matchResult = 1;
90
+ }
91
+ switch (matchResult) {
92
+ case 0:
93
+ return ColumnIndex_tryInt(ci);
94
+ default:
95
+ return void 0;
96
+ }
97
+ }
98
+ function ColumnIndex_setIndex(node, index) {
99
+ node.SetProperty(ColumnIndex_orderName, int32ToString(index));
100
+ }
101
+ function ARCtrl_ROCrate_LDNode__LDNode_SetColumnIndex_Z524259A4(this$, index) {
102
+ ColumnIndex_setIndex(this$, index);
103
+ }
104
+ function BaseTypes_composeComment_Z13201A7E(comment) {
105
+ let name;
106
+ const matchValue = comment.Name;
107
+ if (matchValue == null) {
108
+ throw new Error("Comment must have a name");
109
+ } else {
110
+ name = value(matchValue);
111
+ }
112
+ return LDComment.create(name, void 0, unwrap(comment.Value));
113
+ }
114
+ function BaseTypes_decomposeComment_Z2F770004(comment, context) {
115
+ return new Comment$(LDComment.getNameAsString(comment, unwrap(context)), unwrap(LDComment.tryGetTextAsString(comment, unwrap(context))));
116
+ }
117
+ function BaseTypes_ontologyTermFromNameAndID_40457300(name, id) {
118
+ if (id == null) {
119
+ return OntologyAnnotation.create(unwrap(name));
120
+ } else {
121
+ const t = value(id);
122
+ return OntologyAnnotation.fromTermAnnotation(t, unwrap(name));
123
+ }
124
+ }
125
+ function BaseTypes_tryOntologyTermFromNameAndID_40457300(name, id) {
126
+ if (name == null && id == null) {
127
+ return void 0;
128
+ } else {
129
+ return BaseTypes_ontologyTermFromNameAndID_40457300(unwrap(name), unwrap(id));
130
+ }
131
+ }
132
+ function BaseTypes_composeDefinedTerm_ZDED3A0F(term) {
133
+ const tan = Option_fromValueWithDefault("", term.TermAccessionAndOntobeeUrlIfShort);
134
+ return LDDefinedTerm.create(term.NameText, void 0, unwrap(tan));
135
+ }
136
+ function BaseTypes_decomposeDefinedTerm_Z2F770004(term, context) {
137
+ return BaseTypes_ontologyTermFromNameAndID_40457300(LDDefinedTerm.getNameAsString(term, unwrap(context)), unwrap(LDDefinedTerm.tryGetTermCodeAsString(term, unwrap(context))));
138
+ }
139
+ function BaseTypes_composePropertyValueFromOA_ZDED3A0F(term) {
140
+ const tan = Option_fromValueWithDefault("", term.TermAccessionAndOntobeeUrlIfShort);
141
+ return LDPropertyValue.create(term.NameText, void 0, void 0, unwrap(tan));
142
+ }
143
+ function BaseTypes_decomposePropertyValueToOA_Z2F770004(term, context) {
144
+ return BaseTypes_ontologyTermFromNameAndID_40457300(LDPropertyValue.getNameAsString(term, unwrap(context)), unwrap(LDPropertyValue.tryGetPropertyIDAsString(term, unwrap(context))));
145
+ }
146
+ function BaseTypes_valuesOfCell_Z436420FE(value) {
147
+ let term, term_1;
148
+ switch (value.tag) {
149
+ case /* Term */
150
+ 0:
151
+ if (term = value.fields[0], term.isEmpty()) {
152
+ value.fields[0];
153
+ return [void 0, void 0, void 0, void 0];
154
+ } else if (term_1 = value.fields[0], term_1.TANInfo != null) {
155
+ const term_3 = value.fields[0];
156
+ return [term_3.Name, term_3.TermAccessionAndOntobeeUrlIfShort, void 0, void 0];
157
+ } else {
158
+ const term_4 = value.fields[0];
159
+ return [term_4.Name, void 0, void 0, void 0];
160
+ }
161
+ case /* Unitized */
162
+ 2: {
163
+ const text_1 = value.fields[0];
164
+ const unit = value.fields[1];
165
+ const patternInput = unit.isEmpty() ? [void 0, void 0] : [unit.Name, Option_fromValueWithDefault("", unit.TermAccessionAndOntobeeUrlIfShort)];
166
+ return [Option_fromValueWithDefault("", text_1), void 0, patternInput[0], patternInput[1]];
167
+ }
168
+ case /* Data */
169
+ 3: {
170
+ value.fields[0];
171
+ throw new Error("Data cell should not be parsed to isa value");
172
+ }
173
+ default:
174
+ if (value.fields[0] === "") {
175
+ return [void 0, void 0, void 0, void 0];
176
+ } else {
177
+ const text = value.fields[0];
178
+ return [text, void 0, void 0, void 0];
179
+ }
180
+ }
181
+ }
182
+ function BaseTypes_termOfHeader_6CAF647B(header) {
183
+ let matchResult, oa;
184
+ switch (header.tag) {
185
+ case /* Component */
186
+ 0: {
187
+ matchResult = 0;
188
+ oa = header.fields[0];
189
+ break;
190
+ }
191
+ case /* Parameter */
192
+ 3: {
193
+ matchResult = 0;
194
+ oa = header.fields[0];
195
+ break;
196
+ }
197
+ case /* Factor */
198
+ 2: {
199
+ matchResult = 0;
200
+ oa = header.fields[0];
201
+ break;
202
+ }
203
+ case /* Characteristic */
204
+ 1: {
205
+ matchResult = 0;
206
+ oa = header.fields[0];
207
+ break;
208
+ }
209
+ default:
210
+ matchResult = 1;
211
+ }
212
+ switch (matchResult) {
213
+ case 0:
214
+ return [oa.NameText, oa.TANInfo != null ? oa.TermAccessionAndOntobeeUrlIfShort : void 0];
215
+ default:
216
+ return toFail(printf("header %O should not be parsed to isa value"))(header);
217
+ }
218
+ }
219
+ function BaseTypes_composeComponent(header, value) {
220
+ const patternInput = BaseTypes_valuesOfCell_Z436420FE(value);
221
+ const patternInput_1 = BaseTypes_termOfHeader_6CAF647B(header);
222
+ return LDPropertyValue.createComponent(patternInput_1[0], unwrap(patternInput[0]), void 0, unwrap(patternInput_1[1]), unwrap(patternInput[3]), unwrap(patternInput[2]), unwrap(patternInput[1]));
223
+ }
224
+ function BaseTypes_composeParameterValue(header, value) {
225
+ const patternInput = BaseTypes_valuesOfCell_Z436420FE(value);
226
+ const patternInput_1 = BaseTypes_termOfHeader_6CAF647B(header);
227
+ return LDPropertyValue.createParameterValue(patternInput_1[0], unwrap(patternInput[0]), void 0, unwrap(patternInput_1[1]), unwrap(patternInput[3]), unwrap(patternInput[2]), unwrap(patternInput[1]));
228
+ }
229
+ function BaseTypes_composeFactorValue(header, value) {
230
+ const patternInput = BaseTypes_valuesOfCell_Z436420FE(value);
231
+ const patternInput_1 = BaseTypes_termOfHeader_6CAF647B(header);
232
+ return LDPropertyValue.createFactorValue(patternInput_1[0], unwrap(patternInput[0]), void 0, unwrap(patternInput_1[1]), unwrap(patternInput[3]), unwrap(patternInput[2]), unwrap(patternInput[1]));
233
+ }
234
+ function BaseTypes_composeCharacteristicValue(header, value) {
235
+ const patternInput = BaseTypes_valuesOfCell_Z436420FE(value);
236
+ const patternInput_1 = BaseTypes_termOfHeader_6CAF647B(header);
237
+ return LDPropertyValue.createCharacteristicValue(patternInput_1[0], unwrap(patternInput[0]), void 0, unwrap(patternInput_1[1]), unwrap(patternInput[3]), unwrap(patternInput[2]), unwrap(patternInput[1]));
238
+ }
239
+ function BaseTypes_composeFreetextMaterialName(headerFT, name) {
240
+ return `${headerFT}=${name}`;
241
+ }
242
+ function BaseTypes_composeFile_6CE21C7D(d, fs) {
243
+ const createFile = () => {
244
+ const dataType = map(DataFile__get_AsString, d.DataType);
245
+ return LDFile.create(d.NameText, d.NameText, void 0, unwrap(dataType), unwrap(d.Format), unwrap(d.SelectorFormat));
246
+ };
247
+ if (fs == null) {
248
+ return createFile();
249
+ } else {
250
+ const fs_1 = value(fs);
251
+ const matchValue = fs_1.Tree.TryGetPath(d.NameText);
252
+ if (matchValue != null) {
253
+ if (value(matchValue).tag === /* Folder */
254
+ 1) {
255
+ const fs_2 = value(matchValue);
256
+ const file = createFile();
257
+ file.SchemaType = [LDFile.schemaType, LDDataset.schemaType];
258
+ let subFiles;
259
+ const collection = map$3((fp) => {
260
+ const fullPath = combine(d.NameText, fp);
261
+ return LDFile.create(fullPath, fullPath);
262
+ }, fs_2.ToFilePaths(true));
263
+ subFiles = Array.from(collection);
264
+ LDDataset.setHasParts(file, subFiles);
265
+ return file;
266
+ } else {
267
+ return createFile();
268
+ }
269
+ } else {
270
+ return createFile();
271
+ }
272
+ }
273
+ }
274
+ function BaseTypes_decomposeFile_Z2F770004(f, context) {
275
+ const dataType = map(DataFile_fromString_Z721C83C5, LDFile.tryGetDisambiguatingDescriptionAsString(f, unwrap(context)));
276
+ const format = LDFile.tryGetEncodingFormatAsString(f, unwrap(context));
277
+ const selectorFormat = LDFile.tryGetUsageInfoAsString(f, unwrap(context));
278
+ return new Data(void 0, LDFile.getNameAsString(f, unwrap(context)), unwrap(dataType), unwrap(format), unwrap(selectorFormat));
279
+ }
280
+ function BaseTypes_composeFragmentDescriptor_Z4C0BEF62(dc) {
281
+ if (dc.Name == null) {
282
+ throw new Error("RO-Crate parsing of DataContext failed: Cannot create a fragment descriptor without a name.");
283
+ }
284
+ const id = LDPropertyValue.genIdFragmentDescriptor(dc.NameText);
285
+ const patternInput = defaultArg(map((e) => [e.Name, Option_fromValueWithDefault("", e.TermAccessionAndOntobeeUrlIfShort)], DataContext__get_Explication(dc)), [void 0, void 0]);
286
+ const patternInput_1 = defaultArg(map((u) => [u.Name, Option_fromValueWithDefault("", u.TermAccessionAndOntobeeUrlIfShort)], DataContext__get_Unit(dc)), [void 0, void 0]);
287
+ const disambiguatingDescriptions = Option_fromSeq(ResizeArray_map(toString, dc.Comments));
288
+ const dataFragment = BaseTypes_composeFile_6CE21C7D(dc);
289
+ const pattern = map(BaseTypes_composeDefinedTerm_ZDED3A0F, DataContext__get_ObjectType(dc));
290
+ dataFragment.SetProperty(LDFile.about, new LDRef(id));
291
+ dataFragment.SetOptionalProperty(LDFile.pattern, pattern);
292
+ return LDPropertyValue.createFragmentDescriptor(dc.NameText, unwrap(patternInput[0]), void 0, unwrap(patternInput_1[1]), unwrap(patternInput_1[0]), unwrap(patternInput[1]), unwrap(DataContext__get_GeneratedBy(dc)), unwrap(DataContext__get_Description(dc)), unwrap(DataContext__get_Label(dc)), unwrap(disambiguatingDescriptions), dataFragment);
293
+ }
294
+ function BaseTypes_decomposeFragmentDescriptor_Z6839B9E8(fd, graph, context) {
295
+ const file = LDPropertyValue.tryGetSubjectOf(fd, unwrap(graph), unwrap(context));
296
+ let name;
297
+ if (file == null) {
298
+ throw new Error("RO-Crate parsing of DataContext failed: Cannot decompose a fragment descriptor without a name.");
299
+ } else {
300
+ const f = value(file);
301
+ name = LDFile.getNameAsString(f, unwrap(context));
302
+ }
303
+ const objectType = map((pa) => BaseTypes_decomposeDefinedTerm_Z2F770004(pa, unwrap(context)), bind((f_1) => LDFile.tryGetPatternAsDefinedTerm(f_1, unwrap(graph), unwrap(context)), file));
304
+ const format = bind((f_2) => LDFile.tryGetEncodingFormatAsString(f_2, unwrap(context)), file);
305
+ const selectorFormat = bind((f_3) => LDFile.tryGetUsageInfoAsString(f_3, unwrap(context)), file);
306
+ const explication = BaseTypes_tryOntologyTermFromNameAndID_40457300(unwrap(LDPropertyValue.tryGetValueAsString(fd)), unwrap(LDPropertyValue.tryGetValueReferenceAsString(fd)));
307
+ const unit = BaseTypes_tryOntologyTermFromNameAndID_40457300(unwrap(LDPropertyValue.tryGetUnitTextAsString(fd)), unwrap(LDPropertyValue.tryGetUnitCodeAsString(fd)));
308
+ const generatedBy = LDPropertyValue.tryGetMeasurementMethodAsString(fd);
309
+ const description = LDPropertyValue.tryGetDescriptionAsString(fd);
310
+ return DataContext_$ctor_Z780A8A2A(void 0, name, void 0, unwrap(format), unwrap(selectorFormat), unwrap(explication), unwrap(unit), unwrap(objectType), unwrap(LDPropertyValue.tryGetAlternateNameAsString(fd)), unwrap(description), unwrap(generatedBy), ResizeArray_map((s) => Comment$.fromString(s), LDPropertyValue.getDisambiguatingDescriptionsAsString(fd)));
311
+ }
312
+ function BaseTypes_composeProcessInput(header, value, fs) {
313
+ if (header.tag === /* Input */
314
+ 11) {
315
+ switch (header.fields[0].tag) {
316
+ case /* Sample */
317
+ 1:
318
+ return LDSample.createSample(value.AsFreeText);
319
+ case /* Material */
320
+ 3:
321
+ return LDSample.createMaterial(value.AsFreeText);
322
+ case /* Data */
323
+ 2:
324
+ switch (value.tag) {
325
+ case /* FreeText */
326
+ 1: {
327
+ const ft = value.fields[0];
328
+ return LDFile.create(ft, ft);
329
+ }
330
+ case /* Data */
331
+ 3:
332
+ return BaseTypes_composeFile_6CE21C7D(value.fields[0], unwrap(fs));
333
+ default:
334
+ return toFail(printf("Could not parse input data %O"))(value);
335
+ }
336
+ case /* FreeText */
337
+ 4: {
338
+ const ft_1 = header.fields[0].fields[0];
339
+ const n = new LDNode(BaseTypes_composeFreetextMaterialName(ft_1, value.AsFreeText), [ft_1]);
340
+ n.SetProperty(LDSample.name, value.AsFreeText);
341
+ return n;
342
+ }
343
+ default:
344
+ return LDSample.createSource(value.AsFreeText);
345
+ }
346
+ } else {
347
+ return toFail(printf("Could not parse input header %O"))(header);
348
+ }
349
+ }
350
+ function BaseTypes_composeProcessOutput(header, value, fs) {
351
+ let matchResult, ft_1;
352
+ if (header.tag === /* Output */
353
+ 12) {
354
+ switch (header.fields[0].tag) {
355
+ case /* Material */
356
+ 3: {
357
+ matchResult = 1;
358
+ break;
359
+ }
360
+ case /* Data */
361
+ 2: {
362
+ matchResult = 2;
363
+ break;
364
+ }
365
+ case /* FreeText */
366
+ 4: {
367
+ matchResult = 3;
368
+ ft_1 = header.fields[0].fields[0];
369
+ break;
370
+ }
371
+ default:
372
+ matchResult = 0;
373
+ }
374
+ } else {
375
+ matchResult = 4;
376
+ }
377
+ switch (matchResult) {
378
+ case 0:
379
+ return LDSample.createSample(value.AsFreeText);
380
+ case 1:
381
+ return LDSample.createMaterial(value.AsFreeText);
382
+ case 2:
383
+ switch (value.tag) {
384
+ case /* FreeText */
385
+ 1: {
386
+ const ft = value.fields[0];
387
+ return LDFile.create(ft, ft);
388
+ }
389
+ case /* Data */
390
+ 3:
391
+ return BaseTypes_composeFile_6CE21C7D(value.fields[0], unwrap(fs));
392
+ default:
393
+ return toFail(printf("Could not parse output data %O"))(value);
394
+ }
395
+ case 3: {
396
+ const n = new LDNode(BaseTypes_composeFreetextMaterialName(ft_1, value.AsFreeText), [ft_1]);
397
+ n.SetProperty(LDSample.name, value.AsFreeText);
398
+ return n;
399
+ }
400
+ default:
401
+ return toFail(printf("Could not parse output header %O"))(header);
402
+ }
403
+ }
404
+ function BaseTypes_headerOntologyOfPropertyValue_Z2F770004(pv, context) {
405
+ const n = LDPropertyValue.getNameAsString(pv, unwrap(context));
406
+ const matchValue = LDPropertyValue.tryGetPropertyIDAsString(pv, unwrap(context));
407
+ if (matchValue == null) {
408
+ return new OntologyAnnotation(n);
409
+ } else {
410
+ const nRef = value(matchValue);
411
+ return OntologyAnnotation.fromTermAnnotation(nRef, n);
412
+ }
413
+ }
414
+ function BaseTypes_cellOfPropertyValue_Z2F770004(pv, context) {
415
+ const v = LDPropertyValue.tryGetValueAsString(pv, unwrap(context));
416
+ const vRef = LDPropertyValue.tryGetValueReferenceAsString(pv, unwrap(context));
417
+ const u = LDPropertyValue.tryGetUnitTextAsString(pv, unwrap(context));
418
+ const uRef = LDPropertyValue.tryGetUnitCodeAsString(pv, unwrap(context));
419
+ let matchResult, vr, u_1, uRef_1;
420
+ if (vRef == null) {
421
+ if (u == null) {
422
+ if (uRef == null) {
423
+ matchResult = 3;
424
+ } else {
425
+ matchResult = 2;
426
+ uRef_1 = value(uRef);
427
+ }
428
+ } else if (uRef != null) {
429
+ matchResult = 2;
430
+ uRef_1 = value(uRef);
431
+ } else {
432
+ matchResult = 1;
433
+ u_1 = value(u);
434
+ }
435
+ } else if (u == null) {
436
+ if (uRef == null) {
437
+ matchResult = 0;
438
+ vr = value(vRef);
439
+ } else {
440
+ matchResult = 4;
441
+ }
442
+ } else {
443
+ matchResult = 4;
444
+ }
445
+ switch (matchResult) {
446
+ case 0:
447
+ return CompositeCell_Term(OntologyAnnotation.fromTermAnnotation(vr, unwrap(v)));
448
+ case 1:
449
+ return CompositeCell_Unitized(defaultArg(v, ""), new OntologyAnnotation(u_1));
450
+ case 2:
451
+ return CompositeCell_Unitized(defaultArg(v, ""), OntologyAnnotation.fromTermAnnotation(uRef_1, unwrap(u)));
452
+ case 3:
453
+ return CompositeCell_Term(new OntologyAnnotation(unwrap(v)));
454
+ default: {
455
+ const arg = defaultArg(v, "");
456
+ return toFail(printf("Could not parse value %s with unit %O and unit reference %O"))(arg)(u)(uRef);
457
+ }
458
+ }
459
+ }
460
+ function BaseTypes_decomposeComponent_Z2F770004(c, context) {
461
+ return [CompositeHeader_Component(BaseTypes_headerOntologyOfPropertyValue_Z2F770004(c, unwrap(context))), BaseTypes_cellOfPropertyValue_Z2F770004(c, unwrap(context))];
462
+ }
463
+ function BaseTypes_decomposeParameterValue_Z2F770004(c, context) {
464
+ return [CompositeHeader_Parameter(BaseTypes_headerOntologyOfPropertyValue_Z2F770004(c, unwrap(context))), BaseTypes_cellOfPropertyValue_Z2F770004(c, unwrap(context))];
465
+ }
466
+ function BaseTypes_decomposeFactorValue_Z2F770004(c, context) {
467
+ return [CompositeHeader_Factor(BaseTypes_headerOntologyOfPropertyValue_Z2F770004(c, unwrap(context))), BaseTypes_cellOfPropertyValue_Z2F770004(c, unwrap(context))];
468
+ }
469
+ function BaseTypes_decomposeCharacteristicValue_Z2F770004(c, context) {
470
+ return [CompositeHeader_Characteristic(BaseTypes_headerOntologyOfPropertyValue_Z2F770004(c, unwrap(context))), BaseTypes_cellOfPropertyValue_Z2F770004(c, unwrap(context))];
471
+ }
472
+ function BaseTypes_decomposeProcessInput_Z2F770004(pn, context) {
473
+ if (LDSample.validateSource(pn, unwrap(context))) {
474
+ return [CompositeHeader_Input(IOType_Source()), CompositeCell_FreeText(LDSample.getNameAsString(pn, unwrap(context)))];
475
+ } else if (LDSample.validateMaterial(pn, unwrap(context))) {
476
+ return [CompositeHeader_Input(IOType_Material()), CompositeCell_FreeText(LDSample.getNameAsString(pn, unwrap(context)))];
477
+ } else if (LDSample.validate(pn, unwrap(context))) {
478
+ return [CompositeHeader_Input(IOType_Sample()), CompositeCell_FreeText(LDSample.getNameAsString(pn, unwrap(context)))];
479
+ } else if (LDFile.validate(pn, unwrap(context))) {
480
+ return [CompositeHeader_Input(IOType_Data()), CompositeCell_Data(BaseTypes_decomposeFile_Z2F770004(pn, unwrap(context)))];
481
+ } else {
482
+ const n = pn;
483
+ return [CompositeHeader_Input(IOType_FreeText(n.SchemaType[0])), CompositeCell_FreeText(LDSample.getNameAsString(n, unwrap(context)))];
484
+ }
485
+ }
486
+ function BaseTypes_decomposeProcessOutput_Z2F770004(pn, context) {
487
+ if (LDSample.validateMaterial(pn, unwrap(context))) {
488
+ return [CompositeHeader_Output(IOType_Material()), CompositeCell_FreeText(LDSample.getNameAsString(pn, unwrap(context)))];
489
+ } else if (LDSample.validate(pn, unwrap(context))) {
490
+ return [CompositeHeader_Output(IOType_Sample()), CompositeCell_FreeText(LDSample.getNameAsString(pn, unwrap(context)))];
491
+ } else if (LDFile.validate(pn, unwrap(context))) {
492
+ return [CompositeHeader_Output(IOType_Data()), CompositeCell_Data(BaseTypes_decomposeFile_Z2F770004(pn, unwrap(context)))];
493
+ } else {
494
+ const n = pn;
495
+ return [CompositeHeader_Output(IOType_FreeText(n.SchemaType[0])), CompositeCell_FreeText(LDSample.getNameAsString(n, unwrap(context)))];
496
+ }
497
+ }
498
+ function ProcessConversion_tryGetProtocolType_Z6839B9E8(pv, graph, context) {
499
+ const matchValue = LDLabProtocol.tryGetIntendedUseAsDefinedTerm(pv, unwrap(graph), unwrap(context));
500
+ if (matchValue == null) {
501
+ const matchValue_1 = LDLabProtocol.tryGetIntendedUseAsString(pv, unwrap(context));
502
+ if (matchValue_1 == null) {
503
+ return void 0;
504
+ } else {
505
+ const s = value(matchValue_1);
506
+ return OntologyAnnotation.create(s);
507
+ }
508
+ } else {
509
+ return BaseTypes_decomposeDefinedTerm_Z2F770004(value(matchValue), unwrap(context));
510
+ }
511
+ }
512
+ function ProcessConversion_composeProcessName(processNameRoot, i) {
513
+ return `${processNameRoot}_${i}`;
514
+ }
515
+ function ProcessConversion_decomposeProcessName_Z721C83C5(name) {
516
+ const activePatternResult = ActivePatterns_$007CRegex$007C_$007C("(?<name>.+)_(?<num>\\d+)", name);
517
+ if (activePatternResult != null) {
518
+ const r = value(activePatternResult);
519
+ return [r.groups && r.groups.name || "", parse(r.groups && r.groups.num || "", 511, false, 32)];
520
+ } else {
521
+ return [name, void 0];
522
+ }
523
+ }
524
+ function ProcessConversion_tryComponentGetter(generalI, valueI, valueHeader) {
525
+ if (valueHeader.tag === /* Component */
526
+ 0) {
527
+ valueHeader.fields[0];
528
+ return (table) => (i) => {
529
+ let matchValue;
530
+ const c = BaseTypes_composeComponent(valueHeader, (matchValue = Unchecked_tryGetCellAt(generalI, i, table.Values), matchValue == null ? getEmptyCellForHeader(valueHeader, void 0) : value(matchValue)));
531
+ ARCtrl_ROCrate_LDNode__LDNode_SetColumnIndex_Z524259A4(c, valueI);
532
+ return c;
533
+ };
534
+ } else {
535
+ return void 0;
536
+ }
537
+ }
538
+ function ProcessConversion_tryParameterGetter(generalI, valueI, valueHeader) {
539
+ if (valueHeader.tag === /* Parameter */
540
+ 3) {
541
+ valueHeader.fields[0];
542
+ return (table) => (i) => {
543
+ let matchValue;
544
+ const p = BaseTypes_composeParameterValue(valueHeader, (matchValue = Unchecked_tryGetCellAt(generalI, i, table.Values), matchValue == null ? getEmptyCellForHeader(valueHeader, void 0) : value(matchValue)));
545
+ ARCtrl_ROCrate_LDNode__LDNode_SetColumnIndex_Z524259A4(p, valueI);
546
+ return p;
547
+ };
548
+ } else {
549
+ return void 0;
550
+ }
551
+ }
552
+ function ProcessConversion_tryFactorGetter(generalI, valueI, valueHeader) {
553
+ if (valueHeader.tag === /* Factor */
554
+ 2) {
555
+ valueHeader.fields[0];
556
+ return (table) => (i) => {
557
+ let matchValue;
558
+ const f = BaseTypes_composeFactorValue(valueHeader, (matchValue = Unchecked_tryGetCellAt(generalI, i, table.Values), matchValue == null ? getEmptyCellForHeader(valueHeader, void 0) : value(matchValue)));
559
+ ARCtrl_ROCrate_LDNode__LDNode_SetColumnIndex_Z524259A4(f, valueI);
560
+ return f;
561
+ };
562
+ } else {
563
+ return void 0;
564
+ }
565
+ }
566
+ function ProcessConversion_tryCharacteristicGetter(generalI, valueI, valueHeader) {
567
+ if (valueHeader.tag === /* Characteristic */
568
+ 1) {
569
+ valueHeader.fields[0];
570
+ return (table) => (i) => {
571
+ let matchValue;
572
+ const c = BaseTypes_composeCharacteristicValue(valueHeader, (matchValue = Unchecked_tryGetCellAt(generalI, i, table.Values), matchValue == null ? getEmptyCellForHeader(valueHeader, void 0) : value(matchValue)));
573
+ ARCtrl_ROCrate_LDNode__LDNode_SetColumnIndex_Z524259A4(c, valueI);
574
+ return c;
575
+ };
576
+ } else {
577
+ return void 0;
578
+ }
579
+ }
580
+ function ProcessConversion_tryGetProtocolTypeGetter(generalI, header) {
581
+ if (header.tag === /* ProtocolType */
582
+ 4) {
583
+ return (table) => (i) => {
584
+ let matchValue, cell;
585
+ return BaseTypes_composeDefinedTerm_ZDED3A0F((matchValue = Unchecked_tryGetCellAt(generalI, i, table.Values), matchValue == null ? new OntologyAnnotation() : (cell = value(matchValue), cell.AsTerm)));
586
+ };
587
+ } else {
588
+ return void 0;
589
+ }
590
+ }
591
+ function ProcessConversion_tryGetProtocolREFGetter(generalI, header) {
592
+ if (header.tag === /* ProtocolREF */
593
+ 8) {
594
+ return (table) => (i) => {
595
+ const matchValue = Unchecked_tryGetCellAt(generalI, i, table.Values);
596
+ if (matchValue == null) {
597
+ return "";
598
+ } else {
599
+ const cell = value(matchValue);
600
+ return cell.AsFreeText;
601
+ }
602
+ };
603
+ } else {
604
+ return void 0;
605
+ }
606
+ }
607
+ function ProcessConversion_tryGetProtocolDescriptionGetter(generalI, header) {
608
+ if (header.tag === /* ProtocolDescription */
609
+ 5) {
610
+ return (table) => (i) => {
611
+ const matchValue = Unchecked_tryGetCellAt(generalI, i, table.Values);
612
+ if (matchValue == null) {
613
+ return "";
614
+ } else {
615
+ const cell = value(matchValue);
616
+ return cell.AsFreeText;
617
+ }
618
+ };
619
+ } else {
620
+ return void 0;
621
+ }
622
+ }
623
+ function ProcessConversion_tryGetProtocolURIGetter(generalI, header) {
624
+ if (header.tag === /* ProtocolUri */
625
+ 6) {
626
+ return (table) => (i) => {
627
+ const matchValue = Unchecked_tryGetCellAt(generalI, i, table.Values);
628
+ if (matchValue == null) {
629
+ return "";
630
+ } else {
631
+ const cell = value(matchValue);
632
+ return cell.AsFreeText;
633
+ }
634
+ };
635
+ } else {
636
+ return void 0;
637
+ }
638
+ }
639
+ function ProcessConversion_tryGetProtocolVersionGetter(generalI, header) {
640
+ if (header.tag === /* ProtocolVersion */
641
+ 7) {
642
+ return (table) => (i) => {
643
+ const matchValue = Unchecked_tryGetCellAt(generalI, i, table.Values);
644
+ if (matchValue == null) {
645
+ return "";
646
+ } else {
647
+ const cell = value(matchValue);
648
+ return cell.AsFreeText;
649
+ }
650
+ };
651
+ } else {
652
+ return void 0;
653
+ }
654
+ }
655
+ function ProcessConversion_tryGetInputGetter(generalI, header, fs) {
656
+ if (header.tag === /* Input */
657
+ 11) {
658
+ header.fields[0];
659
+ return (table) => (i) => {
660
+ let matchValue;
661
+ return BaseTypes_composeProcessInput(header, (matchValue = Unchecked_tryGetCellAt(generalI, i, table.Values), matchValue == null ? getEmptyCellForHeader(header, void 0) : value(matchValue)), fs);
662
+ };
663
+ } else {
664
+ return void 0;
665
+ }
666
+ }
667
+ function ProcessConversion_tryGetOutputGetter(generalI, header, fs) {
668
+ if (header.tag === /* Output */
669
+ 12) {
670
+ header.fields[0];
671
+ return (table) => (i) => {
672
+ let matchValue;
673
+ return BaseTypes_composeProcessOutput(header, (matchValue = Unchecked_tryGetCellAt(generalI, i, table.Values), matchValue == null ? getEmptyCellForHeader(header, void 0) : value(matchValue)), fs);
674
+ };
675
+ } else {
676
+ return void 0;
677
+ }
678
+ }
679
+ function ProcessConversion_tryGetCommentGetter(generalI, header) {
680
+ if (header.tag === /* Comment */
681
+ 14) {
682
+ const c = header.fields[0];
683
+ return (table) => (i) => {
684
+ let matchValue, cell;
685
+ return toString((matchValue = Unchecked_tryGetCellAt(generalI, i, table.Values), matchValue == null ? new Comment$(c) : (cell = value(matchValue), new Comment$(c, cell.AsFreeText))));
686
+ };
687
+ } else {
688
+ return void 0;
689
+ }
690
+ }
691
+ function ProcessConversion_tryGetPerformerGetter(generalI, header) {
692
+ if (header.tag === /* Performer */
693
+ 9) {
694
+ return (table) => (i) => {
695
+ let performer;
696
+ const matchValue = Unchecked_tryGetCellAt(generalI, i, table.Values);
697
+ if (matchValue == null) {
698
+ performer = "";
699
+ } else {
700
+ const cell = value(matchValue);
701
+ performer = cell.AsFreeText;
702
+ }
703
+ return LDPerson.create(performer);
704
+ };
705
+ } else {
706
+ return void 0;
707
+ }
708
+ }
709
+ function ProcessConversion_getProcessGetter(assayName, studyName, processNameRoot, headers, fs) {
710
+ const headers_1 = indexed(headers);
711
+ const valueHeaders = toList(indexed(filter((arg) => arg[1].IsCvParamColumn, headers_1)));
712
+ const charGetters = choose((tupledArg) => {
713
+ const _arg = tupledArg[1];
714
+ return ProcessConversion_tryCharacteristicGetter(_arg[0], tupledArg[0], _arg[1]);
715
+ }, valueHeaders);
716
+ const factorValueGetters = choose((tupledArg_1) => {
717
+ const _arg_1 = tupledArg_1[1];
718
+ return ProcessConversion_tryFactorGetter(_arg_1[0], tupledArg_1[0], _arg_1[1]);
719
+ }, valueHeaders);
720
+ const parameterValueGetters = choose((tupledArg_2) => {
721
+ const _arg_2 = tupledArg_2[1];
722
+ return ProcessConversion_tryParameterGetter(_arg_2[0], tupledArg_2[0], _arg_2[1]);
723
+ }, valueHeaders);
724
+ const componentGetters = choose((tupledArg_3) => {
725
+ const _arg_3 = tupledArg_3[1];
726
+ return ProcessConversion_tryComponentGetter(_arg_3[0], tupledArg_3[0], _arg_3[1]);
727
+ }, valueHeaders);
728
+ const protocolTypeGetter = tryPick((tupledArg_4) => ProcessConversion_tryGetProtocolTypeGetter(tupledArg_4[0], tupledArg_4[1]), headers_1);
729
+ const protocolREFGetter = tryPick((tupledArg_5) => ProcessConversion_tryGetProtocolREFGetter(tupledArg_5[0], tupledArg_5[1]), headers_1);
730
+ const protocolDescriptionGetter = tryPick((tupledArg_6) => ProcessConversion_tryGetProtocolDescriptionGetter(tupledArg_6[0], tupledArg_6[1]), headers_1);
731
+ const protocolURIGetter = tryPick((tupledArg_7) => ProcessConversion_tryGetProtocolURIGetter(tupledArg_7[0], tupledArg_7[1]), headers_1);
732
+ const protocolVersionGetter = tryPick((tupledArg_8) => ProcessConversion_tryGetProtocolVersionGetter(tupledArg_8[0], tupledArg_8[1]), headers_1);
733
+ const performerGetter = tryPick((tupledArg_9) => ProcessConversion_tryGetPerformerGetter(tupledArg_9[0], tupledArg_9[1]), headers_1);
734
+ const commentGetters = toList(choose$1((tupledArg_10) => ProcessConversion_tryGetCommentGetter(tupledArg_10[0], tupledArg_10[1]), headers_1));
735
+ let inputGetter_1;
736
+ const matchValue = tryPick((tupledArg_11) => ProcessConversion_tryGetInputGetter(tupledArg_11[0], tupledArg_11[1], fs), headers_1);
737
+ if (matchValue == null) {
738
+ inputGetter_1 = length(charGetters) !== 0 ? (table_1) => (i_1) => {
739
+ let chars_1;
740
+ const collection_1 = map$2((f_1) => f_1(table_1)(i_1), charGetters);
741
+ chars_1 = Array.from(collection_1);
742
+ return ResizeArray_singleton(LDSample.createSample(`${processNameRoot}_Input_${i_1}`, void 0, chars_1));
743
+ } : (table_2) => (i_2) => [];
744
+ } else {
745
+ const inputGetter = value(matchValue);
746
+ inputGetter_1 = (table) => (i) => {
747
+ let chars;
748
+ const collection = map$2((f) => f(table)(i), charGetters);
749
+ chars = Array.from(collection);
750
+ const input = inputGetter(table)(i);
751
+ if (chars.length > 0) {
752
+ LDSample.setAdditionalProperties(input, chars);
753
+ }
754
+ return ResizeArray_singleton(input);
755
+ };
756
+ }
757
+ let outputGetter_1;
758
+ const matchValue_1 = tryPick((tupledArg_12) => ProcessConversion_tryGetOutputGetter(tupledArg_12[0], tupledArg_12[1], fs), headers_1);
759
+ if (matchValue_1 == null) {
760
+ outputGetter_1 = length(factorValueGetters) !== 0 ? (table_4) => (i_4) => {
761
+ let factors_1;
762
+ const collection_3 = map$2((f_3) => f_3(table_4)(i_4), factorValueGetters);
763
+ factors_1 = Array.from(collection_3);
764
+ return ResizeArray_singleton(LDSample.createSample(`${processNameRoot}_Output_${i_4}`, void 0, factors_1));
765
+ } : (table_5) => (i_5) => [];
766
+ } else {
767
+ const outputGetter = value(matchValue_1);
768
+ outputGetter_1 = (table_3) => (i_3) => {
769
+ let factors;
770
+ const collection_2 = map$2((f_2) => f_2(table_3)(i_3), factorValueGetters);
771
+ factors = Array.from(collection_2);
772
+ const output = outputGetter(table_3)(i_3);
773
+ if (factors.length > 0) {
774
+ LDSample.setAdditionalProperties(output, factors);
775
+ }
776
+ return ResizeArray_singleton(output);
777
+ };
778
+ }
779
+ return (table_6) => (i_6) => {
780
+ const pn = table_6.RowCount === 1 ? processNameRoot : ProcessConversion_composeProcessName(processNameRoot, i_6);
781
+ const paramvalues = map((collection_4) => Array.from(collection_4), Option_fromValueWithDefault(empty(), map$1((f_4) => f_4(table_6)(i_6), parameterValueGetters)));
782
+ const comments = map((collection_5) => Array.from(collection_5), Option_fromValueWithDefault(empty(), map$1((f_5) => f_5(table_6)(i_6), commentGetters)));
783
+ const components = map((collection_6) => Array.from(collection_6), Option_fromValueWithDefault(empty(), map$1((f_6) => f_6(table_6)(i_6), componentGetters)));
784
+ const id = LDLabProcess.genId(processNameRoot, unwrap(assayName), unwrap(studyName)) + `_${i_6}`;
785
+ let protocol;
786
+ const name = map((f_7) => f_7(table_6)(i_6), protocolREFGetter);
787
+ const protocolId = LDLabProtocol.genId(unwrap(name), processNameRoot);
788
+ protocol = LDLabProtocol.create(protocolId, unwrap(name), unwrap(map((f_8) => f_8(table_6)(i_6), protocolDescriptionGetter)), unwrap(map((f_9) => f_9(table_6)(i_6), protocolTypeGetter)), void 0, void 0, unwrap(components), void 0, unwrap(map((f_10) => f_10(table_6)(i_6), protocolURIGetter)), unwrap(map((f_11) => f_11(table_6)(i_6), protocolVersionGetter)));
789
+ const matchValue_2 = inputGetter_1(table_6)(i_6);
790
+ const matchValue_3 = outputGetter_1(table_6)(i_6);
791
+ const agent = map((f_12) => f_12(table_6)(i_6), performerGetter);
792
+ return LDLabProcess.create(pn, matchValue_2, matchValue_3, id, unwrap(agent), unwrap(protocol), unwrap(paramvalues), void 0, unwrap(comments));
793
+ };
794
+ }
795
+ function ProcessConversion_groupProcesses_Z27F0B586(processes, graph, context) {
796
+ return List_groupBy((p) => {
797
+ let protocol, protocol_1;
798
+ const matchValue = LDLabProcess.tryGetNameAsString(p, unwrap(context));
799
+ const matchValue_1 = LDLabProcess.tryGetExecutesLabProtocol(p, unwrap(graph), unwrap(context));
800
+ let matchResult, name_1, protocol_2, name_2, protocol_3;
801
+ if (matchValue != null) {
802
+ if (ProcessConversion_decomposeProcessName_Z721C83C5(value(matchValue))[1] != null) {
803
+ matchResult = 0;
804
+ name_1 = value(matchValue);
805
+ } else if (matchValue_1 != null) {
806
+ if (protocol = value(matchValue_1), LDLabProtocol.tryGetNameAsString(protocol, unwrap(context)) != null) {
807
+ matchResult = 1;
808
+ protocol_2 = value(matchValue_1);
809
+ } else {
810
+ matchResult = 2;
811
+ name_2 = value(matchValue);
812
+ }
813
+ } else {
814
+ matchResult = 2;
815
+ name_2 = value(matchValue);
816
+ }
817
+ } else if (matchValue_1 != null) {
818
+ if (protocol_1 = value(matchValue_1), LDLabProtocol.tryGetNameAsString(protocol_1, unwrap(context)) != null) {
819
+ matchResult = 1;
820
+ protocol_2 = value(matchValue_1);
821
+ } else {
822
+ matchResult = 3;
823
+ protocol_3 = value(matchValue_1);
824
+ }
825
+ } else {
826
+ matchResult = 4;
827
+ }
828
+ switch (matchResult) {
829
+ case 0:
830
+ return ProcessConversion_decomposeProcessName_Z721C83C5(name_1)[0];
831
+ case 1:
832
+ return defaultArg(LDLabProtocol.tryGetNameAsString(protocol_2, unwrap(context)), "");
833
+ case 2:
834
+ return name_2;
835
+ case 3:
836
+ return protocol_3.Id;
837
+ default:
838
+ return createMissingIdentifier();
839
+ }
840
+ }, processes, {
841
+ Equals: (x, y) => x === y,
842
+ GetHashCode: stringHash
843
+ });
844
+ }
845
+ function ProcessConversion_processToRows_Z6839B9E8(p, graph, context) {
846
+ const pvs = ResizeArray_map((ppv) => [BaseTypes_decomposeParameterValue_Z2F770004(ppv, unwrap(context)), ColumnIndex_tryGetIndex(ppv)], LDLabProcess.getParameterValues(p, unwrap(graph), unwrap(context)));
847
+ let components;
848
+ const matchValue = LDLabProcess.tryGetExecutesLabProtocol(p, unwrap(graph), unwrap(context));
849
+ if (matchValue == null) {
850
+ components = [];
851
+ } else {
852
+ const prot = value(matchValue);
853
+ components = ResizeArray_map((ppv_1) => [BaseTypes_decomposeComponent_Z2F770004(ppv_1, unwrap(context)), ColumnIndex_tryGetIndex(ppv_1)], LDLabProtocol.getComponents(prot, unwrap(graph), unwrap(context)));
854
+ }
855
+ let protVals;
856
+ const matchValue_1 = LDLabProcess.tryGetExecutesLabProtocol(p, unwrap(graph), unwrap(context));
857
+ if (matchValue_1 == null) {
858
+ protVals = empty();
859
+ } else {
860
+ const prot_1 = value(matchValue_1);
861
+ protVals = toList(delay(() => {
862
+ let matchValue_2;
863
+ return append((matchValue_2 = LDLabProtocol.tryGetNameAsString(prot_1, unwrap(context)), matchValue_2 == null ? empty$1() : singleton$1([CompositeHeader_ProtocolREF(), CompositeCell_FreeText(value(matchValue_2))])), delay(() => {
864
+ let matchValue_3;
865
+ return append((matchValue_3 = LDLabProtocol.tryGetDescriptionAsString(prot_1, unwrap(context)), matchValue_3 == null ? empty$1() : singleton$1([CompositeHeader_ProtocolDescription(), CompositeCell_FreeText(value(matchValue_3))])), delay(() => {
866
+ let matchValue_4;
867
+ return append((matchValue_4 = LDLabProtocol.tryGetUrl(prot_1, unwrap(context)), matchValue_4 == null ? empty$1() : singleton$1([CompositeHeader_ProtocolUri(), CompositeCell_FreeText(value(matchValue_4))])), delay(() => {
868
+ let matchValue_5;
869
+ return append((matchValue_5 = LDLabProtocol.tryGetVersionAsString(prot_1, unwrap(context)), matchValue_5 == null ? empty$1() : singleton$1([CompositeHeader_ProtocolVersion(), CompositeCell_FreeText(value(matchValue_5))])), delay(() => {
870
+ const matchValue_6 = ProcessConversion_tryGetProtocolType_Z6839B9E8(prot_1, unwrap(graph), unwrap(context));
871
+ if (matchValue_6 == null) {
872
+ return empty$1();
873
+ } else {
874
+ return singleton$1([CompositeHeader_ProtocolType(), CompositeCell_Term(value(matchValue_6))]);
875
+ }
876
+ }));
877
+ }));
878
+ }));
879
+ }));
880
+ }));
881
+ }
882
+ const comments = ResizeArray_map((c) => {
883
+ const c_1 = Comment$.fromString(c);
884
+ return [CompositeHeader_Comment(defaultArg(c_1.Name, "")), CompositeCell_FreeText(defaultArg(c_1.Value, ""))];
885
+ }, LDLabProcess.getDisambiguatingDescriptionsAsString(p, unwrap(context)));
886
+ const inputs = LDLabProcess.getObjects(p, unwrap(graph), unwrap(context));
887
+ const outputs = LDLabProcess.getResults(p, unwrap(graph), unwrap(context));
888
+ const patternInput = inputs.length === 0 && outputs.length !== 0 ? [ResizeArray_create(outputs.length, void 0), ResizeArray_map((Value) => Value, outputs)] : inputs.length !== 0 && outputs.length === 0 ? [ResizeArray_map((Value_1) => Value_1, inputs), ResizeArray_create(inputs.length, void 0)] : [ResizeArray_map((Value_2) => Value_2, inputs), ResizeArray_map((Value_3) => Value_3, outputs)];
889
+ const outputs_1 = patternInput[1];
890
+ const inputs_1 = patternInput[0];
891
+ if (inputs_1.length === 0 && outputs_1.length === 0) {
892
+ const vals = map$1((tuple_1) => tuple_1[0], sortBy((arg) => defaultArg(arg[1], 1e4), toList(delay(() => append(components, delay(() => pvs)))), {
893
+ Compare: comparePrimitives
894
+ }));
895
+ return ResizeArray_singleton(toList(delay(() => append(protVals, delay(() => append(vals, delay(() => comments)))))));
896
+ } else {
897
+ return ResizeArray_map((tupledArg) => {
898
+ const i = tupledArg[0];
899
+ const o = tupledArg[1];
900
+ let chars;
901
+ if (i == null) {
902
+ chars = [];
903
+ } else {
904
+ const i_1 = value(i);
905
+ chars = ResizeArray_map((cv) => [BaseTypes_decomposeCharacteristicValue_Z2F770004(cv, unwrap(context)), ColumnIndex_tryGetIndex(cv)], LDSample.getCharacteristics(i_1, unwrap(graph), unwrap(context)));
906
+ }
907
+ let factors;
908
+ if (o == null) {
909
+ factors = [];
910
+ } else {
911
+ const o_1 = value(o);
912
+ factors = ResizeArray_map((fv) => [BaseTypes_decomposeFactorValue_Z2F770004(fv, unwrap(context)), ColumnIndex_tryGetIndex(fv)], LDSample.getFactors(o_1, unwrap(graph), unwrap(context)));
913
+ }
914
+ const vals_1 = map$1((tuple_3) => tuple_3[0], sortBy((arg_1) => defaultArg(arg_1[1], 1e4), toList(delay(() => append(chars, delay(() => append(components, delay(() => append(pvs, delay(() => factors)))))))), {
915
+ Compare: comparePrimitives
916
+ }));
917
+ return toList(delay(() => append(i != null ? singleton$1(BaseTypes_decomposeProcessInput_Z2F770004(value(i), unwrap(context))) : empty$1(), delay(() => append(protVals, delay(() => append(vals_1, delay(() => append(comments, delay(() => o != null ? singleton$1(BaseTypes_decomposeProcessOutput_Z2F770004(value(o), unwrap(context))) : empty$1()))))))))));
918
+ }, ResizeArray_zip(inputs_1, outputs_1));
919
+ }
920
+ }
921
+ function ARCtrl_ArcTable__ArcTable_GetProcesses_5E660E5C(this$, assayName, studyName, fs) {
922
+ if (this$.RowCount === 0) {
923
+ return singleton(LDLabProcess.create(this$.Name));
924
+ } else {
925
+ const getter = ProcessConversion_getProcessGetter(assayName, studyName, this$.Name, this$.Headers, fs);
926
+ return toList(delay(() => map$2((i) => getter(this$)(i), rangeDouble(0, 1, this$.RowCount - 1))));
927
+ }
928
+ }
929
+ function ARCtrl_ArcTables__ArcTables_GetProcesses_5E660E5C(this$, assayName, studyName, fs) {
930
+ return collect((t) => ARCtrl_ArcTable__ArcTable_GetProcesses_5E660E5C(t, unwrap(assayName), unwrap(studyName), unwrap(fs)), toList(this$.Tables));
931
+ }
932
+ function ARCtrl_ArcTables__ArcTables_fromProcesses_Static_Z27F0B586(ps, graph, context) {
933
+ let collection;
934
+ return new ArcTables((collection = map$1((tupledArg) => {
935
+ const tupledArg_1 = Unchecked_alignByHeaders(true, collect((p) => ofSeq(ProcessConversion_processToRows_Z6839B9E8(p, unwrap(graph), unwrap(context))), tupledArg[1]));
936
+ return ArcTable.fromArcTableValues(tupledArg[0], tupledArg_1[0], tupledArg_1[1]);
937
+ }, ProcessConversion_groupProcesses_Z27F0B586(ps, unwrap(graph), unwrap(context))), Array.from(collection)));
938
+ }
939
+ function DatamapConversion_composeFragmentDescriptors_Z8923FA3(datamap) {
940
+ return ResizeArray_map(BaseTypes_composeFragmentDescriptor_Z4C0BEF62, DataMap__get_DataContexts(datamap));
941
+ }
942
+ function DatamapConversion_decomposeFragmentDescriptors_Z6E59645F(fragmentDescriptors, graph, context) {
943
+ return DataMap_$ctor_4E3220A7(ResizeArray_map((fd) => BaseTypes_decomposeFragmentDescriptor_Z6839B9E8(fd, unwrap(graph), unwrap(context)), fragmentDescriptors));
944
+ }
945
+ function PersonConversion_composeAffiliation_Z721C83C5(affiliation) {
946
+ let arg;
947
+ try {
948
+ const matchValue = fromString(decoder, affiliation);
949
+ if (matchValue.tag === /* Error */
950
+ 1) {
951
+ throw new Error((arg = matchValue.fields[0], toText(printf("Error decoding string: %O"))(arg)));
952
+ } else {
953
+ return matchValue.fields[0];
954
+ }
955
+ } catch (matchValue_1) {
956
+ return LDOrganization.create(affiliation);
957
+ }
958
+ }
959
+ function PersonConversion_decomposeAffiliation_Z2F770004(affiliation, context) {
960
+ if (isEmpty(filter((n) => n !== LDOrganization.name, affiliation.GetPropertyNames(unwrap(context))))) {
961
+ return LDOrganization.getNameAsString(affiliation, unwrap(context));
962
+ } else {
963
+ return toString$1(0, encoder(affiliation));
964
+ }
965
+ }
966
+ function PersonConversion_composeAddress_Z721C83C5(address) {
967
+ let matchValue;
968
+ try {
969
+ return matchValue = fromString(decoder, address), matchValue.tag === /* Error */
970
+ 1 ? (() => {
971
+ let arg;
972
+ throw new Error((arg = matchValue.fields[0], toText(printf("Error decoding string: %O"))(arg)));
973
+ })() : matchValue.fields[0];
974
+ } catch (matchValue_1) {
975
+ return address;
976
+ }
977
+ }
978
+ function PersonConversion_decomposeAddress_4E60E31B(address) {
979
+ if (typeof address === "string") {
980
+ return address;
981
+ } else if (address instanceof LDNode) {
982
+ return toString$1(0, encoder(address));
983
+ } else {
984
+ throw new Error("Address must be a string or a Json.LDNode");
985
+ }
986
+ }
987
+ function PersonConversion_composePerson_Z64D846DC(person) {
988
+ let givenName;
989
+ const matchValue = person.FirstName;
990
+ if (matchValue == null) {
991
+ throw new Error("Person must have a given name");
992
+ } else {
993
+ givenName = value(matchValue);
994
+ }
995
+ const jobTitles = Option_fromSeq(ResizeArray_map(BaseTypes_composeDefinedTerm_ZDED3A0F, person.Roles));
996
+ const disambiguatingDescriptions = Option_fromSeq(ResizeArray_map(toString, person.Comments));
997
+ const address_1 = map(PersonConversion_composeAddress_Z721C83C5, person.Address);
998
+ const affiliation_1 = map(PersonConversion_composeAffiliation_Z721C83C5, person.Affiliation);
999
+ return LDPerson.create(givenName, unwrap(person.ORCID), void 0, unwrap(affiliation_1), unwrap(person.EMail), unwrap(person.LastName), void 0, unwrap(jobTitles), unwrap(person.MidInitials), address_1, unwrap(disambiguatingDescriptions), unwrap(person.Fax), unwrap(person.Phone));
1000
+ }
1001
+ function PersonConversion_decomposePerson_Z6839B9E8(person, graph, context) {
1002
+ const orcid = tryGetOrcidNumber(person.Id);
1003
+ let address;
1004
+ const matchValue = LDPerson.tryGetAddressAsString(person, unwrap(context));
1005
+ if (matchValue == null) {
1006
+ const matchValue_1 = LDPerson.tryGetAddressAsPostalAddress(person, unwrap(graph), unwrap(context));
1007
+ address = matchValue_1 == null ? void 0 : PersonConversion_decomposeAddress_4E60E31B(value(matchValue_1));
1008
+ } else {
1009
+ address = value(matchValue);
1010
+ }
1011
+ const roles = ResizeArray_map((r) => BaseTypes_decomposeDefinedTerm_Z2F770004(r, unwrap(context)), LDPerson.getJobTitlesAsDefinedTerm(person, unwrap(graph), unwrap(context)));
1012
+ const comments = ResizeArray_map((s_1) => Comment$.fromString(s_1), LDPerson.getDisambiguatingDescriptionsAsString(person, unwrap(context)));
1013
+ const affiliation = map((a_3) => PersonConversion_decomposeAffiliation_Z2F770004(a_3, unwrap(context)), LDPerson.tryGetAffiliation(person, unwrap(graph), unwrap(context)));
1014
+ return Person.create(unwrap(orcid), unwrap(LDPerson.tryGetFamilyNameAsString(person, unwrap(context))), LDPerson.getGivenNameAsString(person, unwrap(context)), unwrap(LDPerson.tryGetAdditionalNameAsString(person, unwrap(context))), unwrap(LDPerson.tryGetEmailAsString(person, unwrap(context))), unwrap(LDPerson.tryGetTelephoneAsString(person, unwrap(context))), unwrap(LDPerson.tryGetFaxNumberAsString(person, unwrap(context))), unwrap(address), unwrap(affiliation), roles, comments);
1015
+ }
1016
+ function ScholarlyArticleConversion_composeAuthor_Z721C83C5(author) {
1017
+ let arg;
1018
+ try {
1019
+ const matchValue = fromString(decoder, author);
1020
+ if (matchValue.tag === /* Error */
1021
+ 1) {
1022
+ throw new Error((arg = matchValue.fields[0], toText(printf("Error decoding string: %O"))(arg)));
1023
+ } else {
1024
+ return matchValue.fields[0];
1025
+ }
1026
+ } catch (matchValue_1) {
1027
+ return LDPerson.create(author);
1028
+ }
1029
+ }
1030
+ function ScholarlyArticleConversion_splitAuthors_Z721C83C5(a) {
1031
+ let bracketCount = 0;
1032
+ const authors = [];
1033
+ const sb = StringBuilder_$ctor();
1034
+ const enumerator = getEnumerator(a.split(""));
1035
+ try {
1036
+ while (enumerator["System.Collections.IEnumerator.MoveNext"]()) {
1037
+ const c = enumerator["System.Collections.Generic.IEnumerator`1.get_Current"]();
1038
+ switch (c) {
1039
+ case "{": {
1040
+ bracketCount = bracketCount + 1 | 0;
1041
+ StringBuilder__Append_244C7CD6(sb, c);
1042
+ break;
1043
+ }
1044
+ case "}": {
1045
+ bracketCount = bracketCount - 1 | 0;
1046
+ StringBuilder__Append_244C7CD6(sb, c);
1047
+ break;
1048
+ }
1049
+ default:
1050
+ if (c === "," && bracketCount === 0) {
1051
+ void authors.push(toString(sb));
1052
+ StringBuilder__Clear(sb);
1053
+ } else {
1054
+ StringBuilder__Append_244C7CD6(sb, c);
1055
+ }
1056
+ }
1057
+ }
1058
+ } finally {
1059
+ disposeSafe(enumerator);
1060
+ }
1061
+ void authors.push(toString(sb));
1062
+ return authors;
1063
+ }
1064
+ function ScholarlyArticleConversion_composeAuthors_Z721C83C5(authors) {
1065
+ const collection = map$2(ScholarlyArticleConversion_composeAuthor_Z721C83C5, ScholarlyArticleConversion_splitAuthors_Z721C83C5(authors));
1066
+ return Array.from(collection);
1067
+ }
1068
+ function ScholarlyArticleConversion_decomposeAuthor_Z2F770004(author, context) {
1069
+ if (isEmpty(filter((n) => n !== LDPerson.givenName, author.GetPropertyNames(unwrap(context))))) {
1070
+ return LDPerson.getGivenNameAsString(author, unwrap(context));
1071
+ } else {
1072
+ return toString$1(0, encoder(author));
1073
+ }
1074
+ }
1075
+ function ScholarlyArticleConversion_decomposeAuthors_1AAAE9A5(authors, context) {
1076
+ return join(",", ResizeArray_map((a) => ScholarlyArticleConversion_decomposeAuthor_Z2F770004(a, unwrap(context)), authors));
1077
+ }
1078
+ function ScholarlyArticleConversion_composeScholarlyArticle_D324A6D(publication) {
1079
+ let title;
1080
+ const matchValue = publication.Title;
1081
+ if (matchValue == null) {
1082
+ throw new Error("Publication must have a title");
1083
+ } else {
1084
+ title = value(matchValue);
1085
+ }
1086
+ const authors_1 = map(ScholarlyArticleConversion_composeAuthors_Z721C83C5, publication.Authors);
1087
+ const comments = Option_fromSeq(ResizeArray_map(BaseTypes_composeComment_Z13201A7E, publication.Comments));
1088
+ const identifiers = Array.from(toList(delay(() => append(publication.DOI != null && value(publication.DOI) !== "" ? singleton$1(LDPropertyValue.createDOI(value(publication.DOI))) : empty$1(), delay(() => publication.PubMedID != null && value(publication.PubMedID) !== "" ? singleton$1(LDPropertyValue.createPubMedID(value(publication.PubMedID))) : empty$1())))));
1089
+ const status = map(BaseTypes_composeDefinedTerm_ZDED3A0F, publication.Status);
1090
+ return LDScholarlyArticle.create(title, identifiers, void 0, unwrap(authors_1), void 0, unwrap(status), unwrap(comments));
1091
+ }
1092
+ function ScholarlyArticleConversion_decomposeScholarlyArticle_Z6839B9E8(sa, graph, context) {
1093
+ const title = LDScholarlyArticle.getHeadlineAsString(sa, unwrap(context));
1094
+ const authors = map((a) => ScholarlyArticleConversion_decomposeAuthors_1AAAE9A5(a, unwrap(context)), Option_fromSeq(LDScholarlyArticle.getAuthors(sa, unwrap(graph), unwrap(context))));
1095
+ const comments = ResizeArray_map((c) => BaseTypes_decomposeComment_Z2F770004(c, unwrap(context)), LDScholarlyArticle.getComments(sa, unwrap(graph), unwrap(context)));
1096
+ const status = map((s) => BaseTypes_decomposeDefinedTerm_Z2F770004(s, unwrap(context)), LDScholarlyArticle.tryGetCreativeWorkStatus(sa, unwrap(graph), unwrap(context)));
1097
+ const identifiers = LDScholarlyArticle.getIdentifiersAsPropertyValue(sa, unwrap(graph), unwrap(context));
1098
+ let doi;
1099
+ const _arg = ResizeArray_tryPick((i) => LDPropertyValue.tryGetAsDOI(i, unwrap(context)), identifiers);
1100
+ doi = _arg == null ? LDScholarlyArticle.tryGetSameAsAsString(sa, unwrap(context)) : value(_arg);
1101
+ let pubMedID;
1102
+ const _arg_1 = ResizeArray_tryPick((i_1) => LDPropertyValue.tryGetAsPubMedID(i_1, unwrap(context)), identifiers);
1103
+ pubMedID = _arg_1 == null ? LDScholarlyArticle.tryGetUrlAsString(sa, unwrap(context)) : value(_arg_1);
1104
+ return Publication.create(unwrap(pubMedID), unwrap(doi), unwrap(authors), title, unwrap(status), comments);
1105
+ }
1106
+ function AssayConversion_getDataFilesFromProcesses_6BABD1B0(processes, fragmentDescriptors, graph, context) {
1107
+ const data = ResizeArray_distinct(ResizeArray_append(ResizeArray_choose((df) => LDPropertyValue.tryGetSubjectOf(df, unwrap(graph), unwrap(context)), defaultArg(fragmentDescriptors, [])), ResizeArray_collect((p) => ResizeArray_append(LDLabProcess.getObjectsAsData(p, unwrap(graph), unwrap(context)), LDLabProcess.getResultsAsData(p, unwrap(graph), unwrap(context))), processes)));
1108
+ const files = ResizeArray_filter((d) => DataAux_pathAndSelectorFromName(d.Id)[1] == null, data);
1109
+ return ResizeArray_append(files, ResizeArray_map((tupledArg) => {
1110
+ const path = tupledArg[0];
1111
+ const fragments = tupledArg[1];
1112
+ let file;
1113
+ const matchValue = ResizeArray_tryFind((d_3) => d_3.Id === path, files);
1114
+ if (matchValue == null) {
1115
+ const comments = Option_fromSeq(LDFile.getComments(fragments[0], unwrap(graph), unwrap(context)));
1116
+ file = LDFile.create(path, path, unwrap(comments), unwrap(LDFile.tryGetDisambiguatingDescriptionAsString(fragments[0], unwrap(context))), unwrap(LDFile.tryGetEncodingFormatAsString(fragments[0], unwrap(context))), void 0, unwrap(fragments[0].TryGetContext()));
1117
+ } else {
1118
+ file = value(matchValue);
1119
+ }
1120
+ LDDataset.setHasParts(file, fragments, unwrap(context));
1121
+ return file;
1122
+ }, ResizeArray_groupBy((d_2) => DataAux_pathAndSelectorFromName(d_2.Id)[0], ResizeArray_filter((d_1) => DataAux_pathAndSelectorFromName(d_1.Id)[1] != null, data))));
1123
+ }
1124
+ function AssayConversion_composeAssay_Z5C53FD5C(assay, fs) {
1125
+ let collection, fds_1, vm_1, fds, vm;
1126
+ const measurementMethod = map(BaseTypes_composeDefinedTerm_ZDED3A0F, assay.TechnologyType);
1127
+ const measurementTechnique = map(BaseTypes_composeDefinedTerm_ZDED3A0F, assay.TechnologyPlatform);
1128
+ const variableMeasured = map(BaseTypes_composePropertyValueFromOA_ZDED3A0F, assay.MeasurementType);
1129
+ const creators = Option_fromSeq(ResizeArray_map(PersonConversion_composePerson_Z64D846DC, assay.Performers));
1130
+ const processSequence = Option_fromSeq((collection = ARCtrl_ArcTables__ArcTables_GetProcesses_5E660E5C(new ArcTables(assay.Tables), assay.Identifier, void 0, unwrap(fs)), Array.from(collection)));
1131
+ const fragmentDescriptors = map(DatamapConversion_composeFragmentDescriptors_Z8923FA3, assay.DataMap);
1132
+ const dataFiles = map((ps) => AssayConversion_getDataFilesFromProcesses_6BABD1B0(ps, unwrap(fragmentDescriptors)), processSequence);
1133
+ const variableMeasureds = variableMeasured == null ? fragmentDescriptors == null ? void 0 : (fds_1 = value(fragmentDescriptors), fds_1) : fragmentDescriptors == null ? (vm_1 = value(variableMeasured), ResizeArray_singleton(vm_1)) : (fds = value(fragmentDescriptors), vm = value(variableMeasured), ResizeArray_appendSingleton(vm, fds));
1134
+ const comments = Option_fromSeq(ResizeArray_map(BaseTypes_composeComment_Z13201A7E, assay.Comments));
1135
+ return LDDataset.createAssay(assay.Identifier, void 0, unwrap(assay.Title), unwrap(assay.Description), unwrap(creators), unwrap(dataFiles), unwrap(measurementMethod), unwrap(measurementTechnique), unwrap(variableMeasureds), unwrap(processSequence), unwrap(comments));
1136
+ }
1137
+ function AssayConversion_decomposeAssay_Z6839B9E8(assay, graph, context) {
1138
+ const measurementMethod = map((m) => BaseTypes_decomposeDefinedTerm_Z2F770004(m, unwrap(context)), LDDataset.tryGetMeasurementMethodAsDefinedTerm(assay, unwrap(graph), unwrap(context)));
1139
+ const measurementTechnique = map((m_1) => BaseTypes_decomposeDefinedTerm_Z2F770004(m_1, unwrap(context)), LDDataset.tryGetMeasurementTechniqueAsDefinedTerm(assay, unwrap(graph), unwrap(context)));
1140
+ const variableMeasured = map((v) => BaseTypes_decomposePropertyValueToOA_Z2F770004(v, unwrap(context)), LDDataset.tryGetVariableMeasuredAsMeasurementType(assay, unwrap(graph), unwrap(context)));
1141
+ const perfomers = ResizeArray_map((c) => PersonConversion_decomposePerson_Z6839B9E8(c, unwrap(graph), unwrap(context)), LDDataset.getCreators(assay, unwrap(graph), unwrap(context)));
1142
+ let dataMap;
1143
+ const v_1 = DatamapConversion_decomposeFragmentDescriptors_Z6E59645F(LDDataset.getVariableMeasuredAsFragmentDescriptors(assay, unwrap(graph), unwrap(context)), unwrap(graph), unwrap(context));
1144
+ dataMap = Option_fromValueWithDefault(DataMap_init(), v_1);
1145
+ const tables = ARCtrl_ArcTables__ArcTables_fromProcesses_Static_Z27F0B586(ofSeq(LDDataset.getAboutsAsLabProcess(assay, unwrap(graph), unwrap(context))), unwrap(graph), unwrap(context));
1146
+ const comments = ResizeArray_map((c_1) => BaseTypes_decomposeComment_Z2F770004(c_1, unwrap(context)), LDDataset.getComments(assay, unwrap(graph), unwrap(context)));
1147
+ return ArcAssay.create(LDDataset.getIdentifierAsString(assay, unwrap(context)), unwrap(LDDataset.tryGetNameAsString(assay, unwrap(context))), unwrap(LDDataset.tryGetDescriptionAsString(assay, unwrap(context))), unwrap(variableMeasured), unwrap(measurementMethod), unwrap(measurementTechnique), tables.Tables, unwrap(dataMap), perfomers, comments);
1148
+ }
1149
+ function StudyConversion_composeStudy_ZFE0E38E(study, fs) {
1150
+ let collection;
1151
+ const dateCreated = bind(DateTime_tryFromString, study.SubmissionDate);
1152
+ const datePublished = bind(DateTime_tryFromString, study.PublicReleaseDate);
1153
+ const dateModified = now();
1154
+ const publications = Option_fromSeq(ResizeArray_map(ScholarlyArticleConversion_composeScholarlyArticle_D324A6D, study.Publications));
1155
+ const creators = Option_fromSeq(ResizeArray_map(PersonConversion_composePerson_Z64D846DC, study.Contacts));
1156
+ const processSequence = Option_fromSeq((collection = ARCtrl_ArcTables__ArcTables_GetProcesses_5E660E5C(new ArcTables(study.Tables), void 0, study.Identifier, unwrap(fs)), Array.from(collection)));
1157
+ const fragmentDescriptors = map(DatamapConversion_composeFragmentDescriptors_Z8923FA3, study.DataMap);
1158
+ const dataFiles = map((ps) => AssayConversion_getDataFilesFromProcesses_6BABD1B0(ps, unwrap(fragmentDescriptors)), processSequence);
1159
+ const comments = Option_fromSeq(ResizeArray_map(BaseTypes_composeComment_Z13201A7E, study.Comments));
1160
+ return LDDataset.createStudy(study.Identifier, void 0, unwrap(creators), unwrap(dateCreated), unwrap(datePublished), dateModified, unwrap(study.Description), unwrap(dataFiles), unwrap(study.Title), unwrap(publications), unwrap(fragmentDescriptors), unwrap(comments), void 0, unwrap(processSequence));
1161
+ }
1162
+ function StudyConversion_decomposeStudy_Z6839B9E8(study, graph, context) {
1163
+ const dateCreated = map(DateTime_toString, LDDataset.tryGetDateCreatedAsDateTime(study, unwrap(context)));
1164
+ const datePublished = map(DateTime_toString, LDDataset.tryGetDatePublishedAsDateTime(study, unwrap(context)));
1165
+ const publications = ResizeArray_map((p) => ScholarlyArticleConversion_decomposeScholarlyArticle_Z6839B9E8(p, unwrap(graph), unwrap(context)), LDDataset.getCitations(study, unwrap(graph), unwrap(context)));
1166
+ const creators = ResizeArray_map((c) => PersonConversion_decomposePerson_Z6839B9E8(c, unwrap(graph), unwrap(context)), LDDataset.getCreators(study, unwrap(graph), unwrap(context)));
1167
+ let dataMap;
1168
+ const v = DatamapConversion_decomposeFragmentDescriptors_Z6E59645F(LDDataset.getVariableMeasuredAsFragmentDescriptors(study, unwrap(graph), unwrap(context)), unwrap(graph), unwrap(context));
1169
+ dataMap = Option_fromValueWithDefault(DataMap_init(), v);
1170
+ const tables = ARCtrl_ArcTables__ArcTables_fromProcesses_Static_Z27F0B586(ofSeq(LDDataset.getAboutsAsLabProcess(study, unwrap(graph), unwrap(context))), unwrap(graph), unwrap(context));
1171
+ const comments = ResizeArray_map((c_1) => BaseTypes_decomposeComment_Z2F770004(c_1, unwrap(context)), LDDataset.getComments(study, unwrap(graph), unwrap(context)));
1172
+ return ArcStudy.create(LDDataset.getIdentifierAsString(study, unwrap(context)), unwrap(LDDataset.tryGetNameAsString(study, unwrap(context))), unwrap(LDDataset.tryGetDescriptionAsString(study, unwrap(context))), unwrap(dateCreated), unwrap(datePublished), publications, creators, void 0, tables.Tables, unwrap(dataMap), void 0, comments);
1173
+ }
1174
+ function InvestigationConversion_composeInvestigation_5AEC717D(investigation, fs) {
1175
+ let b;
1176
+ let name;
1177
+ const matchValue = investigation.Title;
1178
+ if (matchValue == null) {
1179
+ throw new Error("Investigation must have a title");
1180
+ } else {
1181
+ name = value(matchValue);
1182
+ }
1183
+ const dateCreated = bind(DateTime_tryFromString, investigation.SubmissionDate);
1184
+ const datePublished = defaultArg(bind(DateTime_tryFromString, investigation.PublicReleaseDate), now());
1185
+ const publications = Option_fromSeq(ResizeArray_map(ScholarlyArticleConversion_composeScholarlyArticle_D324A6D, investigation.Publications));
1186
+ const creators = Option_fromSeq(ResizeArray_map(PersonConversion_composePerson_Z64D846DC, investigation.Contacts));
1187
+ const comments = Option_fromSeq(ResizeArray_map(BaseTypes_composeComment_Z13201A7E, investigation.Comments));
1188
+ const hasParts = Option_fromSeq((b = ResizeArray_map((a_3) => AssayConversion_composeAssay_Z5C53FD5C(a_3, unwrap(fs)), investigation.Assays), ResizeArray_append(ResizeArray_map((s_2) => StudyConversion_composeStudy_ZFE0E38E(s_2, unwrap(fs)), investigation.Studies), b)));
1189
+ const mentions = Option_fromSeq([]);
1190
+ return LDDataset.createInvestigation(investigation.Identifier, name, void 0, unwrap(creators), unwrap(dateCreated), datePublished, void 0, unwrap(investigation.Description), unwrap(hasParts), unwrap(publications), unwrap(comments), unwrap(mentions));
1191
+ }
1192
+ function InvestigationConversion_decomposeInvestigation_Z6839B9E8(investigation, graph, context) {
1193
+ let title;
1194
+ const matchValue = LDDataset.tryGetNameAsString(investigation, unwrap(context));
1195
+ title = matchValue == null ? LDDataset.tryGetHeadlineAsString(investigation, unwrap(context)) : value(matchValue);
1196
+ const dateCreated = map(DateTime_toString, LDDataset.tryGetDateCreatedAsDateTime(investigation, unwrap(context)));
1197
+ const datePublished = map(DateTime_toString, LDDataset.tryGetDatePublishedAsDateTime(investigation, unwrap(context)));
1198
+ const publications = ResizeArray_map((p) => ScholarlyArticleConversion_decomposeScholarlyArticle_Z6839B9E8(p, unwrap(graph), unwrap(context)), LDDataset.getCitations(investigation, unwrap(graph), unwrap(context)));
1199
+ const creators = ResizeArray_map((c) => PersonConversion_decomposePerson_Z6839B9E8(c, unwrap(graph), unwrap(context)), LDDataset.getCreators(investigation, unwrap(graph), unwrap(context)));
1200
+ const datasets = LDDataset.getHasPartsAsDataset(investigation, unwrap(graph), unwrap(context));
1201
+ const studies = ResizeArray_map((d_3) => StudyConversion_decomposeStudy_Z6839B9E8(d_3, unwrap(graph), unwrap(context)), ResizeArray_filter((d_2) => LDDataset.validateStudy(d_2, unwrap(context)), datasets));
1202
+ const assays = ResizeArray_map((d_5) => AssayConversion_decomposeAssay_Z6839B9E8(d_5, unwrap(graph), unwrap(context)), ResizeArray_filter((d_4) => LDDataset.validateAssay(d_4, unwrap(context)), datasets));
1203
+ const comments = ResizeArray_map((c_1) => BaseTypes_decomposeComment_Z2F770004(c_1, unwrap(context)), LDDataset.getComments(investigation, unwrap(graph), unwrap(context)));
1204
+ return ArcInvestigation.create(LDDataset.getIdentifierAsString(investigation, unwrap(context)), unwrap(title), unwrap(LDDataset.tryGetDescriptionAsString(investigation, unwrap(context))), unwrap(dateCreated), unwrap(datePublished), void 0, publications, creators, assays, studies, void 0, void 0, void 0, comments);
1205
+ }
1206
+ function ARCtrl_ArcAssay__ArcAssay_ToROCrateAssay_1695DD5C(this$, fs) {
1207
+ return AssayConversion_composeAssay_Z5C53FD5C(this$, unwrap(fs));
1208
+ }
1209
+ function ARCtrl_ArcAssay__ArcAssay_fromROCrateAssay_Static_Z6839B9E8(a, graph, context) {
1210
+ return AssayConversion_decomposeAssay_Z6839B9E8(a, unwrap(graph), unwrap(context));
1211
+ }
1212
+ function ARCtrl_ArcStudy__ArcStudy_ToROCrateStudy_1695DD5C(this$, fs) {
1213
+ return StudyConversion_composeStudy_ZFE0E38E(this$, unwrap(fs));
1214
+ }
1215
+ function ARCtrl_ArcStudy__ArcStudy_fromROCrateStudy_Static_Z6839B9E8(a, graph, context) {
1216
+ return StudyConversion_decomposeStudy_Z6839B9E8(a, unwrap(graph), unwrap(context));
1217
+ }
1218
+ function ARCtrl_ArcInvestigation__ArcInvestigation_ToROCrateInvestigation_1695DD5C(this$, fs) {
1219
+ return InvestigationConversion_composeInvestigation_5AEC717D(this$, unwrap(fs));
1220
+ }
1221
+ function ARCtrl_ArcInvestigation__ArcInvestigation_fromROCrateInvestigation_Static_Z6839B9E8(a, graph, context) {
1222
+ return InvestigationConversion_decomposeInvestigation_Z6839B9E8(a, unwrap(graph), unwrap(context));
1223
+ }
1224
+ class TypeExtensions_Conversion {
1225
+ constructor() {
1226
+ }
1227
+ static arcAssayToDataset(a, fs) {
1228
+ return ARCtrl_ArcAssay__ArcAssay_ToROCrateAssay_1695DD5C(a, unwrap(fs));
1229
+ }
1230
+ static datasetToArcAssay(a, graph, context) {
1231
+ return ARCtrl_ArcAssay__ArcAssay_fromROCrateAssay_Static_Z6839B9E8(a, unwrap(graph), unwrap(context));
1232
+ }
1233
+ static arcStudyToDataset(a, fs) {
1234
+ return ARCtrl_ArcStudy__ArcStudy_ToROCrateStudy_1695DD5C(a, unwrap(fs));
1235
+ }
1236
+ static datasetToArcStudy(a, graph, context) {
1237
+ return ARCtrl_ArcStudy__ArcStudy_fromROCrateStudy_Static_Z6839B9E8(a, unwrap(graph), unwrap(context));
1238
+ }
1239
+ static arcInvestigationToDataset(a, fs) {
1240
+ return ARCtrl_ArcInvestigation__ArcInvestigation_ToROCrateInvestigation_1695DD5C(a, unwrap(fs));
1241
+ }
1242
+ static datasetToArcInvestigation(a, graph, context) {
1243
+ return ARCtrl_ArcInvestigation__ArcInvestigation_fromROCrateInvestigation_Static_Z6839B9E8(a, unwrap(graph), unwrap(context));
1244
+ }
1245
+ }
1246
+
1247
+ export { ARCtrl_ArcAssay__ArcAssay_ToROCrateAssay_1695DD5C, ARCtrl_ArcAssay__ArcAssay_fromROCrateAssay_Static_Z6839B9E8, ARCtrl_ArcInvestigation__ArcInvestigation_ToROCrateInvestigation_1695DD5C, ARCtrl_ArcInvestigation__ArcInvestigation_fromROCrateInvestigation_Static_Z6839B9E8, ARCtrl_ArcStudy__ArcStudy_ToROCrateStudy_1695DD5C, ARCtrl_ArcStudy__ArcStudy_fromROCrateStudy_Static_Z6839B9E8, ARCtrl_ArcTable__ArcTable_GetProcesses_5E660E5C, ARCtrl_ArcTables__ArcTables_GetProcesses_5E660E5C, ARCtrl_ArcTables__ArcTables_fromProcesses_Static_Z27F0B586, ARCtrl_ROCrate_LDNode__LDNode_SetColumnIndex_Z524259A4, AssayConversion_composeAssay_Z5C53FD5C, AssayConversion_decomposeAssay_Z6839B9E8, AssayConversion_getDataFilesFromProcesses_6BABD1B0, BaseTypes_cellOfPropertyValue_Z2F770004, BaseTypes_composeCharacteristicValue, BaseTypes_composeComment_Z13201A7E, BaseTypes_composeComponent, BaseTypes_composeDefinedTerm_ZDED3A0F, BaseTypes_composeFactorValue, BaseTypes_composeFile_6CE21C7D, BaseTypes_composeFragmentDescriptor_Z4C0BEF62, BaseTypes_composeFreetextMaterialName, BaseTypes_composeParameterValue, BaseTypes_composeProcessInput, BaseTypes_composeProcessOutput, BaseTypes_composePropertyValueFromOA_ZDED3A0F, BaseTypes_decomposeCharacteristicValue_Z2F770004, BaseTypes_decomposeComment_Z2F770004, BaseTypes_decomposeComponent_Z2F770004, BaseTypes_decomposeDefinedTerm_Z2F770004, BaseTypes_decomposeFactorValue_Z2F770004, BaseTypes_decomposeFile_Z2F770004, BaseTypes_decomposeFragmentDescriptor_Z6839B9E8, BaseTypes_decomposeParameterValue_Z2F770004, BaseTypes_decomposeProcessInput_Z2F770004, BaseTypes_decomposeProcessOutput_Z2F770004, BaseTypes_decomposePropertyValueToOA_Z2F770004, BaseTypes_headerOntologyOfPropertyValue_Z2F770004, BaseTypes_ontologyTermFromNameAndID_40457300, BaseTypes_termOfHeader_6CAF647B, BaseTypes_tryOntologyTermFromNameAndID_40457300, BaseTypes_valuesOfCell_Z436420FE, ColumnIndex_orderName, ColumnIndex_setIndex, ColumnIndex_tryGetIndex, DatamapConversion_composeFragmentDescriptors_Z8923FA3, DatamapConversion_decomposeFragmentDescriptors_Z6E59645F, DateTime_toString, DateTime_tryFromString, InvestigationConversion_composeInvestigation_5AEC717D, InvestigationConversion_decomposeInvestigation_Z6839B9E8, PersonConversion_composeAddress_Z721C83C5, PersonConversion_composeAffiliation_Z721C83C5, PersonConversion_composePerson_Z64D846DC, PersonConversion_decomposeAddress_4E60E31B, PersonConversion_decomposeAffiliation_Z2F770004, PersonConversion_decomposePerson_Z6839B9E8, ProcessConversion_composeProcessName, ProcessConversion_decomposeProcessName_Z721C83C5, ProcessConversion_getProcessGetter, ProcessConversion_groupProcesses_Z27F0B586, ProcessConversion_processToRows_Z6839B9E8, ProcessConversion_tryCharacteristicGetter, ProcessConversion_tryComponentGetter, ProcessConversion_tryFactorGetter, ProcessConversion_tryGetCommentGetter, ProcessConversion_tryGetInputGetter, ProcessConversion_tryGetOutputGetter, ProcessConversion_tryGetPerformerGetter, ProcessConversion_tryGetProtocolDescriptionGetter, ProcessConversion_tryGetProtocolREFGetter, ProcessConversion_tryGetProtocolTypeGetter, ProcessConversion_tryGetProtocolType_Z6839B9E8, ProcessConversion_tryGetProtocolURIGetter, ProcessConversion_tryGetProtocolVersionGetter, ProcessConversion_tryParameterGetter, ScholarlyArticleConversion_composeAuthor_Z721C83C5, ScholarlyArticleConversion_composeAuthors_Z721C83C5, ScholarlyArticleConversion_composeScholarlyArticle_D324A6D, ScholarlyArticleConversion_decomposeAuthor_Z2F770004, ScholarlyArticleConversion_decomposeAuthors_1AAAE9A5, ScholarlyArticleConversion_decomposeScholarlyArticle_Z6839B9E8, ScholarlyArticleConversion_splitAuthors_Z721C83C5, StudyConversion_composeStudy_ZFE0E38E, StudyConversion_decomposeStudy_Z6839B9E8, TypeExtensions_Conversion };