@nfdi4plants/arctrl 3.0.0-alpha.4 → 3.0.0-beta.10

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