mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 11:08:17 +00:00
change prefix
This commit is contained in:
parent
1db7771ea9
commit
230224700e
3 changed files with 23 additions and 1 deletions
|
@ -23,7 +23,7 @@ process GATK4_MARKDUPLICATES_SPARK {
|
||||||
|
|
||||||
script:
|
script:
|
||||||
def args = task.ext.args ?: ''
|
def args = task.ext.args ?: ''
|
||||||
def prefix = task.ext.prefix ?: "${meta.id}.bam"
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
||||||
def input_list = bam.collect{"--input $it"}.join(' ')
|
def input_list = bam.collect{"--input $it"}.join(' ')
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
nextflow.enable.dsl = 2
|
nextflow.enable.dsl = 2
|
||||||
|
|
||||||
include { GATK4_MARKDUPLICATES_SPARK } from '../../../../modules/gatk4/markduplicatesspark/main.nf'
|
include { GATK4_MARKDUPLICATES_SPARK } from '../../../../modules/gatk4/markduplicatesspark/main.nf'
|
||||||
|
include { GATK4_MARKDUPLICATES_SPARK as GATK4_MARKDUPLICATES_SPARK_CRAM } from '../../../../modules/gatk4/markduplicatesspark/main.nf'
|
||||||
include { GATK4_MARKDUPLICATES_SPARK as GATK4_MARKDUPLICATES_SPARK_METRICS } from '../../../../modules/gatk4/markduplicatesspark/main.nf'
|
include { GATK4_MARKDUPLICATES_SPARK as GATK4_MARKDUPLICATES_SPARK_METRICS } from '../../../../modules/gatk4/markduplicatesspark/main.nf'
|
||||||
|
|
||||||
workflow test_gatk4_markduplicates_spark {
|
workflow test_gatk4_markduplicates_spark {
|
||||||
|
@ -29,6 +30,19 @@ workflow test_gatk4_markduplicates_spark_multiple_bams {
|
||||||
GATK4_MARKDUPLICATES_SPARK ( input, fasta, fai, dict )
|
GATK4_MARKDUPLICATES_SPARK ( input, fasta, fai, dict )
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// chr 22
|
||||||
|
workflow test_gatk4_markduplicates_spark_multiple_bams_cram_out {
|
||||||
|
input = [ [ id:'test', single_end:false ], // meta map
|
||||||
|
[ file(params.test_data['homo_sapiens']['illumina']['test_paired_end_name_sorted_bam'], checkIfExists: true),
|
||||||
|
file(params.test_data['homo_sapiens']['illumina']['test2_paired_end_name_sorted_bam'], checkIfExists: true)
|
||||||
|
] ]
|
||||||
|
fasta = file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true)
|
||||||
|
fai = file(params.test_data['homo_sapiens']['genome']['genome_fasta_fai'], checkIfExists: true)
|
||||||
|
dict = file(params.test_data['homo_sapiens']['genome']['genome_dict'], checkIfExists: true)
|
||||||
|
|
||||||
|
GATK4_MARKDUPLICATES_SPARK_CRAM ( input, fasta, fai, dict )
|
||||||
|
}
|
||||||
|
|
||||||
// chr 22
|
// chr 22
|
||||||
workflow test_gatk4_markduplicates_spark_multiple_bams_metrics {
|
workflow test_gatk4_markduplicates_spark_multiple_bams_metrics {
|
||||||
input = [ [ id:'test', single_end:false ], // meta map
|
input = [ [ id:'test', single_end:false ], // meta map
|
||||||
|
|
|
@ -2,9 +2,17 @@ process {
|
||||||
|
|
||||||
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
||||||
|
|
||||||
|
withName: GATK4_MARKDUPLICATES_SPARK {
|
||||||
|
ext.prefix = { "${meta.id}.bam" }
|
||||||
|
}
|
||||||
|
withName: GATK4_MARKDUPLICATES_SPARK_CRAM {
|
||||||
|
ext.prefix = { "${meta.id}.cram" }
|
||||||
|
}
|
||||||
withName: GATK4_MARKDUPLICATES_SPARK_METRICS {
|
withName: GATK4_MARKDUPLICATES_SPARK_METRICS {
|
||||||
|
ext.prefix = { "${meta.id}.bam" }
|
||||||
ext.args = '--metrics-file test.metrics'
|
ext.args = '--metrics-file test.metrics'
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
// override tests/config/nextflow.config
|
// override tests/config/nextflow.config
|
||||||
docker.userEmulation = false
|
docker.userEmulation = false
|
||||||
|
|
Loading…
Reference in a new issue