Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gene-level analysis #40

Merged
merged 11 commits into from
Jun 1, 2022
Prev Previous commit
Next Next commit
Tweak base process for unified pipelin
  • Loading branch information
filosi committed May 31, 2022
commit 3ffd44074355caef1e4ebdbb696087d9b4f46b5c
1 change: 1 addition & 0 deletions conf/test_gene.config
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ params {
regenie_test = 'additive'
annotation_min_log10p = 2
regenie_bsize_step1 = 200
regenie_run_gene_tests = true
regenie_gene_masks = "$baseDir/tests/input/gene_level/example.masks"
regenie_gene_setlist = "$baseDir/tests/input/gene_level/example.setlist"
regenie_gene_annot = "$baseDir/tests/input/gene_level/example.annotation"
Expand Down
4 changes: 2 additions & 2 deletions modules/local/regenie_gene_level.nf
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ process REGENIE_GENE {
path covariates_file

output:
tuple val(genotyped_plink_filename), path("*regenie.gz"), emit: regenie_gene_level_out
path "${genotyped_plink_filename}.log", emit: regenie_gene_level_out_log
tuple val(genotyped_plink_filename), path("*regenie.gz"), emit: regenie_step2_out
path "${genotyped_plink_filename}.log", emit: regenie_step2_out_log

script:
def firthApprox = params.regenie_firth_approx ? "--approx" : ""
Expand Down