mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
Fix picard markduplicates (#1084)
* Fix picard/markduplicates with new options syntax * Delete md5sum for bam files and add contains for metrics.txt Co-authored-by: Robert A. Petit III <robbie.petit@gmail.com> Co-authored-by: FriederikeHanssen <Friederike.hanssen@qbic.uni-tuebingen.de>
This commit is contained in:
parent
43a1c1c6d1
commit
4e5b6ed843
3 changed files with 8 additions and 6 deletions
|
@ -40,9 +40,9 @@ process PICARD_MARKDUPLICATES {
|
|||
-Xmx${avail_mem}g \\
|
||||
MarkDuplicates \\
|
||||
$options.args \\
|
||||
-I $bam \\
|
||||
-O ${prefix}.bam \\
|
||||
-M ${prefix}.MarkDuplicates.metrics.txt
|
||||
I=$bam \\
|
||||
O=${prefix}.bam \\
|
||||
M=${prefix}.MarkDuplicates.metrics.txt
|
||||
|
||||
cat <<-END_VERSIONS > versions.yml
|
||||
${getProcessName(task.process)}:
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
nextflow.enable.dsl = 2
|
||||
|
||||
include { PICARD_MARKDUPLICATES } from '../../../../modules/picard/markduplicates/main.nf' addParams( options: [:] )
|
||||
include { PICARD_MARKDUPLICATES as PICARD_MARKDUPLICATES_UNSORTED} from '../../../../modules/picard/markduplicates/main.nf' addParams( options: [args : '--ASSUME_SORT_ORDER queryname' ] )
|
||||
include { PICARD_MARKDUPLICATES as PICARD_MARKDUPLICATES_UNSORTED} from '../../../../modules/picard/markduplicates/main.nf' addParams( options: [args : 'ASSUME_SORT_ORDER=queryname' ] )
|
||||
|
||||
workflow test_picard_markduplicates_sorted_bam {
|
||||
input = [ [ id:'test', single_end:false ], // meta map
|
||||
|
|
|
@ -5,8 +5,9 @@
|
|||
- picard/markduplicates
|
||||
files:
|
||||
- path: ./output/picard/test.MarkDuplicates.metrics.txt
|
||||
contains:
|
||||
- "1.0 97 97"
|
||||
- path: ./output/picard/test.bam
|
||||
md5sum: b520ccdc3a9edf3c6a314983752881f2
|
||||
- name: picard markduplicates unsorted bam
|
||||
command: nextflow run ./tests/modules/picard/markduplicates -entry test_picard_markduplicates_unsorted_bam -c tests/config/nextflow.config
|
||||
tags:
|
||||
|
@ -14,6 +15,7 @@
|
|||
- picard/markduplicates
|
||||
files:
|
||||
- path: ./output/picard/test.MarkDuplicates.metrics.txt
|
||||
contains:
|
||||
- "1.0 97 97"
|
||||
- path: ./output/picard/test.bam
|
||||
md5sum: 46a6fc76048ba801d328f869ac9db020
|
||||
|
||||
|
|
Loading…
Reference in a new issue