Skip to content

Commit 6527469

Browse files
authored
Merge pull request #1261 from adamrtalbot/dev
Add more tests for PREPARE_GENOME
2 parents 9c6d145 + cf06e96 commit 6527469

File tree

5 files changed

+2303
-95
lines changed

5 files changed

+2303
-95
lines changed

.github/workflows/ci.yml

-7
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ jobs:
2828
parameters:
2929
- "--skip_qc"
3030
- "--skip_trimming"
31-
- "--gtf false"
32-
- "--star_index false"
33-
- "--transcript_fasta false"
3431
- "--min_mapped_reads 90"
3532
- "--with_umi"
3633
- "--with_umi --skip_trimming"
@@ -59,7 +56,6 @@ jobs:
5956
matrix:
6057
parameters:
6158
- "--skip_qc"
62-
- "--rsem_index false"
6359
steps:
6460
- name: Check out pipeline code
6561
uses: actions/checkout@v4
@@ -79,7 +75,6 @@ jobs:
7975
matrix:
8076
parameters:
8177
- "--skip_qc"
82-
- "--hisat2_index false"
8378
steps:
8479
- name: Check out pipeline code
8580
uses: actions/checkout@v4
@@ -100,10 +95,8 @@ jobs:
10095
parameters:
10196
- "--pseudo_aligner salmon --skip_qc"
10297
- "--pseudo_aligner salmon --skip_alignment --skip_pseudo_alignment"
103-
- "--pseudo_aligner salmon --salmon_index false --transcript_fasta false"
10498
- "--pseudo_aligner kallisto --skip_qc"
10599
- "--pseudo_aligner kallisto --skip_alignment --skip_pseudo_alignment"
106-
- "--pseudo_aligner kallisto --kallisto_index false --transcript_fasta false"
107100
steps:
108101
- name: Check out pipeline code
109102
uses: actions/checkout@v4

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ Thank you to everyone else that has contributed by reporting bugs, enhancements
5858
- [PR #1247](https://github.com/nf-core/rnaseq/pull/1247) - nf-test prepare_genome
5959
- [PR #1249](https://github.com/nf-core/rnaseq/pull/1249) - Include nf-tests for rsem_merge_counts module
6060
- [PR #1250](https://github.com/nf-core/rnaseq/pull/1250) - Remove all tags.yml files because the testing system has changed
61-
- [PR #1251](https://github.com/nf-core/rnaseq/pull/1251) - Replace deseq2_qc paths
61+
- [PR #1251](https://github.com/nf-core/rnaseq/pull/1251) - Replace deseq2qc paths
62+
- [PR #1261](https://github.com/nf-core/rnaseq/pull/1261) - Add more tests for PREPARE_GENOME
6263
- [PR #1265](https://github.com/nf-core/rnaseq/pull/1265) - Small updates noticed during code review
6364
- [PR #1266](https://github.com/nf-core/rnaseq/pull/1266) - Delete unecessary tags from nf.test files for modules and subworkflows
6465

subworkflows/local/prepare_genome/main.nf

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ workflow PREPARE_GENOME {
5151
salmon_index // directory: /path/to/salmon/index/
5252
kallisto_index // directory: /path/to/kallisto/index/
5353
hisat2_index // directory: /path/to/hisat2/index/
54-
bbsplit_index // directory: /path/to/rsem/index/
54+
bbsplit_index // directory: /path/to/bbsplit/index/
5555
sortmerna_index // directory: /path/to/sortmerna/index/
5656
gencode // boolean: whether the genome is from GENCODE
5757
featurecounts_group_type // string: The attribute type used to group feature types in the GTF file when generating the biotype plot with featureCounts

0 commit comments

Comments
 (0)