Skip to content
Snippets Groups Projects
Commit e29c1439 authored by Felix Perez's avatar Felix Perez
Browse files

Fix conda bug at the beginning of the nextflow script.

parent 4c3b1260
Branches
1 merge request!6Fix conda bug at the beginning of the nextflow script.
......@@ -21,6 +21,7 @@ process runSource {
publishDir "$baseDir/output", mode: 'copy'
input:
file inputJson from inputJsonFile
output:
......@@ -28,12 +29,12 @@ process runSource {
shell:
'''
# Enable the use of bash-specific conda commands in this shell.
eval "$(conda shell.bash hook)"
module load python/3.8.x-anaconda
module load openjdk/18
# Enable the use of bash-specific conda commands in this shell.
eval "$(conda shell.bash hook)"
# Create a temporary conda environment for caper.
conda create -y -c bioconda -c defaults -c conda-forge --name astrocyte-atac-caper python=3.8.18
# Activate and install caper.
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment