mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
Add CRAM to samtools/index (#1049)
* feat: update samtools/index * feat: add test * fix: lint * fix: output file + md5
This commit is contained in:
parent
b399f22af2
commit
1abe23e159
4 changed files with 31 additions and 7 deletions
|
@ -19,16 +19,17 @@ process SAMTOOLS_INDEX {
|
||||||
}
|
}
|
||||||
|
|
||||||
input:
|
input:
|
||||||
tuple val(meta), path(bam)
|
tuple val(meta), path(input)
|
||||||
|
|
||||||
output:
|
output:
|
||||||
tuple val(meta), path("*.bai"), optional:true, emit: bai
|
tuple val(meta), path("*.bai") , optional:true, emit: bai
|
||||||
tuple val(meta), path("*.csi"), optional:true, emit: csi
|
tuple val(meta), path("*.crai"), optional:true, emit: crai
|
||||||
|
tuple val(meta), path("*.csi") , optional:true, emit: csi
|
||||||
path "versions.yml" , emit: versions
|
path "versions.yml" , emit: versions
|
||||||
|
|
||||||
script:
|
script:
|
||||||
"""
|
"""
|
||||||
samtools index $options.args $bam
|
samtools index $options.args $input
|
||||||
cat <<-END_VERSIONS > versions.yml
|
cat <<-END_VERSIONS > versions.yml
|
||||||
${getProcessName(task.process)}:
|
${getProcessName(task.process)}:
|
||||||
${getSoftwareName(task.process)}: \$(echo \$(samtools --version 2>&1) | sed 's/^.*samtools //; s/Using.*\$//')
|
${getSoftwareName(task.process)}: \$(echo \$(samtools --version 2>&1) | sed 's/^.*samtools //; s/Using.*\$//')
|
||||||
|
|
|
@ -35,6 +35,10 @@ output:
|
||||||
type: file
|
type: file
|
||||||
description: BAM/CRAM/SAM index file
|
description: BAM/CRAM/SAM index file
|
||||||
pattern: "*.{bai,crai,sai}"
|
pattern: "*.{bai,crai,sai}"
|
||||||
|
- crai:
|
||||||
|
type: file
|
||||||
|
description: BAM/CRAM/SAM index file
|
||||||
|
pattern: "*.{bai,crai,sai}"
|
||||||
- csi:
|
- csi:
|
||||||
type: file
|
type: file
|
||||||
description: CSI index file
|
description: CSI index file
|
||||||
|
@ -46,3 +50,4 @@ output:
|
||||||
authors:
|
authors:
|
||||||
- "@drpatelh"
|
- "@drpatelh"
|
||||||
- "@ewels"
|
- "@ewels"
|
||||||
|
- "@maxulysse"
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
nextflow.enable.dsl = 2
|
nextflow.enable.dsl = 2
|
||||||
|
|
||||||
include { SAMTOOLS_INDEX as SAMTOOLS_INDEX_BAI } from '../../../../modules/samtools/index/main.nf' addParams( options: [:] )
|
include { SAMTOOLS_INDEX as SAMTOOLS_INDEX_BAI } from '../../../../modules/samtools/index/main.nf' addParams( options: [:] )
|
||||||
|
include { SAMTOOLS_INDEX as SAMTOOLS_INDEX_CRAI } from '../../../../modules/samtools/index/main.nf' addParams( options: [:] )
|
||||||
include { SAMTOOLS_INDEX as SAMTOOLS_INDEX_CSI } from '../../../../modules/samtools/index/main.nf' addParams( options: [args:'-c'] )
|
include { SAMTOOLS_INDEX as SAMTOOLS_INDEX_CSI } from '../../../../modules/samtools/index/main.nf' addParams( options: [args:'-c'] )
|
||||||
|
|
||||||
workflow test_samtools_index_bai {
|
workflow test_samtools_index_bai {
|
||||||
|
@ -13,6 +14,14 @@ workflow test_samtools_index_bai {
|
||||||
SAMTOOLS_INDEX_BAI ( input )
|
SAMTOOLS_INDEX_BAI ( input )
|
||||||
}
|
}
|
||||||
|
|
||||||
|
workflow test_samtools_index_crai {
|
||||||
|
input = [ [ id:'test', single_end:false ], // meta map
|
||||||
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_recalibrated_sorted_cram'], checkIfExists: true)
|
||||||
|
]
|
||||||
|
|
||||||
|
SAMTOOLS_INDEX_CRAI ( input )
|
||||||
|
}
|
||||||
|
|
||||||
workflow test_samtools_index_csi {
|
workflow test_samtools_index_csi {
|
||||||
input = [ [ id:'test', single_end:false ], // meta map
|
input = [ [ id:'test', single_end:false ], // meta map
|
||||||
file(params.test_data['sarscov2']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true)
|
file(params.test_data['sarscov2']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true)
|
||||||
|
|
|
@ -7,6 +7,15 @@
|
||||||
- path: output/samtools/test.paired_end.sorted.bam.bai
|
- path: output/samtools/test.paired_end.sorted.bam.bai
|
||||||
md5sum: 704c10dd1326482448ca3073fdebc2f4
|
md5sum: 704c10dd1326482448ca3073fdebc2f4
|
||||||
|
|
||||||
|
- name: samtools index crai
|
||||||
|
command: nextflow run tests/modules/samtools/index -entry test_samtools_index_crai -c tests/config/nextflow.config
|
||||||
|
tags:
|
||||||
|
- samtools
|
||||||
|
- samtools/index
|
||||||
|
files:
|
||||||
|
- path: output/samtools/test.paired_end.recalibrated.sorted.cram.crai
|
||||||
|
md5sum: 537e3d8c937bcc4e34e1cf47cd71d484
|
||||||
|
|
||||||
- name: samtools index csi
|
- name: samtools index csi
|
||||||
command: nextflow run tests/modules/samtools/index -entry test_samtools_index_csi -c tests/config/nextflow.config
|
command: nextflow run tests/modules/samtools/index -entry test_samtools_index_csi -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
|
|
Loading…
Reference in a new issue