1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-11 04:23:10 +00:00

change bcftools output format

This commit is contained in:
Ramprasad Neethiraj 2022-04-22 11:05:56 +02:00
parent 447b3ee05d
commit 9da85209f2

View file

@ -15,9 +15,9 @@ process {
} }
withName: BCFTOOLS_VIEW { withName: BCFTOOLS_VIEW {
if (params.genome == 'GRCh37') { if (params.genome == 'GRCh37') {
ext.args = '--output-type v --apply-filters PASS --exclude "INFO/clinical_genomics_mipAF > 0.40 | INFO/swegenAF > 0.40 | INFO/clingen_ngiAF > 0.40 | INFO/gnomad_svAF > 0.40 "' ext.args = '--output-type z --apply-filters PASS --exclude "INFO/clinical_genomics_mipAF > 0.40 | INFO/swegenAF > 0.40 | INFO/clingen_ngiAF > 0.40 | INFO/gnomad_svAF > 0.40 "'
} else if (params.genome == 'GRCh38') { } else if (params.genome == 'GRCh38') {
ext.args = '--output-type v --apply-filters PASS --exclude "INFO/swegen_FRQ > 0.40"' ext.args = '--output-type z --apply-filters PASS --exclude "INFO/swegen_FRQ > 0.40"'
} }
publishDir = [ publishDir = [
enabled: false, enabled: false,