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/CONTRIBUTING.md
+8-6
Original file line number
Diff line number
Diff line change
@@ -9,9 +9,8 @@ Please use the pre-filled template to save time.
9
9
However, don't be put off by this template - other more general issues and suggestions are welcome!
10
10
Contributions to the code are even more welcome ;)
11
11
12
-
:::info
13
-
If you need help using or modifying nf-core/taxprofiler then the best place to ask is on the nf-core Slack [#taxprofiler](https://nfcore.slack.com/channels/taxprofiler) channel ([join our Slack here](https://nf-co.re/join/slack)).
14
-
:::
12
+
> [!NOTE]
13
+
> If you need help using or modifying nf-core/taxprofiler then the best place to ask is on the nf-core Slack [#taxprofiler](https://nfcore.slack.com/channels/taxprofiler) channel ([join our Slack here](https://nf-co.re/join/slack)).
15
14
16
15
## Contribution workflow
17
16
@@ -27,8 +26,11 @@ If you're not used to this workflow with git, you can start with some [docs from
27
26
28
27
## Tests
29
28
30
-
You can optionally test your changes by running the pipeline locally. Then it is recommended to use the `debug` profile to
31
-
receive warnings about process selectors and other debug info. Example: `nextflow run . -profile debug,test,docker --outdir <OUTDIR>`.
29
+
You have the option to test your changes locally by running the pipeline. For receiving warnings about process selectors and other `debug` information, it is recommended to use the debug profile. Execute all the tests with the following command:
30
+
31
+
```bash
32
+
nf-test test --profile debug,test,docker --verbose
33
+
```
32
34
33
35
When you create a pull request with changes, [GitHub Actions](https://github.com/features/actions) will run automatic tests.
34
36
Typically, pull-requests are only fully reviewed when these tests are passing, though of course we can help out before then.
@@ -90,7 +92,7 @@ Once there, use `nf-core schema build` to add to `nextflow_schema.json`.
90
92
91
93
Sensible defaults for process resource requirements (CPUs / memory / time) for a process should be defined in `conf/base.config`. These should generally be specified generic with `withLabel:` selectors so they can be shared across multiple processes/steps of the pipeline. A nf-core standard set of labels that should be followed where possible can be seen in the [nf-core pipeline template](https://github.com/nf-core/tools/blob/master/nf_core/pipeline-template/conf/base.config), which has the default process as a single core-process, and then different levels of multi-core configurations for increasingly large memory requirements defined with standardised labels.
92
94
93
-
The process resources can be passed on to the tool dynamically within the process with the `${task.cpu}` and `${task.memory}` variables in the `script:` block.
95
+
The process resources can be passed on to the tool dynamically within the process with the `${task.cpus}` and `${task.memory}` variables in the `script:` block.
Copy file name to clipboardexpand all lines: .github/PULL_REQUEST_TEMPLATE.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ Learn more about contributing: [CONTRIBUTING.md](https://github.com/nf-core/taxp
18
18
-[ ] If you've added a new tool - have you followed the pipeline conventions in the [contribution docs](https://github.com/nf-core/taxprofiler/tree/master/.github/CONTRIBUTING.md)
19
19
-[ ] If necessary, also make a PR on the nf-core/taxprofiler _branch_ on the [nf-core/test-datasets](https://github.com/nf-core/test-datasets) repository.
20
20
-[ ] Make sure your code lints (`nf-core lint`).
21
-
-[ ] Ensure the test suite passes (`nextflow run . -profile test,docker --outdir <OUTDIR>`).
21
+
-[ ] Ensure the test suite passes (`nf-test test main.nf.test -profile test,docker`).
22
22
-[ ] Check for unexpected warnings in debug mode (`nextflow run . -profile debug,test,docker --outdir <OUTDIR>`).
23
23
-[ ] Usage Documentation in `docs/usage.md` is updated.
24
24
-[ ] Output Documentation in `docs/output.md` is updated.
stale-issue-message: "This issue has been tagged as awaiting-changes or awaiting-feedback by an nf-core contributor. Remove stale label or add a comment otherwise this issue will be closed in 20 days."
16
16
stale-pr-message: "This PR has been tagged as awaiting-changes or awaiting-feedback by an nf-core contributor. Remove stale label or add a comment if it is still useful."
Copy file name to clipboardexpand all lines: CHANGELOG.md
+19
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,25 @@
3
3
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
4
4
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5
5
6
+
## v1.1.6 - Augmented Akita Patch [2024-04-16]
7
+
8
+
### `Added`
9
+
10
+
-[#454](https://github.com/nf-core/taxprofiler/pull/454) Updated to nf-core pipeline template v2.13.1 (added by @LilyAnderssonLee & @sofstam)
11
+
-[#461](https://github.com/nf-core/taxprofiler/pull/461) Turned on 'strict' Nextflow evaluation runs (added by @jfy133)
12
+
-[#461](https://github.com/nf-core/taxprofiler/pull/461) Optimised database compression so each compressed input database is untarred once, and shared amongst each run with different parameters (added by @jfy133)
13
+
-[#461](https://github.com/nf-core/taxprofiler/pull/461) Added new parameter to optionally save uncompressed databases (added by @jfy133)
14
+
-[#471](https://github.com/nf-core/taxprofiler/pull/471) Remove `-stub` run in the `download_pipeline.yml` because the pipeline does not support stub runs on dev (fixed by @LilyAnderssonLee)
15
+
16
+
### `Fixed`
17
+
18
+
-[#336](https://github.com/nf-core/taxprofiler/issues/336) Replace samplesheet check with nf-validation for both sample and database input sheets (fix by @LilyAnderssonLee)
19
+
-[#460](https://github.com/nf-core/taxprofiler/issues/460) corrected the channel transformations to combine Kaiju and mOTUs reports with their reference databases (fix by @Midnighter)
[](https://github.com/nf-core/taxprofiler/actions?query=workflow%3A%22nf-core+CI%22)
8
-
[](https://github.com/nf-core/taxprofiler/actions?query=workflow%3A%22nf-core+linting%22)[](https://nf-co.re/taxprofiler/results)[](https://doi.org/10.5281/zenodo.7728364)
7
+
8
+
[](https://github.com/nf-core/taxprofiler/actions/workflows/ci.yml)
9
+
[](https://github.com/nf-core/taxprofiler/actions/workflows/linting.yml)[](https://nf-co.re/taxprofiler/results)[](https://doi.org/10.5281/zenodo.7728364)
[](https://docs.conda.io/en/latest/)
12
14
[](https://www.docker.com/)
13
15
[](https://sylabs.io/docs/)
14
-
[](https://tower.nf/launch?pipeline=https://github.com/nf-core/taxprofiler)
16
+
[](https://tower.nf/launch?pipeline=https://github.com/nf-core/taxprofiler)
15
17
16
18
[](https://nfcore.slack.com/channels/taxprofiler)[](https://twitter.com/nf_core)[](https://mstdn.science/@nf_core)[](https://www.youtube.com/c/nf-core)
Copy file name to clipboardexpand all lines: assets/multiqc_config.yml
+3-2
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
report_comment: >
2
-
This report has been generated by the <a href="https://github.com/nf-core/taxprofiler/releases/tag/1.1.5" target="_blank">nf-core/taxprofiler</a>
2
+
This report has been generated by the <a href="https://github.com/nf-core/taxprofiler/releases/tag/1.1.6" target="_blank">nf-core/taxprofiler</a>
3
3
analysis pipeline. For information about how to interpret these results, please see the
0 commit comments