Skip to content

Commit 93e2d82

Browse files
committed
Fix markdown indentation
1 parent 54e37ed commit 93e2d82

File tree

4 files changed

+92
-88
lines changed

4 files changed

+92
-88
lines changed

nodes/seqera-dataset-create.html

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -32,37 +32,38 @@
3232
</div>
3333
</script>
3434

35+
<!-- prettier-ignore -->
3536
<script type="text/markdown" data-help-name="seqera-dataset-create">
36-
Creates a new dataset and uploads its file contents to Seqera Platform.
37+
Creates a new dataset and uploads its file contents to Seqera Platform.
3738

38-
### Inputs
39+
### Inputs
3940

40-
: datasetName (string) : Name of the dataset to create.
41-
: fileContents (string | buffer) : CSV/TSV string or buffer to upload. Defaults to `msg.payload`.
42-
: fileType (string) : File format / MIME type. Choose between 'csv' (default) or 'tsv'.
43-
: description (string) : Optional description for the dataset.
44-
: workspaceId (string) : Override the workspace ID from the config node.
41+
: datasetName (string) : Name of the dataset to create.
42+
: fileContents (string | buffer) : CSV/TSV string or buffer to upload. Defaults to `msg.payload`.
43+
: fileType (string) : File format / MIME type. Choose between 'csv' (default) or 'tsv'.
44+
: description (string) : Optional description for the dataset.
45+
: workspaceId (string) : Override the workspace ID from the config node.
4546

46-
### Outputs
47+
### Outputs
4748

48-
1. Standard output
49-
: payload (object) : The dataset creation response from the API.
50-
: datasetId (string) : The ID of the created dataset.
51-
: \_seqera_request (object) : Details of the dataset creation request (for debugging).
52-
: \_seqera_upload_request (object) : Details of the file-upload request (for debugging).
49+
1. Standard output
50+
: payload (object) : The dataset creation response from the API.
51+
: datasetId (string) : The ID of the created dataset.
52+
: \_seqera_request (object) : Details of the dataset creation request (for debugging).
53+
: \_seqera_upload_request (object) : Details of the file-upload request (for debugging).
5354

54-
### Details
55+
### Details
5556

56-
This node creates a dataset in Seqera Platform and uploads its contents in one step.
57-
Dataset file contents can be provided in `msg.payload` or via a configured property.
57+
This node creates a dataset in Seqera Platform and uploads its contents in one step.
58+
Dataset file contents can be provided in `msg.payload` or via a configured property.
5859

59-
The node requires specifying the file format as either CSV or TSV as this is required
60-
by Seqera Platform to validate the file contents.
60+
The node requires specifying the file format as either CSV or TSV as this is required
61+
by Seqera Platform to validate the file contents.
6162

62-
### References
63+
### References
6364

