Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions process.smake
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rule phase_with_ref:
ref_sample = get_ref_sample()
threads: 64
shell:
"beaglew impute=false gt={input} ref={params.ref_sample}/{wildcards.file}.vcf.gz out={params.prefix}"
"beaglew impute=false gt={input} ref={params.ref_sample}/{wildcards.file}.vcf.gz out={params.prefix} nthreads={threads}"

#
# Phase WITHOUT Reference Geonme
Expand All @@ -34,7 +34,7 @@ rule phase_without_ref:
prefix="{dir}_PH/{file}"
threads: 64
shell:
"beaglew impute=false gt={input} out={params.prefix}"
"beaglew impute=false gt={input} out={params.prefix} nthreads={threads}"


#
Expand Down