You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*[`nf-core modules` - commands for dealing with DSL2 modules](#modules)
28
-
*[`modules list` - List available modules](#list-modules)
29
-
*[`modules install` - Install a module from nf-core/modules](#install-a-module-into-a-pipeline)
30
-
*[`modules remove` - Remove a module from a pipeline](#remove-a-module-from-a-pipeline)
31
-
*[`modules create` - Create a module from the template](#create-a-new-module)
32
-
*[`modules create-test-yml` - Create the `test.yml` file for a module](#create-a-module-test-config-file)
33
-
*[`modules lint` - Check a module against nf-core guidelines](#check-a-module-against-nf-core-guidelines)
28
+
*[`modules list` - List available modules](#list-modules)
29
+
*[`modules install` - Install a module from nf-core/modules](#install-a-module-into-a-pipeline)
30
+
*[`modules remove` - Remove a module from a pipeline](#remove-a-module-from-a-pipeline)
31
+
*[`modules create` - Create a module from the template](#create-a-new-module)
32
+
*[`modules create-test-yml` - Create the `test.yml` file for a module](#create-a-module-test-config-file)
33
+
*[`modules lint` - Check a module against nf-core guidelines](#check-a-module-against-nf-core-guidelines)
34
34
*[Citation](#citation)
35
35
36
36
The nf-core tools package is written in Python and can be imported and used within other packages.
@@ -327,24 +327,24 @@ Do you want to run this command now? [y/n]:
327
327
### Launch tool options
328
328
329
329
*`-r`, `--revision`
330
-
* Specify a pipeline release (or branch / git commit sha) of the project to run
330
+
* Specify a pipeline release (or branch / git commit sha) of the project to run
331
331
*`-i`, `--id`
332
-
* You can use the web GUI for nf-core pipelines by clicking _"Launch"_ on the website. Once filled in you will be given an ID to use with this command which is used to retrieve your inputs.
332
+
* You can use the web GUI for nf-core pipelines by clicking _"Launch"_ on the website. Once filled in you will be given an ID to use with this command which is used to retrieve your inputs.
333
333
*`-c`, `--command-only`
334
-
* If you prefer not to save your inputs in a JSON file and use `-params-file`, this option will specify all entered params directly in the nextflow command.
334
+
* If you prefer not to save your inputs in a JSON file and use `-params-file`, this option will specify all entered params directly in the nextflow command.
335
335
*`-p`, `--params-in PATH`
336
-
* To use values entered in a previous pipeline run, you can supply the `nf-params.json` file previously generated.
337
-
* This will overwrite the pipeline schema defaults before the wizard is launched.
336
+
* To use values entered in a previous pipeline run, you can supply the `nf-params.json` file previously generated.
337
+
* This will overwrite the pipeline schema defaults before the wizard is launched.
338
338
*`-o`, `--params-out PATH`
339
-
* Path to save parameters JSON file to. (Default: `nf-params.json`)
339
+
* Path to save parameters JSON file to. (Default: `nf-params.json`)
340
340
*`-a`, `--save-all`
341
-
* Without this option the pipeline will ignore any values that match the pipeline schema defaults.
342
-
* This option saves _all_ parameters found to the JSON file.
341
+
* Without this option the pipeline will ignore any values that match the pipeline schema defaults.
342
+
* This option saves _all_ parameters found to the JSON file.
343
343
*`-h`, `--show-hidden`
344
-
* A pipeline JSON schema can define some parameters as 'hidden' if they are rarely used or for internal pipeline use only.
345
-
* This option forces the wizard to show all parameters, including those labelled as 'hidden'.
344
+
* A pipeline JSON schema can define some parameters as 'hidden' if they are rarely used or for internal pipeline use only.
345
+
* This option forces the wizard to show all parameters, including those labelled as 'hidden'.
346
346
*`--url`
347
-
* Change the URL used for the graphical interface, useful for development work on the website.
347
+
* Change the URL used for the graphical interface, useful for development work on the website.
Copy file name to clipboardExpand all lines: nf_core/lint/actions_awsfulltest.py
+3-5Lines changed: 3 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ def actions_awsfulltest(self):
13
13
The GitHub Actions workflow is called ``awsfulltest.yml``, and it can be found in the ``.github/workflows/`` directory.
14
14
15
15
.. warning:: This workflow incurs AWS costs, therefore it should only be triggered for pipeline releases:
16
-
``workflow_run`` (after the docker hub release workflow) and ``workflow_dispatch``.
16
+
``release`` (after the pipeline release) and ``workflow_dispatch``.
17
17
18
18
.. note:: You can manually trigger the AWS tests by going to the `Actions` tab on the pipeline GitHub repository and selecting the
19
19
`nf-core AWS full size tests` workflow on the left.
@@ -23,7 +23,7 @@ def actions_awsfulltest(self):
23
23
The ``.github/workflows/awsfulltest.yml`` file is tested for the following:
24
24
25
25
* Must be turned on ``workflow_dispatch``.
26
-
* Must be turned on for ``workflow_run`` with ``workflows: ["nf-core Docker push (release)"]`` and ``types: [completed]``
26
+
* Must be turned on for ``release`` with ``types: [published]``
27
27
* Should run the profile ``test_full`` that should be edited to provide the links to full-size datasets. If it runs the profile ``test``, a warning is given.
28
28
"""
29
29
passed= []
@@ -42,9 +42,7 @@ def actions_awsfulltest(self):
42
42
43
43
# Check that the action is only turned on for published releases
0 commit comments