64-
- [Seqera Platform API docs](https://docs.seqera.io/platform/latest/api) - information about datasets
65-
- [CSV format](https://en.wikipedia.org/wiki/Comma-separated_values) - information about CSV format
65+
- [Seqera Platform API docs](https://docs.seqera.io/platform/latest/api) - information about datasets
66+
- [CSV format](https://en.wikipedia.org/wiki/Comma-separated_values) - information about CSV format
6667
</script>
6768

6869
<script type="text/javascript">

nodes/seqera-launch-monitor.html

Lines changed: 29 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -29,47 +29,48 @@
2929
</div>
3030
</script>
3131

32+
<!-- prettier-ignore -->
3233
<script type="text/markdown" data-help-name="seqera-launch-monitor">
33-
Launches a workflow and then periodically checks its status until completion.
34+
Launches a workflow and then periodically checks its status until completion.
3435

35-
### Inputs
36+
### Inputs
3637

37-
: launchpadName (string) : The human-readable name of a pipeline in the launchpad to use.
38-
: params (object) : JSON object containing parameters to merge with the launchpad's default parameters.
39-
: pollInterval (number) : How frequently to check workflow status, in seconds (default `5`).
40-
: workspaceId (string) : Override the workspace ID from the config node.
41-
: sourceWorkspaceId (string) : The source workspace ID (if a shared workflow and different to workspaceId).
42-
: body (object) : A full launch request body (alternative to using launchpadName).
38+
: launchpadName (string) : The human-readable name of a pipeline in the launchpad to use.
39+
: params (object) : JSON object containing parameters to merge with the launchpad's default parameters.
40+
: pollInterval (number) : How frequently to check workflow status, in seconds (default `5`).
41+
: workspaceId (string) : Override the workspace ID from the config node.
42+
: sourceWorkspaceId (string) : The source workspace ID (if a shared workflow and different to workspaceId).
43+
: body (object) : A full launch request body (alternative to using launchpadName).
4344

44-
### Outputs
45+
### Outputs
4546

46-
1. Status updates (active workflows)
47-
: payload (object) : The workflow details from the API, sent on every status poll while workflow is active.
48-
: workflowId (string) : The ID of the workflow.
47+
1. Status updates (active workflows)
48+
: payload (object) : The workflow details from the API, sent on every status poll while workflow is active.
49+
: workflowId (string) : The ID of the workflow.
4950

50-
2. Success
51-
: payload (object) : The workflow details from the API, sent once when workflow completes successfully.
52-
: workflowId (string) : The ID of the workflow.
51+
2. Success
52+
: payload (object) : The workflow details from the API, sent once when workflow completes successfully.
53+
: workflowId (string) : The ID of the workflow.
5354

54-
3. Error
55-
: payload (object) : The workflow details from the API, sent once when workflow fails or is cancelled.
56-
: workflowId (string) : The ID of the workflow.
57-
: \_seqera_request (object) : The request details sent to the API (when API error occurs).
58-
: \_seqera_error (object) : Error details (when API error occurs).
55+
3. Error
56+
: payload (object) : The workflow details from the API, sent once when workflow fails or is cancelled.
57+
: workflowId (string) : The ID of the workflow.
58+
: \_seqera_request (object) : The request details sent to the API (when API error occurs).
59+
: \_seqera_error (object) : Error details (when API error occurs).
5960

60-
### Details
61+
### Details
6162

62-
This node combines the functionality of the "Launch" and "Check Workflow" nodes:
63+
This node combines the functionality of the "Launch" and "Check Workflow" nodes:
6364

64-
1. First, it launches a workflow using the provided launchpad name or request body
65-
2. Then it automatically polls for status updates at the specified interval
66-
3. It sends status updates to the appropriate output based on workflow state
65+
1. First, it launches a workflow using the provided launchpad name or request body
66+
2. Then it automatically polls for status updates at the specified interval
67+
3. It sends status updates to the appropriate output based on workflow state
6768

68-
This is ideal for creating complete automation flows that take action when workflows complete.
69+
This is ideal for creating complete automation flows that take action when workflows complete.
6970

70-
### References
71+
### References
7172

72-
- [Seqera Platform API docs](https://docs.seqera.io/platform/latest/api) - information about launching and monitoring workflows
73+
- [Seqera Platform API docs](https://docs.seqera.io/platform/latest/api) - information about launching and monitoring workflows
7374
</script>
7475

7576
<script type="text/javascript">

nodes/seqera-launch.html

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -25,37 +25,38 @@
2525
</div>
2626
</script>
2727

28+
<!-- prettier-ignore -->
2829
<script type="text/markdown" data-help-name="seqera-launch">
29-
Launches a workflow using the Seqera Platform API.
30+
Launches a workflow using the Seqera Platform API.
3031

31-
### Inputs
32+
### Inputs
3233

33-
: launchpadName (string) : The human-readable name of a pipeline in the launchpad to use.
34-
: params (object) : JSON object containing parameters to merge with the launchpad's default parameters.
35-
: workspaceId (string) : Override the workspace ID from the config node.
36-
: sourceWorkspaceId (string) : The source workspace ID (if a shared workflow and different to workspaceId).
37-
: body (object) : A full launch request body (alternative to using launchpadName).
34+
: launchpadName (string) : The human-readable name of a pipeline in the launchpad to use.
35+
: params (object) : JSON object containing parameters to merge with the launchpad's default parameters.
36+
: workspaceId (string) : Override the workspace ID from the config node.
37+
: sourceWorkspaceId (string) : The source workspace ID (if a shared workflow and different to workspaceId).
38+
: body (object) : A full launch request body (alternative to using launchpadName).
3839

39-
### Outputs
40+
### Outputs
4041

41-
1. Standard output
42-
: payload (object) : The launch response from the API.
43-
: workflowId (string) : The ID of the launched workflow.
44-
: \_seqera_request (object) : The request details sent to the API (when error occurs).
45-
: \_seqera_error (object) : Error details (when error occurs).
42+
1. Standard output
43+
: payload (object) : The launch response from the API.
44+
: workflowId (string) : The ID of the launched workflow.
45+
: \_seqera_request (object) : The request details sent to the API (when error occurs).
46+
: \_seqera_error (object) : Error details (when error occurs).
4647

47-
### Details
48+
### Details
4849

49-
This node launches a workflow using either:
50+
This node launches a workflow using either:
5051

51-
1. A launchpad name - the node will automatically look up the launchpad configuration
52-
2. A full launch request body provided in `msg.body`
52+
1. A launchpad name - the node will automatically look up the launchpad configuration
53+
2. A full launch request body provided in `msg.body`
5354

54-
Workflow parameters can be provided as a JSON object and will be merged with the default parameters from the launchpad.
55+
Workflow parameters can be provided as a JSON object and will be merged with the default parameters from the launchpad.
5556

56-
### References
57+
### References
5758

58-
- [Seqera Platform API docs](https://docs.seqera.io/platform/latest/api) - information about launching workflows
59+
- [Seqera Platform API docs](https://docs.seqera.io/platform/latest/api) - information about launching workflows
5960
</script>
6061

6162
<script type="text/javascript">

nodes/seqera-workflow.html

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -17,36 +17,37 @@
1717
</div>
1818
</script>
1919

20+
<!-- prettier-ignore -->
2021
<script type="text/markdown" data-help-name="seqera-workflow">
21-
Queries the status of a workflow in Seqera Platform.
22+
Queries the status of a workflow in Seqera Platform.
2223

23-
### Inputs
24+
### Inputs
2425

25-
: workflowId (string) : The ID of the workflow to query.
26-
: workspaceId (string) : Override the workspace ID from the config node.
26+
: workflowId (string) : The ID of the workflow to query.
27+
: workspaceId (string) : Override the workspace ID from the config node.
2728

28-
### Outputs
29+
### Outputs
2930

30-
1. Active workflows
31-
: payload (object) : The workflow details from the API when workflow is active (submitted, running, or pending).
32-
: workflowId (string) : The ID of the workflow.
31+
1. Active workflows
32+
: payload (object) : The workflow details from the API when workflow is active (submitted, running, or pending).
33+
: workflowId (string) : The ID of the workflow.
3334

34-
2. Completed workflows / errors
35-
: payload (object) : The workflow details from the API when workflow has completed (success or failure).
36-
: workflowId (string) : The ID of the workflow.
37-
: \_seqera_request (object) : The request details sent to the API (when error occurs).
38-
: \_seqera_error (object) : Error details (when error occurs).
35+
2. Completed workflows / errors
36+
: payload (object) : The workflow details from the API when workflow has completed (success or failure).
37+
: workflowId (string) : The ID of the workflow.
38+
: \_seqera_request (object) : The request details sent to the API (when error occurs).
39+
: \_seqera_error (object) : Error details (when error occurs).
3940

40-
### Details
41+
### Details
4142

42-
This node checks the status of a workflow in Seqera Platform. It has two outputs:
43+
This node checks the status of a workflow in Seqera Platform. It has two outputs:
4344

44-
1. First output: Only receives messages when the workflow is active (submitted, running, or pending)
45-
2. Second output: Receives messages when the workflow has completed (success or failure) OR when an API error occurs
45+
1. First output: Only receives messages when the workflow is active (submitted, running, or pending)
46+
2. Second output: Receives messages when the workflow has completed (success or failure) OR when an API error occurs
4647

47-
### References
48+
### References
4849

49-
- [Seqera Platform API docs](https://docs.seqera.io/platform/latest/api) - information about workflow status
50+
- [Seqera Platform API docs](https://docs.seqera.io/platform/latest/api) - information about workflow status
5051
</script>
5152

5253
<script type="text/javascript">

0 commit comments

Comments
 (0)