Deepvariant - Update main.nf (#2110)

Update main.nf

simplify deepvariant container call
This commit is contained in:
Maxime U. Garcia 2022-09-27 15:34:10 +02:00 committed by GitHub
parent daab0a77dd
commit eb15df8036
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,9 +7,7 @@ process DEEPVARIANT {
exit 1, "Conda environments cannot be used when using the DeepVariant tool. Please use docker or singularity containers."
}
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'google/deepvariant:1.3.0' :
'google/deepvariant:1.3.0' }"
container 'google/deepvariant:1.3.0'
input:
tuple val(meta), path(input), path(index), path(intervals)