mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 11:08:17 +00:00
Merge branch 'nf-core:master' into gatk_spark
This commit is contained in:
commit
1db7771ea9
18 changed files with 84 additions and 47 deletions
|
@ -8,7 +8,7 @@ process GATK4_CALIBRATEDRAGSTRMODEL {
|
||||||
'quay.io/biocontainers/gatk4:4.2.6.1--hdfd78af_0' }"
|
'quay.io/biocontainers/gatk4:4.2.6.1--hdfd78af_0' }"
|
||||||
|
|
||||||
input:
|
input:
|
||||||
tuple val(meta), path(bam), path(bam_index)
|
tuple val(meta), path(bam), path(bam_index), path(intervals)
|
||||||
path fasta
|
path fasta
|
||||||
path fasta_fai
|
path fasta_fai
|
||||||
path dict
|
path dict
|
||||||
|
@ -24,6 +24,7 @@ process GATK4_CALIBRATEDRAGSTRMODEL {
|
||||||
script:
|
script:
|
||||||
def args = task.ext.args ?: ''
|
def args = task.ext.args ?: ''
|
||||||
def prefix = task.ext.prefix ?: "${meta.id}"
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
||||||
|
def intervals_command = intervals ? "--intervals $intervals" : ""
|
||||||
|
|
||||||
def avail_mem = 3
|
def avail_mem = 3
|
||||||
if (!task.memory) {
|
if (!task.memory) {
|
||||||
|
@ -37,6 +38,7 @@ process GATK4_CALIBRATEDRAGSTRMODEL {
|
||||||
--output ${prefix}.txt \\
|
--output ${prefix}.txt \\
|
||||||
--reference $fasta \\
|
--reference $fasta \\
|
||||||
--str-table-path $strtablefile \\
|
--str-table-path $strtablefile \\
|
||||||
|
$intervals_command \\
|
||||||
--tmp-dir . \\
|
--tmp-dir . \\
|
||||||
$args
|
$args
|
||||||
|
|
||||||
|
|
|
@ -33,6 +33,10 @@ input:
|
||||||
type: file
|
type: file
|
||||||
description: index of the BAM/CRAM/SAM file
|
description: index of the BAM/CRAM/SAM file
|
||||||
pattern: "*.{bai,crai,sai}"
|
pattern: "*.{bai,crai,sai}"
|
||||||
|
- intervals:
|
||||||
|
type: file
|
||||||
|
description: BED file or interval list containing regions (optional)
|
||||||
|
pattern: "*.{bed,interval_list}"
|
||||||
- fasta:
|
- fasta:
|
||||||
type: file
|
type: file
|
||||||
description: The reference FASTA file
|
description: The reference FASTA file
|
||||||
|
|
|
@ -2,10 +2,10 @@ process PICARD_ADDORREPLACEREADGROUPS {
|
||||||
tag "$meta.id"
|
tag "$meta.id"
|
||||||
label 'process_low'
|
label 'process_low'
|
||||||
|
|
||||||
conda (params.enable_conda ? "bioconda::picard=2.27.1" : null)
|
conda (params.enable_conda ? "bioconda::picard=2.27.2" : null)
|
||||||
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||||||
'https://depot.galaxyproject.org/singularity/picard:2.27.1--hdfd78af_0' :
|
'https://depot.galaxyproject.org/singularity/picard:2.27.2--hdfd78af_0' :
|
||||||
'quay.io/biocontainers/picard:2.27.1--hdfd78af_0' }"
|
'quay.io/biocontainers/picard:2.27.2--hdfd78af_0' }"
|
||||||
|
|
||||||
input:
|
input:
|
||||||
tuple val(meta), path(bam)
|
tuple val(meta), path(bam)
|
||||||
|
|
|
@ -2,10 +2,10 @@ process PICARD_CLEANSAM {
|
||||||
tag "$meta.id"
|
tag "$meta.id"
|
||||||
label 'process_medium'
|
label 'process_medium'
|
||||||
|
|
||||||
conda (params.enable_conda ? "bioconda::picard=2.27.1" : null)
|
conda (params.enable_conda ? "bioconda::picard=2.27.2" : null)
|
||||||
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||||||
'https://depot.galaxyproject.org/singularity/picard:2.27.1--hdfd78af_0' :
|
'https://depot.galaxyproject.org/singularity/picard:2.27.2--hdfd78af_0' :
|
||||||
'quay.io/biocontainers/picard:2.27.1--hdfd78af_0' }"
|
'quay.io/biocontainers/picard:2.27.2--hdfd78af_0' }"
|
||||||
|
|
||||||
input:
|
input:
|
||||||
tuple val(meta), path(bam)
|
tuple val(meta), path(bam)
|
||||||
|
|
|
@ -2,10 +2,10 @@ process PICARD_COLLECTHSMETRICS {
|
||||||
tag "$meta.id"
|
tag "$meta.id"
|
||||||
label 'process_medium'
|
label 'process_medium'
|
||||||
|
|
||||||
conda (params.enable_conda ? "bioconda::picard=2.27.1" : null)
|
conda (params.enable_conda ? "bioconda::picard=2.27.2" : null)
|
||||||
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||||||
'https://depot.galaxyproject.org/singularity/picard:2.27.1--hdfd78af_0' :
|
'https://depot.galaxyproject.org/singularity/picard:2.27.2--hdfd78af_0' :
|
||||||
'quay.io/biocontainers/picard:2.27.1--hdfd78af_0' }"
|
'quay.io/biocontainers/picard:2.27.2--hdfd78af_0' }"
|
||||||
|
|
||||||
input:
|
input:
|
||||||
tuple val(meta), path(bam)
|
tuple val(meta), path(bam)
|
||||||
|
|
|
@ -2,10 +2,10 @@ process PICARD_COLLECTMULTIPLEMETRICS {
|
||||||
tag "$meta.id"
|
tag "$meta.id"
|
||||||
label 'process_medium'
|
label 'process_medium'
|
||||||
|
|
||||||
conda (params.enable_conda ? "bioconda::picard=2.27.1" : null)
|
conda (params.enable_conda ? "bioconda::picard=2.27.2" : null)
|
||||||
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||||||
'https://depot.galaxyproject.org/singularity/picard:2.27.1--hdfd78af_0' :
|
'https://depot.galaxyproject.org/singularity/picard:2.27.2--hdfd78af_0' :
|
||||||
'quay.io/biocontainers/picard:2.27.1--hdfd78af_0' }"
|
'quay.io/biocontainers/picard:2.27.2--hdfd78af_0' }"
|
||||||
|
|
||||||
input:
|
input:
|
||||||
tuple val(meta), path(bam)
|
tuple val(meta), path(bam)
|
||||||
|
|
|
@ -2,10 +2,10 @@ process PICARD_COLLECTWGSMETRICS {
|
||||||
tag "$meta.id"
|
tag "$meta.id"
|
||||||
label 'process_medium'
|
label 'process_medium'
|
||||||
|
|
||||||
conda (params.enable_conda ? "bioconda::picard=2.27.1" : null)
|
conda (params.enable_conda ? "bioconda::picard=2.27.2" : null)
|
||||||
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||||||
'https://depot.galaxyproject.org/singularity/picard:2.27.1--hdfd78af_0' :
|
'https://depot.galaxyproject.org/singularity/picard:2.27.2--hdfd78af_0' :
|
||||||
'quay.io/biocontainers/picard:2.27.1--hdfd78af_0' }"
|
'quay.io/biocontainers/picard:2.27.2--hdfd78af_0' }"
|
||||||
|
|
||||||
input:
|
input:
|
||||||
tuple val(meta), path(bam)
|
tuple val(meta), path(bam)
|
||||||
|
|
|
@ -2,10 +2,10 @@ process PICARD_CREATESEQUENCEDICTIONARY {
|
||||||
tag "$meta.id"
|
tag "$meta.id"
|
||||||
label 'process_medium'
|
label 'process_medium'
|
||||||
|
|
||||||
conda (params.enable_conda ? "bioconda::picard=2.27.1" : null)
|
conda (params.enable_conda ? "bioconda::picard=2.27.2" : null)
|
||||||
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||||||
'https://depot.galaxyproject.org/singularity/picard:2.27.1--hdfd78af_0' :
|
'https://depot.galaxyproject.org/singularity/picard:2.27.2--hdfd78af_0' :
|
||||||
'quay.io/biocontainers/picard:2.27.1--hdfd78af_0' }"
|
'quay.io/biocontainers/picard:2.27.2--hdfd78af_0' }"
|
||||||
|
|
||||||
input:
|
input:
|
||||||
tuple val(meta), path(fasta)
|
tuple val(meta), path(fasta)
|
||||||
|
|
|
@ -2,10 +2,10 @@ process PICARD_CROSSCHECKFINGERPRINTS {
|
||||||
tag "$meta.id"
|
tag "$meta.id"
|
||||||
label 'process_medium'
|
label 'process_medium'
|
||||||
|
|
||||||
conda (params.enable_conda ? "bioconda::picard=2.27.1" : null)
|
conda (params.enable_conda ? "bioconda::picard=2.27.2" : null)
|
||||||
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||||||
'https://depot.galaxyproject.org/singularity/picard:2.27.1--hdfd78af_0' :
|
'https://depot.galaxyproject.org/singularity/picard:2.27.2--hdfd78af_0' :
|
||||||
'quay.io/biocontainers/picard:2.27.1--hdfd78af_0' }"
|
'quay.io/biocontainers/picard:2.27.2--hdfd78af_0' }"
|
||||||
|
|
||||||
input:
|
input:
|
||||||
tuple val(meta), path(input1)
|
tuple val(meta), path(input1)
|
||||||
|
|
|
@ -2,10 +2,10 @@ process PICARD_FILTERSAMREADS {
|
||||||
tag "$meta.id"
|
tag "$meta.id"
|
||||||
label 'process_low'
|
label 'process_low'
|
||||||
|
|
||||||
conda (params.enable_conda ? "bioconda::picard=2.27.1" : null)
|
conda (params.enable_conda ? "bioconda::picard=2.27.2" : null)
|
||||||
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||||||
'https://depot.galaxyproject.org/singularity/picard:2.27.1--hdfd78af_0' :
|
'https://depot.galaxyproject.org/singularity/picard:2.27.2--hdfd78af_0' :
|
||||||
'quay.io/biocontainers/picard:2.27.1--hdfd78af_0' }"
|
'quay.io/biocontainers/picard:2.27.2--hdfd78af_0' }"
|
||||||
|
|
||||||
input:
|
input:
|
||||||
tuple val(meta), path(bam), path(readlist)
|
tuple val(meta), path(bam), path(readlist)
|
||||||
|
|
|
@ -2,10 +2,10 @@ process PICARD_FIXMATEINFORMATION {
|
||||||
tag "$meta.id"
|
tag "$meta.id"
|
||||||
label 'process_low'
|
label 'process_low'
|
||||||
|
|
||||||
conda (params.enable_conda ? "bioconda::picard=2.27.1" : null)
|
conda (params.enable_conda ? "bioconda::picard=2.27.2" : null)
|
||||||
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||||||
'https://depot.galaxyproject.org/singularity/picard:2.27.1--hdfd78af_0' :
|
'https://depot.galaxyproject.org/singularity/picard:2.27.2--hdfd78af_0' :
|
||||||
'quay.io/biocontainers/picard:2.27.1--hdfd78af_0' }"
|
'quay.io/biocontainers/picard:2.27.2--hdfd78af_0' }"
|
||||||
|
|
||||||
input:
|
input:
|
||||||
tuple val(meta), path(bam)
|
tuple val(meta), path(bam)
|
||||||
|
|
|
@ -2,10 +2,10 @@ process PICARD_LIFTOVERVCF {
|
||||||
tag "$meta.id"
|
tag "$meta.id"
|
||||||
label 'process_low'
|
label 'process_low'
|
||||||
|
|
||||||
conda (params.enable_conda ? "bioconda::picard=2.27.1" : null)
|
conda (params.enable_conda ? "bioconda::picard=2.27.2" : null)
|
||||||
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||||||
'https://depot.galaxyproject.org/singularity/picard:2.27.1--hdfd78af_0' :
|
'https://depot.galaxyproject.org/singularity/picard:2.27.2--hdfd78af_0' :
|
||||||
'quay.io/biocontainers/picard:2.27.1--hdfd78af_0' }"
|
'quay.io/biocontainers/picard:2.27.2--hdfd78af_0' }"
|
||||||
|
|
||||||
input:
|
input:
|
||||||
tuple val(meta), path(input_vcf)
|
tuple val(meta), path(input_vcf)
|
||||||
|
|
|
@ -2,10 +2,10 @@ process PICARD_MARKDUPLICATES {
|
||||||
tag "$meta.id"
|
tag "$meta.id"
|
||||||
label 'process_medium'
|
label 'process_medium'
|
||||||
|
|
||||||
conda (params.enable_conda ? "bioconda::picard=2.27.1" : null)
|
conda (params.enable_conda ? "bioconda::picard=2.27.2" : null)
|
||||||
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||||||
'https://depot.galaxyproject.org/singularity/picard:2.27.1--hdfd78af_0' :
|
'https://depot.galaxyproject.org/singularity/picard:2.27.2--hdfd78af_0' :
|
||||||
'quay.io/biocontainers/picard:2.27.1--hdfd78af_0' }"
|
'quay.io/biocontainers/picard:2.27.2--hdfd78af_0' }"
|
||||||
|
|
||||||
input:
|
input:
|
||||||
tuple val(meta), path(bam)
|
tuple val(meta), path(bam)
|
||||||
|
|
|
@ -2,10 +2,10 @@ process PICARD_MERGESAMFILES {
|
||||||
tag "$meta.id"
|
tag "$meta.id"
|
||||||
label 'process_medium'
|
label 'process_medium'
|
||||||
|
|
||||||
conda (params.enable_conda ? "bioconda::picard=2.27.1" : null)
|
conda (params.enable_conda ? "bioconda::picard=2.27.2" : null)
|
||||||
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||||||
'https://depot.galaxyproject.org/singularity/picard:2.27.1--hdfd78af_0' :
|
'https://depot.galaxyproject.org/singularity/picard:2.27.2--hdfd78af_0' :
|
||||||
'quay.io/biocontainers/picard:2.27.1--hdfd78af_0' }"
|
'quay.io/biocontainers/picard:2.27.2--hdfd78af_0' }"
|
||||||
|
|
||||||
input:
|
input:
|
||||||
tuple val(meta), path(bams)
|
tuple val(meta), path(bams)
|
||||||
|
|
|
@ -2,10 +2,10 @@ process PICARD_SORTSAM {
|
||||||
tag "$meta.id"
|
tag "$meta.id"
|
||||||
label 'process_low'
|
label 'process_low'
|
||||||
|
|
||||||
conda (params.enable_conda ? "bioconda::picard=2.27.1" : null)
|
conda (params.enable_conda ? "bioconda::picard=2.27.2" : null)
|
||||||
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||||||
'https://depot.galaxyproject.org/singularity/picard:2.27.1--hdfd78af_0' :
|
'https://depot.galaxyproject.org/singularity/picard:2.27.2--hdfd78af_0' :
|
||||||
'quay.io/biocontainers/picard:2.27.1--hdfd78af_0' }"
|
'quay.io/biocontainers/picard:2.27.2--hdfd78af_0' }"
|
||||||
|
|
||||||
input:
|
input:
|
||||||
tuple val(meta), path(bam)
|
tuple val(meta), path(bam)
|
||||||
|
|
|
@ -2,10 +2,10 @@ process PICARD_SORTVCF {
|
||||||
tag "$meta.id"
|
tag "$meta.id"
|
||||||
label 'process_medium'
|
label 'process_medium'
|
||||||
|
|
||||||
conda (params.enable_conda ? "bioconda::picard=2.27.1" : null)
|
conda (params.enable_conda ? "bioconda::picard=2.27.2" : null)
|
||||||
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||||||
'https://depot.galaxyproject.org/singularity/picard:2.27.1--hdfd78af_0' :
|
'https://depot.galaxyproject.org/singularity/picard:2.27.2--hdfd78af_0' :
|
||||||
'quay.io/biocontainers/picard:2.27.1--hdfd78af_0' }"
|
'quay.io/biocontainers/picard:2.27.2--hdfd78af_0' }"
|
||||||
|
|
||||||
input:
|
input:
|
||||||
tuple val(meta), path(vcf)
|
tuple val(meta), path(vcf)
|
||||||
|
|
|
@ -9,7 +9,8 @@ workflow test_gatk4_calibratedragstrmodel_bam {
|
||||||
input = [
|
input = [
|
||||||
[ id:'test', single_end:false ], // meta map
|
[ id:'test', single_end:false ], // meta map
|
||||||
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true),
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true),
|
||||||
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam_bai'], checkIfExists: true)
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam_bai'], checkIfExists: true),
|
||||||
|
[]
|
||||||
]
|
]
|
||||||
|
|
||||||
fasta = file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true)
|
fasta = file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true)
|
||||||
|
@ -28,7 +29,28 @@ workflow test_gatk4_calibratedragstrmodel_cram {
|
||||||
input = [
|
input = [
|
||||||
[ id:'test', single_end:false ], // meta map
|
[ id:'test', single_end:false ], // meta map
|
||||||
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_cram'], checkIfExists: true),
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_cram'], checkIfExists: true),
|
||||||
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_cram_crai'], checkIfExists: true)
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_cram_crai'], checkIfExists: true),
|
||||||
|
[]
|
||||||
|
]
|
||||||
|
|
||||||
|
fasta = file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true)
|
||||||
|
|
||||||
|
fasta_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)
|
||||||
|
|
||||||
|
strtablefile = file(params.test_data['homo_sapiens']['genome']['genome_strtablefile'], checkIfExists: true)
|
||||||
|
|
||||||
|
GATK4_CALIBRATEDRAGSTRMODEL ( input, fasta, fasta_fai, dict, strtablefile )
|
||||||
|
}
|
||||||
|
|
||||||
|
workflow test_gatk4_calibratedragstrmodel_beds {
|
||||||
|
|
||||||
|
input = [
|
||||||
|
[ id:'test', single_end:false ], // meta map
|
||||||
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_cram'], checkIfExists: true),
|
||||||
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_cram_crai'], checkIfExists: true),
|
||||||
|
file(params.test_data['homo_sapiens']['genome']['genome_bed'], checkIfExists: true)
|
||||||
]
|
]
|
||||||
|
|
||||||
fasta = file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true)
|
fasta = file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true)
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
- name: gatk4 calibratedragstrmodel test_gatk4_calibratedragstrmodel_bam
|
- name: gatk4 calibratedragstrmodel test_gatk4_calibratedragstrmodel_bam
|
||||||
command: nextflow run ./tests/modules/gatk4/calibratedragstrmodel -entry test_gatk4_calibratedragstrmodel_bam -c ./tests/config/nextflow.config -c ./tests/modules/gatk4/calibratedragstrmodel/nextflow.config
|
command: nextflow run ./tests/modules/gatk4/calibratedragstrmodel -entry test_gatk4_calibratedragstrmodel_bam -c ./tests/config/nextflow.config -c ./tests/modules/gatk4/calibratedragstrmodel/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- gatk4
|
|
||||||
- gatk4/calibratedragstrmodel
|
- gatk4/calibratedragstrmodel
|
||||||
|
- gatk4
|
||||||
files:
|
files:
|
||||||
- path: output/gatk4/test.txt
|
- path: output/gatk4/test.txt
|
||||||
md5sum: 0a1a1583b157fa2251dd931ed165da4f
|
md5sum: 0a1a1583b157fa2251dd931ed165da4f
|
||||||
|
@ -10,8 +10,17 @@
|
||||||
- name: gatk4 calibratedragstrmodel test_gatk4_calibratedragstrmodel_cram
|
- name: gatk4 calibratedragstrmodel test_gatk4_calibratedragstrmodel_cram
|
||||||
command: nextflow run ./tests/modules/gatk4/calibratedragstrmodel -entry test_gatk4_calibratedragstrmodel_cram -c ./tests/config/nextflow.config -c ./tests/modules/gatk4/calibratedragstrmodel/nextflow.config
|
command: nextflow run ./tests/modules/gatk4/calibratedragstrmodel -entry test_gatk4_calibratedragstrmodel_cram -c ./tests/config/nextflow.config -c ./tests/modules/gatk4/calibratedragstrmodel/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- gatk4
|
|
||||||
- gatk4/calibratedragstrmodel
|
- gatk4/calibratedragstrmodel
|
||||||
|
- gatk4
|
||||||
files:
|
files:
|
||||||
- path: output/gatk4/test.txt
|
- path: output/gatk4/test.txt
|
||||||
md5sum: 1aa7ab38023f724877b3323c5e6b9a4e
|
md5sum: 1aa7ab38023f724877b3323c5e6b9a4e
|
||||||
|
|
||||||
|
- name: gatk4 calibratedragstrmodel test_gatk4_calibratedragstrmodel_beds
|
||||||
|
command: nextflow run ./tests/modules/gatk4/calibratedragstrmodel -entry test_gatk4_calibratedragstrmodel_beds -c ./tests/config/nextflow.config -c ./tests/modules/gatk4/calibratedragstrmodel/nextflow.config
|
||||||
|
tags:
|
||||||
|
- gatk4/calibratedragstrmodel
|
||||||
|
- gatk4
|
||||||
|
files:
|
||||||
|
- path: output/gatk4/test.txt
|
||||||
|
md5sum: def8baccad7bd59006f08fcb0a6721bf
|
||||||
|
|
Loading…
Reference in a new issue