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

Merge branch 'fpwork' into 'main'

Fix conda bug at the beginning of the nextflow script.

See merge request !6
parents f65e516b e29c1439
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