mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 11:08:17 +00:00
revert wgsmetrics'
This commit is contained in:
parent
4da143ce62
commit
c390385cf5
1 changed files with 1 additions and 2 deletions
|
@ -21,7 +21,6 @@ process PICARD_COLLECTWGSMETRICS {
|
||||||
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 reference = fasta ? "--REFERENCE_SEQUENCE ${fasta}" : ""
|
|
||||||
def avail_mem = 3
|
def avail_mem = 3
|
||||||
if (!task.memory) {
|
if (!task.memory) {
|
||||||
log.info '[Picard CollectWgsMetrics] Available memory not known - defaulting to 3GB. Specify process memory requirements to change this.'
|
log.info '[Picard CollectWgsMetrics] Available memory not known - defaulting to 3GB. Specify process memory requirements to change this.'
|
||||||
|
@ -35,7 +34,7 @@ process PICARD_COLLECTWGSMETRICS {
|
||||||
$args \\
|
$args \\
|
||||||
--INPUT $bam \\
|
--INPUT $bam \\
|
||||||
--OUTPUT ${prefix}.CollectWgsMetrics.coverage_metrics \\
|
--OUTPUT ${prefix}.CollectWgsMetrics.coverage_metrics \\
|
||||||
$reference
|
--REFERENCE_SEQUENCE ${fasta}
|
||||||
|
|
||||||
|
|
||||||
cat <<-END_VERSIONS > versions.yml
|
cat <<-END_VERSIONS > versions.yml
|
||||||
|
|
Loading…
Reference in a new issue