Skip to content

Commit

Permalink
changed filepath to conda yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
ayoraind committed Mar 14, 2023
1 parent 974df13 commit 33aec65
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/processes.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process MINIMAP2_INDEX {
// publishDir "${params.output_dir}/minimap", mode:'copy'

// Note: the versions here need to match the versions used in minimap2/align
conda "../mapping_env.yml"
conda "/MIGE/01_DATA/07_TOOLS_AND_SOFTWARE/nextflow_pipelines/hDNA_removal_and_map_stats/mapping_env.yml"

input:
tuple val(meta), path(reference_fasta)
Expand Down Expand Up @@ -35,7 +35,7 @@ process MINIMAP2_ALIGN {
tag "minimap alignment on $sample_id"

// Note: the versions here need to match the versions used in the mulled container below and minimap2/index
conda "../mapping_env.yml"
conda "/MIGE/01_DATA/07_TOOLS_AND_SOFTWARE/nextflow_pipelines/hDNA_removal_and_map_stats/mapping_env.yml"

input:
tuple val(sample_id), path(reads)
Expand Down Expand Up @@ -71,7 +71,7 @@ process EXTRACT_MICROBIAL_READS {
tag "extract microbial DNA from $sample_id"

// Note: the versions here need to match the versions used in the mulled container below and minimap2/index
conda "../mapping_env.yml"
conda "/MIGE/01_DATA/07_TOOLS_AND_SOFTWARE/nextflow_pipelines/hDNA_removal_and_map_stats/mapping_env.yml"

input:
tuple val(sample_id), path(bam)
Expand Down Expand Up @@ -112,7 +112,7 @@ process BAM_STATISTICS {
tag "$sample_id"


conda "../mapping_env.yml"
conda "/MIGE/01_DATA/07_TOOLS_AND_SOFTWARE/nextflow_pipelines/hDNA_removal_and_map_stats/mapping_env.yml"

input:
tuple val(sample_id), path(bam)
Expand Down

0 comments on commit 33aec65

Please sign in to comment.