Skip to content

Commit d8b30e9

Browse files
committed
update smoke test datasets and smoke_test.yml
1 parent 29a8755 commit d8b30e9

4 files changed

Lines changed: 21 additions & 3 deletions

File tree

.github/workflows/smoke_test.yml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
smoke_test:
11-
name: "${{ matrix.profile }} (NF ${{ matrix.nextflow_version }})"
11+
name: "${{ matrix.profile }} (NF ${{ matrix.nextflow_version }})${{ matrix.quantification_mode && format(' [{0}]', matrix.quantification_mode) || '' }}${{ matrix.bam_only && ' [bam_only]' || '' }}"
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
@@ -19,10 +19,26 @@ jobs:
1919
- test_sc_multi
2020
- test_visium
2121
- test_custom
22+
include:
23+
- nextflow_version: "latest-stable"
24+
profile: test_sc_fastq
25+
quantification_mode: EM
26+
- nextflow_version: "latest-stable"
27+
profile: test_sc_multi
28+
quantification_mode: EM
29+
- nextflow_version: "latest-stable"
30+
profile: test_sc_fastq
31+
quantification_mode: no_quant
32+
- nextflow_version: "latest-stable"
33+
profile: test_sc_fastq
34+
bam_only: true
2235
steps:
2336
- uses: actions/checkout@v4
2437
- uses: nf-core/setup-nextflow@v2
2538
with:
2639
version: ${{ matrix.nextflow_version }}
2740
- name: Run ${{ matrix.profile }}
28-
run: nextflow run . -profile test_base,${{ matrix.profile }},docker
41+
run: |
42+
nextflow run . -profile test_base,${{ matrix.profile }},docker \
43+
${{ matrix.quantification_mode && format('--quantification_mode {0}', matrix.quantification_mode) || '' }} \
44+
${{ matrix.bam_only && '--bam_only true' || '' }}

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ sample,path,chemistry,technology
8383
```csv
8484
sample,path,chemistry,technology
8585
10x5v2_ONT_example,examples/10x5v2_ONT_example.fastq.gz,10x5v2,ONT
86+
10x5v2_PacBio_example,examples/10x5v2_PacBio_example.fastq.gz,10x5v2,PacBio
8687
10x5v3_ONT_example,examples/10x5v3_ONT_example_demultiplexed.bam,10x5v3,ONT
8788
```
8889

@@ -238,7 +239,7 @@ Example data and pre-configured profiles are provided in `examples/` to run the
238239
|---|---|
239240
| `test_sc_fastq` | Single-cell, single-sample ONT run from raw reads |
240241
| `test_sc_bam` | Single-cell, single-sample ONT run from demultiplexed BAM |
241-
| `test_sc_multi` | Single-cell, multi-sample ONT run across two chemistries (10x5v2 FASTQ + 10x5v3 BAM) |
242+
| `test_sc_multi` | Single-cell, multiple-sample run with different chemistries and technologies |
242243
| `test_visium` | Spatial (Visium), single-sample ONT run from raw reads |
243244
| `test_custom` | Custom chemistry, single-sample ONT run from demultiplexed BAM |
244245

5.64 MB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
sample,path,chemistry,technology
22
10x5v2_ONT_example,examples/10x5v2_ONT_example.fastq.gz,10x5v2,ONT
3+
10x5v2_PacBio_example,examples/10x5v2_PacBio_example.fastq.gz,10x5v2,PacBio
34
10x5v3_ONT_example,examples/10x5v3_ONT_example_demultiplexed.bam,10x5v3,ONT

0 commit comments

Comments
 (0)