Skip to content

Commit 50d56f6

Browse files
authored
Merge pull request #2615 from nf-core/dev
Dev -> Master for 2.11.1
2 parents a12d77a + d52fda0 commit 50d56f6

40 files changed

+2465
-3033
lines changed

.github/workflows/rich-codex.yml

+15
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,21 @@ jobs:
1717
- name: Install Nextflow
1818
uses: nf-core/setup-nextflow@v1
1919

20+
- name: Cache nf-test installation
21+
id: cache-software
22+
uses: actions/cache@v3
23+
with:
24+
path: |
25+
/usr/local/bin/nf-test
26+
/home/runner/.nf-test/nf-test.jar
27+
key: ${{ runner.os }}-nftest-${{ env.date }}
28+
29+
- name: Install nf-test
30+
if: steps.cache-software.outputs.cache-hit != 'true'
31+
run: |
32+
wget -qO- https://code.askimed.com/install/nf-test | bash
33+
sudo mv nf-test /usr/local/bin/
34+
2035
- name: Install nf-core/tools
2136
run: pip install git+https://github.com/nf-core/tools.git@dev
2237

CHANGELOG.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
# nf-core/tools: Changelog
22

3-
# [v2.11 - Magnesium Dragon](https://github.com/nf-core/tools/releases/tag/2.11) + [2023-12-19]
3+
# [v2.11.1 - Magnesium Dragon Patch](https://github.com/nf-core/tools/releases/tag/2.11) - [2023-12-20]
4+
5+
### Template
6+
7+
- Rename `release-announcments.yml` to `release-announcements.yml` ([#2610](https://github.com/nf-core/tools/pull/2610))
8+
- Fix `nextflow.config` `docker.runOptions` ([#2607](https://github.com/nf-core/tools/pull/2607))
9+
10+
### General
11+
12+
- Only dump `modules.json` when it is modified ([#2609](https://github.com/nf-core/tools/pull/2609))
13+
14+
# [v2.11 - Magnesium Dragon](https://github.com/nf-core/tools/releases/tag/2.11) - [2023-12-19]
415

516
### Template
617

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -900,7 +900,7 @@ If you want to make a minor change to a locally installed module but still keep
900900

901901
<!-- RICH-CODEX
902902
working_dir: tmp/nf-core-nextbigthing
903-
before_command: sed "s/process_medium/process_low/g" modules/nf-core/modules/fastqc/main.nf > modules/nf-core/modules/fastqc/main.nf.patch && mv modules/nf-core/modules/fastqc/main.nf.patch modules/nf-core/modules/fastqc/main.nf
903+
before_command: sed "s/process_medium/process_low/g" modules/nf-core/fastqc/main.nf > modules/nf-core/fastqc/main.nf.patch && mv modules/nf-core/fastqc/main.nf.patch modules/nf-core/fastqc/main.nf
904904
-->
905905

906906
![`nf-core modules patch fastqc`](docs/images/nf-core-modules-patch.svg)
@@ -965,7 +965,7 @@ extra_env:
965965
PROFILE: 'conda'
966966
-->
967967

968-
![`nf-core modules test fastqc --no-prompts --force`](docs/images/nf-core-modules-test.svg)
968+
![`nf-core modules test fastqc --no-prompts`](docs/images/nf-core-modules-test.svg)
969969

970970
In case you changed something in the test and want to update the snapshot, run
971971

@@ -1076,6 +1076,9 @@ This shows documentation about the subworkflow on the command line, similar to w
10761076
working_dir: tmp/nf-core-nextbigthing
10771077
before_command: >
10781078
echo "repository_type: pipeline" >> .nf-core.yml
1079+
1080+
head: 15
1081+
tail: 10
10791082
-->
10801083

10811084
![`nf-core subworkflows info bam_rseqc`](docs/images/nf-core-subworkflows-info.svg)

docs/images/nf-core-bump-version.svg

+74-74
Loading

docs/images/nf-core-create.svg

+63-63
Loading

docs/images/nf-core-download.svg

+50-50
Loading

docs/images/nf-core-launch-rnaseq.svg

+41-41
Loading

docs/images/nf-core-licences.svg

+65-65
Loading

docs/images/nf-core-lint.svg

+85-85
Loading

docs/images/nf-core-list-rna.svg

+67-67
Loading

docs/images/nf-core-list-stars.svg

+52-52
Loading

docs/images/nf-core-list.svg

+54-54
Loading

docs/images/nf-core-modules-bump-version.svg

+53-53
Loading

docs/images/nf-core-modules-create.svg

+62-62
Loading

docs/images/nf-core-modules-info.svg

+103-103
Loading

docs/images/nf-core-modules-install.svg

+43-43
Loading

docs/images/nf-core-modules-lint.svg

+78-78
Loading

docs/images/nf-core-modules-list-local.svg

+65-65
Loading

docs/images/nf-core-modules-list-remote.svg

+66-66
Loading

docs/images/nf-core-modules-patch.svg

+121-39
Loading

docs/images/nf-core-modules-remove.svg

+35-35
Loading

0 commit comments

Comments
 (0)