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

Commit

Permalink
Fix ext properties access in mapping configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
emi80 committed Feb 10, 2017
1 parent d4561dc commit c1da3e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/mapping/STAR.config
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ process {
tool = 'STAR'
version = '2.4.0j'
readGroup = { readGroupList.collect { it.join(":") }.join(" ") }
profile = { "-${task.version.split("\\.")[0..1].join(".")}" + (task.sort ? "-"+task.sort : '') + (quantificationMode ? "-"+quantificationMode : '') + (params.addXs ? "-XS" : '') }
profile = { "-${task.ext.version.split("\\.")[0..1].join(".")}" + (task.ext.sort ? "-"+task.ext.sort : '') + (quantificationMode ? "-"+quantificationMode : '') + (params.addXs ? "-XS" : '') }
}
}
}

0 comments on commit c1da3e4

Please sign in to comment.