Adding conda build to blast modules

This commit is contained in:
JoseEspinosa 2021-02-09 23:04:12 +01:00
parent 2fa14f2ec8
commit e8dc199dc8
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@ process BLAST_BLASTN {
mode: params.publish_dir_mode,
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), publish_id:meta.id) }
conda (params.enable_conda ? 'bioconda::blast=2.10.1' : null)
conda (params.enable_conda ? 'bioconda::blast=2.10.1=pl526he19e7b1_3' : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container 'https://depot.galaxyproject.org/singularity/blast:2.10.1--pl526he19e7b1_3'
} else {

View file

@ -11,7 +11,7 @@ process BLAST_MAKEBLASTDB {
mode: params.publish_dir_mode,
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), publish_id:'') }
conda (params.enable_conda ? 'bioconda::blast=2.10.1' : null)
conda (params.enable_conda ? 'bioconda::blast=2.10.1=pl526he19e7b1_3' : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container 'https://depot.galaxyproject.org/singularity/blast:2.10.1--pl526he19e7b1_3'
} else {