@nfdi4plants/arctrl 3.0.0-beta.1 → 3.0.0-beta.11

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 +2 -0
  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 -973
  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 -1774
  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 -1198
  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 -502
  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 -219
  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 -923
  763. package/dist/ts/cjs/ts/Core/Table/ArcTableAux.js +0 -1262
  764. package/dist/ts/cjs/ts/Core/Table/ArcTables.js +0 -476
  765. package/dist/ts/cjs/ts/Core/Table/CompositeCell.js +0 -317
  766. package/dist/ts/cjs/ts/Core/Table/CompositeColumn.js +0 -60
  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 -231
  786. package/dist/ts/cjs/ts/Json/Encode.js +0 -117
  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 -217
  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 -176
  869. package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/CompositeCell.js +0 -68
  870. package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +0 -150
  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 -356
  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 -457
  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 -956
  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 -1654
  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 -1145
  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 -462
  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 -213
  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 -917
  1025. package/dist/ts/esm/ts/Core/Table/ArcTableAux.js +0 -1213
  1026. package/dist/ts/esm/ts/Core/Table/ArcTables.js +0 -461
  1027. package/dist/ts/esm/ts/Core/Table/CompositeCell.js +0 -308
  1028. package/dist/ts/esm/ts/Core/Table/CompositeColumn.js +0 -55
  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 -219
  1048. package/dist/ts/esm/ts/Json/Encode.js +0 -103
  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 -208
  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 -164
  1131. package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/CompositeCell.js +0 -61
  1132. package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +0 -141
  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 -334
  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 -434
  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 -291
  1261. package/dist/ts/types/ts/Conversion.d.ts.map +0 -1
  1262. package/dist/ts/types/ts/Core/ArcTypes.d.ts +0 -620
  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 -215
  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 -61
  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 -57
  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 -137
  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 -154
  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 -18
  1386. package/dist/ts/types/ts/Json/Decode.d.ts.map +0 -1
  1387. package/dist/ts/types/ts/Json/Encode.d.ts +0 -23
  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 -15
  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 -40
  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 -24
  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
