Skip to content

Commit

Permalink
update schema with support for --maf_target and --geno_miss_target
Browse files Browse the repository at this point in the history
  • Loading branch information
nebfield committed Jul 30, 2024
1 parent ad835ae commit 351518e
Show file tree
Hide file tree
Showing 3 changed files with 208 additions and 153 deletions.
4 changes: 2 additions & 2 deletions modules/local/ancestry/intersect_variants.nf
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ process INTERSECT_VARIANTS {
pgscatalog-intersect --ref $ref_variants \
--target $variants \
--chrom $meta.chrom \
--maf_target 0.1 \
--geno_miss 0.1 \
--maf_target $params.maf_target \
--geno_miss $params.geno_miss_target \
--outdir . \
-v
Expand Down
2 changes: 2 additions & 0 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ params {
n_popcomp = 5
normalization_method = "empirical mean mean+var"
n_normalization = 4
maf_target = 0.1
geno_miss_target = 0.1

// compatibility params
liftover = false
Expand Down
Loading

0 comments on commit 351518e

Please sign in to comment.