-
Notifications
You must be signed in to change notification settings - Fork 736
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[functional_analysis] add test for limmavoom+gsea
- Loading branch information
1 parent
6c3df56
commit e8f105c
Showing
3 changed files
with
165 additions
and
0 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
subworkflows/nf-core/differential_functional_enrichment/tests/limmavoom_gsea.config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
process { | ||
withName: 'LIMMA_DIFFERENTIAL' { | ||
ext.args = { [ | ||
"--blocking_variables $meta.blocking", | ||
"--sample_id_col sample", | ||
"--probe_id_col gene_id", | ||
"--use_voom TRUE" | ||
].join(' ').trim() } | ||
|
||
ext.prefix = { "${meta.id}_${meta.method}_voom" } | ||
} | ||
|
||
withName: 'LIMMA_NORM' { | ||
ext.prefix = { "${meta.id}_${meta.method}_voom_norm" } | ||
} | ||
|
||
withName: 'CUSTOM_TABULARTOGSEACLS' { | ||
ext.args = { [ "variable": "$meta.variable" ] } | ||
} | ||
|
||
withName: 'GSEA_GSEA' { | ||
ext.args = { "-rnd_seed 1234" } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters