test(samtools): Refactor idxstats to use pytest-workflow

This commit is contained in:
Edmund Miller 2020-11-24 20:01:05 -06:00
parent 34d86427a6
commit 16cb794892
No known key found for this signature in database
GPG key ID: BD387FF7BC10AA9D
7 changed files with 20 additions and 43 deletions

View file

@ -1 +0,0 @@
../../../../../tests/data/bam/test.paired_end.sorted.bam

View file

@ -1 +0,0 @@
../../../../../tests/data/bam/test.paired_end.sorted.bam.bai

View file

@ -1,19 +0,0 @@
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { SAMTOOLS_IDXSTATS } from '../main.nf' addParams( options: [:] )
workflow test {
def input = []
input = [ [ id:'test', single_end:false ], // meta map
file("${baseDir}/input/test.paired_end.sorted.bam", checkIfExists: true),
file("${baseDir}/input/test.paired_end.sorted.bam.bai", checkIfExists: true) ]
SAMTOOLS_IDXSTATS ( input )
}
workflow {
test()
}

View file

@ -1,20 +0,0 @@
params {
outdir = "output/"
publish_dir_mode = "copy"
enable_conda = false
}
profiles {
conda {
params.enable_conda = true
}
docker {
docker.enabled = true
docker.runOptions = '-u \$(id -u):\$(id -g)'
}
singularity {
singularity.enabled = true
singularity.autoMounts = true
}
}

View file

@ -1,2 +0,0 @@
gi|170079663|ref|NC_010473.1| 4686137 20000 0
* 0 0 0

View file

@ -3,6 +3,7 @@
nextflow.enable.dsl = 2
include { SAMTOOLS_FLAGSTAT } from '../../../software/samtools/flagstat/main.nf' addParams( options: [:] )
include { SAMTOOLS_IDXSTATS } from '../../../software/samtools/idxstats/main.nf' addParams( options: [:] )
workflow test_samtools_flagstat {
@ -13,3 +14,13 @@ workflow test_samtools_flagstat {
SAMTOOLS_FLAGSTAT ( input )
}
workflow test_samtools_idxstats {
def input = []
input = [ [ id:'test', single_end:false ], // meta map
file("${launchDir}/tests/data/bam/test.paired_end.sorted.bam", checkIfExists: true),
file("${launchDir}/tests/data/bam/test.paired_end.sorted.bam.bai", checkIfExists: true) ]
SAMTOOLS_IDXSTATS ( input )
}

View file

@ -6,3 +6,12 @@
files:
- path: output/samtools/test.paired_end.sorted.bam.flagstat
md5sum: 80590621c74f5ee43ada20d010a3837f
- name: Run samtools idxstats test workflow
command: nextflow run ./tests/software/samtools/ -profile docker -entry test_samtools_idxstats -c tests/config/nextflow.config
tags:
- samtools
- samtools_idxstats
files:
- path: output/samtools/test.paired_end.sorted.bam.idxstats
md5sum: 3bee8b7d55e412da2b3816c5a18d60d5