mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
40 lines
893 B
Text
40 lines
893 B
Text
|
process {
|
||
|
|
||
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
||
|
|
||
|
|
||
|
withName: ASCAT_SIMPLE {
|
||
|
ext.args = [
|
||
|
gender : 'XY',
|
||
|
genomeVersion : 'hg19',
|
||
|
minCounts : '1',
|
||
|
min_base_qual : '1',
|
||
|
min_map_qual : '1',
|
||
|
chrom_names : 'c("21","22")'
|
||
|
]
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
withName: ASCAT_PLOIDY_AND_PURITY {
|
||
|
ext.args = [
|
||
|
gender : 'XX',
|
||
|
genomeVersion : 'hg19',
|
||
|
ploidy : '1.7',
|
||
|
purity : '0.24',
|
||
|
chrom_names : 'c("21","22")'
|
||
|
]
|
||
|
}
|
||
|
|
||
|
withName: ASCAT_CRAM {
|
||
|
ext.args = [
|
||
|
gender : 'XX',
|
||
|
genomeVersion : 'hg19',
|
||
|
ref_fasta : '/home/ec2-user/input_files/fasta/human_g1k_v37.fasta',
|
||
|
chrom_names : 'c("21","22")'
|
||
|
]
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|