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
Many thanks for taking an interest in improving nf-core/msa.
4
+
Many thanks for taking an interest in improving nf-core/multiplesequencealign.
5
5
6
-
We try to manage the required tasks for nf-core/msa using GitHub issues, you probably came to this page when creating one.
6
+
We try to manage the required tasks for nf-core/multiplesequencealign using GitHub issues, you probably came to this page when creating one.
7
7
Please use the pre-filled template to save time.
8
8
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
-
> If you need help using or modifying nf-core/msa then the best place to ask is on the nf-core Slack [#msa](https://nfcore.slack.com/channels/msa) channel ([join our Slack here](https://nf-co.re/join/slack)).
12
+
> [!NOTE]
13
+
> If you need help using or modifying nf-core/multiplesequencealign then the best place to ask is on the nf-core Slack [#multiplesequencealign](https://nfcore.slack.com/channels/multiplesequencealign) channel ([join our Slack here](https://nf-co.re/join/slack)).
13
14
14
15
## Contribution workflow
15
16
16
-
If you'd like to write some code for nf-core/msa, the standard workflow is as follows:
17
+
If you'd like to write some code for nf-core/multiplesequencealign, the standard workflow is as follows:
17
18
18
-
1. Check that there isn't already an issue about your idea in the [nf-core/msa issues](https://github.com/nf-core/msa/issues) to avoid duplicating work. If there isn't one already, please create one so that others know you're working on this
19
-
2.[Fork](https://help.github.com/en/github/getting-started-with-github/fork-a-repo) the [nf-core/msa repository](https://github.com/nf-core/msa) to your GitHub account
19
+
1. Check that there isn't already an issue about your idea in the [nf-core/multiplesequencealign issues](https://github.com/nf-core/multiplesequencealign/issues) to avoid duplicating work. If there isn't one already, please create one so that others know you're working on this
20
+
2.[Fork](https://help.github.com/en/github/getting-started-with-github/fork-a-repo) the [nf-core/multiplesequencealign repository](https://github.com/nf-core/multiplesequencealign) to your GitHub account
20
21
3. Make the necessary changes / additions within your forked repository following [Pipeline conventions](#pipeline-contribution-conventions)
21
22
4. Use `nf-core schema build` and add any new parameters to the pipeline JSON schema (requires [nf-core tools](https://github.com/nf-core/tools) >= 1.10).
22
23
5. Submit a Pull Request against the `dev` branch and wait for the code to be reviewed and merged
23
24
24
25
If you're not used to this workflow with git, you can start with some [docs from GitHub](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests) or even their [excellent `git` resources](https://try.github.io/).
25
26
27
+
:::note
28
+
! There is an extended documentation for adding specific module types into this pipeline at [extending](../docs/extending.md).
29
+
:::
30
+
26
31
## Tests
27
32
33
+
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:
34
+
35
+
```bash
36
+
nf-test test --profile debug,test,docker --verbose
37
+
```
38
+
28
39
When you create a pull request with changes, [GitHub Actions](https://github.com/features/actions) will run automatic tests.
29
40
Typically, pull-requests are only fully reviewed when these tests are passing, though of course we can help out before then.
30
41
@@ -54,11 +65,11 @@ These tests are run both with the latest available version of `Nextflow` and als
54
65
55
66
## Getting help
56
67
57
-
For further information/help, please consult the [nf-core/msa documentation](https://nf-co.re/msa/usage) and don't hesitate to get in touch on the nf-core Slack [#msa](https://nfcore.slack.com/channels/msa) channel ([join our Slack here](https://nf-co.re/join/slack)).
68
+
For further information/help, please consult the [nf-core/multiplesequencealign documentation](https://nf-co.re/multiplesequencealign/usage) and don't hesitate to get in touch on the nf-core Slack [#multiplesequencealign](https://nfcore.slack.com/channels/multiplesequencealign) channel ([join our Slack here](https://nf-co.re/join/slack)).
58
69
59
70
## Pipeline contribution conventions
60
71
61
-
To make the nf-core/msa code and processing logic more understandable for new contributors and to ensure quality, we semi-standardise the way the code and other contributions are written.
72
+
To make the nf-core/multiplesequencealign code and processing logic more understandable for new contributors and to ensure quality, we semi-standardise the way the code and other contributions are written.
62
73
63
74
### Adding a new step
64
75
@@ -85,7 +96,7 @@ Once there, use `nf-core schema build` to add to `nextflow_schema.json`.
85
96
86
97
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.
87
98
88
-
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.
99
+
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.
89
100
90
101
### Naming schemes
91
102
@@ -108,7 +119,7 @@ This repo includes a devcontainer configuration which will create a GitHub Codes
108
119
109
120
To get started:
110
121
111
-
- Open the repo in [Codespaces](https://github.com/nf-core/msa/codespaces)
122
+
- Open the repo in [Codespaces](https://github.com/nf-core/multiplesequencealign/codespaces)
Copy file name to clipboardExpand all lines: .github/PULL_REQUEST_TEMPLATE.md
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,24 +1,25 @@
1
1
<!--
2
-
# nf-core/msa pull request
2
+
# nf-core/multiplesequencealign pull request
3
3
4
-
Many thanks for contributing to nf-core/msa!
4
+
Many thanks for contributing to nf-core/multiplesequencealign!
5
5
6
6
Please fill in the appropriate checklist below (delete whatever is not relevant).
7
7
These are the most common things requested on pull requests (PRs).
8
8
9
9
Remember that PRs should be made against the dev branch, unless you're preparing a pipeline release.
10
10
11
-
Learn more about contributing: [CONTRIBUTING.md](https://github.com/nf-core/msa/tree/master/.github/CONTRIBUTING.md)
11
+
Learn more about contributing: [CONTRIBUTING.md](https://github.com/nf-core/multiplesequencealign/tree/master/.github/CONTRIBUTING.md)
12
12
-->
13
13
14
14
## PR checklist
15
15
16
16
-[ ] This comment contains a description of changes (with reason).
17
17
-[ ] If you've fixed a bug or added code that should be tested, add tests!
18
-
-[ ] If you've added a new tool - have you followed the pipeline conventions in the [contribution docs](https://github.com/nf-core/msa/tree/master/.github/CONTRIBUTING.md)
19
-
-[ ] If necessary, also make a PR on the nf-core/msa_branch_ on the [nf-core/test-datasets](https://github.com/nf-core/test-datasets) repository.
18
+
-[ ] If you've added a new tool - have you followed the pipeline conventions in the [contribution docs](https://github.com/nf-core/multiplesequencealign/tree/master/.github/CONTRIBUTING.md)
19
+
-[ ] If necessary, also make a PR on the nf-core/multiplesequencealign_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
21
-[ ] Ensure the test suite passes (`nextflow run . -profile test,docker --outdir <OUTDIR>`).
22
+
-[ ] Check for unexpected warnings in debug mode (`nextflow run . -profile debug,test,docker --outdir <OUTDIR>`).
22
23
-[ ] Usage Documentation in `docs/usage.md` is updated.
23
24
-[ ] Output Documentation in `docs/output.md` is updated.
0 commit comments