@nfdi4plants/arctrl 3.0.0-beta.12 → 3.0.0-beta.13

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 (192) hide show
  1. package/README.md +30 -3
  2. package/dist/ts/index.d.ts +15 -15
  3. package/dist/ts/index.d.ts.map +1 -1
  4. package/dist/ts/index.js +16 -16
  5. package/dist/ts/ts/ARC.d.ts +6 -1
  6. package/dist/ts/ts/ARC.d.ts.map +1 -1
  7. package/dist/ts/ts/ARC.js +30 -6
  8. package/dist/ts/ts/CWL/CWLProcessingUnit.d.ts +19 -0
  9. package/dist/ts/ts/CWL/CWLProcessingUnit.d.ts.map +1 -0
  10. package/dist/ts/ts/CWL/CWLProcessingUnit.js +26 -0
  11. package/dist/ts/ts/CWL/CWLTypes.d.ts +92 -0
  12. package/dist/ts/ts/CWL/CWLTypes.d.ts.map +1 -0
  13. package/dist/ts/ts/CWL/CWLTypes.js +173 -0
  14. package/dist/ts/ts/CWL/Decode.d.ts +94 -0
  15. package/dist/ts/ts/CWL/Decode.d.ts.map +1 -0
  16. package/dist/ts/ts/CWL/Decode.js +649 -0
  17. package/dist/ts/ts/CWL/Encode.d.ts +28 -0
  18. package/dist/ts/ts/CWL/Encode.d.ts.map +1 -0
  19. package/dist/ts/ts/CWL/Encode.js +546 -0
  20. package/dist/ts/ts/CWL/HashHelpers.d.ts +9 -0
  21. package/dist/ts/ts/CWL/HashHelpers.d.ts.map +1 -0
  22. package/dist/ts/ts/CWL/HashHelpers.js +35 -0
  23. package/dist/ts/ts/CWL/Inputs.d.ts +28 -0
  24. package/dist/ts/ts/CWL/Inputs.d.ts.map +1 -0
  25. package/dist/ts/ts/CWL/Inputs.js +62 -0
  26. package/dist/ts/ts/CWL/Outputs.d.ts +25 -0
  27. package/dist/ts/ts/CWL/Outputs.d.ts.map +1 -0
  28. package/dist/ts/ts/CWL/Outputs.js +59 -0
  29. package/dist/ts/ts/CWL/ParameterReference.d.ts +23 -0
  30. package/dist/ts/ts/CWL/ParameterReference.d.ts.map +1 -0
  31. package/dist/ts/ts/CWL/ParameterReference.js +60 -0
  32. package/dist/ts/ts/CWL/Requirements.d.ts +71 -0
  33. package/dist/ts/ts/CWL/Requirements.d.ts.map +1 -0
  34. package/dist/ts/ts/CWL/Requirements.js +116 -0
  35. package/dist/ts/ts/CWL/ToolDescription.d.ts +33 -0
  36. package/dist/ts/ts/CWL/ToolDescription.d.ts.map +1 -0
  37. package/dist/ts/ts/CWL/ToolDescription.js +80 -0
  38. package/dist/ts/ts/CWL/WorkflowDescription.d.ts +34 -0
  39. package/dist/ts/ts/CWL/WorkflowDescription.d.ts.map +1 -0
  40. package/dist/ts/ts/CWL/WorkflowDescription.js +80 -0
  41. package/dist/ts/ts/CWL/WorkflowSteps.d.ts +45 -0
  42. package/dist/ts/ts/CWL/WorkflowSteps.d.ts.map +1 -0
  43. package/dist/ts/ts/CWL/WorkflowSteps.js +99 -0
  44. package/dist/ts/ts/Contract/ARC.d.ts.map +1 -1
  45. package/dist/ts/ts/Contract/ARC.js +27 -9
  46. package/dist/ts/ts/Contract/ArcRun.d.ts +6 -0
  47. package/dist/ts/ts/Contract/ArcRun.d.ts.map +1 -1
  48. package/dist/ts/ts/Contract/ArcRun.js +131 -4
  49. package/dist/ts/ts/Contract/ArcWorkflow.d.ts +3 -0
  50. package/dist/ts/ts/Contract/ArcWorkflow.d.ts.map +1 -1
  51. package/dist/ts/ts/Contract/ArcWorkflow.js +70 -4
  52. package/dist/ts/ts/ContractIO/ContractIO.d.ts.map +1 -1
  53. package/dist/ts/ts/ContractIO/ContractIO.js +3 -1
  54. package/dist/ts/ts/Conversion/Assay.d.ts +13 -0
  55. package/dist/ts/ts/Conversion/Assay.d.ts.map +1 -0
  56. package/dist/ts/ts/Conversion/Assay.js +69 -0
  57. package/dist/ts/ts/Conversion/Basic.d.ts +105 -0
  58. package/dist/ts/ts/Conversion/Basic.d.ts.map +1 -0
  59. package/dist/ts/ts/Conversion/Basic.js +452 -0
  60. package/dist/ts/ts/Conversion/ColumnIndex.d.ts +10 -0
  61. package/dist/ts/ts/Conversion/ColumnIndex.d.ts.map +1 -0
  62. package/dist/ts/ts/Conversion/ColumnIndex.js +52 -0
  63. package/dist/ts/ts/Conversion/Datamap.d.ts +11 -0
  64. package/dist/ts/ts/Conversion/Datamap.d.ts.map +1 -0
  65. package/dist/ts/ts/Conversion/Datamap.js +21 -0
  66. package/dist/ts/ts/Conversion/DateTime.d.ts +4 -0
  67. package/dist/ts/ts/Conversion/DateTime.d.ts.map +1 -0
  68. package/dist/ts/ts/Conversion/DateTime.js +23 -0
  69. package/dist/ts/ts/Conversion/Investigation.d.ts +12 -0
  70. package/dist/ts/ts/Conversion/Investigation.d.ts.map +1 -0
  71. package/dist/ts/ts/Conversion/Investigation.js +59 -0
  72. package/dist/ts/ts/Conversion/Person.d.ts +16 -0
  73. package/dist/ts/ts/Conversion/Person.d.ts.map +1 -0
  74. package/dist/ts/ts/Conversion/Person.js +100 -0
  75. package/dist/ts/ts/Conversion/Process.d.ts +84 -0
  76. package/dist/ts/ts/Conversion/Process.d.ts.map +1 -0
  77. package/dist/ts/ts/Conversion/Process.js +455 -0
  78. package/dist/ts/ts/Conversion/Run.d.ts +26 -0
  79. package/dist/ts/ts/Conversion/Run.d.ts.map +1 -0
  80. package/dist/ts/ts/Conversion/Run.js +190 -0
  81. package/dist/ts/ts/Conversion/ScholarlyArticle.d.ts +16 -0
  82. package/dist/ts/ts/Conversion/ScholarlyArticle.d.ts.map +1 -0
  83. package/dist/ts/ts/Conversion/ScholarlyArticle.js +116 -0
  84. package/dist/ts/ts/Conversion/Study.d.ts +12 -0
  85. package/dist/ts/ts/Conversion/Study.d.ts.map +1 -0
  86. package/dist/ts/ts/Conversion/Study.js +51 -0
  87. package/dist/ts/ts/Conversion/Table.d.ts +45 -0
  88. package/dist/ts/ts/Conversion/Table.d.ts.map +1 -0
  89. package/dist/ts/ts/Conversion/Table.js +203 -0
  90. package/dist/ts/ts/Conversion/Workflow.d.ts +45 -0
  91. package/dist/ts/ts/Conversion/Workflow.d.ts.map +1 -0
  92. package/dist/ts/ts/Conversion/Workflow.js +305 -0
  93. package/dist/ts/ts/Conversion.d.ts +23 -274
  94. package/dist/ts/ts/Conversion.d.ts.map +1 -1
  95. package/dist/ts/ts/Conversion.js +62 -1475
  96. package/dist/ts/ts/Core/ArcTypes.d.ts +48 -38
  97. package/dist/ts/ts/Core/ArcTypes.d.ts.map +1 -1
  98. package/dist/ts/ts/Core/ArcTypes.js +183 -103
  99. package/dist/ts/ts/Core/Helper/Identifier.d.ts +24 -0
  100. package/dist/ts/ts/Core/Helper/Identifier.d.ts.map +1 -1
  101. package/dist/ts/ts/Core/Helper/Identifier.js +34 -1
  102. package/dist/ts/ts/FileSystem/FileSystemTree.d.ts +2 -2
  103. package/dist/ts/ts/FileSystem/FileSystemTree.d.ts.map +1 -1
  104. package/dist/ts/ts/FileSystem/FileSystemTree.js +8 -15
  105. package/dist/ts/ts/Json/ROCrate/LDContext.d.ts.map +1 -1
  106. package/dist/ts/ts/Json/ROCrate/LDContext.js +21 -11
  107. package/dist/ts/ts/Json/Run.js +2 -2
  108. package/dist/ts/ts/Json/Workflow.d.ts.map +1 -1
  109. package/dist/ts/ts/Json/Workflow.js +8 -9
  110. package/dist/ts/ts/ROCrate/LDContext.d.ts.map +1 -1
  111. package/dist/ts/ts/ROCrate/LDContext.js +35 -31
  112. package/dist/ts/ts/ROCrate/LDObject.d.ts +2 -2
  113. package/dist/ts/ts/ROCrate/LDObject.js +2 -2
  114. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Comment.d.ts.map +1 -1
  115. package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.d.ts +61 -0
  116. package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.d.ts.map +1 -0
  117. package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.js +338 -0
  118. package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.d.ts +39 -0
  119. package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.d.ts.map +1 -0
  120. package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.js +219 -0
  121. package/dist/ts/ts/ROCrate/LDTypes/CreateAction.d.ts +43 -0
  122. package/dist/ts/ts/ROCrate/LDTypes/CreateAction.d.ts.map +1 -0
  123. package/dist/ts/ts/ROCrate/LDTypes/CreateAction.js +224 -0
  124. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/CreativeWork.d.ts.map +1 -1
  125. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Dataset.d.ts +32 -22
  126. package/dist/ts/ts/ROCrate/LDTypes/Dataset.d.ts.map +1 -0
  127. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Dataset.js +45 -0
  128. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/DefinedTerm.d.ts.map +1 -1
  129. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/File.d.ts +10 -4
  130. package/dist/ts/ts/ROCrate/LDTypes/File.d.ts.map +1 -0
  131. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/File.js +34 -1
  132. package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.d.ts +59 -0
  133. package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.d.ts.map +1 -0
  134. package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.js +344 -0
  135. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/LabProcess.d.ts +2 -0
  136. package/dist/ts/ts/ROCrate/LDTypes/LabProcess.d.ts.map +1 -0
  137. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/LabProcess.js +31 -5
  138. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/LabProtocol.d.ts +6 -2
  139. package/dist/ts/ts/ROCrate/LDTypes/LabProtocol.d.ts.map +1 -0
  140. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/LabProtocol.js +66 -15
  141. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Organization.d.ts.map +1 -1
  142. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Person.d.ts.map +1 -1
  143. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/PostalAddress.d.ts.map +1 -1
  144. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/PropertyValue.d.ts +35 -11
  145. package/dist/ts/ts/ROCrate/LDTypes/PropertyValue.d.ts.map +1 -0
  146. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/PropertyValue.js +191 -1
  147. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Sample.d.ts.map +1 -1
  148. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/ScholarlyArticle.d.ts.map +1 -1
  149. package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.d.ts +46 -0
  150. package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.d.ts.map +1 -0
  151. package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.js +247 -0
  152. package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.d.ts +12 -0
  153. package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.d.ts.map +1 -0
  154. package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.js +40 -0
  155. package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.d.ts +11 -0
  156. package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.d.ts.map +1 -0
  157. package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.js +46 -0
  158. package/dist/ts/ts/ROCrate/ROCrateContext.d.ts +2 -2
  159. package/dist/ts/ts/ROCrate/ROCrateContext.d.ts.map +1 -1
  160. package/dist/ts/ts/ROCrate/ROCrateContext.js +6 -6
  161. package/dist/ts/ts/ROCrateIO.js +6 -6
  162. package/dist/ts/ts/Spreadsheet/Metadata/Run.js +1 -1
  163. package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts.map +1 -1
  164. package/dist/ts/ts/Spreadsheet/Metadata/Workflow.js +4 -4
  165. package/dist/ts/ts/fable_modules/DynamicObj.7.1.0/DynObj.fs.js +109 -0
  166. package/package.json +1 -1
  167. package/dist/ts/ts/ROCrate/Generic/Dataset.d.ts.map +0 -1
  168. package/dist/ts/ts/ROCrate/Generic/File.d.ts.map +0 -1
  169. package/dist/ts/ts/ROCrate/Generic/LabProcess.d.ts.map +0 -1
  170. package/dist/ts/ts/ROCrate/Generic/LabProtocol.d.ts.map +0 -1
  171. package/dist/ts/ts/ROCrate/Generic/PropertyValue.d.ts.map +0 -1
  172. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Comment.d.ts +0 -0
  173. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Comment.js +0 -0
  174. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/CreativeWork.d.ts +0 -0
  175. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/CreativeWork.js +0 -0
  176. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/DefinedTerm.d.ts +0 -0
  177. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/DefinedTerm.js +0 -0
  178. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Organization.d.ts +0 -0
  179. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Organization.js +0 -0
  180. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Person.d.ts +0 -0
  181. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Person.js +0 -0
  182. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/PostalAddress.d.ts +0 -0
  183. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/PostalAddress.js +0 -0
  184. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Sample.d.ts +0 -0
  185. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Sample.js +0 -0
  186. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/ScholarlyArticle.d.ts +0 -0
  187. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/ScholarlyArticle.js +0 -0
  188. /package/dist/ts/ts/fable_modules/{DynamicObj.7.0.1 → DynamicObj.7.1.0}/DynamicObj.fs.js +0 -0
  189. /package/dist/ts/ts/fable_modules/{DynamicObj.7.0.1 → DynamicObj.7.1.0}/FableJS.fs.js +0 -0
  190. /package/dist/ts/ts/fable_modules/{DynamicObj.7.0.1 → DynamicObj.7.1.0}/HashCodes.fs.js +0 -0
  191. /package/dist/ts/ts/fable_modules/{DynamicObj.7.0.1 → DynamicObj.7.1.0}/PropertyHelper.fs.js +0 -0
  192. /package/dist/ts/ts/fable_modules/{DynamicObj.7.0.1 → DynamicObj.7.1.0}/ReflectionUtils.fs.js +0 -0
@@ -1282,7 +1282,7 @@ function ArcStudy_$ctor_64321D5B(identifier, title, description, submissionDate,
1282
1282
  return new ArcStudy(identifier, title, description, submissionDate, publicReleaseDate, publications, contacts, studyDesignDescriptors, tables, datamap, registeredAssayIdentifiers, comments);
1283
1283
  }
1284
1284
  class ArcWorkflow {
1285
- constructor(identifier, title, description, workflowType, uri, version, subWorkflowIdentifiers, parameters, components, datamap, contacts, comments) {
1285
+ constructor(identifier, title, description, workflowType, uri, version, subWorkflowIdentifiers, parameters, components, datamap, contacts, cwlDescription, comments) {
1286
1286
  let identifier_1;
1287
1287
  this["identifier@1151"] = (identifier_1 = identifier.trim(), checkValidCharacters(identifier_1), identifier_1);
1288
1288
  this.investigation = void 0;
@@ -1296,7 +1296,8 @@ class ArcWorkflow {
1296
1296
  this["components@1163"] = defaultArg(components, []);
1297
1297
  this.dataMap = datamap;
1298
1298
  this["contacts@1165"] = defaultArg(contacts, []);
1299
- this["comments@1166"] = defaultArg(comments, []);
1299
+ this["cwlDescription@1166"] = cwlDescription;
1300
+ this["comments@1167"] = defaultArg(comments, []);
1300
1301
  this.staticHash = 0;
1301
1302
  }
1302
1303
  get Identifier() {
@@ -1395,13 +1396,21 @@ class ArcWorkflow {
1395
1396
  const this$ = this;
1396
1397
  this$["contacts@1165"] = c;
1397
1398
  }
1399
+ get CWLDescription() {
1400
+ const this$ = this;
1401
+ return unwrap(this$["cwlDescription@1166"]);
1402
+ }
1403
+ set CWLDescription(c) {
1404
+ const this$ = this;
1405
+ this$["cwlDescription@1166"] = c;
1406
+ }
1398
1407
  get Comments() {
1399
1408
  const this$ = this;
1400
- return this$["comments@1166"];
1409
+ return this$["comments@1167"];
1401
1410
  }
1402
1411
  set Comments(c) {
1403
1412
  const this$ = this;
1404
- this$["comments@1166"] = c;
1413
+ this$["comments@1167"] = c;
1405
1414
  }
1406
1415
  get StaticHash() {
1407
1416
  const this$ = this;
@@ -1414,11 +1423,11 @@ class ArcWorkflow {
1414
1423
  static init(identifier) {
1415
1424
  return new ArcWorkflow(identifier);
1416
1425
  }
1417
- static create(identifier, title, description, workflowType, uri, version, subWorkflowIdentifiers, parameters, components, datamap, contacts, comments) {
1418
- return new ArcWorkflow(identifier, unwrap(title), unwrap(description), unwrap(workflowType), unwrap(uri), unwrap(version), unwrap(subWorkflowIdentifiers), unwrap(parameters), unwrap(components), unwrap(datamap), unwrap(contacts), unwrap(comments));
1426
+ static create(identifier, title, description, workflowType, uri, version, subWorkflowIdentifiers, parameters, components, datamap, contacts, cwlDescription, comments) {
1427
+ return new ArcWorkflow(identifier, unwrap(title), unwrap(description), unwrap(workflowType), unwrap(uri), unwrap(version), unwrap(subWorkflowIdentifiers), unwrap(parameters), unwrap(components), unwrap(datamap), unwrap(contacts), unwrap(cwlDescription), unwrap(comments));
1419
1428
  }
1420
- static make(identifier, title, description, workflowType, uri, version, subWorkflowIdentifiers, parameters, components, datamap, contacts, comments) {
1421
- return new ArcWorkflow(identifier, unwrap(title), unwrap(description), unwrap(workflowType), unwrap(uri), unwrap(version), subWorkflowIdentifiers, parameters, components, unwrap(datamap), contacts, comments);
1429
+ static make(identifier, title, description, workflowType, uri, version, subWorkflowIdentifiers, parameters, components, datamap, contacts, cwlDescription, comments) {
1430
+ return new ArcWorkflow(identifier, unwrap(title), unwrap(description), unwrap(workflowType), unwrap(uri), unwrap(version), subWorkflowIdentifiers, parameters, components, unwrap(datamap), contacts, unwrap(cwlDescription), comments);
1422
1431
  }
1423
1432
  static get FileName() {
1424
1433
  return "isa.run.xlsx";
@@ -1584,7 +1593,8 @@ class ArcWorkflow {
1584
1593
  const description = this$.Description;
1585
1594
  const uri = this$.URI;
1586
1595
  const version = this$.Version;
1587
- workflow = ArcWorkflow.make(identifier, title, description, nextWorkFlowType, uri, version, nextSubWorkflowIdentifiers, nextParameters, nextComponents, nextDataMap, nextContacts, nextComments);
1596
+ const cwlDescription = this$.CWLDescription;
1597
+ workflow = ArcWorkflow.make(identifier, title, description, nextWorkFlowType, uri, version, nextSubWorkflowIdentifiers, nextParameters, nextComponents, nextDataMap, nextContacts, cwlDescription, nextComments);
1588
1598
  if (copyInvestigationRef_1) {
1589
1599
  workflow.Investigation = this$.Investigation;
1590
1600
  }
@@ -1617,7 +1627,7 @@ class ArcWorkflow {
1617
1627
  } else {
1618
1628
  return false;
1619
1629
  }
1620
- }, true, toList(delay(() => map$1((i_4) => equals(item(i_4, a_3), item(i_4, b_3)), rangeDouble(0, 1, length(a_3) - 1)))))), (a_4 = this$.Comments, b_4 = other.Comments, length(a_4) === length(b_4) && fold((acc_4, e_4) => {
1630
+ }, true, toList(delay(() => map$1((i_4) => equals(item(i_4, a_3), item(i_4, b_3)), rangeDouble(0, 1, length(a_3) - 1)))))), equals(this$.CWLDescription, other.CWLDescription), (a_4 = this$.Comments, b_4 = other.Comments, length(a_4) === length(b_4) && fold((acc_4, e_4) => {
1621
1631
  if (acc_4) {
1622
1632
  return e_4;
1623
1633
  } else {
@@ -1652,7 +1662,7 @@ class ArcWorkflow {
1652
1662
  }
1653
1663
  GetHashCode() {
1654
1664
  const this$ = this;
1655
- return boxHashArray([this$.Identifier, boxHashOption(this$.Title), boxHashOption(this$.Description), boxHashOption(this$.WorkflowType), boxHashOption(this$.URI), boxHashOption(this$.Version), boxHashSeq(this$.SubWorkflowIdentifiers), boxHashSeq(this$.Parameters), boxHashSeq(this$.Components), boxHashOption(this$.DataMap), boxHashSeq(this$.Contacts), boxHashSeq(this$.Comments)]) | 0;
1665
+ return boxHashArray([this$.Identifier, boxHashOption(this$.Title), boxHashOption(this$.Description), boxHashOption(this$.WorkflowType), boxHashOption(this$.URI), boxHashOption(this$.Version), boxHashSeq(this$.SubWorkflowIdentifiers), boxHashSeq(this$.Parameters), boxHashSeq(this$.Components), boxHashOption(this$.DataMap), boxHashSeq(this$.Contacts), boxHashOption(this$.CWLDescription), boxHashSeq(this$.Comments)]) | 0;
1656
1666
  }
1657
1667
  GetLightHashCode() {
1658
1668
  const this$ = this;
@@ -1662,36 +1672,39 @@ class ArcWorkflow {
1662
1672
  function ArcWorkflow_$reflection() {
1663
1673
  return class_type("ARCtrl.ArcWorkflow", void 0, ArcWorkflow);
1664
1674
  }
1665
- function ArcWorkflow_$ctor_Z3BB02240(identifier, title, description, workflowType, uri, version, subWorkflowIdentifiers, parameters, components, datamap, contacts, comments) {
1666
- return new ArcWorkflow(identifier, title, description, workflowType, uri, version, subWorkflowIdentifiers, parameters, components, datamap, contacts, comments);
1675
+ function ArcWorkflow_$ctor_Z23038DB5(identifier, title, description, workflowType, uri, version, subWorkflowIdentifiers, parameters, components, datamap, contacts, cwlDescription, comments) {
1676
+ return new ArcWorkflow(identifier, title, description, workflowType, uri, version, subWorkflowIdentifiers, parameters, components, datamap, contacts, cwlDescription, comments);
1667
1677
  }
1668
1678
  class ArcRun extends ArcTables {
1669
- constructor(identifier, title, description, measurementType, technologyType, technologyPlatform, workflowIdentifiers, tables, datamap, performers, comments) {
1679
+ constructor(identifier, title, description, measurementType, technologyType, technologyPlatform, workflowIdentifiers, tables, datamap, performers, cwlDescription, cwlInput, comments) {
1670
1680
  super(defaultArg(tables, []));
1671
1681
  let identifier_1;
1672
1682
  const performers_1 = defaultArg(performers, []);
1673
1683
  const comments_1 = defaultArg(comments, []);
1674
1684
  const workflowIdentifiers_1 = defaultArg(workflowIdentifiers, []);
1675
- this["identifier@1447"] = (identifier_1 = identifier.trim(), checkValidCharacters(identifier_1), identifier_1);
1676
- this["title@1451"] = title;
1677
- this["description@1452"] = description;
1685
+ const cwlInput_1 = defaultArg(cwlInput, []);
1686
+ this["identifier@1453"] = (identifier_1 = identifier.trim(), checkValidCharacters(identifier_1), identifier_1);
1687
+ this["title@1457"] = title;
1688
+ this["description@1458"] = description;
1678
1689
  this.investigation = void 0;
1679
- this["measurementType@1454"] = measurementType;
1680
- this["technologyType@1455"] = technologyType;
1681
- this["technologyPlatform@1456"] = technologyPlatform;
1682
- this["workflowIdentifiers@1457-1"] = workflowIdentifiers_1;
1690
+ this["measurementType@1460"] = measurementType;
1691
+ this["technologyType@1461"] = technologyType;
1692
+ this["technologyPlatform@1462"] = technologyPlatform;
1693
+ this["workflowIdentifiers@1463-1"] = workflowIdentifiers_1;
1683
1694
  this.dataMap = datamap;
1684
- this["performers@1459-1"] = performers_1;
1685
- this["comments@1460-1"] = comments_1;
1695
+ this["performers@1465-1"] = performers_1;
1696
+ this["cwlDescription@1466"] = cwlDescription;
1697
+ this["cwlInput@1467-1"] = cwlInput_1;
1698
+ this["comments@1468-1"] = comments_1;
1686
1699
  this.staticHash = 0;
1687
1700
  }
1688
1701
  get Identifier() {
1689
1702
  const this$ = this;
1690
- return this$["identifier@1447"];
1703
+ return this$["identifier@1453"];
1691
1704
  }
1692
1705
  set Identifier(i) {
1693
1706
  const this$ = this;
1694
- this$["identifier@1447"] = i;
1707
+ this$["identifier@1453"] = i;
1695
1708
  }
1696
1709
  get Investigation() {
1697
1710
  const this$ = this;
@@ -1703,51 +1716,51 @@ class ArcRun extends ArcTables {
1703
1716
  }
1704
1717
  get Title() {
1705
1718
  const this$ = this;
1706
- return unwrap(this$["title@1451"]);
1719
+ return unwrap(this$["title@1457"]);
1707
1720
  }
1708
1721
  set Title(t) {
1709
1722
  const this$ = this;
1710
- this$["title@1451"] = t;
1723
+ this$["title@1457"] = t;
1711
1724
  }
1712
1725
  get Description() {
1713
1726
  const this$ = this;
1714
- return unwrap(this$["description@1452"]);
1727
+ return unwrap(this$["description@1458"]);
1715
1728
  }
1716
1729
  set Description(d) {
1717
1730
  const this$ = this;
1718
- this$["description@1452"] = d;
1731
+ this$["description@1458"] = d;
1719
1732
  }
1720
1733
  get MeasurementType() {
1721
1734
  const this$ = this;
1722
- return unwrap(this$["measurementType@1454"]);
1735
+ return unwrap(this$["measurementType@1460"]);
1723
1736
  }
1724
1737
  set MeasurementType(n) {
1725
1738
  const this$ = this;
1726
- this$["measurementType@1454"] = n;
1739
+ this$["measurementType@1460"] = n;
1727
1740
  }
1728
1741
  get TechnologyType() {
1729
1742
  const this$ = this;
1730
- return unwrap(this$["technologyType@1455"]);
1743
+ return unwrap(this$["technologyType@1461"]);
1731
1744
  }
1732
1745
  set TechnologyType(n) {
1733
1746
  const this$ = this;
1734
- this$["technologyType@1455"] = n;
1747
+ this$["technologyType@1461"] = n;
1735
1748
  }
1736
1749
  get TechnologyPlatform() {
1737
1750
  const this$ = this;
1738
- return unwrap(this$["technologyPlatform@1456"]);
1751
+ return unwrap(this$["technologyPlatform@1462"]);
1739
1752
  }
1740
1753
  set TechnologyPlatform(n) {
1741
1754
  const this$ = this;
1742
- this$["technologyPlatform@1456"] = n;
1755
+ this$["technologyPlatform@1462"] = n;
1743
1756
  }
1744
1757
  get WorkflowIdentifiers() {
1745
1758
  const this$ = this;
1746
- return this$["workflowIdentifiers@1457-1"];
1759
+ return this$["workflowIdentifiers@1463-1"];
1747
1760
  }
1748
1761
  set WorkflowIdentifiers(w) {
1749
1762
  const this$ = this;
1750
- this$["workflowIdentifiers@1457-1"] = w;
1763
+ this$["workflowIdentifiers@1463-1"] = w;
1751
1764
  }
1752
1765
  get DataMap() {
1753
1766
  const this$ = this;
@@ -1759,19 +1772,35 @@ class ArcRun extends ArcTables {
1759
1772
  }
1760
1773
  get Performers() {
1761
1774
  const this$ = this;
1762
- return this$["performers@1459-1"];
1775
+ return this$["performers@1465-1"];
1763
1776
  }
1764
1777
  set Performers(n) {
1765
1778
  const this$ = this;
1766
- this$["performers@1459-1"] = n;
1779
+ this$["performers@1465-1"] = n;
1780
+ }
1781
+ get CWLDescription() {
1782
+ const this$ = this;
1783
+ return unwrap(this$["cwlDescription@1466"]);
1784
+ }
1785
+ set CWLDescription(n) {
1786
+ const this$ = this;
1787
+ this$["cwlDescription@1466"] = n;
1788
+ }
1789
+ get CWLInput() {
1790
+ const this$ = this;
1791
+ return this$["cwlInput@1467-1"];
1792
+ }
1793
+ set CWLInput(n) {
1794
+ const this$ = this;
1795
+ this$["cwlInput@1467-1"] = n;
1767
1796
  }
1768
1797
  get Comments() {
1769
1798
  const this$ = this;
1770
- return this$["comments@1460-1"];
1799
+ return this$["comments@1468-1"];
1771
1800
  }
1772
1801
  set Comments(n) {
1773
1802
  const this$ = this;
1774
- this$["comments@1460-1"] = n;
1803
+ this$["comments@1468-1"] = n;
1775
1804
  }
1776
1805
  get StaticHash() {
1777
1806
  const this$ = this;
@@ -1784,11 +1813,11 @@ class ArcRun extends ArcTables {
1784
1813
  static init(identifier) {
1785
1814
  return new ArcRun(identifier);
1786
1815
  }
1787
- static create(identifier, title, description, measurementType, technologyType, technologyPlatform, workflowIdentifiers, tables, datamap, performers, comments) {
1788
- return new ArcRun(identifier, unwrap(title), unwrap(description), unwrap(measurementType), unwrap(technologyType), unwrap(technologyPlatform), unwrap(workflowIdentifiers), unwrap(tables), unwrap(datamap), unwrap(performers), unwrap(comments));
1816
+ static create(identifier, title, description, measurementType, technologyType, technologyPlatform, workflowIdentifiers, tables, datamap, performers, cwlDescription, cwlInput, comments) {
1817
+ return new ArcRun(identifier, unwrap(title), unwrap(description), unwrap(measurementType), unwrap(technologyType), unwrap(technologyPlatform), unwrap(workflowIdentifiers), unwrap(tables), unwrap(datamap), unwrap(performers), unwrap(cwlDescription), unwrap(cwlInput), unwrap(comments));
1789
1818
  }
1790
- static make(identifier, title, description, measurementType, technologyType, technologyPlatform, workflowIdentifiers, tables, datamap, performers, comments) {
1791
- return new ArcRun(identifier, unwrap(title), unwrap(description), unwrap(measurementType), unwrap(technologyType), unwrap(technologyPlatform), workflowIdentifiers, tables, unwrap(datamap), performers, comments);
1819
+ static make(identifier, title, description, measurementType, technologyType, technologyPlatform, workflowIdentifiers, tables, datamap, performers, cwlDescription, cwlInput, comments) {
1820
+ return new ArcRun(identifier, unwrap(title), unwrap(description), unwrap(measurementType), unwrap(technologyType), unwrap(technologyPlatform), workflowIdentifiers, tables, unwrap(datamap), performers, unwrap(cwlDescription), cwlInput, comments);
1792
1821
  }
1793
1822
  static get FileName() {
1794
1823
  return "isa.run.xlsx";
@@ -2059,7 +2088,9 @@ class ArcRun extends ArcTables {
2059
2088
  const measurementType = this$.MeasurementType;
2060
2089
  const technologyType = this$.TechnologyType;
2061
2090
  const technologyPlatform = this$.TechnologyPlatform;
2062
- return ArcRun.make(identifier, title, description, measurementType, technologyType, technologyPlatform, nextWorkflowIdentifiers, nextTables, nextDataMap, nextPerformers, nextComments);
2091
+ const cwlDescription = this$.CWLDescription;
2092
+ const cwlInput = this$.CWLInput;
2093
+ return ArcRun.make(identifier, title, description, measurementType, technologyType, technologyPlatform, nextWorkflowIdentifiers, nextTables, nextDataMap, nextPerformers, cwlDescription, cwlInput, nextComments);
2063
2094
  }
2064
2095
  UpdateBy(run, onlyReplaceExisting, appendSequences) {
2065
2096
  const this$ = this;
@@ -2204,10 +2235,13 @@ class ArcRun extends ArcTables {
2204
2235
  }
2205
2236
  this$.Performers = s_2;
2206
2237
  }
2207
- if (run.Comments.length !== 0 ? true : updateAlways) {
2238
+ if (run.CWLDescription != null ? true : updateAlways) {
2239
+ this$.CWLDescription = run.CWLDescription;
2240
+ }
2241
+ if (run.CWLInput.length !== 0 ? true : updateAlways) {
2208
2242
  let s_3;
2209
- const origin_3 = this$.Comments;
2210
- const next_3 = run.Comments;
2243
+ const origin_3 = this$.CWLInput;
2244
+ const next_3 = run.CWLInput;
2211
2245
  if (!appendSequences_1) {
2212
2246
  s_3 = ResizeArray_map((x_9) => x_9, next_3);
2213
2247
  } else {
@@ -2242,7 +2276,47 @@ class ArcRun extends ArcTables {
2242
2276
  }
2243
2277
  s_3 = combined_3;
2244
2278
  }
2245
- this$.Comments = s_3;
2279
+ this$.CWLInput = s_3;
2280
+ }
2281
+ if (run.Comments.length !== 0 ? true : updateAlways) {
2282
+ let s_4;
2283
+ const origin_4 = this$.Comments;
2284
+ const next_4 = run.Comments;
2285
+ if (!appendSequences_1) {
2286
+ s_4 = ResizeArray_map((x_12) => x_12, next_4);
2287
+ } else {
2288
+ const combined_4 = [];
2289
+ let enumerator_5 = getEnumerator(origin_4);
2290
+ try {
2291
+ while (enumerator_5["System.Collections.IEnumerator.MoveNext"]()) {
2292
+ const e_5 = enumerator_5["System.Collections.Generic.IEnumerator`1.get_Current"]();
2293
+ if (!contains$1(e_5, combined_4, {
2294
+ Equals: equals,
2295
+ GetHashCode: safeHash
2296
+ })) {
2297
+ void combined_4.push(e_5);
2298
+ }
2299
+ }
2300
+ } finally {
2301
+ disposeSafe(enumerator_5);
2302
+ }
2303
+ let enumerator_1_4 = getEnumerator(next_4);
2304
+ try {
2305
+ while (enumerator_1_4["System.Collections.IEnumerator.MoveNext"]()) {
2306
+ const e_1_4 = enumerator_1_4["System.Collections.Generic.IEnumerator`1.get_Current"]();
2307
+ if (!contains$1(e_1_4, combined_4, {
2308
+ Equals: equals,
2309
+ GetHashCode: safeHash
2310
+ })) {
2311
+ void combined_4.push(e_1_4);
2312
+ }
2313
+ }
2314
+ } finally {
2315
+ disposeSafe(enumerator_1_4);
2316
+ }
2317
+ s_4 = combined_4;
2318
+ }
2319
+ this$.Comments = s_4;
2246
2320
  }
2247
2321
  }
2248
2322
  toString() {
@@ -2269,7 +2343,7 @@ class ArcRun extends ArcTables {
2269
2343
  this$.Investigation = void 0;
2270
2344
  }
2271
2345
  StructurallyEquals(other) {
2272
- let a, b, a_1, b_1, a_2, b_2, a_3, b_3;
2346
+ let a, b, a_1, b_1, a_2, b_2, a_3, b_3, a_4, b_4;
2273
2347
  const this$ = this;
2274
2348
  return forAll((x) => x === true, [this$.Identifier === other.Identifier, equals(this$.Title, other.Title), equals(this$.Description, other.Description), equals(this$.MeasurementType, other.MeasurementType), equals(this$.TechnologyType, other.TechnologyType), equals(this$.TechnologyPlatform, other.TechnologyPlatform), (a = this$.WorkflowIdentifiers, b = other.WorkflowIdentifiers, length(a) === length(b) && fold((acc, e) => {
2275
2349
  if (acc) {
@@ -2289,13 +2363,19 @@ class ArcRun extends ArcTables {
2289
2363
  } else {
2290
2364
  return false;
2291
2365
  }
2292
- }, true, toList(delay(() => map$1((i_3) => equals(item(i_3, a_2), item(i_3, b_2)), rangeDouble(0, 1, length(a_2) - 1)))))), (a_3 = this$.Comments, b_3 = other.Comments, length(a_3) === length(b_3) && fold((acc_3, e_3) => {
2366
+ }, true, toList(delay(() => map$1((i_3) => equals(item(i_3, a_2), item(i_3, b_2)), rangeDouble(0, 1, length(a_2) - 1)))))), equals(this$.CWLDescription, other.CWLDescription), (a_3 = this$.CWLInput, b_3 = other.CWLInput, length(a_3) === length(b_3) && fold((acc_3, e_3) => {
2293
2367
  if (acc_3) {
2294
2368
  return e_3;
2295
2369
  } else {
2296
2370
  return false;
2297
2371
  }
2298
- }, true, toList(delay(() => map$1((i_4) => equals(item(i_4, a_3), item(i_4, b_3)), rangeDouble(0, 1, length(a_3) - 1))))))]);
2372
+ }, true, toList(delay(() => map$1((i_4) => equals(item(i_4, a_3), item(i_4, b_3)), rangeDouble(0, 1, length(a_3) - 1)))))), (a_4 = this$.Comments, b_4 = other.Comments, length(a_4) === length(b_4) && fold((acc_4, e_4) => {
2373
+ if (acc_4) {
2374
+ return e_4;
2375
+ } else {
2376
+ return false;
2377
+ }
2378
+ }, true, toList(delay(() => map$1((i_5) => equals(item(i_5, a_4), item(i_5, b_4)), rangeDouble(0, 1, length(a_4) - 1))))))]);
2299
2379
  }
2300
2380
  ReferenceEquals(other) {
2301
2381
  const this$ = this;
@@ -2312,14 +2392,14 @@ class ArcRun extends ArcTables {
2312
2392
  }
2313
2393
  GetHashCode() {
2314
2394
  const this$ = this;
2315
- return boxHashArray([this$.Identifier, boxHashOption(this$.Title), boxHashOption(this$.Description), boxHashOption(this$.MeasurementType), boxHashOption(this$.TechnologyType), boxHashOption(this$.TechnologyPlatform), boxHashOption(this$.DataMap), boxHashSeq(this$.WorkflowIdentifiers), boxHashSeq(this$.Tables), boxHashSeq(this$.Performers), boxHashSeq(this$.Comments)]) | 0;
2395
+ return boxHashArray([this$.Identifier, boxHashOption(this$.Title), boxHashOption(this$.Description), boxHashOption(this$.MeasurementType), boxHashOption(this$.TechnologyType), boxHashOption(this$.TechnologyPlatform), boxHashOption(this$.DataMap), boxHashSeq(this$.WorkflowIdentifiers), boxHashSeq(this$.Tables), boxHashSeq(this$.Performers), boxHashOption(this$.CWLDescription), boxHashSeq(this$.CWLInput), boxHashSeq(this$.Comments)]) | 0;
2316
2396
  }
2317
2397
  }
2318
2398
  function ArcRun_$reflection() {
2319
2399
  return class_type("ARCtrl.ArcRun", void 0, ArcRun, ArcTables_$reflection());
2320
2400
  }
2321
- function ArcRun_$ctor_Z38E7054B(identifier, title, description, measurementType, technologyType, technologyPlatform, workflowIdentifiers, tables, datamap, performers, comments) {
2322
- return new ArcRun(identifier, title, description, measurementType, technologyType, technologyPlatform, workflowIdentifiers, tables, datamap, performers, comments);
2401
+ function ArcRun_$ctor_Z8C211D(identifier, title, description, measurementType, technologyType, technologyPlatform, workflowIdentifiers, tables, datamap, performers, cwlDescription, cwlInput, comments) {
2402
+ return new ArcRun(identifier, title, description, measurementType, technologyType, technologyPlatform, workflowIdentifiers, tables, datamap, performers, cwlDescription, cwlInput, comments);
2323
2403
  }
2324
2404
  class ArcInvestigation {
2325
2405
  constructor(identifier, title, description, submissionDate, publicReleaseDate, ontologySourceReferences, publications, contacts, assays, studies, workflows, runs, registeredStudyIdentifiers, comments, remarks) {
@@ -2379,143 +2459,143 @@ class ArcInvestigation {
2379
2459
  const registeredStudyIdentifiers_1 = defaultArg(registeredStudyIdentifiers, []);
2380
2460
  const comments_1 = defaultArg(comments, []);
2381
2461
  const remarks_1 = defaultArg(remarks, []);
2382
- this["identifier@1928"] = identifier;
2383
- this["title@1929"] = title;
2384
- this["description@1930"] = description;
2385
- this["submissionDate@1931"] = submissionDate;
2386
- this["publicReleaseDate@1932"] = publicReleaseDate;
2387
- this["ontologySourceReferences@1933-1"] = ontologySourceReferences_1;
2388
- this["publications@1934-1"] = publications_1;
2389
- this["contacts@1935-1"] = contacts_1;
2390
- this["assays@1936-1"] = assays_1;
2391
- this["studies@1937-1"] = studies_1;
2392
- this["workflows@1938-1"] = workflows_1;
2393
- this["runs@1939-1"] = runs_1;
2394
- this["registeredStudyIdentifiers@1940-1"] = registeredStudyIdentifiers_1;
2395
- this["comments@1941-1"] = comments_1;
2396
- this["remarks@1942-1"] = remarks_1;
2462
+ this["identifier@1951"] = identifier;
2463
+ this["title@1952"] = title;
2464
+ this["description@1953"] = description;
2465
+ this["submissionDate@1954"] = submissionDate;
2466
+ this["publicReleaseDate@1955"] = publicReleaseDate;
2467
+ this["ontologySourceReferences@1956-1"] = ontologySourceReferences_1;
2468
+ this["publications@1957-1"] = publications_1;
2469
+ this["contacts@1958-1"] = contacts_1;
2470
+ this["assays@1959-1"] = assays_1;
2471
+ this["studies@1960-1"] = studies_1;
2472
+ this["workflows@1961-1"] = workflows_1;
2473
+ this["runs@1962-1"] = runs_1;
2474
+ this["registeredStudyIdentifiers@1963-1"] = registeredStudyIdentifiers_1;
2475
+ this["comments@1964-1"] = comments_1;
2476
+ this["remarks@1965-1"] = remarks_1;
2397
2477
  this.staticHash = 0;
2398
- this["init@1899"] = 1;
2478
+ this["init@1922"] = 1;
2399
2479
  }
2400
2480
  get Identifier() {
2401
2481
  const this$ = this;
2402
- return this$["identifier@1928"];
2482
+ return this$["identifier@1951"];
2403
2483
  }
2404
2484
  set Identifier(i) {
2405
2485
  const this$ = this;
2406
- this$["identifier@1928"] = i;
2486
+ this$["identifier@1951"] = i;
2407
2487
  }
2408
2488
  get Title() {
2409
2489
  const this$ = this;
2410
- return unwrap(this$["title@1929"]);
2490
+ return unwrap(this$["title@1952"]);
2411
2491
  }
2412
2492
  set Title(n) {
2413
2493
  const this$ = this;
2414
- this$["title@1929"] = n;
2494
+ this$["title@1952"] = n;
2415
2495
  }
2416
2496
  get Description() {
2417
2497
  const this$ = this;
2418
- return unwrap(this$["description@1930"]);
2498
+ return unwrap(this$["description@1953"]);
2419
2499
  }
2420
2500
  set Description(n) {
2421
2501
  const this$ = this;
2422
- this$["description@1930"] = n;
2502
+ this$["description@1953"] = n;
2423
2503
  }
2424
2504
  get SubmissionDate() {
2425
2505
  const this$ = this;
2426
- return unwrap(this$["submissionDate@1931"]);
2506
+ return unwrap(this$["submissionDate@1954"]);
2427
2507
  }
2428
2508
  set SubmissionDate(n) {
2429
2509
  const this$ = this;
2430
- this$["submissionDate@1931"] = n;
2510
+ this$["submissionDate@1954"] = n;
2431
2511
  }
2432
2512
  get PublicReleaseDate() {
2433
2513
  const this$ = this;
2434
- return unwrap(this$["publicReleaseDate@1932"]);
2514
+ return unwrap(this$["publicReleaseDate@1955"]);
2435
2515
  }
2436
2516
  set PublicReleaseDate(n) {
2437
2517
  const this$ = this;
2438
- this$["publicReleaseDate@1932"] = n;
2518
+ this$["publicReleaseDate@1955"] = n;
2439
2519
  }
2440
2520
  get OntologySourceReferences() {
2441
2521
  const this$ = this;
2442
- return this$["ontologySourceReferences@1933-1"];
2522
+ return this$["ontologySourceReferences@1956-1"];
2443
2523
  }
2444
2524
  set OntologySourceReferences(n) {
2445
2525
  const this$ = this;
2446
- this$["ontologySourceReferences@1933-1"] = n;
2526
+ this$["ontologySourceReferences@1956-1"] = n;
2447
2527
  }
2448
2528
  get Publications() {
2449
2529
  const this$ = this;
2450
- return this$["publications@1934-1"];
2530
+ return this$["publications@1957-1"];
2451
2531
  }
2452
2532
  set Publications(n) {
2453
2533
  const this$ = this;
2454
- this$["publications@1934-1"] = n;
2534
+ this$["publications@1957-1"] = n;
2455
2535
  }
2456
2536
  get Contacts() {
2457
2537
  const this$ = this;
2458
- return this$["contacts@1935-1"];
2538
+ return this$["contacts@1958-1"];
2459
2539
  }
2460
2540
  set Contacts(n) {
2461
2541
  const this$ = this;
2462
- this$["contacts@1935-1"] = n;
2542
+ this$["contacts@1958-1"] = n;
2463
2543
  }
2464
2544
  get Assays() {
2465
2545
  const this$ = this;
2466
- return this$["assays@1936-1"];
2546
+ return this$["assays@1959-1"];
2467
2547
  }
2468
2548
  set Assays(n) {
2469
2549
  const this$ = this;
2470
- this$["assays@1936-1"] = n;
2550
+ this$["assays@1959-1"] = n;
2471
2551
  }
2472
2552
  get Studies() {
2473
2553
  const this$ = this;
2474
- return this$["studies@1937-1"];
2554
+ return this$["studies@1960-1"];
2475
2555
  }
2476
2556
  set Studies(n) {
2477
2557
  const this$ = this;
2478
- this$["studies@1937-1"] = n;
2558
+ this$["studies@1960-1"] = n;
2479
2559
  }
2480
2560
  get Workflows() {
2481
2561
  const this$ = this;
2482
- return this$["workflows@1938-1"];
2562
+ return this$["workflows@1961-1"];
2483
2563
  }
2484
2564
  set Workflows(n) {
2485
2565
  const this$ = this;
2486
- this$["workflows@1938-1"] = n;
2566
+ this$["workflows@1961-1"] = n;
2487
2567
  }
2488
2568
  get Runs() {
2489
2569
  const this$ = this;
2490
- return this$["runs@1939-1"];
2570
+ return this$["runs@1962-1"];
2491
2571
  }
2492
2572
  set Runs(n) {
2493
2573
  const this$ = this;
2494
- this$["runs@1939-1"] = n;
2574
+ this$["runs@1962-1"] = n;
2495
2575
  }
2496
2576
  get RegisteredStudyIdentifiers() {
2497
2577
  const this$ = this;
2498
- return this$["registeredStudyIdentifiers@1940-1"];
2578
+ return this$["registeredStudyIdentifiers@1963-1"];
2499
2579
  }
2500
2580
  set RegisteredStudyIdentifiers(n) {
2501
2581
  const this$ = this;
2502
- this$["registeredStudyIdentifiers@1940-1"] = n;
2582
+ this$["registeredStudyIdentifiers@1963-1"] = n;
2503
2583
  }
2504
2584
  get Comments() {
2505
2585
  const this$ = this;
2506
- return this$["comments@1941-1"];
2586
+ return this$["comments@1964-1"];
2507
2587
  }
2508
2588
  set Comments(n) {
2509
2589
  const this$ = this;
2510
- this$["comments@1941-1"] = n;
2590
+ this$["comments@1964-1"] = n;
2511
2591
  }
2512
2592
  get Remarks() {
2513
2593
  const this$ = this;
2514
- return this$["remarks@1942-1"];
2594
+ return this$["remarks@1965-1"];
2515
2595
  }
2516
2596
  set Remarks(n) {
2517
2597
  const this$ = this;
2518
- this$["remarks@1942-1"] = n;
2598
+ this$["remarks@1965-1"] = n;
2519
2599
  }
2520
2600
  get StaticHash() {
2521
2601
  const this$ = this;
@@ -3705,4 +3785,4 @@ function ArcTypesAux_ErrorMsgs_unableToFindRunIdentifier(runIdentifier, investig
3705
3785
  return `Error. Unable to find run with identifier '${runIdentifier}' in investigation ${investigationIdentifier}.`;
3706
3786
  }
3707
3787
 
3708
- export { ArcAssay, ArcAssay_$ctor_11E1F34, ArcAssay_$reflection, ArcInvestigation, ArcInvestigation_$ctor_Z67823F6C, ArcInvestigation_$reflection, ArcRun, ArcRun_$ctor_Z38E7054B, ArcRun_$reflection, ArcStudy, ArcStudy_$ctor_64321D5B, ArcStudy_$reflection, ArcTypesAux_ErrorMsgs_unableToFindAssayIdentifier, ArcTypesAux_ErrorMsgs_unableToFindRunIdentifier, ArcTypesAux_ErrorMsgs_unableToFindStudyIdentifier, ArcTypesAux_ErrorMsgs_unableToFindWorkflowIdentifier, ArcWorkflow, ArcWorkflow_$ctor_Z3BB02240, ArcWorkflow_$reflection };
3788
+ export { ArcAssay, ArcAssay_$ctor_11E1F34, ArcAssay_$reflection, ArcInvestigation, ArcInvestigation_$ctor_Z67823F6C, ArcInvestigation_$reflection, ArcRun, ArcRun_$ctor_Z8C211D, ArcRun_$reflection, ArcStudy, ArcStudy_$ctor_64321D5B, ArcStudy_$reflection, ArcTypesAux_ErrorMsgs_unableToFindAssayIdentifier, ArcTypesAux_ErrorMsgs_unableToFindRunIdentifier, ArcTypesAux_ErrorMsgs_unableToFindStudyIdentifier, ArcTypesAux_ErrorMsgs_unableToFindWorkflowIdentifier, ArcWorkflow, ArcWorkflow_$ctor_Z23038DB5, ArcWorkflow_$reflection };
@@ -80,6 +80,14 @@ export declare function Workflow_fileNameFromIdentifier(identifier: string): str
80
80
  * On writing a xlsx file we unify our output to a relative path to ARC root. So: `workflows/workflowIdentifier/isa.workflow.xlsx`.
81
81
  */
82
82
  export declare function Workflow_tryFileNameFromIdentifier(identifier: string): Option<string>;
83
+ /**
84
+ * On writing a cwl file we unify our output to a relative path to ARC root. So: `workflows/workflowIdentifier/workflow.cwl`.
85
+ */
86
+ export declare function Workflow_cwlFileNameFromIdentifier(identifier: string): string;
87
+ /**
88
+ * On writing a cwl file we unify our output to a relative path to ARC root. So: `workflows/workflowIdentifier/workflow.cwl`.
89
+ */
90
+ export declare function Workflow_tryCwlFileNameFromIdentifier(identifier: string): Option<string>;
83
91
  /**
84
92
  * On writing a xlsx file we unify our output to a relative path to ARC root. So: `workflows/workflowIdentifier/isa.datamap.xlsx`.
85
93
  */
@@ -108,6 +116,22 @@ export declare function Run_fileNameFromIdentifier(identifier: string): string;
108
116
  * On writing a xlsx file we unify our output to a relative path to ARC root. So: `runs/runIdentifier/isa.run.xlsx`.
109
117
  */
110
118
  export declare function Run_tryFileNameFromIdentifier(identifier: string): Option<string>;
119
+ /**
120
+ * On writing a cwl file we unify our output to a relative path to ARC root. So: `runs/runIdentifier/run.cwl`.
121
+ */
122
+ export declare function Run_cwlFileNameFromIdentifier(identifier: string): string;
123
+ /**
124
+ * On writing a cwl file we unify our output to a relative path to ARC root. So: `runs/runIdentifier/run.cwl`.
125
+ */
126
+ export declare function Run_tryCwlFileNameFromIdentifier(identifier: string): Option<string>;
127
+ /**
128
+ * On writing a yml file we unify our output to a relative path to ARC root. So: `runs/runIdentifier/run.yml`.
129
+ */
130
+ export declare function Run_ymlFileNameFromIdentifier(identifier: string): string;
131
+ /**
132
+ * On writing a yml file we unify our output to a relative path to ARC root. So: `runs/runIdentifier/run.yml`.
133
+ */
134
+ export declare function Run_tryYmlFileNameFromIdentifier(identifier: string): Option<string>;
111
135
  /**
112
136
  * On writing a xlsx file we unify our output to a relative path to ARC root. So: `runs/runIdentifier/isa.datamap.xlsx`.
113
137
  */
@@ -1 +1 @@
1
- {"version":3,"file":"Identifier.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Core/Helper/Identifier.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"Identifier.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Core/Helper/Identifier.ts"],"names":[],"mappings":"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"}