Skip to content

Commit

Permalink
Keep SpliceAI in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fellen31 committed Aug 14, 2024
1 parent 129d1a8 commit 6d22388
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 0 deletions.
1 change: 1 addition & 0 deletions conf/modules/snv_annotation.config
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ process {
"--dir_plugins .",
"--plugin LoFtool,LoFtool_scores.txt",
"--plugin pLI,pLI_values.txt",
"--plugin SpliceAI,snv=spliceai_21_scores_raw_snv_-v1.3-.vcf.gz,indel=spliceai_21_scores_raw_snv_-v1.3-.vcf.gz",
'--distance 5000',
'--buffer_size 20000',
'--format vcf --max_sv_size 248387328',
Expand Down
20 changes: 20 additions & 0 deletions conf/test.config
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,26 @@ process {
ext.args = '--gene hba'
}

withName: '.*:SNV_ANNOTATION:ENSEMBLVEP_VEP' {
ext.prefix = { "${meta.id}_vep" }
ext.args = { [
"--dir_plugins .",
"--plugin LoFtool,LoFtool_scores.txt",
"--plugin pLI,pLI_values.txt",
"--plugin SpliceAI,snv=spliceai_21_scores_raw_snv_-v1.3-.vcf.gz,indel=spliceai_21_scores_raw_snv_-v1.3-.vcf.gz",
'--distance 5000',
'--buffer_size 20000',
'--format vcf --max_sv_size 248387328',
'--appris --biotype --cache --canonical --ccds --compress_output bgzip',
'--domains --exclude_predicted --force_overwrite',
'--hgvs --humdiv --no_progress --numbers',
'--polyphen p --protein --offline --regulatory --sift p --symbol --tsl',
'--uniprot --vcf',
'--no_stats'
].join(' ') }
}

}
withName: '.*:NALLO:PHASING:WHATSHAP_PHASE' {
ext.args = '--ignore-read-groups --indels --distrust-genotypes --include-homozygous'
}
Expand Down
19 changes: 19 additions & 0 deletions tests/nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,23 @@ process {
ext.args = '--ignore-read-groups --indels --distrust-genotypes --include-homozygous'
}

withName: '.*:NALLO:SNV_ANNOTATION:ENSEMBLVEP_VEP' {
ext.prefix = { "${meta.id}_vep" }
ext.args = { [
"--dir_plugins .",
"--plugin LoFtool,LoFtool_scores.txt",
"--plugin pLI,pLI_values.txt",
"--plugin SpliceAI,snv=spliceai_21_scores_raw_snv_-v1.3-.vcf.gz,indel=spliceai_21_scores_raw_snv_-v1.3-.vcf.gz",
'--distance 5000',
'--buffer_size 20000',
'--format vcf --max_sv_size 248387328',
'--appris --biotype --cache --canonical --ccds --compress_output bgzip',
'--domains --exclude_predicted --force_overwrite',
'--hgvs --humdiv --no_progress --numbers',
'--polyphen p --protein --offline --regulatory --sift p --symbol --tsl',
'--uniprot --vcf',
'--no_stats'
].join(' ') }
}

}

0 comments on commit 6d22388

Please sign in to comment.