Update mergebam syntax and sample specific unmapped channel (#1238)

* initial commit to setup branch

* workflow finished

* Update nextflow.config

* tumour to tumor, getpileup passed as nomral and tumor

* paired_somatic renamed to tumor_normal_somatic

* Apply suggestions from code review

Co-authored-by: Maxime U. Garcia <maxime.garcia@scilifelab.se>

* Update subworkflows/nf-core/gatk_tumor_normal_somatic_variant_calling/main.nf

Co-authored-by: Maxime U. Garcia <maxime.garcia@scilifelab.se>

* updated index names in meta.yml

* changed index file names in main script and test

* Apply suggestions from code review

Co-authored-by: Maxime U. Garcia <maxime.garcia@scilifelab.se>

* Apply suggestions from code review

* fixed bug from changes

* Apply suggestions from code review

* modified yml to allow new subworkflow testing

* Update test.yml

* Update test.yml

* updated to follow the new mergebam syntax, also made unaligned input sample specific

Co-authored-by: GCJMackenzie <gavin.mackenzie@nibsc.org>
Co-authored-by: Maxime U. Garcia <maxime.garcia@scilifelab.se>
This commit is contained in:
GCJMackenzie 2022-01-27 15:30:27 +00:00 committed by GitHub
parent d70526c806
commit 08db860938
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 9 deletions

View file

@ -8,8 +8,7 @@ process GATK4_MERGEBAMALIGNMENT {
'quay.io/biocontainers/gatk4:4.2.4.1--hdfd78af_0' }" 'quay.io/biocontainers/gatk4:4.2.4.1--hdfd78af_0' }"
input: input:
tuple val(meta), path(aligned) tuple val(meta), path(aligned), path(unmapped)
path unmapped
path fasta path fasta
path dict path dict
@ -28,10 +27,10 @@ process GATK4_MERGEBAMALIGNMENT {
} }
""" """
gatk --java-options "-Xmx${avail_mem}g" MergeBamAlignment \\ gatk --java-options "-Xmx${avail_mem}g" MergeBamAlignment \\
ALIGNED=$aligned \\ -ALIGNED $aligned \\
UNMAPPED=$unmapped \\ -UNMAPPED $unmapped \\
R=$fasta \\ -R $fasta \\
O=${prefix}.bam \\ -O ${prefix}.bam \\
$args $args
cat <<-END_VERSIONS > versions.yml cat <<-END_VERSIONS > versions.yml

View file

@ -6,11 +6,11 @@ include { GATK4_MERGEBAMALIGNMENT } from '../../../../modules/gatk4/mergebamalig
workflow test_gatk4_mergebamalignment { workflow test_gatk4_mergebamalignment {
input = [ [ id:'test' ], // meta map input = [ [ id:'test' ], // meta map
file(params.test_data['sarscov2']['illumina']['test_single_end_bam'], checkIfExists: true) file(params.test_data['sarscov2']['illumina']['test_single_end_bam'], checkIfExists: true),
file(params.test_data['sarscov2']['illumina']['test_unaligned_bam'], checkIfExists: true)
] ]
unmapped = file(params.test_data['sarscov2']['illumina']['test_unaligned_bam'], checkIfExists: true)
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true) fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
dict = file(params.test_data['sarscov2']['genome']['genome_dict'], checkIfExists: true) dict = file(params.test_data['sarscov2']['genome']['genome_dict'], checkIfExists: true)
GATK4_MERGEBAMALIGNMENT ( input, unmapped, fasta, dict ) GATK4_MERGEBAMALIGNMENT ( input, fasta, dict )
} }