Skip to content

Commit 3abef29

Browse files
authored
Merge pull request #187 from Plant-Food-Research-Open/fix/185
[GH-185] Fixed malformed STAR ALIGN command
2 parents 57752f2 + bf11499 commit 3abef29

11 files changed

Lines changed: 33 additions & 19 deletions

File tree

.nf-core.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ template:
3535
outdir: .
3636
skip_features:
3737
- igenomes
38-
version: 1.0.0
38+
version: 1.0.1

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
44
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6+
## v1.0.1 - [03-Feb-2026]
7+
8+
### `Fixed`
9+
10+
1. Fixed malformed STAR ALIGN command which caused the pipeline to fail when RNASeq data was provided [#185](https://github.com/Plant-Food-Research-Open/genepal/issues/185)
11+
12+
### `Dependencies`
13+
14+
1. Nextflow!>=25.04.0
15+
2. nf-schema@2.5.1
16+
617
## v1.0.0 - [05-Nov-2025]
718

819
### `Added`

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ authors:
3131
- family-names: "Thomson"
3232
given-names: "Susan"
3333
title: "genepal: A Nextflow pipeline for genome and pan-genome annotation"
34-
version: 1.0.0
34+
version: 1.0.1
3535
date-released: 2024-11-21
3636
url: "https://github.com/Plant-Food-Research-Open/genepal"
3737
doi: 10.5281/zenodo.14195006

assets/multiqc_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
report_comment: >
22
This report has been generated by the <a href="https://github.com/plant-food-research-open/genepal" target="_blank">plant-food-research-open/genepal</a>
33
analysis pipeline. For information about how to interpret these results, please see the
4-
<a href="https://github.com/plant-food-research-open/genepal/blob/1.0.0/docs/usage.md" target="_blank">documentation</a>.
4+
<a href="https://github.com/plant-food-research-open/genepal/blob/1.0.1/docs/usage.md" target="_blank">documentation</a>.
55
66
report_section_order:
77
"plant-food-research-open-genepal-methods-description":

conf/modules.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ process { // SUBWORKFLOW: ALIGN_RNASEQ
148148
"--outSAMstrandField intronMotif",
149149
"--outSAMtype BAM SortedByCoordinate",
150150
"--readFilesCommand gunzip -c",
151-
"outBAMsortingBinsN 200",
151+
"--outBAMsortingBinsN 200",
152152
"--alignIntronMax ${params.star_max_intron_length}",
153153
params.star_align_extra_args ? params.star_align_extra_args.split("\\s(?=--)") : ''
154154
].flatten().unique(false).join(' ').trim()

nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ manifest {
289289
mainScript = 'main.nf'
290290
defaultBranch = 'main'
291291
nextflowVersion = '!>=25.04.0'
292-
version = '1.0.0'
292+
version = '1.0.1'
293293
doi = 'https://doi.org/10.5281/zenodo.14195006'
294294

295295
author = """Usman Rashid, Jason Shiller"""

ro-crate-metadata.json

Lines changed: 12 additions & 9 deletions
Large diffs are not rendered by default.

tests/invalid/main.nf.test.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
"tsebra": "1.1.2.5"
8383
},
8484
"Workflow": {
85-
"plant-food-research-open/genepal": "v1.0.0"
85+
"plant-food-research-open/genepal": "v1.0.1"
8686
}
8787
},
8888
"stable paths": [
@@ -123,7 +123,7 @@
123123
"seqkit": "v2.9.0"
124124
},
125125
"Workflow": {
126-
"plant-food-research-open/genepal": "v1.0.0"
126+
"plant-food-research-open/genepal": "v1.0.1"
127127
}
128128
},
129129
"stable paths": [

tests/minimal/main.nf.test.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"tsebra": "1.1.2.5"
6868
},
6969
"Workflow": {
70-
"plant-food-research-open/genepal": "v1.0.0"
70+
"plant-food-research-open/genepal": "v1.0.1"
7171
}
7272
},
7373
"stable paths": [

tests/short/main.nf.test.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"successful tasks": 0,
66
"versions": {
77
"Workflow": {
8-
"plant-food-research-open/genepal": "v1.0.0"
8+
"plant-food-research-open/genepal": "v1.0.1"
99
}
1010
},
1111
"stable paths": [

0 commit comments

Comments
 (0)