@@ -0,0 +1,3708 @@
1
+ import { defaultArg, unwrap, value, map } from '../../node_modules/@fable-org/fable-library-js/Option.js';
2
+ import { toArray, filter, contains, forAll, fold, length, toList, delay, map as map$1, item, choose, exists, tryFindIndex, iterate, removeAt, tryFind, append, collect } from '../../node_modules/@fable-org/fable-library-js/Seq.js';
3
+ import { stringHash, getEnumerator, safeHash, equals, disposeSafe, defaultOf } from '../../node_modules/@fable-org/fable-library-js/Util.js';
4
+ import { ResizeArray_map, ResizeArray_filter, ResizeArray_choose } from './Helper/Collections.js';
5
+ import { contains as contains$1, removeInPlace, addRangeInPlace } from '../../node_modules/@fable-org/fable-library-js/Array.js';
6
+ import { toText, printf } from '../../node_modules/@fable-org/fable-library-js/String.js';
7
+ import { rangeDouble } from '../../node_modules/@fable-org/fable-library-js/Range.js';
8
+ import { boxHashArray, boxHashOption, boxHashSeq } from './Helper/HashCodes.js';
9
+ import { checkValidCharacters } from './Helper/Identifier.js';
10
+ import { ArcTables, ArcTables_$reflection, ArcTablesAux_getIOMap, ArcTablesAux_applyIOMap } from './Table/ArcTables.js';
11
+ import { class_type } from '../../node_modules/@fable-org/fable-library-js/Reflection.js';
12
+ import { Array_distinct } from '../../node_modules/@fable-org/fable-library-js/Seq2.js';
13
+ import { FSharpRef } from '../../node_modules/@fable-org/fable-library-js/Types.js';
14
+
15
+ class ArcAssay extends ArcTables {
16
+ constructor(identifier, title, description, measurementType, technologyType, technologyPlatform, tables, datamap, performers, comments) {
17
+ super(defaultArg(tables, []));
18
+ let identifier_1;
19
+ const performers_1 = defaultArg(performers, []);
20
+ const comments_1 = defaultArg(comments, []);
21
+ this["identifier@129"] = (identifier_1 = identifier.trim(), checkValidCharacters(identifier_1), identifier_1);
22
+ this["title@133"] = title;
23
+ this["description@134"] = description;
24
+ this.investigation = void 0;
25
+ this["measurementType@136"] = measurementType;
26
+ this["technologyType@137"] = technologyType;
27
+ this["technologyPlatform@138"] = technologyPlatform;
28
+ this.dataMap = datamap;
29
+ this["performers@140-1"] = performers_1;
30
+ this["comments@141-1"] = comments_1;
31
+ this.staticHash = 0;
32
+ }
33
+ get Identifier() {
34
+ const this$ = this;
35
+ return this$["identifier@129"];
36
+ }
37
+ set Identifier(i) {
38
+ const this$ = this;
39
+ this$["identifier@129"] = i;
40
+ }
41
+ get Investigation() {
42
+ const this$ = this;
43
+ return unwrap(this$.investigation);
44
+ }
45
+ set Investigation(i) {
46
+ const this$ = this;
47
+ this$.investigation = i;
48
+ }
49
+ get Title() {
50
+ const this$ = this;
51
+ return unwrap(this$["title@133"]);
52
+ }
53
+ set Title(t) {
54
+ const this$ = this;
55
+ this$["title@133"] = t;
56
+ }
57
+ get Description() {
58
+ const this$ = this;
59
+ return unwrap(this$["description@134"]);
60
+ }
61
+ set Description(d) {
62
+ const this$ = this;
63
+ this$["description@134"] = d;
64
+ }
65
+ get MeasurementType() {
66
+ const this$ = this;
67
+ return unwrap(this$["measurementType@136"]);
68
+ }
69
+ set MeasurementType(n) {
70
+ const this$ = this;
71
+ this$["measurementType@136"] = n;
72
+ }
73
+ get TechnologyType() {
74
+ const this$ = this;
75
+ return unwrap(this$["technologyType@137"]);
76
+ }
77
+ set TechnologyType(n) {
78
+ const this$ = this;
79
+ this$["technologyType@137"] = n;
80
+ }
81
+ get TechnologyPlatform() {
82
+ const this$ = this;
83
+ return unwrap(this$["technologyPlatform@138"]);
84
+ }
85
+ set TechnologyPlatform(n) {
86
+ const this$ = this;
87
+ this$["technologyPlatform@138"] = n;
88
+ }
89
+ get DataMap() {
90
+ const this$ = this;
91
+ return unwrap(this$.dataMap);
92
+ }
93
+ set DataMap(n) {
94
+ const this$ = this;
95
+ this$.dataMap = n;
96
+ }
97
+ get Performers() {
98
+ const this$ = this;
99
+ return this$["performers@140-1"];
100
+ }
101
+ set Performers(n) {
102
+ const this$ = this;
103
+ this$["performers@140-1"] = n;
104
+ }
105
+ get Comments() {
106
+ const this$ = this;
107
+ return this$["comments@141-1"];
108
+ }
109
+ set Comments(n) {
110
+ const this$ = this;
111
+ this$["comments@141-1"] = n;
112
+ }
113
+ get StaticHash() {
114
+ const this$ = this;
115
+ return this$.staticHash | 0;
116
+ }
117
+ set StaticHash(h) {
118
+ const this$ = this;
119
+ this$.staticHash = h | 0;
120
+ }
121
+ static init(identifier) {
122
+ return new ArcAssay(identifier);
123
+ }
124
+ static create(identifier, title, description, measurementType, technologyType, technologyPlatform, tables, datamap, performers, comments) {
125
+ return new ArcAssay(identifier, unwrap(title), unwrap(description), unwrap(measurementType), unwrap(technologyType), unwrap(technologyPlatform), unwrap(tables), unwrap(datamap), unwrap(performers), unwrap(comments));
126
+ }
127
+ static make(identifier, title, description, measurementType, technologyType, technologyPlatform, tables, datamap, performers, comments) {
128
+ return new ArcAssay(identifier, unwrap(title), unwrap(description), unwrap(measurementType), unwrap(technologyType), unwrap(technologyPlatform), tables, unwrap(datamap), performers, comments);
129
+ }
130
+ static get FileName() {
131
+ return "isa.assay.xlsx";
132
+ }
133
+ get StudiesRegisteredIn() {
134
+ const this$ = this;
135
+ const matchValue = this$.Investigation;
136
+ if (matchValue == null) {
137
+ return [];
138
+ } else {
139
+ const i = value(matchValue);
140
+ return toArray(filter((s) => {
141
+ const source = s.RegisteredAssayIdentifiers;
142
+ return contains(this$.Identifier, source, {
143
+ Equals: (x, y) => x === y,
144
+ GetHashCode: stringHash
145
+ });
146
+ }, i.Studies));
147
+ }
148
+ }
149
+ static addTable(table, index) {
150
+ return (assay) => {
151
+ const c = assay.Copy();
152
+ c.AddTable(table, unwrap(index));
153
+ return c;
154
+ };
155
+ }
156
+ static addTables(tables, index) {
157
+ return (assay) => {
158
+ const c = assay.Copy();
159
+ c.AddTables(tables, unwrap(index));
160
+ return c;
161
+ };
162
+ }
163
+ static initTable(tableName, index) {
164
+ return (assay) => {
165
+ const c = assay.Copy();
166
+ return [c, c.InitTable(tableName, unwrap(index))];
167
+ };
168
+ }
169
+ static initTables(tableNames, index) {
170
+ return (assay) => {
171
+ const c = assay.Copy();
172
+ c.InitTables(tableNames, unwrap(index));
173
+ return c;
174
+ };
175
+ }
176
+ static getTableAt(index) {
177
+ return (assay) => {
178
+ const newAssay = assay.Copy();
179
+ return newAssay.GetTableAt(index);
180
+ };
181
+ }
182
+ static getTable(name) {
183
+ return (assay) => {
184
+ const newAssay = assay.Copy();
185
+ return newAssay.GetTable(name);
186
+ };
187
+ }
188
+ static updateTableAt(index, table) {
189
+ return (assay) => {
190
+ const newAssay = assay.Copy();
191
+ newAssay.UpdateTableAt(index, table);
192
+ return newAssay;
193
+ };
194
+ }
195
+ static updateTable(name, table) {
196
+ return (assay) => {
197
+ const newAssay = assay.Copy();
198
+ newAssay.UpdateTable(name, table);
199
+ return newAssay;
200
+ };
201
+ }
202
+ static setTableAt(index, table) {
203
+ return (assay) => {
204
+ const newAssay = assay.Copy();
205
+ newAssay.SetTableAt(index, table);
206
+ return newAssay;
207
+ };
208
+ }
209
+ static setTable(name, table) {
210
+ return (assay) => {
211
+ const newAssay = assay.Copy();
212
+ newAssay.SetTable(name, table);
213
+ return newAssay;
214
+ };
215
+ }
216
+ static removeTableAt(index) {
217
+ return (assay) => {
218
+ const newAssay = assay.Copy();
219
+ newAssay.RemoveTableAt(index);
220
+ return newAssay;
221
+ };
222
+ }
223
+ static removeTable(name) {
224
+ return (assay) => {
225
+ const newAssay = assay.Copy();
226
+ newAssay.RemoveTable(name);
227
+ return newAssay;
228
+ };
229
+ }
230
+ static mapTableAt(index, updateFun) {
231
+ return (assay) => {
232
+ const newAssay = assay.Copy();
233
+ newAssay.MapTableAt(index, updateFun);
234
+ return newAssay;
235
+ };
236
+ }
237
+ static updateTableBy(name, updateFun) {
238
+ return (assay) => {
239
+ const newAssay = assay.Copy();
240
+ newAssay.MapTable(name, updateFun);
241
+ return newAssay;
242
+ };
243
+ }
244
+ static renameTableAt(index, newName) {
245
+ return (assay) => {
246
+ const newAssay = assay.Copy();
247
+ newAssay.RenameTableAt(index, newName);
248
+ return newAssay;
249
+ };
250
+ }
251
+ static renameTable(name, newName) {
252
+ return (assay) => {
253
+ const newAssay = assay.Copy();
254
+ newAssay.RenameTable(name, newName);
255
+ return newAssay;
256
+ };
257
+ }
258
+ static addColumnAt(tableIndex, header, cells, columnIndex, forceReplace) {
259
+ return (assay) => {
260
+ const newAssay = assay.Copy();
261
+ newAssay.AddColumnAt(tableIndex, header, unwrap(cells), unwrap(columnIndex), unwrap(forceReplace));
262
+ return newAssay;
263
+ };
264
+ }
265
+ static addColumn(tableName, header, cells, columnIndex, forceReplace) {
266
+ return (assay) => {
267
+ const newAssay = assay.Copy();
268
+ newAssay.AddColumn(tableName, header, unwrap(cells), unwrap(columnIndex), unwrap(forceReplace));
269
+ return newAssay;
270
+ };
271
+ }
272
+ static removeColumnAt(tableIndex, columnIndex) {
273
+ return (assay) => {
274
+ const newAssay = assay.Copy();
275
+ newAssay.RemoveColumnAt(tableIndex, columnIndex);
276
+ return newAssay;
277
+ };
278
+ }
279
+ static removeColumn(tableName, columnIndex) {
280
+ return (assay) => {
281
+ const newAssay = assay.Copy();
282
+ newAssay.RemoveColumn(tableName, columnIndex);
283
+ return newAssay;
284
+ };
285
+ }
286
+ static updateColumnAt(tableIndex, columnIndex, header, cells) {
287
+ return (assay) => {
288
+ const newAssay = assay.Copy();
289
+ newAssay.UpdateColumnAt(tableIndex, columnIndex, header, unwrap(cells));
290
+ return newAssay;
291
+ };
292
+ }
293
+ static updateColumn(tableName, columnIndex, header, cells) {
294
+ return (assay) => {
295
+ const newAssay = assay.Copy();
296
+ newAssay.UpdateColumn(tableName, columnIndex, header, unwrap(cells));
297
+ return newAssay;
298
+ };
299
+ }
300
+ static getColumnAt(tableIndex, columnIndex) {
301
+ return (assay) => {
302
+ const newAssay = assay.Copy();
303
+ return newAssay.GetColumnAt(tableIndex, columnIndex);
304
+ };
305
+ }
306
+ static getColumn(tableName, columnIndex) {
307
+ return (assay) => {
308
+ const newAssay = assay.Copy();
309
+ return newAssay.GetColumn(tableName, columnIndex);
310
+ };
311
+ }
312
+ static addRowAt(tableIndex, cells, rowIndex) {
313
+ return (assay) => {
314
+ const newAssay = assay.Copy();
315
+ newAssay.AddRowAt(tableIndex, unwrap(cells), unwrap(rowIndex));
316
+ return newAssay;
317
+ };
318
+ }
319
+ static addRow(tableName, cells, rowIndex) {
320
+ return (assay) => {
321
+ const newAssay = assay.Copy();
322
+ newAssay.AddRow(tableName, unwrap(cells), unwrap(rowIndex));
323
+ return newAssay;
324
+ };
325
+ }
326
+ static removeRowAt(tableIndex, rowIndex) {
327
+ return (assay) => {
328
+ const newAssay = assay.Copy();
329
+ newAssay.RemoveColumnAt(tableIndex, rowIndex);
330
+ return newAssay;
331
+ };
332
+ }
333
+ static removeRow(tableName, rowIndex) {
334
+ return (assay) => {
335
+ const newAssay = assay.Copy();
336
+ newAssay.RemoveRow(tableName, rowIndex);
337
+ return newAssay;
338
+ };
339
+ }
340
+ static updateRowAt(tableIndex, rowIndex, cells) {
341
+ return (assay) => {
342
+ const newAssay = assay.Copy();
343
+ newAssay.UpdateRowAt(tableIndex, rowIndex, cells);
344
+ return newAssay;
345
+ };
346
+ }
347
+ static updateRow(tableName, rowIndex, cells) {
348
+ return (assay) => {
349
+ const newAssay = assay.Copy();
350
+ newAssay.UpdateRow(tableName, rowIndex, cells);
351
+ return newAssay;
352
+ };
353
+ }
354
+ static getRowAt(tableIndex, rowIndex) {
355
+ return (assay) => {
356
+ const newAssay = assay.Copy();
357
+ return newAssay.GetRowAt(tableIndex, rowIndex);
358
+ };
359
+ }
360
+ static getRow(tableName, rowIndex) {
361
+ return (assay) => {
362
+ const newAssay = assay.Copy();
363
+ return newAssay.GetRow(tableName, rowIndex);
364
+ };
365
+ }
366
+ static setPerformers(performers, assay) {
367
+ assay.Performers = performers;
368
+ return assay;
369
+ }
370
+ Copy() {
371
+ const this$ = this;
372
+ const nextTables = ResizeArray_map((c) => c.Copy(), this$.Tables);
373
+ const nextComments = ResizeArray_map((c_1) => c_1.Copy(), this$.Comments);
374
+ const nextDataMap = map((d) => d.Copy(), this$.DataMap);
375
+ const nextPerformers = ResizeArray_map((c_2) => c_2.Copy(), this$.Performers);
376
+ const identifier = this$.Identifier;
377
+ const title = this$.Title;
378
+ const description = this$.Description;
379
+ const measurementType = this$.MeasurementType;
380
+ const technologyType = this$.TechnologyType;
381
+ const technologyPlatform = this$.TechnologyPlatform;
382
+ return ArcAssay.make(identifier, title, description, measurementType, technologyType, technologyPlatform, nextTables, nextDataMap, nextPerformers, nextComments);
383
+ }
384
+ UpdateBy(assay, onlyReplaceExisting, appendSequences) {
385
+ const this$ = this;
386
+ const onlyReplaceExisting_1 = defaultArg(onlyReplaceExisting, false);
387
+ const appendSequences_1 = defaultArg(appendSequences, false);
388
+ const updateAlways = !onlyReplaceExisting_1;
389
+ if (assay.Title != null ? true : updateAlways) {
390
+ this$.Title = assay.Title;
391
+ }
392
+ if (assay.Description != null ? true : updateAlways) {
393
+ this$.Description = assay.Description;
394
+ }
395
+ if (assay.MeasurementType != null ? true : updateAlways) {
396
+ this$.MeasurementType = assay.MeasurementType;
397
+ }
398
+ if (assay.TechnologyType != null ? true : updateAlways) {
399
+ this$.TechnologyType = assay.TechnologyType;
400
+ }
401
+ if (assay.TechnologyPlatform != null ? true : updateAlways) {
402
+ this$.TechnologyPlatform = assay.TechnologyPlatform;
403
+ }
404
+ if (assay.Tables.length !== 0 ? true : updateAlways) {
405
+ let s;
406
+ const origin = this$.Tables;
407
+ const next = assay.Tables;
408
+ if (!appendSequences_1) {
409
+ s = ResizeArray_map((x) => x, next);
410
+ } else {
411
+ const combined = [];
412
+ let enumerator = getEnumerator(origin);
413
+ try {
414
+ while (enumerator["System.Collections.IEnumerator.MoveNext"]()) {
415
+ const e = enumerator["System.Collections.Generic.IEnumerator`1.get_Current"]();
416
+ if (!contains$1(e, combined, {
417
+ Equals: equals,
418
+ GetHashCode: safeHash
419
+ })) {
420
+ void combined.push(e);
421
+ }
422
+ }
423
+ } finally {
424
+ disposeSafe(enumerator);
425
+ }
426
+ let enumerator_1 = getEnumerator(next);
427
+ try {
428
+ while (enumerator_1["System.Collections.IEnumerator.MoveNext"]()) {
429
+ const e_1 = enumerator_1["System.Collections.Generic.IEnumerator`1.get_Current"]();
430
+ if (!contains$1(e_1, combined, {
431
+ Equals: equals,
432
+ GetHashCode: safeHash
433
+ })) {
434
+ void combined.push(e_1);
435
+ }
436
+ }
437
+ } finally {
438
+ disposeSafe(enumerator_1);
439
+ }
440
+ s = combined;
441
+ }
442
+ this$.Tables = s;
443
+ }
444
+ if (assay.Performers.length !== 0 ? true : updateAlways) {
445
+ let s_1;
446
+ const origin_1 = this$.Performers;
447
+ const next_1 = assay.Performers;
448
+ if (!appendSequences_1) {
449
+ s_1 = ResizeArray_map((x_3) => x_3, next_1);
450
+ } else {
451
+ const combined_1 = [];
452
+ let enumerator_2 = getEnumerator(origin_1);
453
+ try {
454
+ while (enumerator_2["System.Collections.IEnumerator.MoveNext"]()) {
455
+ const e_2 = enumerator_2["System.Collections.Generic.IEnumerator`1.get_Current"]();
456
+ if (!contains$1(e_2, combined_1, {
457
+ Equals: equals,
458
+ GetHashCode: safeHash
459
+ })) {
460
+ void combined_1.push(e_2);
461
+ }
462
+ }
463
+ } finally {
464
+ disposeSafe(enumerator_2);
465
+ }
466
+ let enumerator_1_1 = getEnumerator(next_1);
467
+ try {
468
+ while (enumerator_1_1["System.Collections.IEnumerator.MoveNext"]()) {
469
+ const e_1_1 = enumerator_1_1["System.Collections.Generic.IEnumerator`1.get_Current"]();
470
+ if (!contains$1(e_1_1, combined_1, {
471
+ Equals: equals,
472
+ GetHashCode: safeHash
473
+ })) {
474
+ void combined_1.push(e_1_1);
475
+ }
476
+ }
477
+ } finally {
478
+ disposeSafe(enumerator_1_1);
479
+ }
480
+ s_1 = combined_1;
481
+ }
482
+ this$.Performers = s_1;
483
+ }
484
+ if (assay.Comments.length !== 0 ? true : updateAlways) {
485
+ let s_2;
486
+ const origin_2 = this$.Comments;
487
+ const next_2 = assay.Comments;
488
+ if (!appendSequences_1) {
489
+ s_2 = ResizeArray_map((x_6) => x_6, next_2);
490
+ } else {
491
+ const combined_2 = [];
492
+ let enumerator_3 = getEnumerator(origin_2);
493
+ try {
494
+ while (enumerator_3["System.Collections.IEnumerator.MoveNext"]()) {
495
+ const e_3 = enumerator_3["System.Collections.Generic.IEnumerator`1.get_Current"]();
496
+ if (!contains$1(e_3, combined_2, {
497
+ Equals: equals,
498
+ GetHashCode: safeHash
499
+ })) {
500
+ void combined_2.push(e_3);
501
+ }
502
+ }
503
+ } finally {
504
+ disposeSafe(enumerator_3);
505
+ }
506
+ let enumerator_1_2 = getEnumerator(next_2);
507
+ try {
508
+ while (enumerator_1_2["System.Collections.IEnumerator.MoveNext"]()) {
509
+ const e_1_2 = enumerator_1_2["System.Collections.Generic.IEnumerator`1.get_Current"]();
510
+ if (!contains$1(e_1_2, combined_2, {
511
+ Equals: equals,
512
+ GetHashCode: safeHash
513
+ })) {
514
+ void combined_2.push(e_1_2);
515
+ }
516
+ }
517
+ } finally {
518
+ disposeSafe(enumerator_1_2);
519
+ }
520
+ s_2 = combined_2;
521
+ }
522
+ this$.Comments = s_2;
523
+ }
524
+ }
525
+ toString() {
526
+ const this$ = this;
527
+ const arg = this$.Identifier;
528
+ const arg_1 = this$.Title;
529
+ const arg_2 = this$.Description;
530
+ const arg_3 = this$.MeasurementType;
531
+ const arg_4 = this$.TechnologyType;
532
+ const arg_5 = this$.TechnologyPlatform;
533
+ const arg_6 = this$.Tables;
534
+ const arg_7 = this$.Performers;
535
+ const arg_8 = this$.Comments;
536
+ return toText(printf('ArcAssay({\r\n Identifier = "%s",\r\n Title = %A,\r\n Description = %A,\r\n MeasurementType = %A,\r\n TechnologyType = %A,\r\n TechnologyPlatform = %A,\r\n Tables = %A,\r\n Performers = %A,\r\n Comments = %A\r\n})'))(arg)(arg_1)(arg_2)(arg_3)(arg_4)(arg_5)(arg_6)(arg_7)(arg_8);
537
+ }
538
+ AddToInvestigation(investigation) {
539
+ const this$ = this;
540
+ this$.Investigation = investigation;
541
+ }
542
+ RemoveFromInvestigation() {
543
+ const this$ = this;
544
+ this$.Investigation = void 0;
545
+ }
546
+ UpdateReferenceByAssayFile(assay, onlyReplaceExisting) {
547
+ const this$ = this;
548
+ const updateAlways = !defaultArg(onlyReplaceExisting, false);
549
+ if (assay.Title != null ? true : updateAlways) {
550
+ this$.Title = assay.Title;
551
+ }
552
+ if (assay.Description != null ? true : updateAlways) {
553
+ this$.Description = assay.Description;
554
+ }
555
+ if (assay.MeasurementType != null ? true : updateAlways) {
556
+ this$.MeasurementType = assay.MeasurementType;
557
+ }
558
+ if (assay.TechnologyPlatform != null ? true : updateAlways) {
559
+ this$.TechnologyPlatform = assay.TechnologyPlatform;
560
+ }
561
+ if (assay.TechnologyType != null ? true : updateAlways) {
562
+ this$.TechnologyType = assay.TechnologyType;
563
+ }
564
+ if (assay.Tables.length !== 0 ? true : updateAlways) {
565
+ this$.Tables = assay.Tables;
566
+ }
567
+ if (assay.Comments.length !== 0 ? true : updateAlways) {
568
+ this$.Comments = assay.Comments;
569
+ }
570
+ this$.DataMap = assay.DataMap;
571
+ if (assay.Performers.length !== 0 ? true : updateAlways) {
572
+ this$.Performers = assay.Performers;
573
+ }
574
+ }
575
+ StructurallyEquals(other) {
576
+ let a, b, a_1, b_1, a_2, b_2;
577
+ const this$ = this;
578
+ return forAll((x) => x === true, [this$.Identifier === other.Identifier, equals(this$.Title, other.Title), equals(this$.Description, other.Description), equals(this$.MeasurementType, other.MeasurementType), equals(this$.TechnologyType, other.TechnologyType), equals(this$.TechnologyPlatform, other.TechnologyPlatform), equals(this$.DataMap, other.DataMap), (a = this$.Tables, b = other.Tables, length(a) === length(b) && fold((acc, e) => {
579
+ if (acc) {
580
+ return e;
581
+ } else {
582
+ return false;
583
+ }
584
+ }, true, toList(delay(() => map$1((i_1) => equals(item(i_1, a), item(i_1, b)), rangeDouble(0, 1, length(a) - 1)))))), (a_1 = this$.Performers, b_1 = other.Performers, length(a_1) === length(b_1) && fold((acc_1, e_1) => {
585
+ if (acc_1) {
586
+ return e_1;
587
+ } else {
588
+ return false;
589
+ }
590
+ }, true, toList(delay(() => map$1((i_2) => equals(item(i_2, a_1), item(i_2, b_1)), rangeDouble(0, 1, length(a_1) - 1)))))), (a_2 = this$.Comments, b_2 = other.Comments, length(a_2) === length(b_2) && fold((acc_2, e_2) => {
591
+ if (acc_2) {
592
+ return e_2;
593
+ } else {
594
+ return false;
595
+ }
596
+ }, true, toList(delay(() => map$1((i_3) => equals(item(i_3, a_2), item(i_3, b_2)), rangeDouble(0, 1, length(a_2) - 1))))))]);
597
+ }
598
+ ReferenceEquals(other) {
599
+ const this$ = this;
600
+ return this$ === other;
601
+ }
602
+ Equals(other) {
603
+ let assay;
604
+ const this$ = this;
605
+ return other instanceof ArcAssay && (assay = other, this$.StructurallyEquals(assay));
606
+ }
607
+ GetLightHashCode() {
608
+ const this$ = this;
609
+ return boxHashArray([this$.Identifier, boxHashOption(this$.Title), boxHashOption(this$.Description), boxHashOption(this$.MeasurementType), boxHashOption(this$.TechnologyType), boxHashOption(this$.TechnologyPlatform), boxHashSeq(this$.Tables), boxHashSeq(this$.Performers), boxHashSeq(this$.Comments)]) | 0;
610
+ }
611
+ GetHashCode() {
612
+ const this$ = this;
613
+ return boxHashArray([this$.Identifier, boxHashOption(this$.Title), boxHashOption(this$.Description), boxHashOption(this$.MeasurementType), boxHashOption(this$.TechnologyType), boxHashOption(this$.TechnologyPlatform), boxHashOption(this$.DataMap), boxHashSeq(this$.Tables), boxHashSeq(this$.Performers), boxHashSeq(this$.Comments)]) | 0;
614
+ }
615
+ }
616
+ function ArcAssay_$reflection() {
617
+ return class_type("ARCtrl.ArcAssay", void 0, ArcAssay, ArcTables_$reflection());
618
+ }
619
+ function ArcAssay_$ctor_11E1F34(identifier, title, description, measurementType, technologyType, technologyPlatform, tables, datamap, performers, comments) {
620
+ return new ArcAssay(identifier, title, description, measurementType, technologyType, technologyPlatform, tables, datamap, performers, comments);
621
+ }
622
+ class ArcStudy extends ArcTables {
623
+ constructor(identifier, title, description, submissionDate, publicReleaseDate, publications, contacts, studyDesignDescriptors, tables, datamap, registeredAssayIdentifiers, comments) {
624
+ super(defaultArg(tables, []));
625
+ let identifier_1;
626
+ const publications_1 = defaultArg(publications, []);
627
+ const contacts_1 = defaultArg(contacts, []);
628
+ const studyDesignDescriptors_1 = defaultArg(studyDesignDescriptors, []);
629
+ const registeredAssayIdentifiers_1 = defaultArg(registeredAssayIdentifiers, []);
630
+ const comments_1 = defaultArg(comments, []);
631
+ this["identifier@579"] = (identifier_1 = identifier.trim(), checkValidCharacters(identifier_1), identifier_1);
632
+ this.investigation = void 0;
633
+ this["title@584"] = title;
634
+ this["description@585"] = description;
635
+ this["submissionDate@586"] = submissionDate;
636
+ this["publicReleaseDate@587"] = publicReleaseDate;
637
+ this["publications@588-1"] = publications_1;
638
+ this["contacts@589-1"] = contacts_1;
639
+ this["studyDesignDescriptors@590-1"] = studyDesignDescriptors_1;
640
+ this["datamap@591"] = datamap;
641
+ this["registeredAssayIdentifiers@592-1"] = registeredAssayIdentifiers_1;
642
+ this["comments@593-1"] = comments_1;
643
+ this.staticHash = 0;
644
+ }
645
+ get Identifier() {
646
+ const this$ = this;
647
+ return this$["identifier@579"];
648
+ }
649
+ set Identifier(i) {
650
+ const this$ = this;
651
+ this$["identifier@579"] = i;
652
+ }
653
+ get Investigation() {
654
+ const this$ = this;
655
+ return unwrap(this$.investigation);
656
+ }
657
+ set Investigation(i) {
658
+ const this$ = this;
659
+ this$.investigation = i;
660
+ }
661
+ get Title() {
662
+ const this$ = this;
663
+ return unwrap(this$["title@584"]);
664
+ }
665
+ set Title(n) {
666
+ const this$ = this;
667
+ this$["title@584"] = n;
668
+ }
669
+ get Description() {
670
+ const this$ = this;
671
+ return unwrap(this$["description@585"]);
672
+ }
673
+ set Description(n) {
674
+ const this$ = this;
675
+ this$["description@585"] = n;
676
+ }
677
+ get SubmissionDate() {
678
+ const this$ = this;
679
+ return unwrap(this$["submissionDate@586"]);
680
+ }
681
+ set SubmissionDate(n) {
682
+ const this$ = this;
683
+ this$["submissionDate@586"] = n;
684
+ }
685
+ get PublicReleaseDate() {
686
+ const this$ = this;
687
+ return unwrap(this$["publicReleaseDate@587"]);
688
+ }
689
+ set PublicReleaseDate(n) {
690
+ const this$ = this;
691
+ this$["publicReleaseDate@587"] = n;
692
+ }
693
+ get Publications() {
694
+ const this$ = this;
695
+ return this$["publications@588-1"];
696
+ }
697
+ set Publications(n) {
698
+ const this$ = this;
699
+ this$["publications@588-1"] = n;
700
+ }
701
+ get Contacts() {
702
+ const this$ = this;
703
+ return this$["contacts@589-1"];
704
+ }
705
+ set Contacts(n) {
706
+ const this$ = this;
707
+ this$["contacts@589-1"] = n;
708
+ }
709
+ get StudyDesignDescriptors() {
710
+ const this$ = this;
711
+ return this$["studyDesignDescriptors@590-1"];
712
+ }
713
+ set StudyDesignDescriptors(n) {
714
+ const this$ = this;
715
+ this$["studyDesignDescriptors@590-1"] = n;
716
+ }
717
+ get DataMap() {
718
+ const this$ = this;
719
+ return unwrap(this$["datamap@591"]);
720
+ }
721
+ set DataMap(n) {
722
+ const this$ = this;
723
+ this$["datamap@591"] = n;
724
+ }
725
+ get RegisteredAssayIdentifiers() {
726
+ const this$ = this;
727
+ return this$["registeredAssayIdentifiers@592-1"];
728
+ }
729
+ set RegisteredAssayIdentifiers(n) {
730
+ const this$ = this;
731
+ this$["registeredAssayIdentifiers@592-1"] = n;
732
+ }
733
+ get Comments() {
734
+ const this$ = this;
735
+ return this$["comments@593-1"];
736
+ }
737
+ set Comments(n) {
738
+ const this$ = this;
739
+ this$["comments@593-1"] = n;
740
+ }
741
+ get StaticHash() {
742
+ const this$ = this;
743
+ return this$.staticHash | 0;
744
+ }
745
+ set StaticHash(h) {
746
+ const this$ = this;
747
+ this$.staticHash = h | 0;
748
+ }
749
+ static init(identifier) {
750
+ return new ArcStudy(identifier);
751
+ }
752
+ static create(identifier, title, description, submissionDate, publicReleaseDate, publications, contacts, studyDesignDescriptors, tables, datamap, registeredAssayIdentifiers, comments) {
753
+ return new ArcStudy(identifier, unwrap(title), unwrap(description), unwrap(submissionDate), unwrap(publicReleaseDate), unwrap(publications), unwrap(contacts), unwrap(studyDesignDescriptors), unwrap(tables), unwrap(datamap), unwrap(registeredAssayIdentifiers), unwrap(comments));
754
+ }
755
+ static make(identifier, title, description, submissionDate, publicReleaseDate, publications, contacts, studyDesignDescriptors, tables, datamap, registeredAssayIdentifiers, comments) {
756
+ return new ArcStudy(identifier, unwrap(title), unwrap(description), unwrap(submissionDate), unwrap(publicReleaseDate), publications, contacts, studyDesignDescriptors, tables, unwrap(datamap), registeredAssayIdentifiers, comments);
757
+ }
758
+ get isEmpty() {
759
+ const this$ = this;
760
+ return equals(this$.Title, void 0) && equals(this$.Description, void 0) && equals(this$.SubmissionDate, void 0) && equals(this$.PublicReleaseDate, void 0) && this$.Publications.length === 0 && this$.Contacts.length === 0 && this$.StudyDesignDescriptors.length === 0 && this$.Tables.length === 0 && this$.RegisteredAssayIdentifiers.length === 0 && this$.Comments.length === 0;
761
+ }
762
+ static get FileName() {
763
+ return "isa.study.xlsx";
764
+ }
765
+ get RegisteredAssayIdentifierCount() {
766
+ const this$ = this;
767
+ return this$.RegisteredAssayIdentifiers.length | 0;
768
+ }
769
+ get RegisteredAssayCount() {
770
+ const this$ = this;
771
+ return this$.RegisteredAssays.length | 0;
772
+ }
773
+ get RegisteredAssays() {
774
+ const this$ = this;
775
+ let inv;
776
+ const investigation = this$.Investigation;
777
+ if (investigation != null) {
778
+ inv = value(investigation);
779
+ } else {
780
+ throw new Error("Cannot execute this function. Object is not part of ArcInvestigation.");
781
+ }
782
+ const collection = choose((assayIdentifier) => inv.TryGetAssay(assayIdentifier), this$.RegisteredAssayIdentifiers);
783
+ return Array.from(collection);
784
+ }
785
+ get VacantAssayIdentifiers() {
786
+ const this$ = this;
787
+ let inv;
788
+ const investigation = this$.Investigation;
789
+ if (investigation != null) {
790
+ inv = value(investigation);
791
+ } else {
792
+ throw new Error("Cannot execute this function. Object is not part of ArcInvestigation.");
793
+ }
794
+ const collection = filter((arg) => !inv.ContainsAssay(arg), this$.RegisteredAssayIdentifiers);
795
+ return Array.from(collection);
796
+ }
797
+ AddRegisteredAssay(assay) {
798
+ const this$ = this;
799
+ let inv;
800
+ const investigation = this$.Investigation;
801
+ if (investigation != null) {
802
+ inv = value(investigation);
803
+ } else {
804
+ throw new Error("Cannot execute this function. Object is not part of ArcInvestigation.");
805
+ }
806
+ inv.AddAssay(assay);
807
+ inv.RegisterAssay(this$.Identifier, assay.Identifier);
808
+ }
809
+ static addRegisteredAssay(assay) {
810
+ return (study) => {
811
+ const newStudy = study.Copy();
812
+ newStudy.AddRegisteredAssay(assay);
813
+ return newStudy;
814
+ };
815
+ }
816
+ InitRegisteredAssay(assayIdentifier) {
817
+ const this$ = this;
818
+ const assay = new ArcAssay(assayIdentifier);
819
+ this$.AddRegisteredAssay(assay);
820
+ return assay;
821
+ }
822
+ static initRegisteredAssay(assayIdentifier) {
823
+ return (study) => {
824
+ const copy = study.Copy();
825
+ return [copy, copy.InitRegisteredAssay(assayIdentifier)];
826
+ };
827
+ }
828
+ RegisterAssay(assayIdentifier) {
829
+ const this$ = this;
830
+ if (contains(assayIdentifier, this$.RegisteredAssayIdentifiers, {
831
+ Equals: (x, y) => x === y,
832
+ GetHashCode: stringHash
833
+ })) {
834
+ throw new Error(`Assay \`${assayIdentifier}\` is already registered on the study.`);
835
+ }
836
+ void this$.RegisteredAssayIdentifiers.push(assayIdentifier);
837
+ }
838
+ static registerAssay(assayIdentifier) {
839
+ return (study) => {
840
+ const copy = study.Copy();
841
+ copy.RegisterAssay(assayIdentifier);
842
+ return copy;
843
+ };
844
+ }
845
+ DeregisterAssay(assayIdentifier) {
846
+ const this$ = this;
847
+ removeInPlace(assayIdentifier, this$.RegisteredAssayIdentifiers, {
848
+ Equals: (x, y) => x === y,
849
+ GetHashCode: stringHash
850
+ });
851
+ }
852
+ static deregisterAssay(assayIdentifier) {
853
+ return (study) => {
854
+ const copy = study.Copy();
855
+ copy.DeregisterAssay(assayIdentifier);
856
+ return copy;
857
+ };
858
+ }
859
+ GetRegisteredAssay(assayIdentifier) {
860
+ const this$ = this;
861
+ if (!contains(assayIdentifier, this$.RegisteredAssayIdentifiers, {
862
+ Equals: (x, y) => x === y,
863
+ GetHashCode: stringHash
864
+ })) {
865
+ throw new Error(`Assay \`${assayIdentifier}\` is not registered on the study.`);
866
+ }
867
+ let inv;
868
+ const investigation = this$.Investigation;
869
+ if (investigation != null) {
870
+ inv = value(investigation);
871
+ } else {
872
+ throw new Error("Cannot execute this function. Object is not part of ArcInvestigation.");
873
+ }
874
+ return inv.GetAssay(assayIdentifier);
875
+ }
876
+ static getRegisteredAssay(assayIdentifier) {
877
+ return (study) => {
878
+ const copy = study.Copy();
879
+ return copy.GetRegisteredAssay(assayIdentifier);
880
+ };
881
+ }
882
+ static getRegisteredAssays() {
883
+ return (study) => {
884
+ const copy = study.Copy();
885
+ return copy.RegisteredAssays;
886
+ };
887
+ }
888
+ GetRegisteredAssaysOrIdentifier() {
889
+ const this$ = this;
890
+ const matchValue = this$.Investigation;
891
+ if (matchValue == null) {
892
+ return ResizeArray_map((identifier_1) => ArcAssay.init(identifier_1), this$.RegisteredAssayIdentifiers);
893
+ } else {
894
+ const i = value(matchValue);
895
+ return ResizeArray_map((identifier) => {
896
+ const matchValue_1 = i.TryGetAssay(identifier);
897
+ if (matchValue_1 == null) {
898
+ return ArcAssay.init(identifier);
899
+ } else {
900
+ return value(matchValue_1);
901
+ }
902
+ }, this$.RegisteredAssayIdentifiers);
903
+ }
904
+ }
905
+ static getRegisteredAssaysOrIdentifier() {
906
+ return (study) => {
907
+ const copy = study.Copy();
908
+ return copy.GetRegisteredAssaysOrIdentifier();
909
+ };
910
+ }
911
+ static addTable(table, index) {
912
+ return (study) => {
913
+ const c = study.Copy();
914
+ c.AddTable(table, unwrap(index));
915
+ return c;
916
+ };
917
+ }
918
+ static addTables(tables, index) {
919
+ return (study) => {
920
+ const c = study.Copy();
921
+ c.AddTables(tables, unwrap(index));
922
+ return c;
923
+ };
924
+ }
925
+ static initTable(tableName, index) {
926
+ return (study) => {
927
+ const c = study.Copy();
928
+ return [c, c.InitTable(tableName, unwrap(index))];
929
+ };
930
+ }
931
+ static initTables(tableNames, index) {
932
+ return (study) => {
933
+ const c = study.Copy();
934
+ c.InitTables(tableNames, unwrap(index));
935
+ return c;
936
+ };
937
+ }
938
+ static getTableAt(index) {
939
+ return (study) => {
940
+ const newAssay = study.Copy();
941
+ return newAssay.GetTableAt(index);
942
+ };
943
+ }
944
+ static getTable(name) {
945
+ return (study) => {
946
+ const newAssay = study.Copy();
947
+ return newAssay.GetTable(name);
948
+ };
949
+ }
950
+ static updateTableAt(index, table) {
951
+ return (study) => {
952
+ const newAssay = study.Copy();
953
+ newAssay.UpdateTableAt(index, table);
954
+ return newAssay;
955
+ };
956
+ }
957
+ static updateTable(name, table) {
958
+ return (study) => {
959
+ const newAssay = study.Copy();
960
+ newAssay.UpdateTable(name, table);
961
+ return newAssay;
962
+ };
963
+ }
964
+ static setTableAt(index, table) {
965
+ return (study) => {
966
+ const newAssay = study.Copy();
967
+ newAssay.SetTableAt(index, table);
968
+ return newAssay;
969
+ };
970
+ }
971
+ static setTable(name, table) {
972
+ return (study) => {
973
+ const newAssay = study.Copy();
974
+ newAssay.SetTable(name, table);
975
+ return newAssay;
976
+ };
977
+ }
978
+ static removeTableAt(index) {
979
+ return (study) => {
980
+ const newAssay = study.Copy();
981
+ newAssay.RemoveTableAt(index);
982
+ return newAssay;
983
+ };
984
+ }
985
+ static removeTable(name) {
986
+ return (study) => {
987
+ const newAssay = study.Copy();
988
+ newAssay.RemoveTable(name);
989
+ return newAssay;
990
+ };
991
+ }
992
+ static mapTableAt(index, updateFun) {
993
+ return (study) => {
994
+ const newAssay = study.Copy();
995
+ newAssay.MapTableAt(index, updateFun);
996
+ return newAssay;
997
+ };
998
+ }
999
+ static mapTable(name, updateFun) {
1000
+ return (study) => {
1001
+ const newAssay = study.Copy();
1002
+ newAssay.MapTable(name, updateFun);
1003
+ return newAssay;
1004
+ };
1005
+ }
1006
+ static renameTableAt(index, newName) {
1007
+ return (study) => {
1008
+ const newAssay = study.Copy();
1009
+ newAssay.RenameTableAt(index, newName);
1010
+ return newAssay;
1011
+ };
1012
+ }
1013
+ static renameTable(name, newName) {
1014
+ return (study) => {
1015
+ const newAssay = study.Copy();
1016
+ newAssay.RenameTable(name, newName);
1017
+ return newAssay;
1018
+ };
1019
+ }
1020
+ static addColumnAt(tableIndex, header, cells, columnIndex, forceReplace) {
1021
+ return (study) => {
1022
+ const newAssay = study.Copy();
1023
+ newAssay.AddColumnAt(tableIndex, header, unwrap(cells), unwrap(columnIndex), unwrap(forceReplace));
1024
+ return newAssay;
1025
+ };
1026
+ }
1027
+ static addColumn(tableName, header, cells, columnIndex, forceReplace) {
1028
+ return (study) => {
1029
+ const newAssay = study.Copy();
1030
+ newAssay.AddColumn(tableName, header, unwrap(cells), unwrap(columnIndex), unwrap(forceReplace));
1031
+ return newAssay;
1032
+ };
1033
+ }
1034
+ static removeColumnAt(tableIndex, columnIndex) {
1035
+ return (study) => {
1036
+ const newAssay = study.Copy();
1037
+ newAssay.RemoveColumnAt(tableIndex, columnIndex);
1038
+ return newAssay;
1039
+ };
1040
+ }
1041
+ static removeColumn(tableName, columnIndex) {
1042
+ return (study) => {
1043
+ const newAssay = study.Copy();
1044
+ newAssay.RemoveColumn(tableName, columnIndex);
1045
+ return newAssay;
1046
+ };
1047
+ }
1048
+ static updateColumnAt(tableIndex, columnIndex, header, cells) {
1049
+ return (study) => {
1050
+ const newAssay = study.Copy();
1051
+ newAssay.UpdateColumnAt(tableIndex, columnIndex, header, unwrap(cells));
1052
+ return newAssay;
1053
+ };
1054
+ }
1055
+ static updateColumn(tableName, columnIndex, header, cells) {
1056
+ return (study) => {
1057
+ const newAssay = study.Copy();
1058
+ newAssay.UpdateColumn(tableName, columnIndex, header, unwrap(cells));
1059
+ return newAssay;
1060
+ };
1061
+ }
1062
+ static getColumnAt(tableIndex, columnIndex) {
1063
+ return (study) => {
1064
+ const newAssay = study.Copy();
1065
+ return newAssay.GetColumnAt(tableIndex, columnIndex);
1066
+ };
1067
+ }
1068
+ static getColumn(tableName, columnIndex) {
1069
+ return (study) => {
1070
+ const newAssay = study.Copy();
1071
+ return newAssay.GetColumn(tableName, columnIndex);
1072
+ };
1073
+ }
1074
+ static addRowAt(tableIndex, cells, rowIndex) {
1075
+ return (study) => {
1076
+ const newAssay = study.Copy();
1077
+ newAssay.AddRowAt(tableIndex, unwrap(cells), unwrap(rowIndex));
1078
+ return newAssay;
1079
+ };
1080
+ }
1081
+ static addRow(tableName, cells, rowIndex) {
1082
+ return (study) => {
1083
+ const newAssay = study.Copy();
1084
+ newAssay.AddRow(tableName, unwrap(cells), unwrap(rowIndex));
1085
+ return newAssay;
1086
+ };
1087
+ }
1088
+ static removeRowAt(tableIndex, rowIndex) {
1089
+ return (study) => {
1090
+ const newAssay = study.Copy();
1091
+ newAssay.RemoveColumnAt(tableIndex, rowIndex);
1092
+ return newAssay;
1093
+ };
1094
+ }
1095
+ static removeRow(tableName, rowIndex) {
1096
+ return (study) => {
1097
+ const newAssay = study.Copy();
1098
+ newAssay.RemoveRow(tableName, rowIndex);
1099
+ return newAssay;
1100
+ };
1101
+ }
1102
+ static updateRowAt(tableIndex, rowIndex, cells) {
1103
+ return (study) => {
1104
+ const newAssay = study.Copy();
1105
+ newAssay.UpdateRowAt(tableIndex, rowIndex, cells);
1106
+ return newAssay;
1107
+ };
1108
+ }
1109
+ static updateRow(tableName, rowIndex, cells) {
1110
+ return (study) => {
1111
+ const newAssay = study.Copy();
1112
+ newAssay.UpdateRow(tableName, rowIndex, cells);
1113
+ return newAssay;
1114
+ };
1115
+ }
1116
+ static getRowAt(tableIndex, rowIndex) {
1117
+ return (study) => {
1118
+ const newAssay = study.Copy();
1119
+ return newAssay.GetRowAt(tableIndex, rowIndex);
1120
+ };
1121
+ }
1122
+ static getRow(tableName, rowIndex) {
1123
+ return (study) => {
1124
+ const newAssay = study.Copy();
1125
+ return newAssay.GetRow(tableName, rowIndex);
1126
+ };
1127
+ }
1128
+ AddToInvestigation(investigation) {
1129
+ const this$ = this;
1130
+ this$.Investigation = investigation;
1131
+ }
1132
+ RemoveFromInvestigation() {
1133
+ const this$ = this;
1134
+ this$.Investigation = void 0;
1135
+ }
1136
+ Copy(copyInvestigationRef) {
1137
+ const this$ = this;
1138
+ const copyInvestigationRef_1 = defaultArg(copyInvestigationRef, false);
1139
+ const nextTables = [];
1140
+ const nextAssayIdentifiers = Array.from(this$.RegisteredAssayIdentifiers);
1141
+ let enumerator = getEnumerator(this$.Tables);
1142
+ try {
1143
+ while (enumerator["System.Collections.IEnumerator.MoveNext"]()) {
1144
+ const table = enumerator["System.Collections.Generic.IEnumerator`1.get_Current"]();
1145
+ const copy = table.Copy();
1146
+ void nextTables.push(copy);
1147
+ }
1148
+ } finally {
1149
+ disposeSafe(enumerator);
1150
+ }
1151
+ const nextComments = ResizeArray_map((c) => c.Copy(), this$.Comments);
1152
+ const nextContacts = ResizeArray_map((c_1) => c_1.Copy(), this$.Contacts);
1153
+ const nextPublications = ResizeArray_map((c_2) => c_2.Copy(), this$.Publications);
1154
+ const nextStudyDesignDescriptors = ResizeArray_map((c_3) => c_3.Copy(), this$.StudyDesignDescriptors);
1155
+ const nextDataMap = map((d) => d.Copy(), this$.DataMap);
1156
+ let study;
1157
+ const identifier = this$.Identifier;
1158
+ const title = this$.Title;
1159
+ const description = this$.Description;
1160
+ const submissionDate = this$.SubmissionDate;
1161
+ const publicReleaseDate = this$.PublicReleaseDate;
1162
+ study = ArcStudy.make(identifier, title, description, submissionDate, publicReleaseDate, nextPublications, nextContacts, nextStudyDesignDescriptors, nextTables, nextDataMap, nextAssayIdentifiers, nextComments);
1163
+ if (copyInvestigationRef_1) {
1164
+ study.Investigation = this$.Investigation;
1165
+ }
1166
+ return study;
1167
+ }
1168
+ UpdateReferenceByStudyFile(study, onlyReplaceExisting, keepUnusedRefTables) {
1169
+ const this$ = this;
1170
+ const updateAlways = !defaultArg(onlyReplaceExisting, false);
1171
+ if (study.Title != null ? true : updateAlways) {
1172
+ this$.Title = study.Title;
1173
+ }
1174
+ if (study.Description != null ? true : updateAlways) {
1175
+ this$.Description = study.Description;
1176
+ }
1177
+ if (study.SubmissionDate != null ? true : updateAlways) {
1178
+ this$.SubmissionDate = study.SubmissionDate;
1179
+ }
1180
+ if (study.PublicReleaseDate != null ? true : updateAlways) {
1181
+ this$.PublicReleaseDate = study.PublicReleaseDate;
1182
+ }
1183
+ if (study.Publications.length !== 0 ? true : updateAlways) {
1184
+ this$.Publications = study.Publications;
1185
+ }
1186
+ if (study.Contacts.length !== 0 ? true : updateAlways) {
1187
+ this$.Contacts = study.Contacts;
1188
+ }
1189
+ if (study.StudyDesignDescriptors.length !== 0 ? true : updateAlways) {
1190
+ this$.StudyDesignDescriptors = study.StudyDesignDescriptors;
1191
+ }
1192
+ if (study.Tables.length !== 0 ? true : updateAlways) {
1193
+ const tables = ArcTables.updateReferenceTablesBySheets(new ArcTables(this$.Tables), new ArcTables(study.Tables), unwrap(keepUnusedRefTables));
1194
+ this$.Tables = tables.Tables;
1195
+ }
1196
+ this$.DataMap = study.DataMap;
1197
+ if (study.RegisteredAssayIdentifiers.length !== 0 ? true : updateAlways) {
1198
+ this$.RegisteredAssayIdentifiers = study.RegisteredAssayIdentifiers;
1199
+ }
1200
+ if (study.Comments.length !== 0 ? true : updateAlways) {
1201
+ this$.Comments = study.Comments;
1202
+ }
1203
+ }
1204
+ StructurallyEquals(other) {
1205
+ let a, b, a_1, b_1, a_2, b_2, a_3, b_3, a_4, b_4, a_5, b_5;
1206
+ const this$ = this;
1207
+ return forAll((x) => x === true, [this$.Identifier === other.Identifier, equals(this$.Title, other.Title), equals(this$.Description, other.Description), equals(this$.SubmissionDate, other.SubmissionDate), equals(this$.PublicReleaseDate, other.PublicReleaseDate), equals(this$.DataMap, other.DataMap), (a = this$.Publications, b = other.Publications, length(a) === length(b) && fold((acc, e) => {
1208
+ if (acc) {
1209
+ return e;
1210
+ } else {
1211
+ return false;
1212
+ }
1213
+ }, true, toList(delay(() => map$1((i_1) => equals(item(i_1, a), item(i_1, b)), rangeDouble(0, 1, length(a) - 1)))))), (a_1 = this$.Contacts, b_1 = other.Contacts, length(a_1) === length(b_1) && fold((acc_1, e_1) => {
1214
+ if (acc_1) {
1215
+ return e_1;
1216
+ } else {
1217
+ return false;
1218
+ }
1219
+ }, true, toList(delay(() => map$1((i_2) => equals(item(i_2, a_1), item(i_2, b_1)), rangeDouble(0, 1, length(a_1) - 1)))))), (a_2 = this$.StudyDesignDescriptors, b_2 = other.StudyDesignDescriptors, length(a_2) === length(b_2) && fold((acc_2, e_2) => {
1220
+ if (acc_2) {
1221
+ return e_2;
1222
+ } else {
1223
+ return false;
1224
+ }
1225
+ }, true, toList(delay(() => map$1((i_3) => equals(item(i_3, a_2), item(i_3, b_2)), rangeDouble(0, 1, length(a_2) - 1)))))), (a_3 = this$.Tables, b_3 = other.Tables, length(a_3) === length(b_3) && fold((acc_3, e_3) => {
1226
+ if (acc_3) {
1227
+ return e_3;
1228
+ } else {
1229
+ return false;
1230
+ }
1231
+ }, true, toList(delay(() => map$1((i_4) => equals(item(i_4, a_3), item(i_4, b_3)), rangeDouble(0, 1, length(a_3) - 1)))))), (a_4 = this$.RegisteredAssayIdentifiers, b_4 = other.RegisteredAssayIdentifiers, length(a_4) === length(b_4) && fold((acc_4, e_4) => {
1232
+ if (acc_4) {
1233
+ return e_4;
1234
+ } else {
1235
+ return false;
1236
+ }
1237
+ }, true, toList(delay(() => map$1((i_5) => item(i_5, a_4) === item(i_5, b_4), rangeDouble(0, 1, length(a_4) - 1)))))), (a_5 = this$.Comments, b_5 = other.Comments, length(a_5) === length(b_5) && fold((acc_5, e_5) => {
1238
+ if (acc_5) {
1239
+ return e_5;
1240
+ } else {
1241
+ return false;
1242
+ }
1243
+ }, true, toList(delay(() => map$1((i_6) => equals(item(i_6, a_5), item(i_6, b_5)), rangeDouble(0, 1, length(a_5) - 1))))))]);
1244
+ }
1245
+ ReferenceEquals(other) {
1246
+ const this$ = this;
1247
+ return this$ === other;
1248
+ }
1249
+ toString() {
1250
+ const this$ = this;
1251
+ const arg = this$.Identifier;
1252
+ const arg_1 = this$.Title;
1253
+ const arg_2 = this$.Description;
1254
+ const arg_3 = this$.SubmissionDate;
1255
+ const arg_4 = this$.PublicReleaseDate;
1256
+ const arg_5 = this$.Publications;
1257
+ const arg_6 = this$.Contacts;
1258
+ const arg_7 = this$.StudyDesignDescriptors;
1259
+ const arg_8 = this$.Tables;
1260
+ const arg_9 = this$.RegisteredAssayIdentifiers;
1261
+ const arg_10 = this$.Comments;
1262
+ return toText(printf("ArcStudy {\r\n Identifier = %A,\r\n Title = %A,\r\n Description = %A,\r\n SubmissionDate = %A,\r\n PublicReleaseDate = %A,\r\n Publications = %A,\r\n Contacts = %A,\r\n StudyDesignDescriptors = %A,\r\n Tables = %A,\r\n RegisteredAssayIdentifiers = %A,\r\n Comments = %A,\r\n}"))(arg)(arg_1)(arg_2)(arg_3)(arg_4)(arg_5)(arg_6)(arg_7)(arg_8)(arg_9)(arg_10);
1263
+ }
1264
+ Equals(other) {
1265
+ let s;
1266
+ const this$ = this;
1267
+ return other instanceof ArcStudy && (s = other, this$.StructurallyEquals(s));
1268
+ }
1269
+ GetHashCode() {
1270
+ const this$ = this;
1271
+ return boxHashArray([this$.Identifier, boxHashOption(this$.Title), boxHashOption(this$.Description), boxHashOption(this$.SubmissionDate), boxHashOption(this$.PublicReleaseDate), boxHashOption(this$.DataMap), boxHashSeq(this$.Publications), boxHashSeq(this$.Contacts), boxHashSeq(this$.StudyDesignDescriptors), boxHashSeq(this$.Tables), boxHashSeq(this$.RegisteredAssayIdentifiers), boxHashSeq(this$.Comments)]) | 0;
1272
+ }
1273
+ GetLightHashCode() {
1274
+ const this$ = this;
1275
+ return boxHashArray([this$.Identifier, boxHashOption(this$.Title), boxHashOption(this$.Description), boxHashOption(this$.SubmissionDate), boxHashOption(this$.PublicReleaseDate), boxHashSeq(this$.Publications), boxHashSeq(this$.Contacts), boxHashSeq(this$.StudyDesignDescriptors), boxHashSeq(this$.Tables), boxHashSeq(this$.RegisteredAssayIdentifiers), boxHashSeq(this$.Comments)]) | 0;
1276
+ }
1277
+ }
1278
+ function ArcStudy_$reflection() {
1279
+ return class_type("ARCtrl.ArcStudy", void 0, ArcStudy, ArcTables_$reflection());
1280
+ }
1281
+ function ArcStudy_$ctor_64321D5B(identifier, title, description, submissionDate, publicReleaseDate, publications, contacts, studyDesignDescriptors, tables, datamap, registeredAssayIdentifiers, comments) {
1282
+ return new ArcStudy(identifier, title, description, submissionDate, publicReleaseDate, publications, contacts, studyDesignDescriptors, tables, datamap, registeredAssayIdentifiers, comments);
1283
+ }
1284
+ class ArcWorkflow {
1285
+ constructor(identifier, title, description, workflowType, uri, version, subWorkflowIdentifiers, parameters, components, datamap, contacts, comments) {
1286
+ let identifier_1;
1287
+ this["identifier@1151"] = (identifier_1 = identifier.trim(), checkValidCharacters(identifier_1), identifier_1);
1288
+ this.investigation = void 0;
1289
+ this["title@1156"] = title;
1290
+ this["description@1157"] = description;
1291
+ this["subWorkflowIdentifiers@1158"] = defaultArg(subWorkflowIdentifiers, []);
1292
+ this["workflowType@1159"] = workflowType;
1293
+ this["uri@1160"] = uri;
1294
+ this["version@1161"] = version;
1295
+ this["parameters@1162"] = defaultArg(parameters, []);
1296
+ this["components@1163"] = defaultArg(components, []);
1297
+ this.dataMap = datamap;
1298
+ this["contacts@1165"] = defaultArg(contacts, []);
1299
+ this["comments@1166"] = defaultArg(comments, []);
1300
+ this.staticHash = 0;
1301
+ }
1302
+ get Identifier() {
1303
+ const this$ = this;
1304
+ return this$["identifier@1151"];
1305
+ }
1306
+ set Identifier(i) {
1307
+ const this$ = this;
1308
+ this$["identifier@1151"] = i;
1309
+ }
1310
+ get Investigation() {
1311
+ const this$ = this;
1312
+ return unwrap(this$.investigation);
1313
+ }
1314
+ set Investigation(a) {
1315
+ const this$ = this;
1316
+ this$.investigation = a;
1317
+ }
1318
+ get Title() {
1319
+ const this$ = this;
1320
+ return unwrap(this$["title@1156"]);
1321
+ }
1322
+ set Title(t) {
1323
+ const this$ = this;
1324
+ this$["title@1156"] = t;
1325
+ }
1326
+ get Description() {
1327
+ const this$ = this;
1328
+ return unwrap(this$["description@1157"]);
1329
+ }
1330
+ set Description(d) {
1331
+ const this$ = this;
1332
+ this$["description@1157"] = d;
1333
+ }
1334
+ get SubWorkflowIdentifiers() {
1335
+ const this$ = this;
1336
+ return this$["subWorkflowIdentifiers@1158"];
1337
+ }
1338
+ set SubWorkflowIdentifiers(s) {
1339
+ const this$ = this;
1340
+ this$["subWorkflowIdentifiers@1158"] = s;
1341
+ }
1342
+ get WorkflowType() {
1343
+ const this$ = this;
1344
+ return unwrap(this$["workflowType@1159"]);
1345
+ }
1346
+ set WorkflowType(w) {
1347
+ const this$ = this;
1348
+ this$["workflowType@1159"] = w;
1349
+ }
1350
+ get URI() {
1351
+ const this$ = this;
1352
+ return unwrap(this$["uri@1160"]);
1353
+ }
1354
+ set URI(u) {
1355
+ const this$ = this;
1356
+ this$["uri@1160"] = u;
1357
+ }
1358
+ get Version() {
1359
+ const this$ = this;
1360
+ return unwrap(this$["version@1161"]);
1361
+ }
1362
+ set Version(v) {
1363
+ const this$ = this;
1364
+ this$["version@1161"] = v;
1365
+ }
1366
+ get Parameters() {
1367
+ const this$ = this;
1368
+ return this$["parameters@1162"];
1369
+ }
1370
+ set Parameters(p) {
1371
+ const this$ = this;
1372
+ this$["parameters@1162"] = p;
1373
+ }
1374
+ get Components() {
1375
+ const this$ = this;
1376
+ return this$["components@1163"];
1377
+ }
1378
+ set Components(c) {
1379
+ const this$ = this;
1380
+ this$["components@1163"] = c;
1381
+ }
1382
+ get DataMap() {
1383
+ const this$ = this;
1384
+ return unwrap(this$.dataMap);
1385
+ }
1386
+ set DataMap(dm) {
1387
+ const this$ = this;
1388
+ this$.dataMap = dm;
1389
+ }
1390
+ get Contacts() {
1391
+ const this$ = this;
1392
+ return this$["contacts@1165"];
1393
+ }
1394
+ set Contacts(c) {
1395
+ const this$ = this;
1396
+ this$["contacts@1165"] = c;
1397
+ }
1398
+ get Comments() {
1399
+ const this$ = this;
1400
+ return this$["comments@1166"];
1401
+ }
1402
+ set Comments(c) {
1403
+ const this$ = this;
1404
+ this$["comments@1166"] = c;
1405
+ }
1406
+ get StaticHash() {
1407
+ const this$ = this;
1408
+ return this$.staticHash | 0;
1409
+ }
1410
+ set StaticHash(s) {
1411
+ const this$ = this;
1412
+ this$.staticHash = s | 0;
1413
+ }
1414
+ static init(identifier) {
1415
+ return new ArcWorkflow(identifier);
1416
+ }
1417
+ static create(identifier, title, description, workflowType, uri, version, subWorkflowIdentifiers, parameters, components, datamap, contacts, comments) {
1418
+ return new ArcWorkflow(identifier, unwrap(title), unwrap(description), unwrap(workflowType), unwrap(uri), unwrap(version), unwrap(subWorkflowIdentifiers), unwrap(parameters), unwrap(components), unwrap(datamap), unwrap(contacts), unwrap(comments));
1419
+ }
1420
+ static make(identifier, title, description, workflowType, uri, version, subWorkflowIdentifiers, parameters, components, datamap, contacts, comments) {
1421
+ return new ArcWorkflow(identifier, unwrap(title), unwrap(description), unwrap(workflowType), unwrap(uri), unwrap(version), subWorkflowIdentifiers, parameters, components, unwrap(datamap), contacts, comments);
1422
+ }
1423
+ static get FileName() {
1424
+ return "isa.run.xlsx";
1425
+ }
1426
+ get SubWorkflowIdentifiersCount() {
1427
+ const this$ = this;
1428
+ return this$.SubWorkflowIdentifiers.length | 0;
1429
+ }
1430
+ get SubWorkflowCount() {
1431
+ const this$ = this;
1432
+ return this$.SubWorkflows.length | 0;
1433
+ }
1434
+ get SubWorkflows() {
1435
+ const this$ = this;
1436
+ let inv;
1437
+ const investigation = this$.Investigation;
1438
+ if (investigation != null) {
1439
+ inv = value(investigation);
1440
+ } else {
1441
+ throw new Error("Cannot execute this function. Object is not part of ArcInvestigation.");
1442
+ }
1443
+ const collection = choose((workflowIdentifier) => inv.TryGetWorkflow(workflowIdentifier), this$.SubWorkflowIdentifiers);
1444
+ return Array.from(collection);
1445
+ }
1446
+ get VacantSubWorkflowIdentifiers() {
1447
+ const this$ = this;
1448
+ let inv;
1449
+ const investigation = this$.Investigation;
1450
+ if (investigation != null) {
1451
+ inv = value(investigation);
1452
+ } else {
1453
+ throw new Error("Cannot execute this function. Object is not part of ArcInvestigation.");
1454
+ }
1455
+ const collection = filter((arg) => !inv.ContainsWorkflow(arg), this$.SubWorkflowIdentifiers);
1456
+ return Array.from(collection);
1457
+ }
1458
+ AddSubWorkflow(subWorkflow) {
1459
+ const this$ = this;
1460
+ let inv;
1461
+ const investigation = this$.Investigation;
1462
+ if (investigation != null) {
1463
+ inv = value(investigation);
1464
+ } else {
1465
+ throw new Error("Cannot execute this function. Object is not part of ArcInvestigation.");
1466
+ }
1467
+ inv.AddWorkflow(subWorkflow);
1468
+ }
1469
+ static addSubWorkflow(subWorkflow) {
1470
+ return (workflow) => {
1471
+ const newWorkflow = workflow.Copy();
1472
+ newWorkflow.AddSubWorkflow(subWorkflow);
1473
+ return newWorkflow;
1474
+ };
1475
+ }
1476
+ InitSubWorkflow(subWorkflowIdentifier) {
1477
+ const this$ = this;
1478
+ const subWorkflow = new ArcWorkflow(subWorkflowIdentifier);
1479
+ this$.AddSubWorkflow(subWorkflow);
1480
+ return subWorkflow;
1481
+ }
1482
+ static initSubWorkflow(subWorkflowIdentifier) {
1483
+ return (workflow) => {
1484
+ const copy = workflow.Copy();
1485
+ return [copy, copy.InitSubWorkflow(subWorkflowIdentifier)];
1486
+ };
1487
+ }
1488
+ RegisterSubWorkflow(subWorkflowIdentifier) {
1489
+ const this$ = this;
1490
+ if (contains(subWorkflowIdentifier, this$.SubWorkflowIdentifiers, {
1491
+ Equals: (x, y) => x === y,
1492
+ GetHashCode: stringHash
1493
+ })) {
1494
+ throw new Error(`SubWorkflow \`${subWorkflowIdentifier}\` is already registered on the workflow.`);
1495
+ }
1496
+ void this$.SubWorkflowIdentifiers.push(subWorkflowIdentifier);
1497
+ }
1498
+ static registerSubWorkflow(subWorkflowIdentifier) {
1499
+ return (workflow) => {
1500
+ const copy = workflow.Copy();
1501
+ copy.RegisterSubWorkflow(subWorkflowIdentifier);
1502
+ return copy;
1503
+ };
1504
+ }
1505
+ DeregisterSubWorkflow(subWorkflowIdentifier) {
1506
+ const this$ = this;
1507
+ removeInPlace(subWorkflowIdentifier, this$.SubWorkflowIdentifiers, {
1508
+ Equals: (x, y) => x === y,
1509
+ GetHashCode: stringHash
1510
+ });
1511
+ }
1512
+ static deregisterSubWorkflow(subWorkflowIdentifier) {
1513
+ return (workflow) => {
1514
+ const copy = workflow.Copy();
1515
+ copy.DeregisterSubWorkflow(subWorkflowIdentifier);
1516
+ return copy;
1517
+ };
1518
+ }
1519
+ GetRegisteredSubWorkflow(subWorkflowIdentifier) {
1520
+ const this$ = this;
1521
+ if (!contains(subWorkflowIdentifier, this$.SubWorkflowIdentifiers, {
1522
+ Equals: (x, y) => x === y,
1523
+ GetHashCode: stringHash
1524
+ })) {
1525
+ throw new Error(`SubWorkflow \`${subWorkflowIdentifier}\` is not registered on the workflow.`);
1526
+ }
1527
+ let inv;
1528
+ const investigation = this$.Investigation;
1529
+ if (investigation != null) {
1530
+ inv = value(investigation);
1531
+ } else {
1532
+ throw new Error("Cannot execute this function. Object is not part of ArcInvestigation.");
1533
+ }
1534
+ return inv.GetWorkflow(subWorkflowIdentifier);
1535
+ }
1536
+ static getRegisteredSubWorkflow(subWorkflowIdentifier) {
1537
+ return (workflow) => {
1538
+ const copy = workflow.Copy();
1539
+ return copy.GetRegisteredSubWorkflow(subWorkflowIdentifier);
1540
+ };
1541
+ }
1542
+ static getRegisteredSubWorkflows() {
1543
+ return (workflow) => {
1544
+ const copy = workflow.Copy();
1545
+ return copy.SubWorkflows;
1546
+ };
1547
+ }
1548
+ GetRegisteredSubWorkflowsOrIdentifier() {
1549
+ const this$ = this;
1550
+ const matchValue = this$.Investigation;
1551
+ if (matchValue == null) {
1552
+ return ResizeArray_map((identifier_1) => ArcWorkflow.init(identifier_1), this$.SubWorkflowIdentifiers);
1553
+ } else {
1554
+ const i = value(matchValue);
1555
+ return ResizeArray_map((identifier) => {
1556
+ const matchValue_1 = i.TryGetWorkflow(identifier);
1557
+ if (matchValue_1 == null) {
1558
+ return ArcWorkflow.init(identifier);
1559
+ } else {
1560
+ return value(matchValue_1);
1561
+ }
1562
+ }, this$.SubWorkflowIdentifiers);
1563
+ }
1564
+ }
1565
+ static getRegisteredSubWorkflowsOrIdentifier() {
1566
+ return (workflow) => {
1567
+ const copy = workflow.Copy();
1568
+ return copy.GetRegisteredSubWorkflowsOrIdentifier();
1569
+ };
1570
+ }
1571
+ Copy(copyInvestigationRef) {
1572
+ const this$ = this;
1573
+ const copyInvestigationRef_1 = defaultArg(copyInvestigationRef, false);
1574
+ const nextWorkFlowType = map((w) => w.Copy(), this$.WorkflowType);
1575
+ const nextSubWorkflowIdentifiers = Array.from(this$.SubWorkflowIdentifiers);
1576
+ const nextParameters = ResizeArray_map((x) => x, this$.Parameters);
1577
+ const nextComponents = ResizeArray_map((x_1) => x_1, this$.Components);
1578
+ const nextDataMap = map((d) => d.Copy(), this$.DataMap);
1579
+ const nextContacts = ResizeArray_map((c) => c.Copy(), this$.Contacts);
1580
+ const nextComments = ResizeArray_map((c_1) => c_1.Copy(), this$.Comments);
1581
+ let workflow;
1582
+ const identifier = this$.Identifier;
1583
+ const title = this$.Title;
1584
+ const description = this$.Description;
1585
+ const uri = this$.URI;
1586
+ const version = this$.Version;
1587
+ workflow = ArcWorkflow.make(identifier, title, description, nextWorkFlowType, uri, version, nextSubWorkflowIdentifiers, nextParameters, nextComponents, nextDataMap, nextContacts, nextComments);
1588
+ if (copyInvestigationRef_1) {
1589
+ workflow.Investigation = this$.Investigation;
1590
+ }
1591
+ return workflow;
1592
+ }
1593
+ StructurallyEquals(other) {
1594
+ let a, b, a_1, b_1, a_2, b_2, a_3, b_3, a_4, b_4;
1595
+ const this$ = this;
1596
+ return forAll((x) => x === true, [this$.Identifier === other.Identifier, equals(this$.Title, other.Title), equals(this$.Description, other.Description), equals(this$.WorkflowType, other.WorkflowType), equals(this$.URI, other.URI), equals(this$.Version, other.Version), (a = this$.SubWorkflowIdentifiers, b = other.SubWorkflowIdentifiers, length(a) === length(b) && fold((acc, e) => {
1597
+ if (acc) {
1598
+ return e;
1599
+ } else {
1600
+ return false;
1601
+ }
1602
+ }, true, toList(delay(() => map$1((i_1) => item(i_1, a) === item(i_1, b), rangeDouble(0, 1, length(a) - 1)))))), (a_1 = this$.Parameters, b_1 = other.Parameters, length(a_1) === length(b_1) && fold((acc_1, e_1) => {
1603
+ if (acc_1) {
1604
+ return e_1;
1605
+ } else {
1606
+ return false;
1607
+ }
1608
+ }, true, toList(delay(() => map$1((i_2) => equals(item(i_2, a_1), item(i_2, b_1)), rangeDouble(0, 1, length(a_1) - 1)))))), (a_2 = this$.Components, b_2 = other.Components, length(a_2) === length(b_2) && fold((acc_2, e_2) => {
1609
+ if (acc_2) {
1610
+ return e_2;
1611
+ } else {
1612
+ return false;
1613
+ }
1614
+ }, true, toList(delay(() => map$1((i_3) => equals(item(i_3, a_2), item(i_3, b_2)), rangeDouble(0, 1, length(a_2) - 1)))))), equals(this$.DataMap, other.DataMap), (a_3 = this$.Contacts, b_3 = other.Contacts, length(a_3) === length(b_3) && fold((acc_3, e_3) => {
1615
+ if (acc_3) {
1616
+ return e_3;
1617
+ } else {
1618
+ return false;
1619
+ }
1620
+ }, true, toList(delay(() => map$1((i_4) => equals(item(i_4, a_3), item(i_4, b_3)), rangeDouble(0, 1, length(a_3) - 1)))))), (a_4 = this$.Comments, b_4 = other.Comments, length(a_4) === length(b_4) && fold((acc_4, e_4) => {
1621
+ if (acc_4) {
1622
+ return e_4;
1623
+ } else {
1624
+ return false;
1625
+ }
1626
+ }, true, toList(delay(() => map$1((i_5) => equals(item(i_5, a_4), item(i_5, b_4)), rangeDouble(0, 1, length(a_4) - 1))))))]);
1627
+ }
1628
+ ReferenceEquals(other) {
1629
+ const this$ = this;
1630
+ return this$ === other;
1631
+ }
1632
+ toString() {
1633
+ const this$ = this;
1634
+ const arg = this$.Identifier;
1635
+ const arg_1 = this$.Title;
1636
+ const arg_2 = this$.Description;
1637
+ const arg_3 = this$.WorkflowType;
1638
+ const arg_4 = this$.URI;
1639
+ const arg_5 = this$.Version;
1640
+ const arg_6 = this$.SubWorkflowIdentifiers;
1641
+ const arg_7 = this$.Parameters;
1642
+ const arg_8 = this$.Components;
1643
+ const arg_9 = this$.DataMap;
1644
+ const arg_10 = this$.Contacts;
1645
+ const arg_11 = this$.Comments;
1646
+ return toText(printf("ArcWorkflow {\r\n Identifier = %A,\r\n Title = %A,\r\n Description = %A,\r\n WorkflowType = %A,\r\n URI = %A,\r\n Version = %A,\r\n SubWorkflowIdentifiers = %A,\r\n Parameters = %A,\r\n Components = %A,\r\n DataMap = %A,\r\n Contacts = %A,\r\n Comments = %A}"))(arg)(arg_1)(arg_2)(arg_3)(arg_4)(arg_5)(arg_6)(arg_7)(arg_8)(arg_9)(arg_10)(arg_11);
1647
+ }
1648
+ Equals(other) {
1649
+ let s;
1650
+ const this$ = this;
1651
+ return other instanceof ArcWorkflow && (s = other, this$.StructurallyEquals(s));
1652
+ }
1653
+ GetHashCode() {
1654
+ const this$ = this;
1655
+ return boxHashArray([this$.Identifier, boxHashOption(this$.Title), boxHashOption(this$.Description), boxHashOption(this$.WorkflowType), boxHashOption(this$.URI), boxHashOption(this$.Version), boxHashSeq(this$.SubWorkflowIdentifiers), boxHashSeq(this$.Parameters), boxHashSeq(this$.Components), boxHashOption(this$.DataMap), boxHashSeq(this$.Contacts), boxHashSeq(this$.Comments)]) | 0;
1656
+ }
1657
+ GetLightHashCode() {
1658
+ const this$ = this;
1659
+ return boxHashArray([this$.Identifier, boxHashOption(this$.Title), boxHashOption(this$.Description), boxHashOption(this$.WorkflowType), boxHashOption(this$.URI), boxHashOption(this$.Version), boxHashSeq(this$.SubWorkflowIdentifiers), boxHashSeq(this$.Parameters), boxHashSeq(this$.Components), boxHashSeq(this$.Contacts), boxHashSeq(this$.Comments)]) | 0;
1660
+ }
1661
+ }
1662
+ function ArcWorkflow_$reflection() {
1663
+ return class_type("ARCtrl.ArcWorkflow", void 0, ArcWorkflow);
1664
+ }
1665
+ function ArcWorkflow_$ctor_Z3BB02240(identifier, title, description, workflowType, uri, version, subWorkflowIdentifiers, parameters, components, datamap, contacts, comments) {
1666
+ return new ArcWorkflow(identifier, title, description, workflowType, uri, version, subWorkflowIdentifiers, parameters, components, datamap, contacts, comments);
1667
+ }
1668
+ class ArcRun extends ArcTables {
1669
+ constructor(identifier, title, description, measurementType, technologyType, technologyPlatform, workflowIdentifiers, tables, datamap, performers, comments) {
1670
+ super(defaultArg(tables, []));
1671
+ let identifier_1;
1672
+ const performers_1 = defaultArg(performers, []);
1673
+ const comments_1 = defaultArg(comments, []);
1674
+ const workflowIdentifiers_1 = defaultArg(workflowIdentifiers, []);
1675
+ this["identifier@1447"] = (identifier_1 = identifier.trim(), checkValidCharacters(identifier_1), identifier_1);
1676
+ this["title@1451"] = title;
1677
+ this["description@1452"] = description;
1678
+ this.investigation = void 0;
1679
+ this["measurementType@1454"] = measurementType;
1680
+ this["technologyType@1455"] = technologyType;
1681
+ this["technologyPlatform@1456"] = technologyPlatform;
1682
+ this["workflowIdentifiers@1457-1"] = workflowIdentifiers_1;
1683
+ this.dataMap = datamap;
1684
+ this["performers@1459-1"] = performers_1;
1685
+ this["comments@1460-1"] = comments_1;
1686
+ this.staticHash = 0;
1687
+ }
1688
+ get Identifier() {
1689
+ const this$ = this;
1690
+ return this$["identifier@1447"];
1691
+ }
1692
+ set Identifier(i) {
1693
+ const this$ = this;
1694
+ this$["identifier@1447"] = i;
1695
+ }
1696
+ get Investigation() {
1697
+ const this$ = this;
1698
+ return unwrap(this$.investigation);
1699
+ }
1700
+ set Investigation(i) {
1701
+ const this$ = this;
1702
+ this$.investigation = i;
1703
+ }
1704
+ get Title() {
1705
+ const this$ = this;
1706
+ return unwrap(this$["title@1451"]);
1707
+ }
1708
+ set Title(t) {
1709
+ const this$ = this;
1710
+ this$["title@1451"] = t;
1711
+ }
1712
+ get Description() {
1713
+ const this$ = this;
1714
+ return unwrap(this$["description@1452"]);
1715
+ }
1716
+ set Description(d) {
1717
+ const this$ = this;
1718
+ this$["description@1452"] = d;
1719
+ }
1720
+ get MeasurementType() {
1721
+ const this$ = this;
1722
+ return unwrap(this$["measurementType@1454"]);
1723
+ }
1724
+ set MeasurementType(n) {
1725
+ const this$ = this;
1726
+ this$["measurementType@1454"] = n;
1727
+ }
1728
+ get TechnologyType() {
1729
+ const this$ = this;
1730
+ return unwrap(this$["technologyType@1455"]);
1731
+ }
1732
+ set TechnologyType(n) {
1733
+ const this$ = this;
1734
+ this$["technologyType@1455"] = n;
1735
+ }
1736
+ get TechnologyPlatform() {
1737
+ const this$ = this;
1738
+ return unwrap(this$["technologyPlatform@1456"]);
1739
+ }
1740
+ set TechnologyPlatform(n) {
1741
+ const this$ = this;
1742
+ this$["technologyPlatform@1456"] = n;
1743
+ }
1744
+ get WorkflowIdentifiers() {
1745
+ const this$ = this;
1746
+ return this$["workflowIdentifiers@1457-1"];
1747
+ }
1748
+ set WorkflowIdentifiers(w) {
1749
+ const this$ = this;
1750
+ this$["workflowIdentifiers@1457-1"] = w;
1751
+ }
1752
+ get DataMap() {
1753
+ const this$ = this;
1754
+ return unwrap(this$.dataMap);
1755
+ }
1756
+ set DataMap(n) {
1757
+ const this$ = this;
1758
+ this$.dataMap = n;
1759
+ }
1760
+ get Performers() {
1761
+ const this$ = this;
1762
+ return this$["performers@1459-1"];
1763
+ }
1764
+ set Performers(n) {
1765
+ const this$ = this;
1766
+ this$["performers@1459-1"] = n;
1767
+ }
1768
+ get Comments() {
1769
+ const this$ = this;
1770
+ return this$["comments@1460-1"];
1771
+ }
1772
+ set Comments(n) {
1773
+ const this$ = this;
1774
+ this$["comments@1460-1"] = n;
1775
+ }
1776
+ get StaticHash() {
1777
+ const this$ = this;
1778
+ return this$.staticHash | 0;
1779
+ }
1780
+ set StaticHash(h) {
1781
+ const this$ = this;
1782
+ this$.staticHash = h | 0;
1783
+ }
1784
+ static init(identifier) {
1785
+ return new ArcRun(identifier);
1786
+ }
1787
+ static create(identifier, title, description, measurementType, technologyType, technologyPlatform, workflowIdentifiers, tables, datamap, performers, comments) {
1788
+ return new ArcRun(identifier, unwrap(title), unwrap(description), unwrap(measurementType), unwrap(technologyType), unwrap(technologyPlatform), unwrap(workflowIdentifiers), unwrap(tables), unwrap(datamap), unwrap(performers), unwrap(comments));
1789
+ }
1790
+ static make(identifier, title, description, measurementType, technologyType, technologyPlatform, workflowIdentifiers, tables, datamap, performers, comments) {
1791
+ return new ArcRun(identifier, unwrap(title), unwrap(description), unwrap(measurementType), unwrap(technologyType), unwrap(technologyPlatform), workflowIdentifiers, tables, unwrap(datamap), performers, comments);
1792
+ }
1793
+ static get FileName() {
1794
+ return "isa.run.xlsx";
1795
+ }
1796
+ get WorkflowIdentifierCount() {
1797
+ const this$ = this;
1798
+ return this$.WorkflowIdentifiers.length | 0;
1799
+ }
1800
+ get WorkflowCount() {
1801
+ const this$ = this;
1802
+ return this$.Workflows.length | 0;
1803
+ }
1804
+ get Workflows() {
1805
+ const this$ = this;
1806
+ let inv;
1807
+ const investigation = this$.Investigation;
1808
+ if (investigation != null) {
1809
+ inv = value(investigation);
1810
+ } else {
1811
+ throw new Error("Cannot execute this function. Object is not part of ArcInvestigation.");
1812
+ }
1813
+ const collection = choose((workflowIdentifier) => inv.TryGetWorkflow(workflowIdentifier), this$.WorkflowIdentifiers);
1814
+ return Array.from(collection);
1815
+ }
1816
+ get VacantWorkflowIdentifiers() {
1817
+ const this$ = this;
1818
+ let inv;
1819
+ const investigation = this$.Investigation;
1820
+ if (investigation != null) {
1821
+ inv = value(investigation);
1822
+ } else {
1823
+ throw new Error("Cannot execute this function. Object is not part of ArcInvestigation.");
1824
+ }
1825
+ const collection = filter((arg) => !inv.ContainsWorkflow(arg), this$.WorkflowIdentifiers);
1826
+ return Array.from(collection);
1827
+ }
1828
+ static addTable(table, index) {
1829
+ return (run) => {
1830
+ const c = run.Copy();
1831
+ c.AddTable(table, unwrap(index));
1832
+ return c;
1833
+ };
1834
+ }
1835
+ static addTables(tables, index) {
1836
+ return (run) => {
1837
+ const c = run.Copy();
1838
+ c.AddTables(tables, unwrap(index));
1839
+ return c;
1840
+ };
1841
+ }
1842
+ static initTable(tableName, index) {
1843
+ return (run) => {
1844
+ const c = run.Copy();
1845
+ return [c, c.InitTable(tableName, unwrap(index))];
1846
+ };
1847
+ }
1848
+ static initTables(tableNames, index) {
1849
+ return (run) => {
1850
+ const c = run.Copy();
1851
+ c.InitTables(tableNames, unwrap(index));
1852
+ return c;
1853
+ };
1854
+ }
1855
+ static getTableAt(index) {
1856
+ return (run) => {
1857
+ const newRun = run.Copy();
1858
+ return newRun.GetTableAt(index);
1859
+ };
1860
+ }
1861
+ static getTable(name) {
1862
+ return (run) => {
1863
+ const newRun = run.Copy();
1864
+ return newRun.GetTable(name);
1865
+ };
1866
+ }
1867
+ static updateTableAt(index, table) {
1868
+ return (run) => {
1869
+ const newRun = run.Copy();
1870
+ newRun.UpdateTableAt(index, table);
1871
+ return newRun;
1872
+ };
1873
+ }
1874
+ static updateTable(name, table) {
1875
+ return (run) => {
1876
+ const newRun = run.Copy();
1877
+ newRun.UpdateTable(name, table);
1878
+ return newRun;
1879
+ };
1880
+ }
1881
+ static setTableAt(index, table) {
1882
+ return (run) => {
1883
+ const newRun = run.Copy();
1884
+ newRun.SetTableAt(index, table);
1885
+ return newRun;
1886
+ };
1887
+ }
1888
+ static setTable(name, table) {
1889
+ return (run) => {
1890
+ const newRun = run.Copy();
1891
+ newRun.SetTable(name, table);
1892
+ return newRun;
1893
+ };
1894
+ }
1895
+ static removeTableAt(index) {
1896
+ return (run) => {
1897
+ const newRun = run.Copy();
1898
+ newRun.RemoveTableAt(index);
1899
+ return newRun;
1900
+ };
1901
+ }
1902
+ static removeTable(name) {
1903
+ return (run) => {
1904
+ const newRun = run.Copy();
1905
+ newRun.RemoveTable(name);
1906
+ return newRun;
1907
+ };
1908
+ }
1909
+ static mapTableAt(index, updateFun) {
1910
+ return (run) => {
1911
+ const newRun = run.Copy();
1912
+ newRun.MapTableAt(index, updateFun);
1913
+ return newRun;
1914
+ };
1915
+ }
1916
+ static mapTable(name, updateFun) {
1917
+ return (run) => {
1918
+ const newRun = run.Copy();
1919
+ newRun.MapTable(name, updateFun);
1920
+ return newRun;
1921
+ };
1922
+ }
1923
+ static renameTableAt(index, newName) {
1924
+ return (run) => {
1925
+ const newRun = run.Copy();
1926
+ newRun.RenameTableAt(index, newName);
1927
+ return newRun;
1928
+ };
1929
+ }
1930
+ static renameTable(name, newName) {
1931
+ return (run) => {
1932
+ const newRun = run.Copy();
1933
+ newRun.RenameTable(name, newName);
1934
+ return newRun;
1935
+ };
1936
+ }
1937
+ static addColumnAt(tableIndex, header, cells, columnIndex, forceReplace) {
1938
+ return (run) => {
1939
+ const newRun = run.Copy();
1940
+ newRun.AddColumnAt(tableIndex, header, unwrap(cells), unwrap(columnIndex), unwrap(forceReplace));
1941
+ return newRun;
1942
+ };
1943
+ }
1944
+ static addColumn(tableName, header, cells, columnIndex, forceReplace) {
1945
+ return (run) => {
1946
+ const newRun = run.Copy();
1947
+ newRun.AddColumn(tableName, header, unwrap(cells), unwrap(columnIndex), unwrap(forceReplace));
1948
+ return newRun;
1949
+ };
1950
+ }
1951
+ static removeColumnAt(tableIndex, columnIndex) {
1952
+ return (run) => {
1953
+ const newRun = run.Copy();
1954
+ newRun.RemoveColumnAt(tableIndex, columnIndex);
1955
+ return newRun;
1956
+ };
1957
+ }
1958
+ static removeColumn(tableName, columnIndex) {
1959
+ return (run) => {
1960
+ const newRun = run.Copy();
1961
+ newRun.RemoveColumn(tableName, columnIndex);
1962
+ return newRun;
1963
+ };
1964
+ }
1965
+ static updateColumnAt(tableIndex, columnIndex, header, cells) {
1966
+ return (run) => {
1967
+ const newRun = run.Copy();
1968
+ newRun.UpdateColumnAt(tableIndex, columnIndex, header, unwrap(cells));
1969
+ return newRun;
1970
+ };
1971
+ }
1972
+ static updateColumn(tableName, columnIndex, header, cells) {
1973
+ return (run) => {
1974
+ const newRun = run.Copy();
1975
+ newRun.UpdateColumn(tableName, columnIndex, header, unwrap(cells));
1976
+ return newRun;
1977
+ };
1978
+ }
1979
+ static getColumnAt(tableIndex, columnIndex) {
1980
+ return (run) => {
1981
+ const newRun = run.Copy();
1982
+ return newRun.GetColumnAt(tableIndex, columnIndex);
1983
+ };
1984
+ }
1985
+ static getColumn(tableName, columnIndex) {
1986
+ return (run) => {
1987
+ const newRun = run.Copy();
1988
+ return newRun.GetColumn(tableName, columnIndex);
1989
+ };
1990
+ }
1991
+ static addRowAt(tableIndex, cells, rowIndex) {
1992
+ return (run) => {
1993
+ const newRun = run.Copy();
1994
+ newRun.AddRowAt(tableIndex, unwrap(cells), unwrap(rowIndex));
1995
+ return newRun;
1996
+ };
1997
+ }
1998
+ static addRow(tableName, cells, rowIndex) {
1999
+ return (run) => {
2000
+ const newRun = run.Copy();
2001
+ newRun.AddRow(tableName, unwrap(cells), unwrap(rowIndex));
2002
+ return newRun;
2003
+ };
2004
+ }
2005
+ static removeRowAt(tableIndex, rowIndex) {
2006
+ return (run) => {
2007
+ const newRun = run.Copy();
2008
+ newRun.RemoveColumnAt(tableIndex, rowIndex);
2009
+ return newRun;
2010
+ };
2011
+ }
2012
+ static removeRow(tableName, rowIndex) {
2013
+ return (run) => {
2014
+ const newRun = run.Copy();
2015
+ newRun.RemoveRow(tableName, rowIndex);
2016
+ return newRun;
2017
+ };
2018
+ }
2019
+ static updateRowAt(tableIndex, rowIndex, cells) {
2020
+ return (run) => {
2021
+ const newRun = run.Copy();
2022
+ newRun.UpdateRowAt(tableIndex, rowIndex, cells);
2023
+ return newRun;
2024
+ };
2025
+ }
2026
+ static updateRow(tableName, rowIndex, cells) {
2027
+ return (run) => {
2028
+ const newRun = run.Copy();
2029
+ newRun.UpdateRow(tableName, rowIndex, cells);
2030
+ return newRun;
2031
+ };
2032
+ }
2033
+ static getRowAt(tableIndex, rowIndex) {
2034
+ return (run) => {
2035
+ const newRun = run.Copy();
2036
+ return newRun.GetRowAt(tableIndex, rowIndex);
2037
+ };
2038
+ }
2039
+ static getRow(tableName, rowIndex) {
2040
+ return (run) => {
2041
+ const newRun = run.Copy();
2042
+ return newRun.GetRow(tableName, rowIndex);
2043
+ };
2044
+ }
2045
+ static setPerformers(performers, run) {
2046
+ run.Performers = performers;
2047
+ return run;
2048
+ }
2049
+ Copy() {
2050
+ const this$ = this;
2051
+ const nextTables = ResizeArray_map((c) => c.Copy(), this$.Tables);
2052
+ const nextComments = ResizeArray_map((c_1) => c_1.Copy(), this$.Comments);
2053
+ const nextDataMap = map((d) => d.Copy(), this$.DataMap);
2054
+ const nextPerformers = ResizeArray_map((c_2) => c_2.Copy(), this$.Performers);
2055
+ const nextWorkflowIdentifiers = ResizeArray_map((c_3) => c_3, this$.WorkflowIdentifiers);
2056
+ const identifier = this$.Identifier;
2057
+ const title = this$.Title;
2058
+ const description = this$.Description;
2059
+ const measurementType = this$.MeasurementType;
2060
+ const technologyType = this$.TechnologyType;
2061
+ const technologyPlatform = this$.TechnologyPlatform;
2062
+ return ArcRun.make(identifier, title, description, measurementType, technologyType, technologyPlatform, nextWorkflowIdentifiers, nextTables, nextDataMap, nextPerformers, nextComments);
2063
+ }
2064
+ UpdateBy(run, onlyReplaceExisting, appendSequences) {
2065
+ const this$ = this;
2066
+ const onlyReplaceExisting_1 = defaultArg(onlyReplaceExisting, false);
2067
+ const appendSequences_1 = defaultArg(appendSequences, false);
2068
+ const updateAlways = !onlyReplaceExisting_1;
2069
+ if (run.Title != null ? true : updateAlways) {
2070
+ this$.Title = run.Title;
2071
+ }
2072
+ if (run.Description != null ? true : updateAlways) {
2073
+ this$.Description = run.Description;
2074
+ }
2075
+ if (run.MeasurementType != null ? true : updateAlways) {
2076
+ this$.MeasurementType = run.MeasurementType;
2077
+ }
2078
+ if (run.TechnologyType != null ? true : updateAlways) {
2079
+ this$.TechnologyType = run.TechnologyType;
2080
+ }
2081
+ if (run.TechnologyPlatform != null ? true : updateAlways) {
2082
+ this$.TechnologyPlatform = run.TechnologyPlatform;
2083
+ }
2084
+ if (run.WorkflowIdentifiers.length !== 0 ? true : updateAlways) {
2085
+ let s;
2086
+ const origin = this$.WorkflowIdentifiers;
2087
+ const next = run.WorkflowIdentifiers;
2088
+ if (!appendSequences_1) {
2089
+ s = ResizeArray_map((x) => x, next);
2090
+ } else {
2091
+ const combined = [];
2092
+ let enumerator = getEnumerator(origin);
2093
+ try {
2094
+ while (enumerator["System.Collections.IEnumerator.MoveNext"]()) {
2095
+ const e = enumerator["System.Collections.Generic.IEnumerator`1.get_Current"]();
2096
+ if (!contains$1(e, combined, {
2097
+ Equals: (x_1, y) => x_1 === y,
2098
+ GetHashCode: stringHash
2099
+ })) {
2100
+ void combined.push(e);
2101
+ }
2102
+ }
2103
+ } finally {
2104
+ disposeSafe(enumerator);
2105
+ }
2106
+ let enumerator_1 = getEnumerator(next);
2107
+ try {
2108
+ while (enumerator_1["System.Collections.IEnumerator.MoveNext"]()) {
2109
+ const e_1 = enumerator_1["System.Collections.Generic.IEnumerator`1.get_Current"]();
2110
+ if (!contains$1(e_1, combined, {
2111
+ Equals: (x_2, y_1) => x_2 === y_1,
2112
+ GetHashCode: stringHash
2113
+ })) {
2114
+ void combined.push(e_1);
2115
+ }
2116
+ }
2117
+ } finally {
2118
+ disposeSafe(enumerator_1);
2119
+ }
2120
+ s = combined;
2121
+ }
2122
+ this$.WorkflowIdentifiers = s;
2123
+ }
2124
+ if (run.DataMap != null ? true : updateAlways) {
2125
+ this$.DataMap = run.DataMap;
2126
+ }
2127
+ if (run.Tables.length !== 0 ? true : updateAlways) {
2128
+ let s_1;
2129
+ const origin_1 = this$.Tables;
2130
+ const next_1 = run.Tables;
2131
+ if (!appendSequences_1) {
2132
+ s_1 = ResizeArray_map((x_3) => x_3, next_1);
2133
+ } else {
2134
+ const combined_1 = [];
2135
+ let enumerator_2 = getEnumerator(origin_1);
2136
+ try {
2137
+ while (enumerator_2["System.Collections.IEnumerator.MoveNext"]()) {
2138
+ const e_2 = enumerator_2["System.Collections.Generic.IEnumerator`1.get_Current"]();
2139
+ if (!contains$1(e_2, combined_1, {
2140
+ Equals: equals,
2141
+ GetHashCode: safeHash
2142
+ })) {
2143
+ void combined_1.push(e_2);
2144
+ }
2145
+ }
2146
+ } finally {
2147
+ disposeSafe(enumerator_2);
2148
+ }
2149
+ let enumerator_1_1 = getEnumerator(next_1);
2150
+ try {
2151
+ while (enumerator_1_1["System.Collections.IEnumerator.MoveNext"]()) {
2152
+ const e_1_1 = enumerator_1_1["System.Collections.Generic.IEnumerator`1.get_Current"]();
2153
+ if (!contains$1(e_1_1, combined_1, {
2154
+ Equals: equals,
2155
+ GetHashCode: safeHash
2156
+ })) {
2157
+ void combined_1.push(e_1_1);
2158
+ }
2159
+ }
2160
+ } finally {
2161
+ disposeSafe(enumerator_1_1);
2162
+ }
2163
+ s_1 = combined_1;
2164
+ }
2165
+ this$.Tables = s_1;
2166
+ }
2167
+ if (run.Performers.length !== 0 ? true : updateAlways) {
2168
+ let s_2;
2169
+ const origin_2 = this$.Performers;
2170
+ const next_2 = run.Performers;
2171
+ if (!appendSequences_1) {
2172
+ s_2 = ResizeArray_map((x_6) => x_6, next_2);
2173
+ } else {
2174
+ const combined_2 = [];
2175
+ let enumerator_3 = getEnumerator(origin_2);
2176
+ try {
2177
+ while (enumerator_3["System.Collections.IEnumerator.MoveNext"]()) {
2178
+ const e_3 = enumerator_3["System.Collections.Generic.IEnumerator`1.get_Current"]();
2179
+ if (!contains$1(e_3, combined_2, {
2180
+ Equals: equals,
2181
+ GetHashCode: safeHash
2182
+ })) {
2183
+ void combined_2.push(e_3);
2184
+ }
2185
+ }
2186
+ } finally {
2187
+ disposeSafe(enumerator_3);
2188
+ }
2189
+ let enumerator_1_2 = getEnumerator(next_2);
2190
+ try {
2191
+ while (enumerator_1_2["System.Collections.IEnumerator.MoveNext"]()) {
2192
+ const e_1_2 = enumerator_1_2["System.Collections.Generic.IEnumerator`1.get_Current"]();
2193
+ if (!contains$1(e_1_2, combined_2, {
2194
+ Equals: equals,
2195
+ GetHashCode: safeHash
2196
+ })) {
2197
+ void combined_2.push(e_1_2);
2198
+ }
2199
+ }
2200
+ } finally {
2201
+ disposeSafe(enumerator_1_2);
2202
+ }
2203
+ s_2 = combined_2;
2204
+ }
2205
+ this$.Performers = s_2;
2206
+ }
2207
+ if (run.Comments.length !== 0 ? true : updateAlways) {
2208
+ let s_3;
2209
+ const origin_3 = this$.Comments;
2210
+ const next_3 = run.Comments;
2211
+ if (!appendSequences_1) {
2212
+ s_3 = ResizeArray_map((x_9) => x_9, next_3);
2213
+ } else {
2214
+ const combined_3 = [];
2215
+ let enumerator_4 = getEnumerator(origin_3);
2216
+ try {
2217
+ while (enumerator_4["System.Collections.IEnumerator.MoveNext"]()) {
2218
+ const e_4 = enumerator_4["System.Collections.Generic.IEnumerator`1.get_Current"]();
2219
+ if (!contains$1(e_4, combined_3, {
2220
+ Equals: equals,
2221
+ GetHashCode: safeHash
2222
+ })) {
2223
+ void combined_3.push(e_4);
2224
+ }
2225
+ }
2226
+ } finally {
2227
+ disposeSafe(enumerator_4);
2228
+ }
2229
+ let enumerator_1_3 = getEnumerator(next_3);
2230
+ try {
2231
+ while (enumerator_1_3["System.Collections.IEnumerator.MoveNext"]()) {
2232
+ const e_1_3 = enumerator_1_3["System.Collections.Generic.IEnumerator`1.get_Current"]();
2233
+ if (!contains$1(e_1_3, combined_3, {
2234
+ Equals: equals,
2235
+ GetHashCode: safeHash
2236
+ })) {
2237
+ void combined_3.push(e_1_3);
2238
+ }
2239
+ }
2240
+ } finally {
2241
+ disposeSafe(enumerator_1_3);
2242
+ }
2243
+ s_3 = combined_3;
2244
+ }
2245
+ this$.Comments = s_3;
2246
+ }
2247
+ }
2248
+ toString() {
2249
+ const this$ = this;
2250
+ const arg = this$.Identifier;
2251
+ const arg_1 = this$.Title;
2252
+ const arg_2 = this$.Description;
2253
+ const arg_3 = this$.MeasurementType;
2254
+ const arg_4 = this$.TechnologyType;
2255
+ const arg_5 = this$.TechnologyPlatform;
2256
+ const arg_6 = this$.WorkflowIdentifiers;
2257
+ const arg_7 = this$.DataMap;
2258
+ const arg_8 = this$.Tables;
2259
+ const arg_9 = this$.Performers;
2260
+ const arg_10 = this$.Comments;
2261
+ return toText(printf('ArcRun({\r\n Identifier = "%s",\r\n Title = %A,\r\n Description = %A,\r\n MeasurementType = %A,\r\n TechnologyType = %A,\r\n TechnologyPlatform = %A,\r\n WorkflowIdentifiers = %A,\r\n DataMap = %A,\r\n Tables = %A,\r\n Performers = %A,\r\n Comments = %A\r\n})'))(arg)(arg_1)(arg_2)(arg_3)(arg_4)(arg_5)(arg_6)(arg_7)(arg_8)(arg_9)(arg_10);
2262
+ }
2263
+ AddToInvestigation(investigation) {
2264
+ const this$ = this;
2265
+ this$.Investigation = investigation;
2266
+ }
2267
+ RemoveFromInvestigation() {
2268
+ const this$ = this;
2269
+ this$.Investigation = void 0;
2270
+ }
2271
+ StructurallyEquals(other) {
2272
+ let a, b, a_1, b_1, a_2, b_2, a_3, b_3;
2273
+ const this$ = this;
2274
+ return forAll((x) => x === true, [this$.Identifier === other.Identifier, equals(this$.Title, other.Title), equals(this$.Description, other.Description), equals(this$.MeasurementType, other.MeasurementType), equals(this$.TechnologyType, other.TechnologyType), equals(this$.TechnologyPlatform, other.TechnologyPlatform), (a = this$.WorkflowIdentifiers, b = other.WorkflowIdentifiers, length(a) === length(b) && fold((acc, e) => {
2275
+ if (acc) {
2276
+ return e;
2277
+ } else {
2278
+ return false;
2279
+ }
2280
+ }, true, toList(delay(() => map$1((i_1) => item(i_1, a) === item(i_1, b), rangeDouble(0, 1, length(a) - 1)))))), equals(this$.DataMap, other.DataMap), (a_1 = this$.Tables, b_1 = other.Tables, length(a_1) === length(b_1) && fold((acc_1, e_1) => {
2281
+ if (acc_1) {
2282
+ return e_1;
2283
+ } else {
2284
+ return false;
2285
+ }
2286
+ }, true, toList(delay(() => map$1((i_2) => equals(item(i_2, a_1), item(i_2, b_1)), rangeDouble(0, 1, length(a_1) - 1)))))), (a_2 = this$.Performers, b_2 = other.Performers, length(a_2) === length(b_2) && fold((acc_2, e_2) => {
2287
+ if (acc_2) {
2288
+ return e_2;
2289
+ } else {
2290
+ return false;
2291
+ }
2292
+ }, true, toList(delay(() => map$1((i_3) => equals(item(i_3, a_2), item(i_3, b_2)), rangeDouble(0, 1, length(a_2) - 1)))))), (a_3 = this$.Comments, b_3 = other.Comments, length(a_3) === length(b_3) && fold((acc_3, e_3) => {
2293
+ if (acc_3) {
2294
+ return e_3;
2295
+ } else {
2296
+ return false;
2297
+ }
2298
+ }, true, toList(delay(() => map$1((i_4) => equals(item(i_4, a_3), item(i_4, b_3)), rangeDouble(0, 1, length(a_3) - 1))))))]);
2299
+ }
2300
+ ReferenceEquals(other) {
2301
+ const this$ = this;
2302
+ return this$ === other;
2303
+ }
2304
+ Equals(other) {
2305
+ let run;
2306
+ const this$ = this;
2307
+ return other instanceof ArcRun && (run = other, this$.StructurallyEquals(run));
2308
+ }
2309
+ GetLightHashCode() {
2310
+ const this$ = this;
2311
+ return boxHashArray([this$.Identifier, boxHashOption(this$.Title), boxHashOption(this$.Description), boxHashOption(this$.MeasurementType), boxHashOption(this$.TechnologyType), boxHashOption(this$.TechnologyPlatform), boxHashSeq(this$.WorkflowIdentifiers), boxHashSeq(this$.Tables), boxHashSeq(this$.Performers), boxHashSeq(this$.Comments)]) | 0;
2312
+ }
2313
+ GetHashCode() {
2314
+ const this$ = this;
2315
+ return boxHashArray([this$.Identifier, boxHashOption(this$.Title), boxHashOption(this$.Description), boxHashOption(this$.MeasurementType), boxHashOption(this$.TechnologyType), boxHashOption(this$.TechnologyPlatform), boxHashOption(this$.DataMap), boxHashSeq(this$.WorkflowIdentifiers), boxHashSeq(this$.Tables), boxHashSeq(this$.Performers), boxHashSeq(this$.Comments)]) | 0;
2316
+ }
2317
+ }
2318
+ function ArcRun_$reflection() {
2319
+ return class_type("ARCtrl.ArcRun", void 0, ArcRun, ArcTables_$reflection());
2320
+ }
2321
+ function ArcRun_$ctor_Z38E7054B(identifier, title, description, measurementType, technologyType, technologyPlatform, workflowIdentifiers, tables, datamap, performers, comments) {
2322
+ return new ArcRun(identifier, title, description, measurementType, technologyType, technologyPlatform, workflowIdentifiers, tables, datamap, performers, comments);
2323
+ }
2324
+ class ArcInvestigation {
2325
+ constructor(identifier, title, description, submissionDate, publicReleaseDate, ontologySourceReferences, publications, contacts, assays, studies, workflows, runs, registeredStudyIdentifiers, comments, remarks) {
2326
+ const this$ = new FSharpRef(defaultOf());
2327
+ this$.contents = this;
2328
+ const ontologySourceReferences_1 = defaultArg(ontologySourceReferences, []);
2329
+ const publications_1 = defaultArg(publications, []);
2330
+ const contacts_1 = defaultArg(contacts, []);
2331
+ let assays_1;
2332
+ const ass = defaultArg(assays, []);
2333
+ let enumerator = getEnumerator(ass);
2334
+ try {
2335
+ while (enumerator["System.Collections.IEnumerator.MoveNext"]()) {
2336
+ const a = enumerator["System.Collections.Generic.IEnumerator`1.get_Current"]();
2337
+ a.Investigation = this$.contents;
2338
+ }
2339
+ } finally {
2340
+ disposeSafe(enumerator);
2341
+ }
2342
+ assays_1 = ass;
2343
+ let studies_1;
2344
+ const sss = defaultArg(studies, []);
2345
+ let enumerator_1 = getEnumerator(sss);
2346
+ try {
2347
+ while (enumerator_1["System.Collections.IEnumerator.MoveNext"]()) {
2348
+ const s = enumerator_1["System.Collections.Generic.IEnumerator`1.get_Current"]();
2349
+ s.Investigation = this$.contents;
2350
+ }
2351
+ } finally {
2352
+ disposeSafe(enumerator_1);
2353
+ }
2354
+ studies_1 = sss;
2355
+ let workflows_1;
2356
+ const wss = defaultArg(workflows, []);
2357
+ let enumerator_2 = getEnumerator(wss);
2358
+ try {
2359
+ while (enumerator_2["System.Collections.IEnumerator.MoveNext"]()) {
2360
+ const w = enumerator_2["System.Collections.Generic.IEnumerator`1.get_Current"]();
2361
+ w.Investigation = this$.contents;
2362
+ }
2363
+ } finally {
2364
+ disposeSafe(enumerator_2);
2365
+ }
2366
+ workflows_1 = wss;
2367
+ let runs_1;
2368
+ const rss = defaultArg(runs, []);
2369
+ let enumerator_3 = getEnumerator(rss);
2370
+ try {
2371
+ while (enumerator_3["System.Collections.IEnumerator.MoveNext"]()) {
2372
+ const r = enumerator_3["System.Collections.Generic.IEnumerator`1.get_Current"]();
2373
+ r.Investigation = this$.contents;
2374
+ }
2375
+ } finally {
2376
+ disposeSafe(enumerator_3);
2377
+ }
2378
+ runs_1 = rss;
2379
+ const registeredStudyIdentifiers_1 = defaultArg(registeredStudyIdentifiers, []);
2380
+ const comments_1 = defaultArg(comments, []);
2381
+ const remarks_1 = defaultArg(remarks, []);
2382
+ this["identifier@1928"] = identifier;
2383
+ this["title@1929"] = title;
2384
+ this["description@1930"] = description;
2385
+ this["submissionDate@1931"] = submissionDate;
2386
+ this["publicReleaseDate@1932"] = publicReleaseDate;
2387
+ this["ontologySourceReferences@1933-1"] = ontologySourceReferences_1;
2388
+ this["publications@1934-1"] = publications_1;
2389
+ this["contacts@1935-1"] = contacts_1;
2390
+ this["assays@1936-1"] = assays_1;
2391
+ this["studies@1937-1"] = studies_1;
2392
+ this["workflows@1938-1"] = workflows_1;
2393
+ this["runs@1939-1"] = runs_1;
2394
+ this["registeredStudyIdentifiers@1940-1"] = registeredStudyIdentifiers_1;
2395
+ this["comments@1941-1"] = comments_1;
2396
+ this["remarks@1942-1"] = remarks_1;
2397
+ this.staticHash = 0;
2398
+ this["init@1899"] = 1;
2399
+ }
2400
+ get Identifier() {
2401
+ const this$ = this;
2402
+ return this$["identifier@1928"];
2403
+ }
2404
+ set Identifier(i) {
2405
+ const this$ = this;
2406
+ this$["identifier@1928"] = i;
2407
+ }
2408
+ get Title() {
2409
+ const this$ = this;
2410
+ return unwrap(this$["title@1929"]);
2411
+ }
2412
+ set Title(n) {
2413
+ const this$ = this;
2414
+ this$["title@1929"] = n;
2415
+ }
2416
+ get Description() {
2417
+ const this$ = this;
2418
+ return unwrap(this$["description@1930"]);
2419
+ }
2420
+ set Description(n) {
2421
+ const this$ = this;
2422
+ this$["description@1930"] = n;
2423
+ }
2424
+ get SubmissionDate() {
2425
+ const this$ = this;
2426
+ return unwrap(this$["submissionDate@1931"]);
2427
+ }
2428
+ set SubmissionDate(n) {
2429
+ const this$ = this;
2430
+ this$["submissionDate@1931"] = n;
2431
+ }
2432
+ get PublicReleaseDate() {
2433
+ const this$ = this;
2434
+ return unwrap(this$["publicReleaseDate@1932"]);
2435
+ }
2436
+ set PublicReleaseDate(n) {
2437
+ const this$ = this;
2438
+ this$["publicReleaseDate@1932"] = n;
2439
+ }
2440
+ get OntologySourceReferences() {
2441
+ const this$ = this;
2442
+ return this$["ontologySourceReferences@1933-1"];
2443
+ }
2444
+ set OntologySourceReferences(n) {
2445
+ const this$ = this;
2446
+ this$["ontologySourceReferences@1933-1"] = n;
2447
+ }
2448
+ get Publications() {
2449
+ const this$ = this;
2450
+ return this$["publications@1934-1"];
2451
+ }
2452
+ set Publications(n) {
2453
+ const this$ = this;
2454
+ this$["publications@1934-1"] = n;
2455
+ }
2456
+ get Contacts() {
2457
+ const this$ = this;
2458
+ return this$["contacts@1935-1"];
2459
+ }
2460
+ set Contacts(n) {
2461
+ const this$ = this;
2462
+ this$["contacts@1935-1"] = n;
2463
+ }
2464
+ get Assays() {
2465
+ const this$ = this;
2466
+ return this$["assays@1936-1"];
2467
+ }
2468
+ set Assays(n) {
2469
+ const this$ = this;
2470
+ this$["assays@1936-1"] = n;
2471
+ }
2472
+ get Studies() {
2473
+ const this$ = this;
2474
+ return this$["studies@1937-1"];
2475
+ }
2476
+ set Studies(n) {
2477
+ const this$ = this;
2478
+ this$["studies@1937-1"] = n;
2479
+ }
2480
+ get Workflows() {
2481
+ const this$ = this;
2482
+ return this$["workflows@1938-1"];
2483
+ }
2484
+ set Workflows(n) {
2485
+ const this$ = this;
2486
+ this$["workflows@1938-1"] = n;
2487
+ }
2488
+ get Runs() {
2489
+ const this$ = this;
2490
+ return this$["runs@1939-1"];
2491
+ }
2492
+ set Runs(n) {
2493
+ const this$ = this;
2494
+ this$["runs@1939-1"] = n;
2495
+ }
2496
+ get RegisteredStudyIdentifiers() {
2497
+ const this$ = this;
2498
+ return this$["registeredStudyIdentifiers@1940-1"];
2499
+ }
2500
+ set RegisteredStudyIdentifiers(n) {
2501
+ const this$ = this;
2502
+ this$["registeredStudyIdentifiers@1940-1"] = n;
2503
+ }
2504
+ get Comments() {
2505
+ const this$ = this;
2506
+ return this$["comments@1941-1"];
2507
+ }
2508
+ set Comments(n) {
2509
+ const this$ = this;
2510
+ this$["comments@1941-1"] = n;
2511
+ }
2512
+ get Remarks() {
2513
+ const this$ = this;
2514
+ return this$["remarks@1942-1"];
2515
+ }
2516
+ set Remarks(n) {
2517
+ const this$ = this;
2518
+ this$["remarks@1942-1"] = n;
2519
+ }
2520
+ get StaticHash() {
2521
+ const this$ = this;
2522
+ return this$.staticHash | 0;
2523
+ }
2524
+ set StaticHash(h) {
2525
+ const this$ = this;
2526
+ this$.staticHash = h | 0;
2527
+ }
2528
+ static get FileName() {
2529
+ return "isa.investigation.xlsx";
2530
+ }
2531
+ static init(identifier) {
2532
+ return new ArcInvestigation(identifier);
2533
+ }
2534
+ static create(identifier, title, description, submissionDate, publicReleaseDate, ontologySourceReferences, publications, contacts, assays, studies, workflows, runs, registeredStudyIdentifiers, comments, remarks) {
2535
+ return new ArcInvestigation(identifier, unwrap(title), unwrap(description), unwrap(submissionDate), unwrap(publicReleaseDate), unwrap(ontologySourceReferences), unwrap(publications), unwrap(contacts), unwrap(assays), unwrap(studies), unwrap(workflows), unwrap(runs), unwrap(registeredStudyIdentifiers), unwrap(comments), unwrap(remarks));
2536
+ }
2537
+ static make(identifier, title, description, submissionDate, publicReleaseDate, ontologySourceReferences, publications, contacts, assays, studies, workflows, runs, registeredStudyIdentifiers, comments, remarks) {
2538
+ return new ArcInvestigation(identifier, unwrap(title), unwrap(description), unwrap(submissionDate), unwrap(publicReleaseDate), ontologySourceReferences, publications, contacts, assays, studies, workflows, runs, registeredStudyIdentifiers, comments, remarks);
2539
+ }
2540
+ get AssayCount() {
2541
+ const this$ = this;
2542
+ return this$.Assays.length | 0;
2543
+ }
2544
+ get AssayIdentifiers() {
2545
+ const this$ = this;
2546
+ return Array.from(map$1((x) => x.Identifier, this$.Assays));
2547
+ }
2548
+ get UnregisteredAssays() {
2549
+ const this$ = this;
2550
+ return ResizeArray_filter((a) => !exists((s) => exists((i) => i === a.Identifier, s.RegisteredAssayIdentifiers), this$.RegisteredStudies), this$.Assays);
2551
+ }
2552
+ AddAssay(assay, registerIn) {
2553
+ const this$ = this;
2554
+ const assayIdent = assay.Identifier;
2555
+ const matchValue = tryFindIndex((x_1) => x_1 === assayIdent, map$1((x) => x.Identifier, this$.Assays));
2556
+ if (matchValue == null) {
2557
+ } else {
2558
+ throw new Error(`Cannot create assay with name ${assayIdent}, as assay names must be unique and assay at index ${value(matchValue)} has the same name.`);
2559
+ }
2560
+ assay.Investigation = this$;
2561
+ void this$.Assays.push(assay);
2562
+ if (registerIn != null) {
2563
+ let enumerator = getEnumerator(value(registerIn));
2564
+ try {
2565
+ while (enumerator["System.Collections.IEnumerator.MoveNext"]()) {
2566
+ const study = enumerator["System.Collections.Generic.IEnumerator`1.get_Current"]();
2567
+ study.RegisterAssay(assay.Identifier);
2568
+ }
2569
+ } finally {
2570
+ disposeSafe(enumerator);
2571
+ }
2572
+ }
2573
+ }
2574
+ static addAssay(assay, registerIn) {
2575
+ return (inv) => {
2576
+ const newInvestigation = inv.Copy();
2577
+ newInvestigation.AddAssay(assay, unwrap(registerIn));
2578
+ return newInvestigation;
2579
+ };
2580
+ }
2581
+ InitAssay(assayIdentifier, registerIn) {
2582
+ const this$ = this;
2583
+ const assay = new ArcAssay(assayIdentifier);
2584
+ this$.AddAssay(assay, unwrap(registerIn));
2585
+ return assay;
2586
+ }
2587
+ static initAssay(assayIdentifier, registerIn) {
2588
+ return (inv) => {
2589
+ const newInvestigation = inv.Copy();
2590
+ return newInvestigation.InitAssay(assayIdentifier, unwrap(registerIn));
2591
+ };
2592
+ }
2593
+ DeleteAssayAt(index) {
2594
+ const this$ = this;
2595
+ this$.Assays.splice(index, 1);
2596
+ }
2597
+ static deleteAssayAt(index) {
2598
+ return (inv) => {
2599
+ const newInvestigation = inv.Copy();
2600
+ newInvestigation.DeleteAssayAt(index);
2601
+ return newInvestigation;
2602
+ };
2603
+ }
2604
+ DeleteAssay(assayIdentifier) {
2605
+ const this$ = this;
2606
+ const index = this$.GetAssayIndex(assayIdentifier) | 0;
2607
+ this$.DeleteAssayAt(index);
2608
+ }
2609
+ static deleteAssay(assayIdentifier) {
2610
+ return (inv) => {
2611
+ const newInv = inv.Copy();
2612
+ newInv.DeleteAssay(assayIdentifier);
2613
+ return newInv;
2614
+ };
2615
+ }
2616
+ RemoveAssayAt(index) {
2617
+ const this$ = this;
2618
+ const ident = this$.GetAssayAt(index).Identifier;
2619
+ this$.Assays.splice(index, 1);
2620
+ let enumerator = getEnumerator(this$.Studies);
2621
+ try {
2622
+ while (enumerator["System.Collections.IEnumerator.MoveNext"]()) {
2623
+ const study = enumerator["System.Collections.Generic.IEnumerator`1.get_Current"]();
2624
+ study.DeregisterAssay(ident);
2625
+ }
2626
+ } finally {
2627
+ disposeSafe(enumerator);
2628
+ }
2629
+ }
2630
+ static removeAssayAt(index) {
2631
+ return (inv) => {
2632
+ const newInvestigation = inv.Copy();
2633
+ newInvestigation.RemoveAssayAt(index);
2634
+ return newInvestigation;
2635
+ };
2636
+ }
2637
+ RemoveAssay(assayIdentifier) {
2638
+ const this$ = this;
2639
+ const index = this$.GetAssayIndex(assayIdentifier) | 0;
2640
+ this$.RemoveAssayAt(index);
2641
+ }
2642
+ static removeAssay(assayIdentifier) {
2643
+ return (inv) => {
2644
+ const newInv = inv.Copy();
2645
+ newInv.RemoveAssay(assayIdentifier);
2646
+ return newInv;
2647
+ };
2648
+ }
2649
+ RenameAssay(oldIdentifier, newIdentifier) {
2650
+ const this$ = this;
2651
+ iterate((a) => {
2652
+ if (a.Identifier === oldIdentifier) {
2653
+ a.Identifier = newIdentifier;
2654
+ }
2655
+ }, this$.Assays);
2656
+ iterate((s) => {
2657
+ const index = tryFindIndex((ai) => ai === oldIdentifier, s.RegisteredAssayIdentifiers);
2658
+ if (index != null) {
2659
+ const index_1 = value(index) | 0;
2660
+ s.RegisteredAssayIdentifiers[index_1] = newIdentifier;
2661
+ }
2662
+ }, this$.Studies);
2663
+ }
2664
+ static renameAssay(oldIdentifier, newIdentifier) {
2665
+ return (inv) => {
2666
+ const newInv = inv.Copy();
2667
+ newInv.RenameAssay(oldIdentifier, newIdentifier);
2668
+ return newInv;
2669
+ };
2670
+ }
2671
+ RenameRun(oldIdentifier, newIdentifier) {
2672
+ const this$ = this;
2673
+ iterate((a) => {
2674
+ if (a.Identifier === oldIdentifier) {
2675
+ a.Identifier = newIdentifier;
2676
+ }
2677
+ }, this$.Runs);
2678
+ }
2679
+ static renameRun(oldIdentifier, newIdentifier) {
2680
+ return (inv) => {
2681
+ const newInv = inv.Copy();
2682
+ newInv.RenameRun(oldIdentifier, newIdentifier);
2683
+ return newInv;
2684
+ };
2685
+ }
2686
+ RenameWorkflow(oldIdentifier, newIdentifier) {
2687
+ const this$ = this;
2688
+ iterate((w) => {
2689
+ if (w.Identifier === oldIdentifier) {
2690
+ w.Identifier = newIdentifier;
2691
+ }
2692
+ const matchValue = tryFindIndex((subId) => subId === oldIdentifier, w.SubWorkflowIdentifiers);
2693
+ if (matchValue != null) {
2694
+ const i = value(matchValue) | 0;
2695
+ w.SubWorkflowIdentifiers[i] = newIdentifier;
2696
+ }
2697
+ }, this$.Workflows);
2698
+ iterate((r) => {
2699
+ const matchValue_1 = tryFindIndex((wId) => wId === oldIdentifier, r.WorkflowIdentifiers);
2700
+ if (matchValue_1 != null) {
2701
+ const i_1 = value(matchValue_1) | 0;
2702
+ r.WorkflowIdentifiers[i_1] = newIdentifier;
2703
+ }
2704
+ }, this$.Runs);
2705
+ }
2706
+ static renameWorkflow(oldIdentifier, newIdentifier) {
2707
+ return (inv) => {
2708
+ const newInv = inv.Copy();
2709
+ newInv.RenameWorkflow(oldIdentifier, newIdentifier);
2710
+ return newInv;
2711
+ };
2712
+ }
2713
+ SetAssayAt(index, assay) {
2714
+ const this$ = this;
2715
+ const assayIdent = assay.Identifier;
2716
+ const matchValue = tryFindIndex((x) => x === assayIdent, map$1((a) => a.Identifier, removeAt(index, this$.Assays)));
2717
+ if (matchValue == null) {
2718
+ } else {
2719
+ throw new Error(`Cannot create assay with name ${assayIdent}, as assay names must be unique and assay at index ${value(matchValue)} has the same name.`);
2720
+ }
2721
+ assay.Investigation = this$;
2722
+ this$.Assays[index] = assay;
2723
+ this$.DeregisterMissingAssays();
2724
+ }
2725
+ static setAssayAt(index, assay) {
2726
+ return (inv) => {
2727
+ const newInvestigation = inv.Copy();
2728
+ newInvestigation.SetAssayAt(index, assay);
2729
+ return newInvestigation;
2730
+ };
2731
+ }
2732
+ SetAssay(assayIdentifier, assay) {
2733
+ const this$ = this;
2734
+ const index = this$.GetAssayIndex(assayIdentifier) | 0;
2735
+ this$.SetAssayAt(index, assay);
2736
+ }
2737
+ static setAssay(assayIdentifier, assay) {
2738
+ return (inv) => {
2739
+ const newInvestigation = inv.Copy();
2740
+ newInvestigation.SetAssay(assayIdentifier, assay);
2741
+ return newInvestigation;
2742
+ };
2743
+ }
2744
+ GetAssayIndex(assayIdentifier) {
2745
+ const this$ = this;
2746
+ const index = this$.Assays.findIndex((a) => a.Identifier === assayIdentifier) | 0;
2747
+ if (index === -1) {
2748
+ throw new Error(`Unable to find assay with specified identifier '${assayIdentifier}'!`);
2749
+ }
2750
+ return index | 0;
2751
+ }
2752
+ static getAssayIndex(assayIdentifier) {
2753
+ return (inv) => inv.GetAssayIndex(assayIdentifier);
2754
+ }
2755
+ GetAssayAt(index) {
2756
+ const this$ = this;
2757
+ return this$.Assays[index];
2758
+ }
2759
+ static getAssayAt(index) {
2760
+ return (inv) => {
2761
+ const newInvestigation = inv.Copy();
2762
+ return newInvestigation.GetAssayAt(index);
2763
+ };
2764
+ }
2765
+ GetAssay(assayIdentifier) {
2766
+ const this$ = this;
2767
+ const matchValue = this$.TryGetAssay(assayIdentifier);
2768
+ if (matchValue == null) {
2769
+ throw new Error(ArcTypesAux_ErrorMsgs_unableToFindAssayIdentifier(assayIdentifier, this$.Identifier));
2770
+ } else {
2771
+ return value(matchValue);
2772
+ }
2773
+ }
2774
+ static getAssay(assayIdentifier) {
2775
+ return (inv) => {
2776
+ const newInvestigation = inv.Copy();
2777
+ return newInvestigation.GetAssay(assayIdentifier);
2778
+ };
2779
+ }
2780
+ TryGetAssay(assayIdentifier) {
2781
+ const this$ = this;
2782
+ return tryFind((a) => a.Identifier === assayIdentifier, this$.Assays);
2783
+ }
2784
+ static tryGetAssay(assayIdentifier) {
2785
+ return (inv) => {
2786
+ const newInvestigation = inv.Copy();
2787
+ return newInvestigation.TryGetAssay(assayIdentifier);
2788
+ };
2789
+ }
2790
+ ContainsAssay(assayIdentifier) {
2791
+ const this$ = this;
2792
+ return exists((a) => a.Identifier === assayIdentifier, this$.Assays);
2793
+ }
2794
+ static containsAssay(assayIdentifier) {
2795
+ return (inv) => inv.ContainsAssay(assayIdentifier);
2796
+ }
2797
+ get RegisteredStudyIdentifierCount() {
2798
+ const this$ = this;
2799
+ return this$.RegisteredStudyIdentifiers.length | 0;
2800
+ }
2801
+ get RegisteredStudies() {
2802
+ const this$ = this;
2803
+ return ResizeArray_choose((identifier) => this$.TryGetStudy(identifier), this$.RegisteredStudyIdentifiers);
2804
+ }
2805
+ get RegisteredStudyCount() {
2806
+ const this$ = this;
2807
+ return this$.RegisteredStudies.length | 0;
2808
+ }
2809
+ get VacantStudyIdentifiers() {
2810
+ const this$ = this;
2811
+ return ResizeArray_filter((arg) => !this$.ContainsStudy(arg), this$.RegisteredStudyIdentifiers);
2812
+ }
2813
+ get StudyCount() {
2814
+ const this$ = this;
2815
+ return this$.Studies.length | 0;
2816
+ }
2817
+ get StudyIdentifiers() {
2818
+ const this$ = this;
2819
+ return toArray(map$1((x) => x.Identifier, this$.Studies));
2820
+ }
2821
+ get UnregisteredStudies() {
2822
+ const this$ = this;
2823
+ return ResizeArray_filter((s) => {
2824
+ let source, x;
2825
+ return !(source = this$.RegisteredStudyIdentifiers, exists((x = s.Identifier, (y) => x === y), source));
2826
+ }, this$.Studies);
2827
+ }
2828
+ AddStudy(study) {
2829
+ const this$ = this;
2830
+ const study_1 = study;
2831
+ const matchValue = tryFindIndex((x) => x.Identifier === study_1.Identifier, this$.Studies);
2832
+ if (matchValue == null) {
2833
+ } else {
2834
+ throw new Error(`Cannot create study with name ${study_1.Identifier}, as study names must be unique and study at index ${value(matchValue)} has the same name.`);
2835
+ }
2836
+ study.Investigation = this$;
2837
+ void this$.Studies.push(study);
2838
+ }
2839
+ static addStudy(study) {
2840
+ return (inv) => {
2841
+ const copy = inv.Copy();
2842
+ copy.AddStudy(study);
2843
+ return copy;
2844
+ };
2845
+ }
2846
+ InitStudy(studyIdentifier) {
2847
+ const this$ = this;
2848
+ const study = ArcStudy.init(studyIdentifier);
2849
+ this$.AddStudy(study);
2850
+ return study;
2851
+ }
2852
+ static initStudy(studyIdentifier) {
2853
+ return (inv) => {
2854
+ const copy = inv.Copy();
2855
+ return [copy, copy.InitStudy(studyIdentifier)];
2856
+ };
2857
+ }
2858
+ RegisterStudy(studyIdentifier) {
2859
+ const this$ = this;
2860
+ const studyIdent = studyIdentifier;
2861
+ const matchValue = tryFind((x) => x === studyIdent, this$.StudyIdentifiers);
2862
+ if (matchValue != null) {
2863
+ } else {
2864
+ throw new Error(`The given study with identifier '${studyIdent}' must be added to Investigation before it can be registered.`);
2865
+ }
2866
+ const studyIdent_1 = studyIdentifier;
2867
+ if (contains(studyIdent_1, this$.RegisteredStudyIdentifiers, {
2868
+ Equals: (x_1, y) => x_1 === y,
2869
+ GetHashCode: stringHash
2870
+ })) {
2871
+ throw new Error(`Study with identifier '${studyIdent_1}' is already registered!`);
2872
+ }
2873
+ void this$.RegisteredStudyIdentifiers.push(studyIdentifier);
2874
+ }
2875
+ static registerStudy(studyIdentifier) {
2876
+ return (inv) => {
2877
+ const copy = inv.Copy();
2878
+ copy.RegisterStudy(studyIdentifier);
2879
+ return copy;
2880
+ };
2881
+ }
2882
+ AddRegisteredStudy(study) {
2883
+ const this$ = this;
2884
+ this$.AddStudy(study);
2885
+ this$.RegisterStudy(study.Identifier);
2886
+ }
2887
+ static addRegisteredStudy(study) {
2888
+ return (inv) => {
2889
+ const copy = inv.Copy();
2890
+ const study_1 = study.Copy();
2891
+ copy.AddRegisteredStudy(study_1);
2892
+ return copy;
2893
+ };
2894
+ }
2895
+ DeleteStudyAt(index) {
2896
+ const this$ = this;
2897
+ this$.Studies.splice(index, 1);
2898
+ }
2899
+ static deleteStudyAt(index) {
2900
+ return (i) => {
2901
+ const copy = i.Copy();
2902
+ copy.DeleteStudyAt(index);
2903
+ return copy;
2904
+ };
2905
+ }
2906
+ DeleteStudy(studyIdentifier) {
2907
+ const this$ = this;
2908
+ const index = this$.Studies.findIndex((s) => s.Identifier === studyIdentifier) | 0;
2909
+ this$.DeleteStudyAt(index);
2910
+ }
2911
+ static deleteStudy(studyIdentifier) {
2912
+ return (i) => {
2913
+ const copy = i.Copy();
2914
+ copy.DeleteStudy(studyIdentifier);
2915
+ return copy;
2916
+ };
2917
+ }
2918
+ RemoveStudyAt(index) {
2919
+ const this$ = this;
2920
+ const ident = this$.GetStudyAt(index).Identifier;
2921
+ this$.Studies.splice(index, 1);
2922
+ this$.DeregisterStudy(ident);
2923
+ }
2924
+ static removeStudyAt(index) {
2925
+ return (inv) => {
2926
+ const newInv = inv.Copy();
2927
+ newInv.RemoveStudyAt(index);
2928
+ return newInv;
2929
+ };
2930
+ }
2931
+ RemoveStudy(studyIdentifier) {
2932
+ const this$ = this;
2933
+ const index = this$.GetStudyIndex(studyIdentifier) | 0;
2934
+ this$.RemoveStudyAt(index);
2935
+ }
2936
+ static removeStudy(studyIdentifier) {
2937
+ return (inv) => {
2938
+ const copy = inv.Copy();
2939
+ copy.RemoveStudy(studyIdentifier);
2940
+ return copy;
2941
+ };
2942
+ }
2943
+ RenameStudy(oldIdentifier, newIdentifier) {
2944
+ const this$ = this;
2945
+ iterate((s) => {
2946
+ if (s.Identifier === oldIdentifier) {
2947
+ s.Identifier = newIdentifier;
2948
+ }
2949
+ }, this$.Studies);
2950
+ const index = tryFindIndex((si) => si === oldIdentifier, this$.RegisteredStudyIdentifiers);
2951
+ if (index != null) {
2952
+ const index_1 = value(index) | 0;
2953
+ this$.RegisteredStudyIdentifiers[index_1] = newIdentifier;
2954
+ }
2955
+ }
2956
+ static renameStudy(oldIdentifier, newIdentifier) {
2957
+ return (inv) => {
2958
+ const newInv = inv.Copy();
2959
+ newInv.RenameStudy(oldIdentifier, newIdentifier);
2960
+ return newInv;
2961
+ };
2962
+ }
2963
+ SetStudyAt(index, study) {
2964
+ const this$ = this;
2965
+ const study_1 = study;
2966
+ const matchValue = tryFindIndex((x) => x.Identifier === study_1.Identifier, removeAt(index, this$.Studies));
2967
+ if (matchValue == null) {
2968
+ } else {
2969
+ throw new Error(`Cannot create study with name ${study_1.Identifier}, as study names must be unique and study at index ${value(matchValue)} has the same name.`);
2970
+ }
2971
+ study.Investigation = this$;
2972
+ this$.Studies[index] = study;
2973
+ }
2974
+ static setStudyAt(index, study) {
2975
+ return (inv) => {
2976
+ const newInv = inv.Copy();
2977
+ newInv.SetStudyAt(index, study);
2978
+ return newInv;
2979
+ };
2980
+ }
2981
+ SetStudy(studyIdentifier, study) {
2982
+ const this$ = this;
2983
+ const index = this$.GetStudyIndex(studyIdentifier) | 0;
2984
+ this$.SetStudyAt(index, study);
2985
+ }
2986
+ static setStudy(studyIdentifier, study) {
2987
+ return (inv) => {
2988
+ const newInv = inv.Copy();
2989
+ newInv.SetStudy(studyIdentifier, study);
2990
+ return newInv;
2991
+ };
2992
+ }
2993
+ GetStudyIndex(studyIdentifier) {
2994
+ const this$ = this;
2995
+ const index = this$.Studies.findIndex((s) => s.Identifier === studyIdentifier) | 0;
2996
+ if (index === -1) {
2997
+ throw new Error(`Unable to find study with specified identifier '${studyIdentifier}'!`);
2998
+ }
2999
+ return index | 0;
3000
+ }
3001
+ static getStudyIndex(studyIdentifier) {
3002
+ return (inv) => inv.GetStudyIndex(studyIdentifier);
3003
+ }
3004
+ GetStudyAt(index) {
3005
+ const this$ = this;
3006
+ return this$.Studies[index];
3007
+ }
3008
+ static getStudyAt(index) {
3009
+ return (inv) => {
3010
+ const newInv = inv.Copy();
3011
+ return newInv.GetStudyAt(index);
3012
+ };
3013
+ }
3014
+ GetStudy(studyIdentifier) {
3015
+ const this$ = this;
3016
+ const matchValue = this$.TryGetStudy(studyIdentifier);
3017
+ if (matchValue == null) {
3018
+ throw new Error(ArcTypesAux_ErrorMsgs_unableToFindStudyIdentifier(studyIdentifier, this$.Identifier));
3019
+ } else {
3020
+ return value(matchValue);
3021
+ }
3022
+ }
3023
+ static getStudy(studyIdentifier) {
3024
+ return (inv) => {
3025
+ const newInv = inv.Copy();
3026
+ return newInv.GetStudy(studyIdentifier);
3027
+ };
3028
+ }
3029
+ TryGetStudy(studyIdentifier) {
3030
+ const this$ = this;
3031
+ return tryFind((s) => s.Identifier === studyIdentifier, this$.Studies);
3032
+ }
3033
+ static tryGetStudy(studyIdentifier) {
3034
+ return (inv) => {
3035
+ const newInv = inv.Copy();
3036
+ return newInv.TryGetStudy(studyIdentifier);
3037
+ };
3038
+ }
3039
+ ContainsStudy(studyIdentifier) {
3040
+ const this$ = this;
3041
+ return exists((s) => s.Identifier === studyIdentifier, this$.Studies);
3042
+ }
3043
+ static containsStudy(studyIdentifier) {
3044
+ return (inv) => inv.ContainsStudy(studyIdentifier);
3045
+ }
3046
+ RegisterAssayAt(studyIndex, assayIdentifier) {
3047
+ const this$ = this;
3048
+ const study = this$.GetStudyAt(studyIndex);
3049
+ const matchValue = tryFind((x) => x === assayIdentifier, map$1((a) => a.Identifier, this$.Assays));
3050
+ if (matchValue != null) {
3051
+ } else {
3052
+ throw new Error("The given assay must be added to Investigation before it can be registered.");
3053
+ }
3054
+ const assayIdent_1 = assayIdentifier;
3055
+ const matchValue_1 = tryFindIndex((x_1) => x_1 === assayIdent_1, study.RegisteredAssayIdentifiers);
3056
+ if (matchValue_1 == null) {
3057
+ } else {
3058
+ throw new Error(`Cannot create assay with name ${assayIdent_1}, as assay names must be unique and assay at index ${value(matchValue_1)} has the same name.`);
3059
+ }
3060
+ study.RegisterAssay(assayIdentifier);
3061
+ }
3062
+ static registerAssayAt(studyIndex, assayIdentifier) {
3063
+ return (inv) => {
3064
+ const copy = inv.Copy();
3065
+ copy.RegisterAssayAt(studyIndex, assayIdentifier);
3066
+ return copy;
3067
+ };
3068
+ }
3069
+ RegisterAssay(studyIdentifier, assayIdentifier) {
3070
+ const this$ = this;
3071
+ const index = this$.GetStudyIndex(studyIdentifier) | 0;
3072
+ this$.RegisterAssayAt(index, assayIdentifier);
3073
+ }
3074
+ static registerAssay(studyIdentifier, assayIdentifier) {
3075
+ return (inv) => {
3076
+ const copy = inv.Copy();
3077
+ copy.RegisterAssay(studyIdentifier, assayIdentifier);
3078
+ return copy;
3079
+ };
3080
+ }
3081
+ DeregisterAssayAt(studyIndex, assayIdentifier) {
3082
+ const this$ = this;
3083
+ const study = this$.GetStudyAt(studyIndex);
3084
+ study.DeregisterAssay(assayIdentifier);
3085
+ }
3086
+ static deregisterAssayAt(studyIndex, assayIdentifier) {
3087
+ return (inv) => {
3088
+ const copy = inv.Copy();
3089
+ copy.DeregisterAssayAt(studyIndex, assayIdentifier);
3090
+ return copy;
3091
+ };
3092
+ }
3093
+ DeregisterAssay(studyIdentifier, assayIdentifier) {
3094
+ const this$ = this;
3095
+ const index = this$.GetStudyIndex(studyIdentifier) | 0;
3096
+ this$.DeregisterAssayAt(index, assayIdentifier);
3097
+ }
3098
+ static deregisterAssay(studyIdentifier, assayIdentifier) {
3099
+ return (inv) => {
3100
+ const copy = inv.Copy();
3101
+ copy.DeregisterAssay(studyIdentifier, assayIdentifier);
3102
+ return copy;
3103
+ };
3104
+ }
3105
+ DeregisterStudy(studyIdentifier) {
3106
+ const this$ = this;
3107
+ removeInPlace(studyIdentifier, this$.RegisteredStudyIdentifiers, {
3108
+ Equals: (x, y) => x === y,
3109
+ GetHashCode: stringHash
3110
+ });
3111
+ }
3112
+ static deregisterStudy(studyIdentifier) {
3113
+ return (i) => {
3114
+ const copy = i.Copy();
3115
+ copy.DeregisterStudy(studyIdentifier);
3116
+ return copy;
3117
+ };
3118
+ }
3119
+ get WorkflowCount() {
3120
+ const this$ = this;
3121
+ return this$.Workflows.length | 0;
3122
+ }
3123
+ get WorkflowIdentifiers() {
3124
+ const this$ = this;
3125
+ return toArray(map$1((x) => x.Identifier, this$.Workflows));
3126
+ }
3127
+ GetWorkflowIndex(workflowIdentifier) {
3128
+ const this$ = this;
3129
+ const index = this$.Workflows.findIndex((w) => w.Identifier === workflowIdentifier) | 0;
3130
+ if (index === -1) {
3131
+ throw new Error(`Unable to find workflow with specified identifier '${workflowIdentifier}'!`);
3132
+ }
3133
+ return index | 0;
3134
+ }
3135
+ static getWorkflowIndex(workflowIdentifier) {
3136
+ return (inv) => inv.GetWorkflowIndex(workflowIdentifier);
3137
+ }
3138
+ AddWorkflow(workflow) {
3139
+ const this$ = this;
3140
+ const workflow_1 = workflow;
3141
+ const matchValue = tryFindIndex((x) => x.Identifier === workflow_1.Identifier, this$.Workflows);
3142
+ if (matchValue == null) {
3143
+ } else {
3144
+ throw new Error(`Cannot create workflow with name ${workflow_1.Identifier}, as workflow names must be unique and workflow at index ${value(matchValue)} has the same name.`);
3145
+ }
3146
+ workflow.Investigation = this$;
3147
+ void this$.Workflows.push(workflow);
3148
+ }
3149
+ static addWorkflow(workflow) {
3150
+ return (inv) => {
3151
+ const copy = inv.Copy();
3152
+ copy.AddWorkflow(workflow);
3153
+ return copy;
3154
+ };
3155
+ }
3156
+ InitWorkflow(workflowIdentifier) {
3157
+ const this$ = this;
3158
+ const workflow = ArcWorkflow.init(workflowIdentifier);
3159
+ this$.AddWorkflow(workflow);
3160
+ return workflow;
3161
+ }
3162
+ static initWorkflow(workflowIdentifier) {
3163
+ return (inv) => {
3164
+ const copy = inv.Copy();
3165
+ return copy.InitWorkflow(workflowIdentifier);
3166
+ };
3167
+ }
3168
+ DeleteWorkflowAt(index) {
3169
+ const this$ = this;
3170
+ this$.Workflows.splice(index, 1);
3171
+ }
3172
+ static deleteWorkflowAt(index) {
3173
+ return (inv) => {
3174
+ const copy = inv.Copy();
3175
+ copy.DeleteWorkflowAt(index);
3176
+ return copy;
3177
+ };
3178
+ }
3179
+ DeleteWorkflow(workflowIdentifier) {
3180
+ const this$ = this;
3181
+ const index = this$.Workflows.findIndex((w) => w.Identifier === workflowIdentifier) | 0;
3182
+ this$.DeleteWorkflowAt(index);
3183
+ iterate((w_1) => {
3184
+ const matchValue = tryFindIndex((swi) => swi === workflowIdentifier, w_1.SubWorkflowIdentifiers);
3185
+ if (matchValue != null) {
3186
+ const swiIndex = value(matchValue) | 0;
3187
+ w_1.SubWorkflowIdentifiers.splice(swiIndex, 1);
3188
+ }
3189
+ }, this$.Workflows);
3190
+ iterate((r) => {
3191
+ const matchValue_1 = tryFindIndex((wi) => wi === workflowIdentifier, r.WorkflowIdentifiers);
3192
+ if (matchValue_1 != null) {
3193
+ const wiIndex = value(matchValue_1) | 0;
3194
+ r.WorkflowIdentifiers.splice(wiIndex, 1);
3195
+ }
3196
+ }, this$.Runs);
3197
+ }
3198
+ static deleteWorkflow(workflowIdentifier) {
3199
+ return (inv) => {
3200
+ const copy = inv.Copy();
3201
+ copy.DeleteWorkflow(workflowIdentifier);
3202
+ return copy;
3203
+ };
3204
+ }
3205
+ GetWorkflowAt(index) {
3206
+ const this$ = this;
3207
+ return this$.Workflows[index];
3208
+ }
3209
+ static getWorkflowAt(index) {
3210
+ return (inv) => {
3211
+ const copy = inv.Copy();
3212
+ return copy.GetWorkflowAt(index);
3213
+ };
3214
+ }
3215
+ GetWorkflow(workflowIdentifier) {
3216
+ const this$ = this;
3217
+ const matchValue = this$.TryGetWorkflow(workflowIdentifier);
3218
+ if (matchValue == null) {
3219
+ throw new Error(ArcTypesAux_ErrorMsgs_unableToFindWorkflowIdentifier(workflowIdentifier, this$.Identifier));
3220
+ } else {
3221
+ return value(matchValue);
3222
+ }
3223
+ }
3224
+ static getWorkflow(workflowIdentifier) {
3225
+ return (inv) => {
3226
+ const copy = inv.Copy();
3227
+ return copy.GetWorkflow(workflowIdentifier);
3228
+ };
3229
+ }
3230
+ TryGetWorkflow(workflowIdentifier) {
3231
+ const this$ = this;
3232
+ return tryFind((w) => w.Identifier === workflowIdentifier, this$.Workflows);
3233
+ }
3234
+ static tryGetWorkflow(workflowIdentifier) {
3235
+ return (inv) => {
3236
+ const copy = inv.Copy();
3237
+ return copy.TryGetWorkflow(workflowIdentifier);
3238
+ };
3239
+ }
3240
+ ContainsWorkflow(workflowIdentifier) {
3241
+ const this$ = this;
3242
+ return exists((w) => w.Identifier === workflowIdentifier, this$.Workflows);
3243
+ }
3244
+ static containsWorkflow(workflowIdentifier) {
3245
+ return (inv) => inv.ContainsWorkflow(workflowIdentifier);
3246
+ }
3247
+ SetWorkflowAt(index, workflow) {
3248
+ const this$ = this;
3249
+ const workflow_1 = workflow;
3250
+ const matchValue = tryFindIndex((x) => x.Identifier === workflow_1.Identifier, removeAt(index, this$.Workflows));
3251
+ if (matchValue == null) {
3252
+ } else {
3253
+ throw new Error(`Cannot create workflow with name ${workflow_1.Identifier}, as workflow names must be unique and workflow at index ${value(matchValue)} has the same name.`);
3254
+ }
3255
+ workflow.Investigation = this$;
3256
+ this$.Workflows[index] = workflow;
3257
+ }
3258
+ SetWorkflow(workflowIdentifier, workflow) {
3259
+ const this$ = this;
3260
+ const index = this$.GetWorkflowIndex(workflowIdentifier) | 0;
3261
+ this$.SetWorkflowAt(index, workflow);
3262
+ }
3263
+ static setWorkflow(workflowIdentifier, workflow) {
3264
+ return (inv) => {
3265
+ const copy = inv.Copy();
3266
+ copy.SetWorkflow(workflowIdentifier, workflow);
3267
+ return copy;
3268
+ };
3269
+ }
3270
+ static setWorkflowAt(index, workflow) {
3271
+ return (inv) => {
3272
+ const copy = inv.Copy();
3273
+ copy.SetWorkflowAt(index, workflow);
3274
+ return copy;
3275
+ };
3276
+ }
3277
+ get RunCount() {
3278
+ const this$ = this;
3279
+ return this$.Runs.length | 0;
3280
+ }
3281
+ get RunIdentifiers() {
3282
+ const this$ = this;
3283
+ return toArray(map$1((x) => x.Identifier, this$.Runs));
3284
+ }
3285
+ GetRunIndex(runIdentifier) {
3286
+ const this$ = this;
3287
+ const index = this$.Runs.findIndex((r) => r.Identifier === runIdentifier) | 0;
3288
+ if (index === -1) {
3289
+ throw new Error(`Unable to find run with specified identifier '${runIdentifier}'!`);
3290
+ }
3291
+ return index | 0;
3292
+ }
3293
+ static getRunIndex(runIdentifier) {
3294
+ return (inv) => inv.GetRunIndex(runIdentifier);
3295
+ }
3296
+ AddRun(run) {
3297
+ const this$ = this;
3298
+ const run_1 = run;
3299
+ const matchValue = tryFindIndex((x) => x.Identifier === run_1.Identifier, this$.Runs);
3300
+ if (matchValue == null) {
3301
+ } else {
3302
+ throw new Error(`Cannot create run with name ${run_1.Identifier}, as run names must be unique and run at index ${value(matchValue)} has the same name.`);
3303
+ }
3304
+ run.Investigation = this$;
3305
+ void this$.Runs.push(run);
3306
+ }
3307
+ static addRun(run) {
3308
+ return (inv) => {
3309
+ const copy = inv.Copy();
3310
+ copy.AddRun(run);
3311
+ return copy;
3312
+ };
3313
+ }
3314
+ InitRun(runIdentifier) {
3315
+ const this$ = this;
3316
+ const run = ArcRun.init(runIdentifier);
3317
+ this$.AddRun(run);
3318
+ return run;
3319
+ }
3320
+ static initRun(runIdentifier) {
3321
+ return (inv) => {
3322
+ const copy = inv.Copy();
3323
+ return copy.InitRun(runIdentifier);
3324
+ };
3325
+ }
3326
+ DeleteRunAt(index) {
3327
+ const this$ = this;
3328
+ this$.Runs.splice(index, 1);
3329
+ }
3330
+ static deleteRunAt(index) {
3331
+ return (inv) => {
3332
+ const copy = inv.Copy();
3333
+ copy.DeleteRunAt(index);
3334
+ return copy;
3335
+ };
3336
+ }
3337
+ DeleteRun(runIdentifier) {
3338
+ const this$ = this;
3339
+ const index = this$.Runs.findIndex((w) => w.Identifier === runIdentifier) | 0;
3340
+ this$.DeleteRunAt(index);
3341
+ }
3342
+ static deleteRun(runIdentifier) {
3343
+ return (inv) => {
3344
+ const copy = inv.Copy();
3345
+ copy.DeleteRun(runIdentifier);
3346
+ return copy;
3347
+ };
3348
+ }
3349
+ GetRunAt(index) {
3350
+ const this$ = this;
3351
+ return this$.Runs[index];
3352
+ }
3353
+ static getRunAt(index) {
3354
+ return (inv) => {
3355
+ const copy = inv.Copy();
3356
+ return copy.GetRunAt(index);
3357
+ };
3358
+ }
3359
+ GetRun(runIdentifier) {
3360
+ const this$ = this;
3361
+ const matchValue = this$.TryGetRun(runIdentifier);
3362
+ if (matchValue == null) {
3363
+ throw new Error(ArcTypesAux_ErrorMsgs_unableToFindRunIdentifier(runIdentifier, this$.Identifier));
3364
+ } else {
3365
+ return value(matchValue);
3366
+ }
3367
+ }
3368
+ static getRun(runIdentifier) {
3369
+ return (inv) => {
3370
+ const copy = inv.Copy();
3371
+ return copy.GetRun(runIdentifier);
3372
+ };
3373
+ }
3374
+ TryGetRun(runIdentifier) {
3375
+ const this$ = this;
3376
+ return tryFind((w) => w.Identifier === runIdentifier, this$.Runs);
3377
+ }
3378
+ static tryGetRun(runIdentifier) {
3379
+ return (inv) => {
3380
+ const copy = inv.Copy();
3381
+ return copy.TryGetRun(runIdentifier);
3382
+ };
3383
+ }
3384
+ ContainsRun(runIdentifier) {
3385
+ const this$ = this;
3386
+ return exists((w) => w.Identifier === runIdentifier, this$.Runs);
3387
+ }
3388
+ static containsRun(runIdentifier) {
3389
+ return (inv) => inv.ContainsRun(runIdentifier);
3390
+ }
3391
+ SetRunAt(index, run) {
3392
+ const this$ = this;
3393
+ const run_1 = run;
3394
+ const matchValue = tryFindIndex((x) => x.Identifier === run_1.Identifier, removeAt(index, this$.Runs));
3395
+ if (matchValue == null) {
3396
+ } else {
3397
+ throw new Error(`Cannot create run with name ${run_1.Identifier}, as run names must be unique and run at index ${value(matchValue)} has the same name.`);
3398
+ }
3399
+ run.Investigation = this$;
3400
+ this$.Runs[index] = run;
3401
+ }
3402
+ SetRun(runIdentifier, run) {
3403
+ const this$ = this;
3404
+ const index = this$.GetRunIndex(runIdentifier) | 0;
3405
+ this$.SetRunAt(index, run);
3406
+ }
3407
+ static setRunAt(index, run) {
3408
+ return (inv) => {
3409
+ const copy = inv.Copy();
3410
+ copy.SetRunAt(index, run);
3411
+ return copy;
3412
+ };
3413
+ }
3414
+ static setRun(runIdentifier, run) {
3415
+ return (inv) => {
3416
+ const copy = inv.Copy();
3417
+ copy.SetRun(runIdentifier, run);
3418
+ return copy;
3419
+ };
3420
+ }
3421
+ GetAllPersons() {
3422
+ const this$ = this;
3423
+ const persons = [];
3424
+ let enumerator = getEnumerator(this$.Assays);
3425
+ try {
3426
+ while (enumerator["System.Collections.IEnumerator.MoveNext"]()) {
3427
+ const a = enumerator["System.Collections.Generic.IEnumerator`1.get_Current"]();
3428
+ addRangeInPlace(a.Performers, persons);
3429
+ }
3430
+ } finally {
3431
+ disposeSafe(enumerator);
3432
+ }
3433
+ let enumerator_1 = getEnumerator(this$.Studies);
3434
+ try {
3435
+ while (enumerator_1["System.Collections.IEnumerator.MoveNext"]()) {
3436
+ const s = enumerator_1["System.Collections.Generic.IEnumerator`1.get_Current"]();
3437
+ addRangeInPlace(s.Contacts, persons);
3438
+ }
3439
+ } finally {
3440
+ disposeSafe(enumerator_1);
3441
+ }
3442
+ addRangeInPlace(this$.Contacts, persons);
3443
+ return Array_distinct(Array.from(persons), {
3444
+ Equals: equals,
3445
+ GetHashCode: safeHash
3446
+ });
3447
+ }
3448
+ GetAllPublications() {
3449
+ const this$ = this;
3450
+ const pubs = [];
3451
+ let enumerator = getEnumerator(this$.Studies);
3452
+ try {
3453
+ while (enumerator["System.Collections.IEnumerator.MoveNext"]()) {
3454
+ const s = enumerator["System.Collections.Generic.IEnumerator`1.get_Current"]();
3455
+ addRangeInPlace(s.Publications, pubs);
3456
+ }
3457
+ } finally {
3458
+ disposeSafe(enumerator);
3459
+ }
3460
+ addRangeInPlace(this$.Publications, pubs);
3461
+ return Array_distinct(Array.from(pubs), {
3462
+ Equals: equals,
3463
+ GetHashCode: safeHash
3464
+ });
3465
+ }
3466
+ DeregisterMissingAssays() {
3467
+ const this$ = this;
3468
+ const inv = this$;
3469
+ const existingAssays = inv.AssayIdentifiers;
3470
+ let enumerator = getEnumerator(inv.Studies);
3471
+ try {
3472
+ while (enumerator["System.Collections.IEnumerator.MoveNext"]()) {
3473
+ const study = enumerator["System.Collections.Generic.IEnumerator`1.get_Current"]();
3474
+ const rai = study.RegisteredAssayIdentifiers;
3475
+ let enumerator_1 = getEnumerator(Array.from(rai));
3476
+ try {
3477
+ while (enumerator_1["System.Collections.IEnumerator.MoveNext"]()) {
3478
+ const registeredAssay = enumerator_1["System.Collections.Generic.IEnumerator`1.get_Current"]();
3479
+ if (!contains(registeredAssay, existingAssays, {
3480
+ Equals: (x, y) => x === y,
3481
+ GetHashCode: stringHash
3482
+ })) {
3483
+ const value_1 = study.DeregisterAssay(registeredAssay);
3484
+ }
3485
+ }
3486
+ } finally {
3487
+ disposeSafe(enumerator_1);
3488
+ }
3489
+ }
3490
+ } finally {
3491
+ disposeSafe(enumerator);
3492
+ }
3493
+ }
3494
+ static deregisterMissingAssays() {
3495
+ return (inv) => {
3496
+ const copy = inv.Copy();
3497
+ copy.DeregisterMissingAssays();
3498
+ return copy;
3499
+ };
3500
+ }
3501
+ UpdateIOTypeByEntityID() {
3502
+ let collection;
3503
+ const this$ = this;
3504
+ const ioMap = ArcTablesAux_getIOMap((collection = toList(delay(() => append(collect((study) => study.Tables, this$.Studies), delay(() => append(collect((assay) => assay.Tables, this$.Assays), delay(() => collect((run) => run.Tables, this$.Runs))))))), Array.from(collection)));
3505
+ let enumerator = getEnumerator(this$.Studies);
3506
+ try {
3507
+ while (enumerator["System.Collections.IEnumerator.MoveNext"]()) {
3508
+ const study_1 = enumerator["System.Collections.Generic.IEnumerator`1.get_Current"]();
3509
+ ArcTablesAux_applyIOMap(ioMap, study_1.Tables);
3510
+ }
3511
+ } finally {
3512
+ disposeSafe(enumerator);
3513
+ }
3514
+ let enumerator_1 = getEnumerator(this$.Assays);
3515
+ try {
3516
+ while (enumerator_1["System.Collections.IEnumerator.MoveNext"]()) {
3517
+ const assay_1 = enumerator_1["System.Collections.Generic.IEnumerator`1.get_Current"]();
3518
+ ArcTablesAux_applyIOMap(ioMap, assay_1.Tables);
3519
+ }
3520
+ } finally {
3521
+ disposeSafe(enumerator_1);
3522
+ }
3523
+ let enumerator_2 = getEnumerator(this$.Runs);
3524
+ try {
3525
+ while (enumerator_2["System.Collections.IEnumerator.MoveNext"]()) {
3526
+ const run_1 = enumerator_2["System.Collections.Generic.IEnumerator`1.get_Current"]();
3527
+ ArcTablesAux_applyIOMap(ioMap, run_1.Tables);
3528
+ }
3529
+ } finally {
3530
+ disposeSafe(enumerator_2);
3531
+ }
3532
+ }
3533
+ Copy() {
3534
+ const this$ = this;
3535
+ const nextAssays = [];
3536
+ const nextStudies = [];
3537
+ const nextWorkflows = [];
3538
+ const nextRuns = [];
3539
+ let enumerator = getEnumerator(this$.Assays);
3540
+ try {
3541
+ while (enumerator["System.Collections.IEnumerator.MoveNext"]()) {
3542
+ const assay = enumerator["System.Collections.Generic.IEnumerator`1.get_Current"]();
3543
+ const copy = assay.Copy();
3544
+ void nextAssays.push(copy);
3545
+ }
3546
+ } finally {
3547
+ disposeSafe(enumerator);
3548
+ }
3549
+ let enumerator_1 = getEnumerator(this$.Studies);
3550
+ try {
3551
+ while (enumerator_1["System.Collections.IEnumerator.MoveNext"]()) {
3552
+ const study = enumerator_1["System.Collections.Generic.IEnumerator`1.get_Current"]();
3553
+ const copy_1 = study.Copy();
3554
+ void nextStudies.push(copy_1);
3555
+ }
3556
+ } finally {
3557
+ disposeSafe(enumerator_1);
3558
+ }
3559
+ let enumerator_2 = getEnumerator(this$.Workflows);
3560
+ try {
3561
+ while (enumerator_2["System.Collections.IEnumerator.MoveNext"]()) {
3562
+ const workflow = enumerator_2["System.Collections.Generic.IEnumerator`1.get_Current"]();
3563
+ const copy_2 = workflow.Copy();
3564
+ void nextWorkflows.push(copy_2);
3565
+ }
3566
+ } finally {
3567
+ disposeSafe(enumerator_2);
3568
+ }
3569
+ let enumerator_3 = getEnumerator(this$.Runs);
3570
+ try {
3571
+ while (enumerator_3["System.Collections.IEnumerator.MoveNext"]()) {
3572
+ const run = enumerator_3["System.Collections.Generic.IEnumerator`1.get_Current"]();
3573
+ const copy_3 = run.Copy();
3574
+ void nextRuns.push(copy_3);
3575
+ }
3576
+ } finally {
3577
+ disposeSafe(enumerator_3);
3578
+ }
3579
+ const nextComments = ResizeArray_map((c) => c.Copy(), this$.Comments);
3580
+ const nextRemarks = ResizeArray_map((c_1) => c_1.Copy(), this$.Remarks);
3581
+ const nextContacts = ResizeArray_map((c_2) => c_2.Copy(), this$.Contacts);
3582
+ const nextPublications = ResizeArray_map((c_3) => c_3.Copy(), this$.Publications);
3583
+ const nextOntologySourceReferences = ResizeArray_map((c_4) => c_4.Copy(), this$.OntologySourceReferences);
3584
+ const nextStudyIdentifiers = Array.from(this$.RegisteredStudyIdentifiers);
3585
+ return new ArcInvestigation(this$.Identifier, unwrap(this$.Title), unwrap(this$.Description), unwrap(this$.SubmissionDate), unwrap(this$.PublicReleaseDate), nextOntologySourceReferences, nextPublications, nextContacts, nextAssays, nextStudies, nextWorkflows, nextRuns, nextStudyIdentifiers, nextComments, nextRemarks);
3586
+ }
3587
+ StructurallyEquals(other) {
3588
+ let a, b, a_1, b_1, a_2, b_2, a_3, b_3, a_4, b_4, a_5, b_5, a_6, b_6, a_7, b_7, a_8, b_8, a_9, b_9;
3589
+ const this$ = this;
3590
+ return forAll((x) => x === true, [this$.Identifier === other.Identifier, equals(this$.Title, other.Title), equals(this$.Description, other.Description), equals(this$.SubmissionDate, other.SubmissionDate), equals(this$.PublicReleaseDate, other.PublicReleaseDate), (a = this$.Publications, b = other.Publications, length(a) === length(b) && fold((acc, e) => {
3591
+ if (acc) {
3592
+ return e;
3593
+ } else {
3594
+ return false;
3595
+ }
3596
+ }, true, toList(delay(() => map$1((i_1) => equals(item(i_1, a), item(i_1, b)), rangeDouble(0, 1, length(a) - 1)))))), (a_1 = this$.Contacts, b_1 = other.Contacts, length(a_1) === length(b_1) && fold((acc_1, e_1) => {
3597
+ if (acc_1) {
3598
+ return e_1;
3599
+ } else {
3600
+ return false;
3601
+ }
3602
+ }, true, toList(delay(() => map$1((i_2) => equals(item(i_2, a_1), item(i_2, b_1)), rangeDouble(0, 1, length(a_1) - 1)))))), (a_2 = this$.OntologySourceReferences, b_2 = other.OntologySourceReferences, length(a_2) === length(b_2) && fold((acc_2, e_2) => {
3603
+ if (acc_2) {
3604
+ return e_2;
3605
+ } else {
3606
+ return false;
3607
+ }
3608
+ }, true, toList(delay(() => map$1((i_3) => equals(item(i_3, a_2), item(i_3, b_2)), rangeDouble(0, 1, length(a_2) - 1)))))), (a_3 = this$.Assays, b_3 = other.Assays, length(a_3) === length(b_3) && fold((acc_3, e_3) => {
3609
+ if (acc_3) {
3610
+ return e_3;
3611
+ } else {
3612
+ return false;
3613
+ }
3614
+ }, true, toList(delay(() => map$1((i_4) => equals(item(i_4, a_3), item(i_4, b_3)), rangeDouble(0, 1, length(a_3) - 1)))))), (a_4 = this$.Studies, b_4 = other.Studies, length(a_4) === length(b_4) && fold((acc_4, e_4) => {
3615
+ if (acc_4) {
3616
+ return e_4;
3617
+ } else {
3618
+ return false;
3619
+ }
3620
+ }, true, toList(delay(() => map$1((i_5) => equals(item(i_5, a_4), item(i_5, b_4)), rangeDouble(0, 1, length(a_4) - 1)))))), (a_5 = this$.Workflows, b_5 = other.Workflows, length(a_5) === length(b_5) && fold((acc_5, e_5) => {
3621
+ if (acc_5) {
3622
+ return e_5;
3623
+ } else {
3624
+ return false;
3625
+ }
3626
+ }, true, toList(delay(() => map$1((i_6) => equals(item(i_6, a_5), item(i_6, b_5)), rangeDouble(0, 1, length(a_5) - 1)))))), (a_6 = this$.Runs, b_6 = other.Runs, length(a_6) === length(b_6) && fold((acc_6, e_6) => {
3627
+ if (acc_6) {
3628
+ return e_6;
3629
+ } else {
3630
+ return false;
3631
+ }
3632
+ }, true, toList(delay(() => map$1((i_7) => equals(item(i_7, a_6), item(i_7, b_6)), rangeDouble(0, 1, length(a_6) - 1)))))), (a_7 = this$.RegisteredStudyIdentifiers, b_7 = other.RegisteredStudyIdentifiers, length(a_7) === length(b_7) && fold((acc_7, e_7) => {
3633
+ if (acc_7) {
3634
+ return e_7;
3635
+ } else {
3636
+ return false;
3637
+ }
3638
+ }, true, toList(delay(() => map$1((i_8) => item(i_8, a_7) === item(i_8, b_7), rangeDouble(0, 1, length(a_7) - 1)))))), (a_8 = this$.Comments, b_8 = other.Comments, length(a_8) === length(b_8) && fold((acc_8, e_8) => {
3639
+ if (acc_8) {
3640
+ return e_8;
3641
+ } else {
3642
+ return false;
3643
+ }
3644
+ }, true, toList(delay(() => map$1((i_9) => equals(item(i_9, a_8), item(i_9, b_8)), rangeDouble(0, 1, length(a_8) - 1)))))), (a_9 = this$.Remarks, b_9 = other.Remarks, length(a_9) === length(b_9) && fold((acc_9, e_9) => {
3645
+ if (acc_9) {
3646
+ return e_9;
3647
+ } else {
3648
+ return false;
3649
+ }
3650
+ }, true, toList(delay(() => map$1((i_10) => equals(item(i_10, a_9), item(i_10, b_9)), rangeDouble(0, 1, length(a_9) - 1))))))]);
3651
+ }
3652
+ ReferenceEquals(other) {
3653
+ const this$ = this;
3654
+ return this$ === other;
3655
+ }
3656
+ toString() {
3657
+ const this$ = this;
3658
+ const arg = this$.Identifier;
3659
+ const arg_1 = this$.Title;
3660
+ const arg_2 = this$.Description;
3661
+ const arg_3 = this$.SubmissionDate;
3662
+ const arg_4 = this$.PublicReleaseDate;
3663
+ const arg_5 = this$.OntologySourceReferences;
3664
+ const arg_6 = this$.Publications;
3665
+ const arg_7 = this$.Contacts;
3666
+ const arg_8 = this$.Assays;
3667
+ const arg_9 = this$.Studies;
3668
+ const arg_10 = this$.Workflows;
3669
+ const arg_11 = this$.Runs;
3670
+ const arg_12 = this$.RegisteredStudyIdentifiers;
3671
+ const arg_13 = this$.Comments;
3672
+ const arg_14 = this$.Remarks;
3673
+ return toText(printf("ArcInvestigation {\r\n Identifier = %A,\r\n Title = %A,\r\n Description = %A,\r\n SubmissionDate = %A,\r\n PublicReleaseDate = %A,\r\n OntologySourceReferences = %A,\r\n Publications = %A,\r\n Contacts = %A,\r\n Assays = %A,\r\n Studies = %A,\r\n Workflows = %A,\r\n Runs = %A,\r\n RegisteredStudyIdentifiers = %A,\r\n Comments = %A,\r\n Remarks = %A,\r\n}"))(arg)(arg_1)(arg_2)(arg_3)(arg_4)(arg_5)(arg_6)(arg_7)(arg_8)(arg_9)(arg_10)(arg_11)(arg_12)(arg_13)(arg_14);
3674
+ }
3675
+ Equals(other) {
3676
+ let i;
3677
+ const this$ = this;
3678
+ return other instanceof ArcInvestigation && (i = other, this$.StructurallyEquals(i));
3679
+ }
3680
+ GetHashCode() {
3681
+ const this$ = this;
3682
+ return boxHashArray([this$.Identifier, boxHashOption(this$.Title), boxHashOption(this$.Description), boxHashOption(this$.SubmissionDate), boxHashOption(this$.PublicReleaseDate), boxHashSeq(this$.Publications), boxHashSeq(this$.Contacts), boxHashSeq(this$.OntologySourceReferences), boxHashSeq(this$.Assays), boxHashSeq(this$.Studies), boxHashSeq(this$.Workflows), boxHashSeq(this$.Runs), boxHashSeq(this$.RegisteredStudyIdentifiers), boxHashSeq(this$.Comments), boxHashSeq(this$.Remarks)]) | 0;
3683
+ }
3684
+ GetLightHashCode() {
3685
+ const this$ = this;
3686
+ return boxHashArray([this$.Identifier, boxHashOption(this$.Title), boxHashOption(this$.Description), boxHashOption(this$.SubmissionDate), boxHashOption(this$.PublicReleaseDate), boxHashSeq(this$.Publications), boxHashSeq(this$.Contacts), boxHashSeq(this$.OntologySourceReferences), boxHashSeq(this$.RegisteredStudyIdentifiers), boxHashSeq(this$.Comments), boxHashSeq(this$.Remarks)]) | 0;
3687
+ }
3688
+ }
3689
+ function ArcInvestigation_$reflection() {
3690
+ return class_type("ARCtrl.ArcInvestigation", void 0, ArcInvestigation);
3691
+ }
3692
+ function ArcInvestigation_$ctor_Z67823F6C(identifier, title, description, submissionDate, publicReleaseDate, ontologySourceReferences, publications, contacts, assays, studies, workflows, runs, registeredStudyIdentifiers, comments, remarks) {
3693
+ return new ArcInvestigation(identifier, title, description, submissionDate, publicReleaseDate, ontologySourceReferences, publications, contacts, assays, studies, workflows, runs, registeredStudyIdentifiers, comments, remarks);
3694
+ }
3695
+ function ArcTypesAux_ErrorMsgs_unableToFindAssayIdentifier(assayIdentifier, investigationIdentifier) {
3696
+ return `Error. Unable to find assay with identifier '${assayIdentifier}' in investigation ${investigationIdentifier}.`;
3697
+ }
3698
+ function ArcTypesAux_ErrorMsgs_unableToFindStudyIdentifier(studyIdentifer, investigationIdentifier) {
3699
+ return `Error. Unable to find study with identifier '${studyIdentifer}' in investigation ${investigationIdentifier}.`;
3700
+ }
3701
+ function ArcTypesAux_ErrorMsgs_unableToFindWorkflowIdentifier(workflowIdentifier, investigationIdentifier) {
3702
+ return `Error. Unable to find workflow with identifier '${workflowIdentifier}' in investigation ${investigationIdentifier}.`;
3703
+ }
3704
+ function ArcTypesAux_ErrorMsgs_unableToFindRunIdentifier(runIdentifier, investigationIdentifier) {
3705
+ return `Error. Unable to find run with identifier '${runIdentifier}' in investigation ${investigationIdentifier}.`;
3706
+ }
3707
+
3708
+ export { ArcAssay, ArcAssay_$ctor_11E1F34, ArcAssay_$reflection, ArcInvestigation, ArcInvestigation_$ctor_Z67823F6C, ArcInvestigation_$reflection, ArcRun, ArcRun_$ctor_Z38E7054B, ArcRun_$reflection, ArcStudy, ArcStudy_$ctor_64321D5B, ArcStudy_$reflection, ArcTypesAux_ErrorMsgs_unableToFindAssayIdentifier, ArcTypesAux_ErrorMsgs_unableToFindRunIdentifier, ArcTypesAux_ErrorMsgs_unableToFindStudyIdentifier, ArcTypesAux_ErrorMsgs_unableToFindWorkflowIdentifier, ArcWorkflow, ArcWorkflow_$ctor_Z3BB02240, ArcWorkflow_$reflection };