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

Commit

Permalink
Merge pull request #118 from ewels/master
Browse files Browse the repository at this point in the history
HOTFIX: StringTie: Fix strandedness bug
  • Loading branch information
vezzi authored Apr 19, 2017
2 parents adc816b + 89764b4 commit a93015a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# NGI-RNAseq

## [1.0.3](https://github.com/SciLifeLab/NGI-RNAseq/releases/tag/1.0.1) - 2017-04-19
Hotfix to fix minor bug affecting strandedness for StringTie run.

## [1.0.2](https://github.com/SciLifeLab/NGI-RNAseq/releases/tag/1.0.2) - 2017-04-11
A couple of tweaks to help the pipeline in production:

Expand Down
4 changes: 2 additions & 2 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ vim: syntax=groovy
*/

// Pipeline version
version = '1.0.2'
version = '1.0.3'

// Configurable variables
params.project = false
Expand Down Expand Up @@ -798,7 +798,7 @@ process stringtieFPKM {
def StringTie_direction = ''
if (params.forward_stranded && !params.unstranded){
StringTie_direction = "--fr"
} else if (!params.reverse_stranded && !params.unstranded){
} else if (params.reverse_stranded && !params.unstranded){
StringTie_direction = "--rf"
}
"""
Expand Down

0 comments on commit a93015a

Please sign in to comment.