mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
7daba6a13f
* add unzip alleles + loci * fix the partial absolute prefix path * exchanged deprecated function + added metrics * updated meta * tested logRCorrection + cram input * added BED for WES * added outputs + alleleCounter version * test samtools chr operations, fixed cancerit conda * ch formatting, fasta, bed input * comment out local tests * added metrics, bed, ref_fasta * rm print statement * added stub outputs * rm versions.yml * fix linting * rm fictitious md5sums for stub-run * try fixing top-level of stub versions.yml * ordered inputs alphabetically, ref_fasta -> fasta * rm R system command, adjust meta.yml * prettier yml
40 lines
848 B
Text
40 lines
848 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 : '/mnt/volume/ascat/human_g1k_v37.fasta',
|
|
chrom_names : 'c("21","22")'
|
|
]
|
|
}
|
|
|
|
}
|
|
|