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
Copy file name to clipboardExpand all lines: .github/PULL_REQUEST_TEMPLATE.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,14 +10,15 @@ Remember that PRs should be made against the dev branch, unless you're preparing
10
10
11
11
Learn more about contributing: [CONTRIBUTING.md](https://github.com/nf-core/rnaseq/tree/master/.github/CONTRIBUTING.md)
12
12
-->
13
+
<!-- markdownlint-disable ul-indent -->
13
14
14
15
## PR checklist
15
16
16
17
-[ ] This comment contains a description of changes (with reason).
17
18
-[ ] If you've fixed a bug or added code that should be tested, add tests!
18
-
-[ ] If you've added a new tool - add to the software_versions process and a regex to `scrape_software_versions.py`
19
-
-[ ] If you've added a new tool - have you followed the pipeline conventions in the [contribution docs](https://github.com/nf-core/rnaseq/tree/master/.github/CONTRIBUTING.md)
20
-
-[ ] If necessary, also make a PR on the nf-core/rnaseq _branch_ on the [nf-core/test-datasets](https://github.com/nf-core/test-datasets) repository.
19
+
-[ ] If you've added a new tool - add to the software_versions process and a regex to `scrape_software_versions.py`
20
+
-[ ] If you've added a new tool - have you followed the pipeline conventions in the [contribution docs](<https://github.com/>nf-core/rnaseq/tree/master/.github/CONTRIBUTING.md)
21
+
-[ ] If necessary, also make a PR on the nf-core/rnaseq _branch_ on the [nf-core/test-datasets](https://github.com/nf-core/test-datasets) repository.
21
22
-[ ] Make sure your code lints (`nf-core lint .`).
22
23
-[ ] Ensure the test suite passes (`nextflow run . -profile test,docker`).
23
24
-[ ] Usage Documentation in `docs/usage.md` is updated.
2. Install any of [`Docker`](https://docs.docker.com/engine/installation/), [`Singularity`](https://www.sylabs.io/guides/3.0/user-guide/), [`Podman`](https://podman.io/), [`Shifter`](https://nersc.gitlab.io/development/shifter/how-to-use/) or [`Charliecloud`](https://hpc.github.io/charliecloud/) for full pipeline reproducibility _(please only use [`Conda`](https://conda.io/miniconda.html) as a last resort; see [docs](https://nf-co.re/usage/configuration#basic-configuration-profiles))_
Copy file name to clipboardExpand all lines: nextflow_schema.json
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@
62
62
"igenomes_base": {
63
63
"type": "string",
64
64
"description": "Directory / URL base for iGenomes references.",
65
-
"default": "s3://ngi-igenomes/igenomes/",
65
+
"default": "s3://ngi-igenomes/igenomes",
66
66
"fa_icon": "fas fa-cloud-download-alt",
67
67
"hidden": true
68
68
},
@@ -183,7 +183,7 @@
183
183
"description": "Maximum amount of memory that can be requested for any single job.",
184
184
"default": "128.GB",
185
185
"fa_icon": "fas fa-memory",
186
-
"pattern": "^[\\d\\.]+\\s*.(K|M|G|T)?B$",
186
+
"pattern": "^\\d+(\\.\\d+)?\\.?\\s*(K|M|G|T)?B$",
187
187
"hidden": true,
188
188
"help_text": "Use to set an upper-limit for the memory requirement for each process. Should be a string in the format integer-unit e.g. `--max_memory '8.GB'`"
189
189
},
@@ -192,7 +192,7 @@
192
192
"description": "Maximum amount of time that can be requested for any single job.",
193
193
"default": "240.h",
194
194
"fa_icon": "far fa-clock",
195
-
"pattern": "^[\\d\\.]+\\.*(s|m|h|d)$",
195
+
"pattern": "^(\\d+\\.?\\s*(s|m|h|day)\\s*)+$",
196
196
"hidden": true,
197
197
"help_text": "Use to set an upper-limit for the time requirement for each process. Should be a string in the format integer-unit e.g. `--max_time '2.h'`"
0 commit comments