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

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