Skip to content
This repository was archived by the owner on Aug 21, 2018. It is now read-only.

Commit a93015a

Browse files
authored
Merge pull request #118 from ewels/master
HOTFIX: StringTie: Fix strandedness bug
2 parents adc816b + 89764b4 commit a93015a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# NGI-RNAseq
22

3+
## [1.0.3](https://github.com/SciLifeLab/NGI-RNAseq/releases/tag/1.0.1) - 2017-04-19
4+
Hotfix to fix minor bug affecting strandedness for StringTie run.
5+
36
## [1.0.2](https://github.com/SciLifeLab/NGI-RNAseq/releases/tag/1.0.2) - 2017-04-11
47
A couple of tweaks to help the pipeline in production:
58

main.nf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ vim: syntax=groovy
2222
*/
2323

2424
// Pipeline version
25-
version = '1.0.2'
25+
version = '1.0.3'
2626

2727
// Configurable variables
2828
params.project = false
@@ -798,7 +798,7 @@ process stringtieFPKM {
798798
def StringTie_direction = ''
799799
if (params.forward_stranded && !params.unstranded){
800800
StringTie_direction = "--fr"
801-
} else if (!params.reverse_stranded && !params.unstranded){
801+
} else if (params.reverse_stranded && !params.unstranded){
802802
StringTie_direction = "--rf"
803803
}
804804
"""

0 commit comments

Comments
 (0)