Skip to content

Commit

Permalink
Limma mixed bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KamilMaliszArdigen committed Oct 1, 2024
1 parent a701082 commit d0197a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,7 @@ process {
pattern: '*.html'
]
]
memory = { check_max( 12.GB * task.attempt, 'memory' ) }
}

withName: MAKE_REPORT_BUNDLE {
Expand Down
2 changes: 1 addition & 1 deletion workflows/differentialabundance.nf
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ workflow DIFFERENTIALABUNDANCE {
(params.study_type == 'rnaseq' && params.differential_use_limma)){

if (params.limma_analysis_type == 'mixedmodel') {
ch_contrasts_limma = ch_contrasts.map{ row -> [row[0][0], row[0]] }
ch_contrasts_limma = ch_contrasts.map{ row -> [row[0].id, row[0]] }
.groupTuple()
.map{
contrast = it[1][0]
Expand Down

0 comments on commit d0197a7

Please sign in to comment.